├── .coveragerc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build_wheels.yml │ ├── coverage.yml │ ├── generate_docs.yml │ ├── integration-test.yml │ ├── test-release.yml │ └── update-packages-and-documentation.yml ├── .gitignore ├── .landscape.yml ├── .readthedocs.yaml ├── CHANGELOG.md ├── CITATION.bib ├── CODE_OF_CONDUCT.md ├── INSTALL.md ├── LICENSE ├── README.md ├── RELEASE.md ├── docs ├── Makefile ├── _static │ ├── scip_structure_landscape-compressed.png │ └── skippy_logo_blue.png ├── api.rst ├── api │ ├── column.rst │ ├── constraint.rst │ ├── event.rst │ ├── model.rst │ ├── node.rst │ ├── row.rst │ └── variable.rst ├── build.rst ├── conf.py ├── contributors.rst ├── extend.rst ├── faq.rst ├── index.rst ├── install.rst ├── requirements.txt ├── similarsoftware.rst ├── tutorials │ ├── branchrule.rst │ ├── constypes.rst │ ├── cutselector.rst │ ├── eventhandler.rst │ ├── expressions.rst │ ├── heuristic.rst │ ├── iis.rst │ ├── index.rst │ ├── lazycons.rst │ ├── logfile.rst │ ├── matrix.rst │ ├── model.rst │ ├── nodeselector.rst │ ├── readwrite.rst │ ├── scipdex.rst │ ├── separator.rst │ └── vartypes.rst └── whyscip.rst ├── examples ├── finished │ ├── __init__.py │ ├── atsp.py │ ├── bpp.py │ ├── categorical_data.py │ ├── diet.py │ ├── eoq_en.py │ ├── even.py │ ├── flp-benders.py │ ├── flp.py │ ├── gcp.py │ ├── gcp_fixed_k.py │ ├── kmedian.py │ ├── lo_wines.py │ ├── logical.py │ ├── lotsizing_lazy.py │ ├── markowitz_soco.py │ ├── mctransp.py │ ├── mkp.py │ ├── nodesel_hybridestim.py │ ├── pfs.py │ ├── piecewise.py │ ├── plot_primal_dual_evolution.py │ ├── prodmix_soco.py │ ├── rcs.py │ ├── read_tsplib.py │ ├── ssa.py │ ├── ssp.py │ ├── sudoku.py │ ├── transp.py │ ├── transp_nofn.py │ ├── tsp.py │ └── weber_soco.py ├── tutorial │ ├── even.py │ ├── logical.py │ └── puzzle.py └── unfinished │ ├── cutstock.py │ ├── diet_std.py │ ├── eld.py │ ├── eoq_soco.py │ ├── flp_nonlinear.py │ ├── flp_nonlinear_soco.py │ ├── gpp.py │ ├── kcenter.py │ ├── kcenter_binary_search.py │ ├── lotsizing.py │ ├── lotsizing_cut.py │ ├── lotsizing_echelon.py │ ├── mctransp_tuplelist.py │ ├── pareto_front.py │ ├── portfolio_soco.py │ ├── read_tsplib.py │ ├── scheduling.py │ ├── staff_sched.py │ ├── staff_sched_mo.py │ ├── tsp_flow.py │ ├── tsp_lazy.py │ ├── tsp_mo.py │ ├── tsptw.py │ ├── vrp.py │ └── vrp_lazy.py ├── generate-docs.sh ├── pyproject.toml ├── requirements ├── coverage.txt └── test.txt ├── setup.cfg ├── setup.py ├── src └── pyscipopt │ ├── Multidict.py │ ├── __init__.py │ ├── _version.py │ ├── benders.pxi │ ├── benderscut.pxi │ ├── branchrule.pxi │ ├── conshdlr.pxi │ ├── cutsel.pxi │ ├── event.pxi │ ├── expr.pxi │ ├── heuristic.pxi │ ├── iisfinder.pxi │ ├── lp.pxi │ ├── matrix.pxi │ ├── nodesel.pxi │ ├── presol.pxi │ ├── pricer.pxi │ ├── propagator.pxi │ ├── py.typed │ ├── reader.pxi │ ├── recipes │ ├── README.md │ ├── __init__.py │ ├── getLocalConss.py │ ├── infeasibilities.py │ ├── nonlinear.py │ ├── piecewise.py │ └── primal_dual_evolution.py │ ├── relax.pxi │ ├── scip.pxd │ ├── scip.pxi │ ├── scip.pyi │ ├── scip.pyx │ └── sepa.pxi └── tests ├── data ├── 10teams.mps ├── readStatistics.stats └── test_locale.cip ├── helpers └── utils.py ├── test_alldiff.py ├── test_benders.py ├── test_bipartite.py ├── test_branch_mostinfeas.py ├── test_branch_probing_lp.py ├── test_cons.py ├── test_conshdlr.py ├── test_copy.py ├── test_customizedbenders.py ├── test_cutsel.py ├── test_event.py ├── test_expr.py ├── test_gomory.py ├── test_heur.py ├── test_iis.py ├── test_knapsack.py ├── test_linexpr.py ├── test_logical.py ├── test_lp.py ├── test_matrix_variable.py ├── test_memory.py ├── test_model.py ├── test_nlrow.py ├── test_node.py ├── test_node_methods.py ├── test_nodesel.py ├── test_nogil.py ├── test_nonlinear.py ├── test_numerics.py ├── test_pricer.py ├── test_quadcons.py ├── test_quickprod.py ├── test_quicksum.py ├── test_reader.py ├── test_recipe_getLocalConss.py ├── test_recipe_infeasibilities.py ├── test_recipe_nonlinear.py ├── test_recipe_piecewise.py ├── test_recipe_primal_dual_evolution.py ├── test_relax.py ├── test_reopt.py ├── test_row_dual.py ├── test_short.py ├── test_solution.py ├── test_statistics.py ├── test_strong_branching.py ├── test_sub_sol.py ├── test_tree.py ├── test_tsp.py └── test_vars.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build_wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/.github/workflows/build_wheels.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/generate_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/.github/workflows/generate_docs.yml -------------------------------------------------------------------------------- /.github/workflows/integration-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/.github/workflows/integration-test.yml -------------------------------------------------------------------------------- /.github/workflows/test-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/.github/workflows/test-release.yml -------------------------------------------------------------------------------- /.github/workflows/update-packages-and-documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/.github/workflows/update-packages-and-documentation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/.gitignore -------------------------------------------------------------------------------- /.landscape.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/.landscape.yml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/CITATION.bib -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/RELEASE.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/scip_structure_landscape-compressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/_static/scip_structure_landscape-compressed.png -------------------------------------------------------------------------------- /docs/_static/skippy_logo_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/_static/skippy_logo_blue.png -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/api/column.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/api/column.rst -------------------------------------------------------------------------------- /docs/api/constraint.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/api/constraint.rst -------------------------------------------------------------------------------- /docs/api/event.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/api/event.rst -------------------------------------------------------------------------------- /docs/api/model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/api/model.rst -------------------------------------------------------------------------------- /docs/api/node.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/api/node.rst -------------------------------------------------------------------------------- /docs/api/row.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/api/row.rst -------------------------------------------------------------------------------- /docs/api/variable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/api/variable.rst -------------------------------------------------------------------------------- /docs/build.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/build.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/contributors.rst -------------------------------------------------------------------------------- /docs/extend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/extend.rst -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/similarsoftware.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/similarsoftware.rst -------------------------------------------------------------------------------- /docs/tutorials/branchrule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/tutorials/branchrule.rst -------------------------------------------------------------------------------- /docs/tutorials/constypes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/tutorials/constypes.rst -------------------------------------------------------------------------------- /docs/tutorials/cutselector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/tutorials/cutselector.rst -------------------------------------------------------------------------------- /docs/tutorials/eventhandler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/tutorials/eventhandler.rst -------------------------------------------------------------------------------- /docs/tutorials/expressions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/tutorials/expressions.rst -------------------------------------------------------------------------------- /docs/tutorials/heuristic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/tutorials/heuristic.rst -------------------------------------------------------------------------------- /docs/tutorials/iis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/tutorials/iis.rst -------------------------------------------------------------------------------- /docs/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/tutorials/index.rst -------------------------------------------------------------------------------- /docs/tutorials/lazycons.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/tutorials/lazycons.rst -------------------------------------------------------------------------------- /docs/tutorials/logfile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/tutorials/logfile.rst -------------------------------------------------------------------------------- /docs/tutorials/matrix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/tutorials/matrix.rst -------------------------------------------------------------------------------- /docs/tutorials/model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/tutorials/model.rst -------------------------------------------------------------------------------- /docs/tutorials/nodeselector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/tutorials/nodeselector.rst -------------------------------------------------------------------------------- /docs/tutorials/readwrite.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/tutorials/readwrite.rst -------------------------------------------------------------------------------- /docs/tutorials/scipdex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/tutorials/scipdex.rst -------------------------------------------------------------------------------- /docs/tutorials/separator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/tutorials/separator.rst -------------------------------------------------------------------------------- /docs/tutorials/vartypes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/tutorials/vartypes.rst -------------------------------------------------------------------------------- /docs/whyscip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/docs/whyscip.rst -------------------------------------------------------------------------------- /examples/finished/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/finished/atsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/atsp.py -------------------------------------------------------------------------------- /examples/finished/bpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/bpp.py -------------------------------------------------------------------------------- /examples/finished/categorical_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/categorical_data.py -------------------------------------------------------------------------------- /examples/finished/diet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/diet.py -------------------------------------------------------------------------------- /examples/finished/eoq_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/eoq_en.py -------------------------------------------------------------------------------- /examples/finished/even.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/even.py -------------------------------------------------------------------------------- /examples/finished/flp-benders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/flp-benders.py -------------------------------------------------------------------------------- /examples/finished/flp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/flp.py -------------------------------------------------------------------------------- /examples/finished/gcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/gcp.py -------------------------------------------------------------------------------- /examples/finished/gcp_fixed_k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/gcp_fixed_k.py -------------------------------------------------------------------------------- /examples/finished/kmedian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/kmedian.py -------------------------------------------------------------------------------- /examples/finished/lo_wines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/lo_wines.py -------------------------------------------------------------------------------- /examples/finished/logical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/logical.py -------------------------------------------------------------------------------- /examples/finished/lotsizing_lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/lotsizing_lazy.py -------------------------------------------------------------------------------- /examples/finished/markowitz_soco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/markowitz_soco.py -------------------------------------------------------------------------------- /examples/finished/mctransp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/mctransp.py -------------------------------------------------------------------------------- /examples/finished/mkp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/mkp.py -------------------------------------------------------------------------------- /examples/finished/nodesel_hybridestim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/nodesel_hybridestim.py -------------------------------------------------------------------------------- /examples/finished/pfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/pfs.py -------------------------------------------------------------------------------- /examples/finished/piecewise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/piecewise.py -------------------------------------------------------------------------------- /examples/finished/plot_primal_dual_evolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/plot_primal_dual_evolution.py -------------------------------------------------------------------------------- /examples/finished/prodmix_soco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/prodmix_soco.py -------------------------------------------------------------------------------- /examples/finished/rcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/rcs.py -------------------------------------------------------------------------------- /examples/finished/read_tsplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/read_tsplib.py -------------------------------------------------------------------------------- /examples/finished/ssa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/ssa.py -------------------------------------------------------------------------------- /examples/finished/ssp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/ssp.py -------------------------------------------------------------------------------- /examples/finished/sudoku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/sudoku.py -------------------------------------------------------------------------------- /examples/finished/transp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/transp.py -------------------------------------------------------------------------------- /examples/finished/transp_nofn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/transp_nofn.py -------------------------------------------------------------------------------- /examples/finished/tsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/tsp.py -------------------------------------------------------------------------------- /examples/finished/weber_soco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/finished/weber_soco.py -------------------------------------------------------------------------------- /examples/tutorial/even.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/tutorial/even.py -------------------------------------------------------------------------------- /examples/tutorial/logical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/tutorial/logical.py -------------------------------------------------------------------------------- /examples/tutorial/puzzle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/tutorial/puzzle.py -------------------------------------------------------------------------------- /examples/unfinished/cutstock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/cutstock.py -------------------------------------------------------------------------------- /examples/unfinished/diet_std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/diet_std.py -------------------------------------------------------------------------------- /examples/unfinished/eld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/eld.py -------------------------------------------------------------------------------- /examples/unfinished/eoq_soco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/eoq_soco.py -------------------------------------------------------------------------------- /examples/unfinished/flp_nonlinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/flp_nonlinear.py -------------------------------------------------------------------------------- /examples/unfinished/flp_nonlinear_soco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/flp_nonlinear_soco.py -------------------------------------------------------------------------------- /examples/unfinished/gpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/gpp.py -------------------------------------------------------------------------------- /examples/unfinished/kcenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/kcenter.py -------------------------------------------------------------------------------- /examples/unfinished/kcenter_binary_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/kcenter_binary_search.py -------------------------------------------------------------------------------- /examples/unfinished/lotsizing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/lotsizing.py -------------------------------------------------------------------------------- /examples/unfinished/lotsizing_cut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/lotsizing_cut.py -------------------------------------------------------------------------------- /examples/unfinished/lotsizing_echelon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/lotsizing_echelon.py -------------------------------------------------------------------------------- /examples/unfinished/mctransp_tuplelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/mctransp_tuplelist.py -------------------------------------------------------------------------------- /examples/unfinished/pareto_front.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/pareto_front.py -------------------------------------------------------------------------------- /examples/unfinished/portfolio_soco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/portfolio_soco.py -------------------------------------------------------------------------------- /examples/unfinished/read_tsplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/read_tsplib.py -------------------------------------------------------------------------------- /examples/unfinished/scheduling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/scheduling.py -------------------------------------------------------------------------------- /examples/unfinished/staff_sched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/staff_sched.py -------------------------------------------------------------------------------- /examples/unfinished/staff_sched_mo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/staff_sched_mo.py -------------------------------------------------------------------------------- /examples/unfinished/tsp_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/tsp_flow.py -------------------------------------------------------------------------------- /examples/unfinished/tsp_lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/tsp_lazy.py -------------------------------------------------------------------------------- /examples/unfinished/tsp_mo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/tsp_mo.py -------------------------------------------------------------------------------- /examples/unfinished/tsptw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/tsptw.py -------------------------------------------------------------------------------- /examples/unfinished/vrp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/vrp.py -------------------------------------------------------------------------------- /examples/unfinished/vrp_lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/examples/unfinished/vrp_lazy.py -------------------------------------------------------------------------------- /generate-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/generate-docs.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements/coverage.txt: -------------------------------------------------------------------------------- 1 | -r ./test.txt 2 | coverage>=7 3 | cython>=3 4 | -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/requirements/test.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/setup.py -------------------------------------------------------------------------------- /src/pyscipopt/Multidict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/Multidict.py -------------------------------------------------------------------------------- /src/pyscipopt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/__init__.py -------------------------------------------------------------------------------- /src/pyscipopt/_version.py: -------------------------------------------------------------------------------- 1 | __version__: str = '6.0.0' 2 | -------------------------------------------------------------------------------- /src/pyscipopt/benders.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/benders.pxi -------------------------------------------------------------------------------- /src/pyscipopt/benderscut.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/benderscut.pxi -------------------------------------------------------------------------------- /src/pyscipopt/branchrule.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/branchrule.pxi -------------------------------------------------------------------------------- /src/pyscipopt/conshdlr.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/conshdlr.pxi -------------------------------------------------------------------------------- /src/pyscipopt/cutsel.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/cutsel.pxi -------------------------------------------------------------------------------- /src/pyscipopt/event.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/event.pxi -------------------------------------------------------------------------------- /src/pyscipopt/expr.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/expr.pxi -------------------------------------------------------------------------------- /src/pyscipopt/heuristic.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/heuristic.pxi -------------------------------------------------------------------------------- /src/pyscipopt/iisfinder.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/iisfinder.pxi -------------------------------------------------------------------------------- /src/pyscipopt/lp.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/lp.pxi -------------------------------------------------------------------------------- /src/pyscipopt/matrix.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/matrix.pxi -------------------------------------------------------------------------------- /src/pyscipopt/nodesel.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/nodesel.pxi -------------------------------------------------------------------------------- /src/pyscipopt/presol.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/presol.pxi -------------------------------------------------------------------------------- /src/pyscipopt/pricer.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/pricer.pxi -------------------------------------------------------------------------------- /src/pyscipopt/propagator.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/propagator.pxi -------------------------------------------------------------------------------- /src/pyscipopt/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pyscipopt/reader.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/reader.pxi -------------------------------------------------------------------------------- /src/pyscipopt/recipes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/recipes/README.md -------------------------------------------------------------------------------- /src/pyscipopt/recipes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pyscipopt/recipes/getLocalConss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/recipes/getLocalConss.py -------------------------------------------------------------------------------- /src/pyscipopt/recipes/infeasibilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/recipes/infeasibilities.py -------------------------------------------------------------------------------- /src/pyscipopt/recipes/nonlinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/recipes/nonlinear.py -------------------------------------------------------------------------------- /src/pyscipopt/recipes/piecewise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/recipes/piecewise.py -------------------------------------------------------------------------------- /src/pyscipopt/recipes/primal_dual_evolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/recipes/primal_dual_evolution.py -------------------------------------------------------------------------------- /src/pyscipopt/relax.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/relax.pxi -------------------------------------------------------------------------------- /src/pyscipopt/scip.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/scip.pxd -------------------------------------------------------------------------------- /src/pyscipopt/scip.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/scip.pxi -------------------------------------------------------------------------------- /src/pyscipopt/scip.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/scip.pyi -------------------------------------------------------------------------------- /src/pyscipopt/scip.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/scip.pyx -------------------------------------------------------------------------------- /src/pyscipopt/sepa.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/src/pyscipopt/sepa.pxi -------------------------------------------------------------------------------- /tests/data/10teams.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/data/10teams.mps -------------------------------------------------------------------------------- /tests/data/readStatistics.stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/data/readStatistics.stats -------------------------------------------------------------------------------- /tests/data/test_locale.cip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/data/test_locale.cip -------------------------------------------------------------------------------- /tests/helpers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/helpers/utils.py -------------------------------------------------------------------------------- /tests/test_alldiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_alldiff.py -------------------------------------------------------------------------------- /tests/test_benders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_benders.py -------------------------------------------------------------------------------- /tests/test_bipartite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_bipartite.py -------------------------------------------------------------------------------- /tests/test_branch_mostinfeas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_branch_mostinfeas.py -------------------------------------------------------------------------------- /tests/test_branch_probing_lp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_branch_probing_lp.py -------------------------------------------------------------------------------- /tests/test_cons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_cons.py -------------------------------------------------------------------------------- /tests/test_conshdlr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_conshdlr.py -------------------------------------------------------------------------------- /tests/test_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_copy.py -------------------------------------------------------------------------------- /tests/test_customizedbenders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_customizedbenders.py -------------------------------------------------------------------------------- /tests/test_cutsel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_cutsel.py -------------------------------------------------------------------------------- /tests/test_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_event.py -------------------------------------------------------------------------------- /tests/test_expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_expr.py -------------------------------------------------------------------------------- /tests/test_gomory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_gomory.py -------------------------------------------------------------------------------- /tests/test_heur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_heur.py -------------------------------------------------------------------------------- /tests/test_iis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_iis.py -------------------------------------------------------------------------------- /tests/test_knapsack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_knapsack.py -------------------------------------------------------------------------------- /tests/test_linexpr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_linexpr.py -------------------------------------------------------------------------------- /tests/test_logical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_logical.py -------------------------------------------------------------------------------- /tests/test_lp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_lp.py -------------------------------------------------------------------------------- /tests/test_matrix_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_matrix_variable.py -------------------------------------------------------------------------------- /tests/test_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_memory.py -------------------------------------------------------------------------------- /tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_model.py -------------------------------------------------------------------------------- /tests/test_nlrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_nlrow.py -------------------------------------------------------------------------------- /tests/test_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_node.py -------------------------------------------------------------------------------- /tests/test_node_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_node_methods.py -------------------------------------------------------------------------------- /tests/test_nodesel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_nodesel.py -------------------------------------------------------------------------------- /tests/test_nogil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_nogil.py -------------------------------------------------------------------------------- /tests/test_nonlinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_nonlinear.py -------------------------------------------------------------------------------- /tests/test_numerics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_numerics.py -------------------------------------------------------------------------------- /tests/test_pricer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_pricer.py -------------------------------------------------------------------------------- /tests/test_quadcons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_quadcons.py -------------------------------------------------------------------------------- /tests/test_quickprod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_quickprod.py -------------------------------------------------------------------------------- /tests/test_quicksum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_quicksum.py -------------------------------------------------------------------------------- /tests/test_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_reader.py -------------------------------------------------------------------------------- /tests/test_recipe_getLocalConss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_recipe_getLocalConss.py -------------------------------------------------------------------------------- /tests/test_recipe_infeasibilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_recipe_infeasibilities.py -------------------------------------------------------------------------------- /tests/test_recipe_nonlinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_recipe_nonlinear.py -------------------------------------------------------------------------------- /tests/test_recipe_piecewise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_recipe_piecewise.py -------------------------------------------------------------------------------- /tests/test_recipe_primal_dual_evolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_recipe_primal_dual_evolution.py -------------------------------------------------------------------------------- /tests/test_relax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_relax.py -------------------------------------------------------------------------------- /tests/test_reopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_reopt.py -------------------------------------------------------------------------------- /tests/test_row_dual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_row_dual.py -------------------------------------------------------------------------------- /tests/test_short.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_short.py -------------------------------------------------------------------------------- /tests/test_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_solution.py -------------------------------------------------------------------------------- /tests/test_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_statistics.py -------------------------------------------------------------------------------- /tests/test_strong_branching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_strong_branching.py -------------------------------------------------------------------------------- /tests/test_sub_sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_sub_sol.py -------------------------------------------------------------------------------- /tests/test_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_tree.py -------------------------------------------------------------------------------- /tests/test_tsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_tsp.py -------------------------------------------------------------------------------- /tests/test_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipopt/PySCIPOpt/HEAD/tests/test_vars.py --------------------------------------------------------------------------------