├── .codecov.yml ├── .github ├── dependabot.yml └── workflows │ └── main.yml ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── column_range.rs ├── max_flow.rs ├── readme_demo.rs └── shortest_path.rs ├── src ├── algorithm │ ├── mod.rs │ └── two_phase │ │ ├── matrix_provider │ │ ├── column │ │ │ ├── identity.rs │ │ │ └── mod.rs │ │ ├── filter │ │ │ ├── generic_wrapper.rs │ │ │ └── mod.rs │ │ ├── matrix_data.rs │ │ ├── mod.rs │ │ ├── ops.rs │ │ └── variable.rs │ │ ├── mod.rs │ │ ├── phase_one.rs │ │ ├── phase_two.rs │ │ ├── strategy │ │ ├── mod.rs │ │ └── pivot_rule.rs │ │ ├── tableau │ │ ├── inverse_maintenance │ │ │ ├── carry │ │ │ │ ├── basis_inverse_rows.rs │ │ │ │ ├── lower_upper │ │ │ │ │ ├── decomposition │ │ │ │ │ │ ├── mod.rs │ │ │ │ │ │ └── pivoting.rs │ │ │ │ │ ├── eta_file.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── permutation │ │ │ │ │ │ ├── full.rs │ │ │ │ │ │ ├── identity.rs │ │ │ │ │ │ ├── mod.rs │ │ │ │ │ │ ├── rotate_to_back.rs │ │ │ │ │ │ └── swap.rs │ │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ └── ops.rs │ │ ├── kind │ │ │ ├── artificial │ │ │ │ ├── fully.rs │ │ │ │ ├── mod.rs │ │ │ │ └── partially.rs │ │ │ ├── mod.rs │ │ │ └── non_artificial.rs │ │ └── mod.rs │ │ └── test.rs ├── data │ ├── linear_algebra │ │ ├── matrix.rs │ │ ├── mod.rs │ │ ├── traits.rs │ │ └── vector │ │ │ ├── dense.rs │ │ │ ├── mod.rs │ │ │ └── sparse.rs │ ├── linear_program │ │ ├── elements.rs │ │ ├── general_form │ │ │ ├── mod.rs │ │ │ └── presolve │ │ │ │ ├── counters.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── queues.rs │ │ │ │ ├── rule │ │ │ │ ├── bound_constraint.rs │ │ │ │ ├── domain_propagation.rs │ │ │ │ ├── fixed_variable.rs │ │ │ │ ├── mod.rs │ │ │ │ └── slack.rs │ │ │ │ ├── scale │ │ │ │ ├── mod.rs │ │ │ │ └── rational │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── test.rs │ │ │ │ ├── test │ │ │ │ ├── changes.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── per_rule.rs │ │ │ │ └── with_application.rs │ │ │ │ └── updates.rs │ │ ├── mod.rs │ │ ├── network │ │ │ ├── mod.rs │ │ │ └── representation.rs │ │ └── solution.rs │ └── mod.rs ├── io │ ├── error.rs │ ├── mod.rs │ └── mps │ │ ├── convert.rs │ │ ├── mod.rs │ │ ├── number │ │ ├── mod.rs │ │ ├── parse.rs │ │ └── traits.rs │ │ ├── parse │ │ ├── fixed.rs │ │ ├── free.rs │ │ └── mod.rs │ │ └── token.rs ├── lib.rs └── tests │ ├── mod.rs │ ├── problem_1.rs │ └── problem_2.rs └── tests ├── burkardt ├── mod.rs ├── problem_files │ ├── adlittle.mps │ ├── afiro.mps │ ├── empstest.mps │ ├── maros.mps │ ├── nazareth.mps │ └── testprob.mps └── test.rs ├── cook ├── mod.rs ├── problem_files │ └── small_example.mps └── test.rs ├── miplib ├── mod.rs ├── problem_files │ ├── 30n20b8.mps │ ├── 50v-10.mps │ └── acc-tight4.mps └── test.rs ├── mod.rs ├── netlib ├── NETLIB.dat~ ├── mod.rs ├── problem_files │ ├── 25FV47.SIF │ ├── 80BAU3B.SIF │ ├── ADLITTLE.SIF │ ├── AFIRO.SIF │ ├── AGG.SIF │ ├── AGG2.SIF │ ├── AGG3.SIF │ ├── BANDM.SIF │ ├── BEACONFD.SIF │ ├── BLEND.SIF │ ├── BNL1.SIF │ ├── BNL2.SIF │ ├── BOEING1.SIF │ ├── BOEING2.SIF │ ├── BORE3D.SIF │ ├── BRANDY.SIF │ ├── CAPRI.SIF │ ├── CRE-A.SIF │ ├── CRE-B.SIF │ ├── CRE-C.SIF │ ├── CRE-D.SIF │ ├── CYCLE.SIF │ ├── CZPROB.SIF │ ├── D2Q06C.SIF │ ├── D6CUBE.SIF │ ├── DEGEN2.SIF │ ├── DEGEN3.SIF │ ├── DFL001.SIF │ ├── E226.SIF │ ├── ETAMACRO.SIF │ ├── FFFFF800.SIF │ ├── FINNIS.SIF │ ├── FIT1D.SIF │ ├── FIT1P.SIF │ ├── FIT2D.SIF │ ├── FIT2P.SIF │ ├── FORPLAN.SIF │ ├── GANGES.SIF │ ├── GFRD-PNC.SIF │ ├── GREENBEA.SIF │ ├── GREENBEB.SIF │ ├── GROW15.SIF │ ├── GROW22.SIF │ ├── GROW7.SIF │ ├── ISRAEL.SIF │ ├── KB2.SIF │ ├── KEN-07.SIF │ ├── KEN-11.SIF │ ├── KEN-13.SIF │ ├── KEN-18.SIF │ ├── LOTFI.SIF │ ├── MAROS-R7.SIF │ ├── MAROS.SIF │ ├── MODSZK1.SIF │ ├── NESM.SIF │ ├── NETLIB.dat │ ├── OSA-07.SIF │ ├── OSA-14.SIF │ ├── OSA-30.SIF │ ├── OSA-60.SIF │ ├── PDS-02.SIF │ ├── PDS-06.SIF │ ├── PDS-10.SIF │ ├── PDS-20.SIF │ ├── PEROLD.SIF │ ├── PILOT-JA.SIF │ ├── PILOT-WE.SIF │ ├── PILOT.SIF │ ├── PILOT4.SIF │ ├── PILOT87.SIF │ ├── PILOTNOV.SIF │ ├── QAP12.SIF │ ├── QAP15.SIF │ ├── QAP8.SIF │ ├── README │ ├── RECIPELP.SIF │ ├── SC105.SIF │ ├── SC205.SIF │ ├── SC50A.SIF │ ├── SC50B.SIF │ ├── SCAGR25.SIF │ ├── SCAGR7.SIF │ ├── SCFXM1.SIF │ ├── SCFXM2.SIF │ ├── SCFXM3.SIF │ ├── SCORPION.SIF │ ├── SCRS8.SIF │ ├── SCSD1.SIF │ ├── SCSD6.SIF │ ├── SCSD8.SIF │ ├── SCTAP1.SIF │ ├── SCTAP2.SIF │ ├── SCTAP3.SIF │ ├── SEBA.SIF │ ├── SHARE1B.SIF │ ├── SHARE2B.SIF │ ├── SHELL.SIF │ ├── SHIP04L.SIF │ ├── SHIP04S.SIF │ ├── SHIP08L.SIF │ ├── SHIP08S.SIF │ ├── SHIP12L.SIF │ ├── SHIP12S.SIF │ ├── SIERRA.SIF │ ├── STAIR.SIF │ ├── STANDATA.SIF │ ├── STANDGUB.SIF │ ├── STANDMPS.SIF │ ├── STOCFOR1.SIF │ ├── STOCFOR2.SIF │ ├── STOCFOR3.SIF │ ├── TRUSS.SIF │ ├── TUFF.SIF │ ├── VTP-BASE.SIF │ ├── WOOD1P.SIF │ └── WOODW.SIF └── test.rs └── unicamp ├── mod.rs ├── problem_files ├── basis_data_1.mps ├── mixed_model_data_1.mps ├── mixed_model_data_2.mps ├── model_data_1.mps ├── model_data_2.mps ├── model_data_3_1.mps ├── model_data_3_2.mps ├── model_data_3_3.mps ├── model_data_3_4.mps ├── model_data_4.mps ├── model_data_5.mps ├── model_data_6.mps ├── model_data_7.mps ├── model_data_8.mps ├── model_data_9.mps ├── quadratic_model_data_1.mps └── quadratic_model_data_2.mps └── test.rs /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/README.md -------------------------------------------------------------------------------- /examples/column_range.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/examples/column_range.rs -------------------------------------------------------------------------------- /examples/max_flow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/examples/max_flow.rs -------------------------------------------------------------------------------- /examples/readme_demo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/examples/readme_demo.rs -------------------------------------------------------------------------------- /examples/shortest_path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/examples/shortest_path.rs -------------------------------------------------------------------------------- /src/algorithm/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/mod.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/matrix_provider/column/identity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/matrix_provider/column/identity.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/matrix_provider/column/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/matrix_provider/column/mod.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/matrix_provider/filter/generic_wrapper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/matrix_provider/filter/generic_wrapper.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/matrix_provider/filter/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/matrix_provider/filter/mod.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/matrix_provider/matrix_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/matrix_provider/matrix_data.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/matrix_provider/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/matrix_provider/mod.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/matrix_provider/ops.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/matrix_provider/ops.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/matrix_provider/variable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/matrix_provider/variable.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/mod.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/phase_one.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/phase_one.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/phase_two.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/phase_two.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/strategy/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/strategy/mod.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/strategy/pivot_rule.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/strategy/pivot_rule.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/tableau/inverse_maintenance/carry/basis_inverse_rows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/tableau/inverse_maintenance/carry/basis_inverse_rows.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/tableau/inverse_maintenance/carry/lower_upper/decomposition/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/tableau/inverse_maintenance/carry/lower_upper/decomposition/mod.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/tableau/inverse_maintenance/carry/lower_upper/decomposition/pivoting.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/tableau/inverse_maintenance/carry/lower_upper/decomposition/pivoting.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/tableau/inverse_maintenance/carry/lower_upper/eta_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/tableau/inverse_maintenance/carry/lower_upper/eta_file.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/tableau/inverse_maintenance/carry/lower_upper/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/tableau/inverse_maintenance/carry/lower_upper/mod.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/tableau/inverse_maintenance/carry/lower_upper/permutation/full.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/tableau/inverse_maintenance/carry/lower_upper/permutation/full.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/tableau/inverse_maintenance/carry/lower_upper/permutation/identity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/tableau/inverse_maintenance/carry/lower_upper/permutation/identity.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/tableau/inverse_maintenance/carry/lower_upper/permutation/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/tableau/inverse_maintenance/carry/lower_upper/permutation/mod.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/tableau/inverse_maintenance/carry/lower_upper/permutation/rotate_to_back.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/tableau/inverse_maintenance/carry/lower_upper/permutation/rotate_to_back.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/tableau/inverse_maintenance/carry/lower_upper/permutation/swap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/tableau/inverse_maintenance/carry/lower_upper/permutation/swap.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/tableau/inverse_maintenance/carry/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/tableau/inverse_maintenance/carry/mod.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/tableau/inverse_maintenance/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/tableau/inverse_maintenance/mod.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/tableau/inverse_maintenance/ops.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/tableau/inverse_maintenance/ops.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/tableau/kind/artificial/fully.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/tableau/kind/artificial/fully.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/tableau/kind/artificial/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/tableau/kind/artificial/mod.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/tableau/kind/artificial/partially.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/tableau/kind/artificial/partially.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/tableau/kind/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/tableau/kind/mod.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/tableau/kind/non_artificial.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/tableau/kind/non_artificial.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/tableau/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/tableau/mod.rs -------------------------------------------------------------------------------- /src/algorithm/two_phase/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/algorithm/two_phase/test.rs -------------------------------------------------------------------------------- /src/data/linear_algebra/matrix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_algebra/matrix.rs -------------------------------------------------------------------------------- /src/data/linear_algebra/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_algebra/mod.rs -------------------------------------------------------------------------------- /src/data/linear_algebra/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_algebra/traits.rs -------------------------------------------------------------------------------- /src/data/linear_algebra/vector/dense.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_algebra/vector/dense.rs -------------------------------------------------------------------------------- /src/data/linear_algebra/vector/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_algebra/vector/mod.rs -------------------------------------------------------------------------------- /src/data/linear_algebra/vector/sparse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_algebra/vector/sparse.rs -------------------------------------------------------------------------------- /src/data/linear_program/elements.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/elements.rs -------------------------------------------------------------------------------- /src/data/linear_program/general_form/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/general_form/mod.rs -------------------------------------------------------------------------------- /src/data/linear_program/general_form/presolve/counters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/general_form/presolve/counters.rs -------------------------------------------------------------------------------- /src/data/linear_program/general_form/presolve/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/general_form/presolve/mod.rs -------------------------------------------------------------------------------- /src/data/linear_program/general_form/presolve/queues.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/general_form/presolve/queues.rs -------------------------------------------------------------------------------- /src/data/linear_program/general_form/presolve/rule/bound_constraint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/general_form/presolve/rule/bound_constraint.rs -------------------------------------------------------------------------------- /src/data/linear_program/general_form/presolve/rule/domain_propagation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/general_form/presolve/rule/domain_propagation.rs -------------------------------------------------------------------------------- /src/data/linear_program/general_form/presolve/rule/fixed_variable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/general_form/presolve/rule/fixed_variable.rs -------------------------------------------------------------------------------- /src/data/linear_program/general_form/presolve/rule/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/general_form/presolve/rule/mod.rs -------------------------------------------------------------------------------- /src/data/linear_program/general_form/presolve/rule/slack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/general_form/presolve/rule/slack.rs -------------------------------------------------------------------------------- /src/data/linear_program/general_form/presolve/scale/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/general_form/presolve/scale/mod.rs -------------------------------------------------------------------------------- /src/data/linear_program/general_form/presolve/scale/rational/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/general_form/presolve/scale/rational/mod.rs -------------------------------------------------------------------------------- /src/data/linear_program/general_form/presolve/scale/rational/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/general_form/presolve/scale/rational/test.rs -------------------------------------------------------------------------------- /src/data/linear_program/general_form/presolve/test/changes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/general_form/presolve/test/changes.rs -------------------------------------------------------------------------------- /src/data/linear_program/general_form/presolve/test/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/general_form/presolve/test/mod.rs -------------------------------------------------------------------------------- /src/data/linear_program/general_form/presolve/test/per_rule.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/general_form/presolve/test/per_rule.rs -------------------------------------------------------------------------------- /src/data/linear_program/general_form/presolve/test/with_application.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/general_form/presolve/test/with_application.rs -------------------------------------------------------------------------------- /src/data/linear_program/general_form/presolve/updates.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/general_form/presolve/updates.rs -------------------------------------------------------------------------------- /src/data/linear_program/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/mod.rs -------------------------------------------------------------------------------- /src/data/linear_program/network/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/network/mod.rs -------------------------------------------------------------------------------- /src/data/linear_program/network/representation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/network/representation.rs -------------------------------------------------------------------------------- /src/data/linear_program/solution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/linear_program/solution.rs -------------------------------------------------------------------------------- /src/data/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/data/mod.rs -------------------------------------------------------------------------------- /src/io/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/io/error.rs -------------------------------------------------------------------------------- /src/io/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/io/mod.rs -------------------------------------------------------------------------------- /src/io/mps/convert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/io/mps/convert.rs -------------------------------------------------------------------------------- /src/io/mps/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/io/mps/mod.rs -------------------------------------------------------------------------------- /src/io/mps/number/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/io/mps/number/mod.rs -------------------------------------------------------------------------------- /src/io/mps/number/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/io/mps/number/parse.rs -------------------------------------------------------------------------------- /src/io/mps/number/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/io/mps/number/traits.rs -------------------------------------------------------------------------------- /src/io/mps/parse/fixed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/io/mps/parse/fixed.rs -------------------------------------------------------------------------------- /src/io/mps/parse/free.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/io/mps/parse/free.rs -------------------------------------------------------------------------------- /src/io/mps/parse/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/io/mps/parse/mod.rs -------------------------------------------------------------------------------- /src/io/mps/token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/io/mps/token.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/tests/mod.rs -------------------------------------------------------------------------------- /src/tests/problem_1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/tests/problem_1.rs -------------------------------------------------------------------------------- /src/tests/problem_2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/src/tests/problem_2.rs -------------------------------------------------------------------------------- /tests/burkardt/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/burkardt/mod.rs -------------------------------------------------------------------------------- /tests/burkardt/problem_files/adlittle.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/burkardt/problem_files/adlittle.mps -------------------------------------------------------------------------------- /tests/burkardt/problem_files/afiro.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/burkardt/problem_files/afiro.mps -------------------------------------------------------------------------------- /tests/burkardt/problem_files/empstest.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/burkardt/problem_files/empstest.mps -------------------------------------------------------------------------------- /tests/burkardt/problem_files/maros.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/burkardt/problem_files/maros.mps -------------------------------------------------------------------------------- /tests/burkardt/problem_files/nazareth.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/burkardt/problem_files/nazareth.mps -------------------------------------------------------------------------------- /tests/burkardt/problem_files/testprob.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/burkardt/problem_files/testprob.mps -------------------------------------------------------------------------------- /tests/burkardt/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/burkardt/test.rs -------------------------------------------------------------------------------- /tests/cook/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/cook/mod.rs -------------------------------------------------------------------------------- /tests/cook/problem_files/small_example.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/cook/problem_files/small_example.mps -------------------------------------------------------------------------------- /tests/cook/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/cook/test.rs -------------------------------------------------------------------------------- /tests/miplib/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/miplib/mod.rs -------------------------------------------------------------------------------- /tests/miplib/problem_files/30n20b8.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/miplib/problem_files/30n20b8.mps -------------------------------------------------------------------------------- /tests/miplib/problem_files/50v-10.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/miplib/problem_files/50v-10.mps -------------------------------------------------------------------------------- /tests/miplib/problem_files/acc-tight4.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/miplib/problem_files/acc-tight4.mps -------------------------------------------------------------------------------- /tests/miplib/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/miplib/test.rs -------------------------------------------------------------------------------- /tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/mod.rs -------------------------------------------------------------------------------- /tests/netlib/NETLIB.dat~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/NETLIB.dat~ -------------------------------------------------------------------------------- /tests/netlib/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/mod.rs -------------------------------------------------------------------------------- /tests/netlib/problem_files/25FV47.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/25FV47.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/80BAU3B.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/80BAU3B.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/ADLITTLE.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/ADLITTLE.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/AFIRO.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/AFIRO.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/AGG.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/AGG.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/AGG2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/AGG2.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/AGG3.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/AGG3.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/BANDM.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/BANDM.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/BEACONFD.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/BEACONFD.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/BLEND.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/BLEND.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/BNL1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/BNL1.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/BNL2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/BNL2.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/BOEING1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/BOEING1.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/BOEING2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/BOEING2.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/BORE3D.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/BORE3D.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/BRANDY.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/BRANDY.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/CAPRI.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/CAPRI.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/CRE-A.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/CRE-A.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/CRE-B.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/CRE-B.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/CRE-C.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/CRE-C.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/CRE-D.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/CRE-D.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/CYCLE.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/CYCLE.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/CZPROB.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/CZPROB.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/D2Q06C.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/D2Q06C.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/D6CUBE.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/D6CUBE.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/DEGEN2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/DEGEN2.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/DEGEN3.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/DEGEN3.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/DFL001.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/DFL001.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/E226.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/E226.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/ETAMACRO.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/ETAMACRO.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/FFFFF800.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/FFFFF800.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/FINNIS.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/FINNIS.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/FIT1D.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/FIT1D.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/FIT1P.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/FIT1P.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/FIT2D.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/FIT2D.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/FIT2P.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/FIT2P.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/FORPLAN.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/FORPLAN.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/GANGES.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/GANGES.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/GFRD-PNC.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/GFRD-PNC.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/GREENBEA.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/GREENBEA.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/GREENBEB.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/GREENBEB.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/GROW15.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/GROW15.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/GROW22.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/GROW22.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/GROW7.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/GROW7.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/ISRAEL.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/ISRAEL.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/KB2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/KB2.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/KEN-07.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/KEN-07.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/KEN-11.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/KEN-11.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/KEN-13.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/KEN-13.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/KEN-18.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/KEN-18.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/LOTFI.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/LOTFI.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/MAROS-R7.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/MAROS-R7.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/MAROS.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/MAROS.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/MODSZK1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/MODSZK1.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/NESM.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/NESM.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/NETLIB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/NETLIB.dat -------------------------------------------------------------------------------- /tests/netlib/problem_files/OSA-07.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/OSA-07.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/OSA-14.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/OSA-14.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/OSA-30.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/OSA-30.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/OSA-60.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/OSA-60.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/PDS-02.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/PDS-02.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/PDS-06.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/PDS-06.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/PDS-10.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/PDS-10.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/PDS-20.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/PDS-20.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/PEROLD.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/PEROLD.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/PILOT-JA.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/PILOT-JA.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/PILOT-WE.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/PILOT-WE.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/PILOT.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/PILOT.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/PILOT4.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/PILOT4.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/PILOT87.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/PILOT87.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/PILOTNOV.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/PILOTNOV.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/QAP12.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/QAP12.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/QAP15.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/QAP15.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/QAP8.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/QAP8.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/README -------------------------------------------------------------------------------- /tests/netlib/problem_files/RECIPELP.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/RECIPELP.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SC105.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SC105.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SC205.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SC205.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SC50A.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SC50A.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SC50B.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SC50B.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SCAGR25.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SCAGR25.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SCAGR7.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SCAGR7.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SCFXM1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SCFXM1.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SCFXM2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SCFXM2.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SCFXM3.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SCFXM3.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SCORPION.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SCORPION.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SCRS8.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SCRS8.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SCSD1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SCSD1.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SCSD6.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SCSD6.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SCSD8.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SCSD8.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SCTAP1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SCTAP1.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SCTAP2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SCTAP2.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SCTAP3.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SCTAP3.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SEBA.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SEBA.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SHARE1B.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SHARE1B.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SHARE2B.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SHARE2B.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SHELL.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SHELL.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SHIP04L.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SHIP04L.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SHIP04S.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SHIP04S.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SHIP08L.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SHIP08L.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SHIP08S.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SHIP08S.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SHIP12L.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SHIP12L.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SHIP12S.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SHIP12S.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/SIERRA.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/SIERRA.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/STAIR.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/STAIR.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/STANDATA.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/STANDATA.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/STANDGUB.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/STANDGUB.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/STANDMPS.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/STANDMPS.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/STOCFOR1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/STOCFOR1.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/STOCFOR2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/STOCFOR2.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/STOCFOR3.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/STOCFOR3.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/TRUSS.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/TRUSS.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/TUFF.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/TUFF.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/VTP-BASE.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/VTP-BASE.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/WOOD1P.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/WOOD1P.SIF -------------------------------------------------------------------------------- /tests/netlib/problem_files/WOODW.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/problem_files/WOODW.SIF -------------------------------------------------------------------------------- /tests/netlib/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/netlib/test.rs -------------------------------------------------------------------------------- /tests/unicamp/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/unicamp/mod.rs -------------------------------------------------------------------------------- /tests/unicamp/problem_files/basis_data_1.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/unicamp/problem_files/basis_data_1.mps -------------------------------------------------------------------------------- /tests/unicamp/problem_files/mixed_model_data_1.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/unicamp/problem_files/mixed_model_data_1.mps -------------------------------------------------------------------------------- /tests/unicamp/problem_files/mixed_model_data_2.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/unicamp/problem_files/mixed_model_data_2.mps -------------------------------------------------------------------------------- /tests/unicamp/problem_files/model_data_1.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/unicamp/problem_files/model_data_1.mps -------------------------------------------------------------------------------- /tests/unicamp/problem_files/model_data_2.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/unicamp/problem_files/model_data_2.mps -------------------------------------------------------------------------------- /tests/unicamp/problem_files/model_data_3_1.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/unicamp/problem_files/model_data_3_1.mps -------------------------------------------------------------------------------- /tests/unicamp/problem_files/model_data_3_2.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/unicamp/problem_files/model_data_3_2.mps -------------------------------------------------------------------------------- /tests/unicamp/problem_files/model_data_3_3.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/unicamp/problem_files/model_data_3_3.mps -------------------------------------------------------------------------------- /tests/unicamp/problem_files/model_data_3_4.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/unicamp/problem_files/model_data_3_4.mps -------------------------------------------------------------------------------- /tests/unicamp/problem_files/model_data_4.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/unicamp/problem_files/model_data_4.mps -------------------------------------------------------------------------------- /tests/unicamp/problem_files/model_data_5.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/unicamp/problem_files/model_data_5.mps -------------------------------------------------------------------------------- /tests/unicamp/problem_files/model_data_6.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/unicamp/problem_files/model_data_6.mps -------------------------------------------------------------------------------- /tests/unicamp/problem_files/model_data_7.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/unicamp/problem_files/model_data_7.mps -------------------------------------------------------------------------------- /tests/unicamp/problem_files/model_data_8.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/unicamp/problem_files/model_data_8.mps -------------------------------------------------------------------------------- /tests/unicamp/problem_files/model_data_9.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/unicamp/problem_files/model_data_9.mps -------------------------------------------------------------------------------- /tests/unicamp/problem_files/quadratic_model_data_1.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/unicamp/problem_files/quadratic_model_data_1.mps -------------------------------------------------------------------------------- /tests/unicamp/problem_files/quadratic_model_data_2.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/unicamp/problem_files/quadratic_model_data_2.mps -------------------------------------------------------------------------------- /tests/unicamp/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandenheuvel/relp/HEAD/tests/unicamp/test.rs --------------------------------------------------------------------------------