├── .github └── workflows │ └── update-version.yml ├── .idea ├── .gitignore ├── PowerBiMIP.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── .readthedocs.yaml ├── LICENSE ├── README.md ├── VERSION.txt ├── config └── BiMIPsettings.m ├── docs ├── Makefile ├── build │ ├── doctrees │ │ ├── environment.pickle │ │ ├── getting_started.doctree │ │ ├── index.doctree │ │ └── installation.doctree │ └── html │ │ ├── .buildinfo │ │ ├── _sources │ │ ├── getting_started.md.txt │ │ ├── index.md.txt │ │ └── installation.md.txt │ │ ├── _static │ │ ├── PowerBiMIP_logo.svg │ │ ├── _sphinx_javascript_frameworks_compat.js │ │ ├── basic.css │ │ ├── css │ │ │ ├── badge_only.css │ │ │ ├── fonts │ │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── lato-bold-italic.woff │ │ │ │ ├── lato-bold-italic.woff2 │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-normal-italic.woff │ │ │ │ ├── lato-normal-italic.woff2 │ │ │ │ ├── lato-normal.woff │ │ │ │ └── lato-normal.woff2 │ │ │ └── theme.css │ │ ├── custom.css │ │ ├── debug.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── fonts │ │ │ ├── Lato │ │ │ │ ├── lato-bold.eot │ │ │ │ ├── lato-bold.ttf │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-bolditalic.eot │ │ │ │ ├── lato-bolditalic.ttf │ │ │ │ ├── lato-bolditalic.woff │ │ │ │ ├── lato-bolditalic.woff2 │ │ │ │ ├── lato-italic.eot │ │ │ │ ├── lato-italic.ttf │ │ │ │ ├── lato-italic.woff │ │ │ │ ├── lato-italic.woff2 │ │ │ │ ├── lato-regular.eot │ │ │ │ ├── lato-regular.ttf │ │ │ │ ├── lato-regular.woff │ │ │ │ └── lato-regular.woff2 │ │ │ └── RobotoSlab │ │ │ │ ├── roboto-slab-v7-bold.eot │ │ │ │ ├── roboto-slab-v7-bold.ttf │ │ │ │ ├── roboto-slab-v7-bold.woff │ │ │ │ ├── roboto-slab-v7-bold.woff2 │ │ │ │ ├── roboto-slab-v7-regular.eot │ │ │ │ ├── roboto-slab-v7-regular.ttf │ │ │ │ ├── roboto-slab-v7-regular.woff │ │ │ │ └── roboto-slab-v7-regular.woff2 │ │ ├── jquery.js │ │ ├── js │ │ │ ├── badge_only.js │ │ │ ├── theme.js │ │ │ └── versions.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── scripts │ │ │ ├── furo-extensions.js │ │ │ ├── furo.js │ │ │ ├── furo.js.LICENSE.txt │ │ │ └── furo.js.map │ │ ├── searchtools.js │ │ ├── skeleton.css │ │ ├── sphinx_highlight.js │ │ └── styles │ │ │ ├── furo-extensions.css │ │ │ ├── furo-extensions.css.map │ │ │ ├── furo.css │ │ │ └── furo.css.map │ │ ├── genindex.html │ │ ├── getting_started.html │ │ ├── index.html │ │ ├── installation.html │ │ ├── objects.inv │ │ ├── search.html │ │ └── searchindex.js ├── make.bat ├── requirements.txt └── source │ ├── _static │ ├── PowerBiMIP_logo.svg │ └── custom.css │ ├── conf.py │ ├── getting_started.md │ ├── index.md │ └── installation.md ├── examples └── toy_examples │ └── BiMIP_toy_example1.m └── src ├── core ├── master_problem_KKT.m ├── master_problem_quick.m ├── master_problem_strong_duality.m ├── optimistic_solver.m ├── pessimistic_solver.m ├── preprocess_bilevel_model.m ├── preprocess_bilevel_step.m ├── solve_BiMIP.m ├── solver_algorithm.m ├── subproblem1.m ├── subproblem2.m ├── transform_coupled_to_uncoupled.m └── transform_pessimistic_to_optimistic.m └── utils ├── extract_coefficients_and_variables.m ├── extract_lp_qp_model.m ├── has_coupled_constraints.m ├── myFun_GetValue.m ├── powerbimip_version.m ├── replicateVariables.m └── safe_subtract.m /.github/workflows/update-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/.github/workflows/update-version.yml -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/PowerBiMIP.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/.idea/PowerBiMIP.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/README.md -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- 1 | 0.0.1 -------------------------------------------------------------------------------- /config/BiMIPsettings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/config/BiMIPsettings.m -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/build/doctrees/getting_started.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/doctrees/getting_started.doctree -------------------------------------------------------------------------------- /docs/build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/build/doctrees/installation.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/doctrees/installation.doctree -------------------------------------------------------------------------------- /docs/build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/.buildinfo -------------------------------------------------------------------------------- /docs/build/html/_sources/getting_started.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_sources/getting_started.md.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/index.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_sources/index.md.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/installation.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_sources/installation.md.txt -------------------------------------------------------------------------------- /docs/build/html/_static/PowerBiMIP_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/PowerBiMIP_logo.svg -------------------------------------------------------------------------------- /docs/build/html/_static/_sphinx_javascript_frameworks_compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/_sphinx_javascript_frameworks_compat.js -------------------------------------------------------------------------------- /docs/build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/basic.css -------------------------------------------------------------------------------- /docs/build/html/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/css/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/css/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/css/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/build/html/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/css/theme.css -------------------------------------------------------------------------------- /docs/build/html/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/custom.css -------------------------------------------------------------------------------- /docs/build/html/_static/debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/debug.css -------------------------------------------------------------------------------- /docs/build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/build/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/file.png -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff -------------------------------------------------------------------------------- /docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 -------------------------------------------------------------------------------- /docs/build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/build/html/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/js/badge_only.js -------------------------------------------------------------------------------- /docs/build/html/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/js/theme.js -------------------------------------------------------------------------------- /docs/build/html/_static/js/versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/js/versions.js -------------------------------------------------------------------------------- /docs/build/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/build/html/_static/scripts/furo-extensions.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/build/html/_static/scripts/furo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/scripts/furo.js -------------------------------------------------------------------------------- /docs/build/html/_static/scripts/furo.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/scripts/furo.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/build/html/_static/scripts/furo.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/scripts/furo.js.map -------------------------------------------------------------------------------- /docs/build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/build/html/_static/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/skeleton.css -------------------------------------------------------------------------------- /docs/build/html/_static/sphinx_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/sphinx_highlight.js -------------------------------------------------------------------------------- /docs/build/html/_static/styles/furo-extensions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/styles/furo-extensions.css -------------------------------------------------------------------------------- /docs/build/html/_static/styles/furo-extensions.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/styles/furo-extensions.css.map -------------------------------------------------------------------------------- /docs/build/html/_static/styles/furo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/styles/furo.css -------------------------------------------------------------------------------- /docs/build/html/_static/styles/furo.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/_static/styles/furo.css.map -------------------------------------------------------------------------------- /docs/build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/genindex.html -------------------------------------------------------------------------------- /docs/build/html/getting_started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/getting_started.html -------------------------------------------------------------------------------- /docs/build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/index.html -------------------------------------------------------------------------------- /docs/build/html/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/installation.html -------------------------------------------------------------------------------- /docs/build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/objects.inv -------------------------------------------------------------------------------- /docs/build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/search.html -------------------------------------------------------------------------------- /docs/build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/build/html/searchindex.js -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | myst-parser 2 | sphinx-rtd-theme -------------------------------------------------------------------------------- /docs/source/_static/PowerBiMIP_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/source/_static/PowerBiMIP_logo.svg -------------------------------------------------------------------------------- /docs/source/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/source/_static/custom.css -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/source/getting_started.md -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /docs/source/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/docs/source/installation.md -------------------------------------------------------------------------------- /examples/toy_examples/BiMIP_toy_example1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/examples/toy_examples/BiMIP_toy_example1.m -------------------------------------------------------------------------------- /src/core/master_problem_KKT.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/src/core/master_problem_KKT.m -------------------------------------------------------------------------------- /src/core/master_problem_quick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/src/core/master_problem_quick.m -------------------------------------------------------------------------------- /src/core/master_problem_strong_duality.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/src/core/master_problem_strong_duality.m -------------------------------------------------------------------------------- /src/core/optimistic_solver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/src/core/optimistic_solver.m -------------------------------------------------------------------------------- /src/core/pessimistic_solver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/src/core/pessimistic_solver.m -------------------------------------------------------------------------------- /src/core/preprocess_bilevel_model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/src/core/preprocess_bilevel_model.m -------------------------------------------------------------------------------- /src/core/preprocess_bilevel_step.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/src/core/preprocess_bilevel_step.m -------------------------------------------------------------------------------- /src/core/solve_BiMIP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/src/core/solve_BiMIP.m -------------------------------------------------------------------------------- /src/core/solver_algorithm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/src/core/solver_algorithm.m -------------------------------------------------------------------------------- /src/core/subproblem1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/src/core/subproblem1.m -------------------------------------------------------------------------------- /src/core/subproblem2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/src/core/subproblem2.m -------------------------------------------------------------------------------- /src/core/transform_coupled_to_uncoupled.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/src/core/transform_coupled_to_uncoupled.m -------------------------------------------------------------------------------- /src/core/transform_pessimistic_to_optimistic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/src/core/transform_pessimistic_to_optimistic.m -------------------------------------------------------------------------------- /src/utils/extract_coefficients_and_variables.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/src/utils/extract_coefficients_and_variables.m -------------------------------------------------------------------------------- /src/utils/extract_lp_qp_model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/src/utils/extract_lp_qp_model.m -------------------------------------------------------------------------------- /src/utils/has_coupled_constraints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/src/utils/has_coupled_constraints.m -------------------------------------------------------------------------------- /src/utils/myFun_GetValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/src/utils/myFun_GetValue.m -------------------------------------------------------------------------------- /src/utils/powerbimip_version.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/src/utils/powerbimip_version.m -------------------------------------------------------------------------------- /src/utils/replicateVariables.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/src/utils/replicateVariables.m -------------------------------------------------------------------------------- /src/utils/safe_subtract.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreatTM/PowerBiMIP/HEAD/src/utils/safe_subtract.m --------------------------------------------------------------------------------