Skip to content

Commit

Permalink
passed in all arguments to the FHNIntegrator where the LCControlMecha…
Browse files Browse the repository at this point in the history
…nism specifies FHN as its function in super().__init__
  • Loading branch information
KristenManning committed Sep 29, 2017
1 parent bce23b4 commit 1ea5333
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion PsyNeuLink/Library/Subsystems/AGT/LCControlMechanism.py
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,25 @@ def __init__(self,

super().__init__(system=system,
objective_mechanism=objective_mechanism,
function=FHNIntegrator,
function=FHNIntegrator(initial_v=initial_v_FHN,
initial_w=initial_w_FHN,
time_step_size=time_step_size_FHN,
t_0=t_0_FHN,
a_v=a_v_FHN,
b_v=b_v_FHN,
c_v=c_v_FHN,
d_v=d_v_FHN,
e_v=e_v_FHN,
f_v=f_v_FHN,
time_constant_v=time_constant_v_FHN,
a_w=a_w_FHN,
b_w=b_w_FHN,
c_w=c_w_FHN,
threshold=threshold_FHN,
mode=mode_FHN,
uncorrelated_activity=uncorrelated_activity_FHN,
time_constant_w=time_constant_w_FHN,
),
modulation=modulation,
params=params,
name=name,
Expand Down

0 comments on commit 1ea5333

Please sign in to comment.