You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SimOpt is a testbed of simulation-optimization problems and solvers. Its purpose is to encourage the development and constructive comparison of simulation-optimization (SO) solvers (algorithms). We are particularly interested in the finite-time performance of solvers, rather than the asymptotic results that one often finds in related literature.
@@ -36,7 +36,7 @@ Full documentation for the source code can be found on our **[readthedocs page](
36
36
- It is ***highly recommended*** to check the box during installation to add Python/Miniconda/Anaconda to your system PATH.
37
37
- If you know you have Python installed but are getting a `Command not found` error when trying to use Python commands, then you may need to [add Python to your PATH](https://realpython.com/add-python-to-path/).
- This is a lightweight IDE that is compatible with Miniconda and is recommended for running the GUI
39
+
- This is a lightweight IDE that is compatible with Miniconda.
40
40
-[Git](https://git-scm.com/downloads) (optional)
41
41
- If you don't have Git installed, you can download the code as a zip file instead
42
42
@@ -49,7 +49,7 @@ There are two ways to download a copy of the source code onto your machine:
49
49
50
50
If you do not need the source code for SimOpt, you may install the library as a Python package instead. See the [Package](#package) and [Basic Example](#basic-example) sections for more details about this option.
51
51
52
-
The `demo` folder contains a handful of useful scripts that can be easily modified, as directed in the comments:
52
+
The `notebooks` folder includes several useful Jupyter notebooks and scripts that are easy to customize. You can either run the scripts as standalone programs or open the notebooks in JupyterLab or VS Code. A description of the contents is provided below:
@@ -190,33 +190,37 @@ from simopt import models, solvers, experiment_base
190
190
```
191
191
192
192
The following snippet of code will run 10 macroreplications of the Random Search solver ("RNDSRCH") on the Continuous Newsvendor problem ("CNTNEWS-1"):
The results will be saved to a .pickle file in a folder called `experiments/outputs`. To post-process the results, by taking, for example 200 postreplications at each recommended solution, run the following:
0 commit comments