Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
spiralulam committed Aug 13, 2023
1 parent 7d4a76d commit dbffa25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ This small example illustrates how to use ENTMOOT.
import random
# This is the function you want to minimize.
# In most use cases this will be something terribly complicated like a simulation or a real-world experiment
def my_func(x: float) -> float:
# randomly disturbed function f(x) = x^2 + 1 + eps
return x**2 + 1 + random.uniform(-0.2, 0.2)
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Gurobi or Pyomo?
-----------------
You can work with ENTMOOT using Gurobi or Pyomo.

* `Gurobi <https://www.gurobi.com/>`__ is a commercial mathematical optimization solver and very fast. Not only
* `Gurobi <https://www.gurobi.com/>`__ is a commercial mathematical optimization solver which is very fast. Not only
in solving the corresponding optimization problem but also in building it. Using Gurobi requires a valid license. Note
that Gurobi offers `free academic licenses <https://www.gurobi.com/academia/academic-program-and-licenses/>`__.
* `Pyomo <http://www.pyomo.org/>`__ is an open-source optimization modeling language with APIs to several commercial and
Expand Down

0 comments on commit dbffa25

Please sign in to comment.