diff --git a/src/neuromancer/dynamics/ode.py b/src/neuromancer/dynamics/ode.py index f7ddf7b3..12290514 100644 --- a/src/neuromancer/dynamics/ode.py +++ b/src/neuromancer/dynamics/ode.py @@ -287,7 +287,7 @@ def __init__(self, insize=2, outsize=2): def ode_equations(self, x): x1 = x[:, [0]] x2 = x[:, [-1]] - dx1 = 1.1 * x1 - 0.4*x1*x2 + dx1 = self.alpha*x1 - 0.4*x1*x2 dx2 = 0.1*x1*x2 - 0.4*x2 return torch.cat([dx1, dx2], dim=-1) @@ -423,4 +423,4 @@ def ode_equations(self, x, u): odes = {**ode_param_systems_auto, **ode_param_systems_nonauto, **ode_hybrid_systems_auto, - **ode_networked_systems} \ No newline at end of file + **ode_networked_systems}