├── .gitignore ├── IJKLM ├── IJKLM.gms ├── IJKLM.jl ├── data_generation.py ├── run_gams.py ├── run_gurobipy.py ├── run_jump.py └── run_pyomo.py ├── README.md ├── cartesian_IJKLM.py ├── help.py ├── main_IJKLM.py ├── main_suppy_chain.py ├── plots ├── IJKLM │ ├── model_performance.png │ └── solve_performance.png ├── cartesian_IJKLM │ └── model_performance.png └── supply_chain │ ├── model_performance.png │ └── solve_performance.png ├── supply_chain ├── data_generation.py ├── run_gams.py ├── run_gurobipy.py ├── run_jump.py ├── run_pyomo.py ├── supply_chain.gms └── supply_chain.jl └── visualization.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/.gitignore -------------------------------------------------------------------------------- /IJKLM/IJKLM.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/IJKLM/IJKLM.gms -------------------------------------------------------------------------------- /IJKLM/IJKLM.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/IJKLM/IJKLM.jl -------------------------------------------------------------------------------- /IJKLM/data_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/IJKLM/data_generation.py -------------------------------------------------------------------------------- /IJKLM/run_gams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/IJKLM/run_gams.py -------------------------------------------------------------------------------- /IJKLM/run_gurobipy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/IJKLM/run_gurobipy.py -------------------------------------------------------------------------------- /IJKLM/run_jump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/IJKLM/run_jump.py -------------------------------------------------------------------------------- /IJKLM/run_pyomo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/IJKLM/run_pyomo.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/README.md -------------------------------------------------------------------------------- /cartesian_IJKLM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/cartesian_IJKLM.py -------------------------------------------------------------------------------- /help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/help.py -------------------------------------------------------------------------------- /main_IJKLM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/main_IJKLM.py -------------------------------------------------------------------------------- /main_suppy_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/main_suppy_chain.py -------------------------------------------------------------------------------- /plots/IJKLM/model_performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/plots/IJKLM/model_performance.png -------------------------------------------------------------------------------- /plots/IJKLM/solve_performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/plots/IJKLM/solve_performance.png -------------------------------------------------------------------------------- /plots/cartesian_IJKLM/model_performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/plots/cartesian_IJKLM/model_performance.png -------------------------------------------------------------------------------- /plots/supply_chain/model_performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/plots/supply_chain/model_performance.png -------------------------------------------------------------------------------- /plots/supply_chain/solve_performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/plots/supply_chain/solve_performance.png -------------------------------------------------------------------------------- /supply_chain/data_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/supply_chain/data_generation.py -------------------------------------------------------------------------------- /supply_chain/run_gams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/supply_chain/run_gams.py -------------------------------------------------------------------------------- /supply_chain/run_gurobipy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/supply_chain/run_gurobipy.py -------------------------------------------------------------------------------- /supply_chain/run_jump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/supply_chain/run_jump.py -------------------------------------------------------------------------------- /supply_chain/run_pyomo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/supply_chain/run_pyomo.py -------------------------------------------------------------------------------- /supply_chain/supply_chain.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/supply_chain/supply_chain.gms -------------------------------------------------------------------------------- /supply_chain/supply_chain.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/supply_chain/supply_chain.jl -------------------------------------------------------------------------------- /visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justine18/performance_experiment/HEAD/visualization.py --------------------------------------------------------------------------------