|
# 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.
MDF/src/modeci_mdf/interfaces/actr/importer.py
Lines 203 to 215 in 2e9cd9c
Should
MDF/src/modeci_mdf/interfaces/actr/importer.py
Line 213 in 2e9cd9c
be
instead? There's an edge from pm_node (not dm_node) to pattern_node.