Skip to content

Commit

Permalink
rename experiment_runner to run in abstract equation runner
Browse files Browse the repository at this point in the history
  • Loading branch information
younesStrittmatter committed Dec 9, 2023
1 parent c51c9c8 commit 8a9e2fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@
"\n",
"#### Equation Experiment Method ####\n",
"sin_experiment = equation_experiment(sp.simplify('sin(x)'), variables.independent_variables, variables.dependent_variables[0])\n",
"sin_runner = sin_experiment.experiment_runner\n",
"sin_runner = sin_experiment.run\n",
"\n",
"experiment_runner = on_state(sin_runner, output=[\"experiment_data\"])"
]
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/basic/Tutorial IV Customization.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
"\n",
"#### Define experiment runner and wrap with state functionality ####\n",
"sin_experiment = equation_experiment(sp.simplify('sin(x)'), variables.independent_variables, variables.dependent_variables[0])\n",
"sin_runner = sin_experiment.experiment_runner\n",
"sin_runner = sin_experiment.run\n",
"\n",
"experiment_runner = on_state(sin_runner, output=[\"experiment_data\"])\n",
"\n",
Expand Down

0 comments on commit 8a9e2fd

Please sign in to comment.