-
Notifications
You must be signed in to change notification settings - Fork 68
Open
Description
MDF/src/modeci_mdf/interfaces/actr/importer.py
Lines 203 to 215 in 2e9cd9c
| # Conditions | |
| cond_dm = Condition(type="Always") | |
| cond_retrieval = Condition(type="JustRan", dependencies=dm_node.id) | |
| cond_goal = Condition(type="Always") | |
| cond_pm = Condition(type="Always") | |
| cond_pattern = Condition( | |
| type="And", | |
| dependencies=[ | |
| Condition(type="EveryNCalls", dependencies=retrieval_node.id, n=1), | |
| Condition(type="EveryNCalls", dependencies=goal_node.id, n=1), | |
| Condition(type="EveryNCalls", dependencies=dm_node.id, n=1), | |
| ], | |
| ) |
Should
| Condition(type="EveryNCalls", dependencies=dm_node.id, n=1), |
be
Condition(type="EveryNCalls", dependencies=pm_node.id, n=1), instead? There's an edge from pm_node (not dm_node) to pattern_node.
Metadata
Metadata
Assignees
Labels
No labels