# simopt **Repository Path**: ford25v6/simopt ## Basic Information - **Project Name**: simopt - **Description**: No description available - **Primary Language**: Python - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-01-21 - **Last Updated**: 2025-01-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ![SimOpt Logo](.github/resources/logo_full_magnifying_glass.png) ## About the Project 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. For the purposes of this project, we define simulation as a very general technique for estimating statistical measures of complex systems. A system is modeled as if the probability distributions of the underlying random variables were known. Realizations of these random variables are then drawn randomly from these distributions. Each replication gives one observation of the system response, i.e., an evaluation of the objective function or stochastic constraints. By simulating a system in this fashion for multiple replications and aggregating the responses, one can compute statistics and use them for evaluation and design. Several papers have discussed the development of SimOpt and experiments run on the testbed: * [Eckman et al. (2024)](https://ieeexplore.ieee.org/document/10408734) studies feasibility metrics for stochastically constrained simulation-optimization problems in preparation for introducing related metrics in SimOpt. * [Shashaani et al. (2024)](https://dl.acm.org/doi/10.1145/3680282) conducts a large data-farming experiment over solver factors to learn relationships between their settings and a solver's finite-time performance. * [Eckman et al. (2023)](https://pubsonline.informs.org/doi/10.1287/ijoc.2023.1273) is the most up-to-date publication about SimOpt and describes the code architecture and how users can interact with the library. * [Eckman et al. (2023)](https://pubsonline.informs.org/doi/10.1287/ijoc.2022.1261) introduces the design of experiments for comparing solvers; this design has been implemented in the latest Python version of SimOpt. For detailed description of the terminology used in the library, e.g., factors, macroreplications, post-processing, solvability plots, etc., see this paper. * [Eckman et al. (2019)](https://www.informs-sim.org/wsc19papers/374.pdf) describes in detail changes to the architecture of the MATLAB version of SimOpt and the control of random number streams. * [Dong et al. (2017)](https://www.informs-sim.org/wsc17papers/includes/files/179.pdf) conducts an experimental comparison of several solvers in SimOpt and analyzes their relative performance. * [Pasupathy and Henderson (2011)](https://www.informs-sim.org/wsc11papers/363.pdf) describes an earlier interface for MATLAB implementations of problems and solvers. * [Pasupathy and Henderson (2006)](https://www.informs-sim.org/wsc06papers/028.pdf) explains the original motivation for the testbed. ## Code ### Python - The [`master branch`](https://github.com/simopt-admin/simopt/tree/master) contains the source code for the latest stable release of the testbed - The [`development branch`](https://github.com/simopt-admin/simopt/tree/development) contains the latest code for the testbed, but may contain more bugs than the master branch ### Matlab > ⚠️ MATLAB versions of this testbed are no longer supported - The [`matlab branch`](https://github.com/simopt-admin/simopt/tree/matlab) contains a previous stable version of the testbed written in MATLAB ## Documentation Full documentation for the source code can be found on our **[readthedocs page](https://simopt.readthedocs.io/en/latest/index.html)**. [![Documentation Status](https://readthedocs.org/projects/simopt/badge/?version=latest)](https://simopt.readthedocs.io/en/latest/?badge=latest) ## Getting Started ### Requirements - Python >= 3.8 - To check your Python version, open a terminal and run `python --version`. If you see a message along the lines of `Command not found`, then you likely don't have Python installed. If you know you have it installed but are getting a `Command not found` error, then you may need to [add Python to your PATH](https://realpython.com/add-python-to-path/). - For new installs, [Miniconda or Anaconda](https://www.anaconda.com/download) is recommended ([read about the differences between Miniconda and Anaconda](https://docs.anaconda.com/distro-or-miniconda/)). If you already have a compatible IDE (such as VS Code), we've found that Miniconda will work fine at 1/10 of the size of Anaconda. It is ***highly recommended*** to check the box during installation to add Python/Miniconda/Anaconda to your system PATH. - Ruby >= 2.5 (required for datafarming) - Included on MacOS, but Windows users will need to grab it from [here](https://rubyinstaller.org/). - `datafarming` gem < 2.0 (required for datafarming) - This can be installed via `gem install datafarming -v 1.4` once Ruby is installed/configured. - If experiencing issues, make sure that you are not using version 2.0 or later as those releases does not include the required files. - Python packages for `numpy`, `scipy`, `matplotlib`, `pandas`, `seaborn`, `sphinx`, `mrg32k3a`, and `jupyter`. - If using conda/miniconda, run `conda env create -f environment.yml` to create the `simopt` environment. Then run `conda activate simopt` to load the environment. - Otherwise, run `pip install numpy scipy matplotlib pandas seaborn sphinx mrg32k3a jupyter`. ### Downloading Source Code There are two ways to download a copy of the source code onto your machine: 1. Download the code in a zip file by clicking the green `<> Code` button above repo contents and clicking the `Download ZIP` option, then unzip the code to a folder on your computer. This does not require `git` to be installed but makes downloading updates to the repository more challenging. ![image](https://github.com/user-attachments/assets/3c45804c-f8b0-48ed-b32c-a443550c6ef5) 3. [Clone](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository) the branch you'd like to download to a folder on your computer. This requires `git` to be installed but makes downloading updates to the repository much easier. 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. The `demo` folder contains a handful of useful scripts that can be easily modified, as directed in the comments: | File | Description | | ---------------------------------------- | ----------- | | `demo_model.py` | Run multiple replications of a simulation model and report its responses | | `demo_problem.py` | Run multiple replications of a given solution for an SO problem and report its objective function values and left-hand sides of stochastic constraints | | `demo_problem_solver.py` | Run multiple macroreplications of a solver on a problem, save the outputs to a `.pickle` file in the `experiments/outputs` folder, and save plots of the results to `.png` files in the `experiments/plots` folder | | `demo_problems_solvers.py` | Run multiple macroreplications of groups of problem-solver pairs and save the outputs and plots | | `demo_data_farming_model.py` | Create a design over model factors, run multiple replications at each design point, and save the results to a comma separated value (`.csv`) file in the `data_farming_experiments` folder | | `demo_san-sscont-ironorecont_experiment` | Run multiple solvers on multiple versions of (s, S) inventory, iron ore, and stochastic activiy network problems and produce plots | ## Graphical User Interface (GUI) - User Guide ### Main Menu To open the GUI, run `python -m simopt`. This will launch the main menu. From the menu, you will be given 2 options: 1. Open the `Data Farm Models` window 2. Open the `Simulation Optimization Experiments` window ([read more](#simulation-optimization-experiments)) ### Simulation Optimization Experiments #### Overview From the GUI, you can create a specified **problem-solver pair** or a **problem-solver group**, run macroreplications, and generate plots. The main page provides ways to create or continue working with experiments: 1. Create an individual **problem-solver pair** with customized problem and solver factors. 2. Load a .pickle file of a previously created **problem-solver pair**. 3. Create a **problem-solver group**. At the bottom of the main page, there is a workspace containing all **problem-solver pair**s and **problem-solver group**s. The first tab lists the **problem-solver pair**s ready to be run or post-replicated, the second tab lists the **problem-solver group**s made from the cross-design or by generating a **problem-solver group** from partial set of **problem-solver pair** in the first tab, and the third tab lists those **problem-solver pair**s that are ready to be post-normalized and prepared for plotting. #### 1. Creating a **problem-solver pair** This is the main way to add **problem-solver pair**s to the queue in the workspace. 1. First, select a solver from the "Solver" dropdown list. Each of the solvers has an abbreviation for the type of problems the solver can handle. Once a solver is selected, the "Problem" list will be sorted and show only the problems that work with the selected solver. 2. Change factors associated with the solver as necessary. The first factor is a customizable name for the solver that use can specify. 3. All solvers with unique combinations of factors must have unique names, i.e., no two solvers can have the same name, but different factors. If you want to use the same solver twice for a problem but with different solver factors, make sure you change the name of the solver accordingly. For example, if you want to create two **problem-solver pair**s with the same problem and solver but with or without CRN for the solver, you can change the name of the solver of choice for each pair to reflect that. This name will appear in the queue within the workspace below. 4. Select a problem from the "Problem" dropdown list. Each problem has an abbreviation indicating which types of solver is compatible to solve it. The letters in the abbreviation stand for: | Objective | Constraint | Variable | Direct Gradient Observations | | ------------ | ----------------- | -------------- | ---------------------------- | | Single (S) | Unconstrained (U) | Discrete (D) | Available (G) | | Multiple (M) | Box (B) | Continuous (C) | Not Available (N) | | | Deterministic (D) | Mixed (M) | | | | Stochastic (S) | | | 6. Change factors associated with the problem and model as necessary. 7. All problems with unique factors must have unique names, i.e., no two problems can have the same name, but different factors. If you want to use the same problem twice for a solver but with different problem or model factors, make sure you change the name of the problem accordingly. This name will appear in the queue within the workspace below. 8. The number of macroreplications can be modified in the top-left corner. The default is 10. 9. Select the "Add **problem-solver pair**" button, which only appears when a solver and problem is selected. The **problem-solver pair** will be added in the "Queue of **problem-solver pair**s." #### 2. Loading a **problem-solver pair** from a file Instead of creating a **problem-solver pair** from scratch, you can load one from a \*.pickle file: 1. In the top left corner, click "Load a **problem-solver pair**". Your file system will pop up, and you can navigate to and select an appropriate \*.pickle file. The GUI will throw an error if the selected file is not a \*.pickle file. 2. Once a **problem-solver pair** object is loaded, it will be added to the "Queue of **problem-solver pair**s". 3. The Run and Post-Process buttons will be updated to accurately reflect whether the **problem-solver pair** has already been run and/or post-processed. #### 3. Creating a **problem-solver group** Currently, **problem-solver group**s can only be created within the GUI or command line; they cannot be loaded from a file. You can create a **problem-solver group** and add a new item to the "Queue of **problem-solver group**s" in two ways. The first is a quick grouping of problems and solvers that are compatible with their default factors: of problems and solvers with their default factors. 1. Click the "Create a **problem-solver group**" button. 2. Check the compatibility of the Problems and Solvers being selected. Note that solvers with deterministic constraint type can not handle problems with stochastic constraints (e.g., ASTRO-DF cannot be run on FACSIZE-2). 3. Specify the number of macroreplications - the default is 10. 4. Click "Confirm Cross-Design **problem-solver group**." 5. The pop-up window will disappear, and the **problem-solver pair**s frame will automatically switch to the "Queue of **problem-solver group**s". 6. To exit out of the **problem-solver group** pop-up without creating a **problem-solver group**, click the red "x" in the top-left corner of the window. The second is converting a list of **problem-solver pair**s into a **problem-solver group** by a cross-design: 1. Select the **problem-solver pair**s of interest from the "Queue of **problem-solver pair**s". 2. Clicking the "Convert to a **problem-solver group**" button. This will complete the cross-design for the partial list and create a new row in the "Queue of **problem-solver group**s". ### Running a **problem-solver pair** or a **problem-solver group** To run a **problem-solver pair** or a **problem-solver group**, click the "Run" button in the "Queue of **problem-solver pair**s" or "Queue of **problem-solver group**s". Once the **problem-solver pair** or **problem-solver group** has been run, the "Run" button becomes disabled. **Note:** Running a **problem-solver pair** can take anywhere from a couple of seconds to a couple of minutes depending on the **problem-solver pair** and the number of macroreplications. ### Post-Processing and Post-Normalization Post-processing happens before post-normalizing and after the run is complete. You can specify the number of post-replications and the (proxy) optimal solution or function value. After post-normalization is complete, the Plotting window appears. To exit out of the Post-Process/Normalize pop-up without post-processing or post-normalizing, click the red "x" in the top-left corner of the window. #### - **problem-solver pair** **problem-solver pair**s can be post-processed from the "Queue of **problem-solver pair**s" tab by clicking "Post-Process." Adjust Post-Processing factors as necessary. Only **problem-solver pair**s that have already been run can be post-processed. After post-processing, click the "Post-Normalize by Problem" tab to select which **problem-solver pair**s to post-normalize together. * Only **problem-solver pair**s with the same problem can be post-normalized together. * Once all **problem-solver pair**s of interest are selected, click the "Post-Normalize Selected" button at the bottom of the GUI (this button only appears when in the Post-Normalize tab). * In the new pop-up form, update any values necessary and click "Post-Normalize" when the **problem-solver pair**s are ready to be post-normalized. #### - **problem-solver group** **problem-solver group**s are post-processed and post-normalized at the same time. In the "Queue of **problem-solver group**s" tab, click the "Post-Process" button for the specific **problem-solver group**, then change any values necessary, then click "Post-Process". ### Plotting The Plotting page is identical for both **problem-solver pair**s and **problem-solver group**s. Currently, multiple **problem-solver pair**s with the same problem can be plotted together, and any problem-solver pair from a single **problem-solver group** can be plotted together: 1. On the left side, select one or more problems from the problem list. 2. Select solvers from the solver list. 3. On the right side, select a plot type and adjust plot parameters and settings. There are 5 settings common to most plot types: Confidence Intervals, Number of Bootstrap Samples, Confidence Level, Plot Together, and Print Max HW. The type of plots that are currently available in the GUI are: Mean Progress Curve, Quantile Progress Curve, Solve Time CDF, Scatter Plot, CDF Solvability, Quantile Solvability, CDF Difference Plot, Quantile Difference Plot, Terminal Box/Violin, and Terminal Scatter. 4. Click "Add." 5. All plots will show in the plotting queue, along with information about their parameters and where the file is saved. 6. To view one plot, click "View Plot." All plots can be viewed together by clicking "See All Plots" at the bottom of the page. 7. To return to the main page, click the red "x" in the top-left corner of the window. ## Package The `simoptlib` package is available to download through the Python Packaging Index (PyPI) and can be installed from the terminal with the following command: ``` python -m pip install simoptlib ``` ## Basic Example After installing `simoptlib`, the package's main modules can be imported from the Python console (or in code): ``` import simopt from simopt import models, solvers, experiment_base ``` The following snippet of code will run 10 macroreplications of the Random Search solver ("RNDSRCH") on the Continuous Newsvendor problem ("CNTNEWS-1"): ``` myexperiment = simopt.experiment_base.ProblemSolver("RNDSRCH", "CNTNEWS-1") myexperiment.run(n_macroreps=10) ``` 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: ``` myexperiment.post_replicate(n_postreps=200) simopt.experiment_base.post_normalize([myexperiment], n_postreps_init_opt=200) ``` A .txt file summarizing the progress of the solver on each macroreplication can be produced: ``` myexperiment.log_experiment_results() ``` A .txt file called `RNDSRCH_on_CNTNEWS-1_experiment_results.txt` will be saved in a folder called `experiments/logs`. One can then plot the mean progress curve of the solver (with confidence intervals) with the objective function values shown on the y-axis: ``` simopt.experiment_base.plot_progress_curves(experiments=[myexperiment], plot_type="mean", normalize=False) ``` The Python scripts in the `demo` folder provide more guidance on how to run common experiments using the library. One can also use the SimOpt graphical user interface by running the following from the terminal: ``` python -m simopt ``` ## Contributing You can contribute problems and solvers to SimOpt (or fix other coding bugs) by [forking](https://docs.github.com/en/get-started/quickstart/fork-a-repo) the repository and initiating [pull requests](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests) in GitHub to request that your changes be integrated. ## Authors The core development team currently consists of - [**David Eckman**](https://eckman.engr.tamu.edu) (Texas A&M University) - [**Sara Shashaani**](https://shashaani.wordpress.ncsu.edu) (North Carolina State University) - [**Shane Henderson**](https://people.orie.cornell.edu/shane/) (Cornell University) - [**William Grochocinski**](https://github.com/Grochocinski) (North Carolina State University) ## Citation To cite this work, please use ``` @misc{simoptgithub, author = {D. J. Eckman and S. G. Henderson and S. Shashaani and R. Pasupathy}, title = {{SimOpt}}, year = {2024}, publisher = {GitHub}, journal = {GitHub repository}, howpublished = {\url{https://github.com/simopt-admin/simopt}}, commit = {21802a685ec394fed048820e692209628f40dd4e} } ``` ## Acknowledgments An earlier website for SimOpt ([http://www.simopt.org](http://www.simopt.org)) was developed through work supported by the following grants: - National Science Foundation - [DMI-0400287](https://www.nsf.gov/awardsearch/showAward?AWD_ID=0400287) - [CMMI-0800688](https://www.nsf.gov/awardsearch/showAward?AWD_ID=0800688) - [CMMI-1200315](https://www.nsf.gov/awardsearch/showAward?AWD_ID=1200315) Recent work on the development of SimOpt has been supported by the following grants - National Science Foundation - [IIS-1247696](https://www.nsf.gov/awardsearch/showAward?AWD_ID=1247696) - [CMMI-1254298](https://www.nsf.gov/awardsearch/showAward?AWD_ID=1254298) - [CMMI-1536895](https://www.nsf.gov/awardsearch/showAward?AWD_ID=1536895) - [CMMI-1537394](https://www.nsf.gov/awardsearch/showAward?AWD_ID=1537394) - [DGE-1650441](https://www.nsf.gov/awardsearch/showAward?AWD_ID=1650441) - [DMS-1839346](https://www.nsf.gov/awardsearch/showAward?AWD_ID=1839346) (TRIPODS+X) - [CMMI-2206972](https://www.nsf.gov/awardsearch/showAward?AWD_ID=2206972) - [OAC-2410948](https://www.nsf.gov/awardsearch/showAward?AWD_ID=2410948) - [OAC-2410949](https://www.nsf.gov/awardsearch/showAward?AWD_ID=2410949) - [OAC-2410950](https://www.nsf.gov/awardsearch/showAward?AWD_ID=2410950) - Air Force Office of Scientific Research - FA9550-12-1-0200 - FA9550-15-1-0038 - FA9550-16-1-0046 - Army Research Office - W911NF-17-1-0094 *Any opinions, findings and conclusions or recommendations expressed in this material are those of the authors and do not necessarily reflect the views of the National Science Foundation (NSF).*