Skip to content

Commit 538977c

Browse files
committed
Remove new_version option.
1 parent 9499f4d commit 538977c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

wedoco_optimo/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def transfer_model(self, model: str, modelica_files=list[str], force_recompile:
3636

3737
# Define symbolic function from states and inputs to the system outputs and states
3838
# The inputs are also returned to read them as they are perceived by the model
39-
self.f_xu_xyu = self.dae.create("f_xu_xyu", ["x", "u"], ["ode", "y", "u"], {"new_forward": False})
39+
self.f_xu_xyu = self.dae.create("f_xu_xyu", ["x", "u"], ["ode", "y", "u"])
4040

4141
# Define the time grid
4242
self.define_time_grid(start_time=0.0, end_time=10.0, dt=0.1)

0 commit comments

Comments
 (0)