Skip to content

Commit 9899b89

Browse files
committed
Fix links to Pyomo docs
1 parent 9e9d1d3 commit 9899b89

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

notebooks/01/02-production-planning-basic.ipynb

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
"\n",
2626
"This notebook introduces basic elements of Pyomo common to most applications for the small production planning problem introduced earlier in [this notebook](01-production-planning.ipynb) introduced in a companion notebook:\n",
2727
"\n",
28-
"* [Variables](https://pyomo.readthedocs.io/en/latest/pyomo_modeling_components/Variables.html)\n",
29-
"* [Expressions](https://pyomo.readthedocs.io/en/latest/pyomo_modeling_components/Expressions.html)\n",
30-
"* [Objectives](https://pyomo.readthedocs.io/en/latest/pyomo_modeling_components/Objectives.html)\n",
31-
"* [Constraints](https://pyomo.readthedocs.io/en/latest/pyomo_modeling_components/Constraints.html)\n",
32-
"* [SolverFactory](https://pyomo.readthedocs.io/en/stable/solving_pyomo_models.html)\n",
28+
"* [Variables](https://pyomo.readthedocs.io/en/6.8.0/pyomo_modeling_components/Variables.html)\n",
29+
"* [Expressions](https://pyomo.readthedocs.io/en/6.8.0/pyomo_modeling_components/Expressions.html)\n",
30+
"* [Objectives](https://pyomo.readthedocs.io/en/6.8.0/pyomo_modeling_components/Objectives.html)\n",
31+
"* [Constraints](https://pyomo.readthedocs.io/en/6.8.0/pyomo_modeling_components/Constraints.html)\n",
32+
"* [SolverFactory](https://pyomo.readthedocs.io/en/6.8.0/solving_pyomo_models.html)\n",
3333
"\n",
3434
"The Pyomo model shown below is a direct translation of the mathematical model into basic Pyomo components. In this approach, parameter values from the mathematical model are included directly in the Pyomo model for simplicity. This method works well for problems with a few decision variables and constraints, but it limits the reuse of the model. Another notebook will demonstrate Pyomo features for writing models for more generic, \"data-driven\" applications.\n",
3535
"\n",

notebooks/01/03-production-planning-advanced.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
"\n",
2727
"The additional Pyomo components used in this notebook are:\n",
2828
"\n",
29-
"* [Sets](https://pyomo.readthedocs.io/en/latest/pyomo_modeling_components/Sets.html)\n",
30-
"* [Parameters](https://pyomo.readthedocs.io/en/latest/pyomo_modeling_components/Parameters.html)\n",
29+
"* [Sets](https://pyomo.readthedocs.io/en/6.8.0/pyomo_modeling_components/Sets.html)\n",
30+
"* [Parameters](https://pyomo.readthedocs.io/en/6.8.0/pyomo_modeling_components/Parameters.html)\n",
3131
"\n",
3232
"These components enable the use indexed variables and constraints. The combination of sets and indices are essential to building scalable and maintainable models for more complex applications. \n",
3333
"\n",

0 commit comments

Comments
 (0)