├── .gitignore ├── LICENSE ├── README.md ├── benchmark_problems ├── __init__.py └── example.py ├── maros_meszaros_problems ├── __init__.py └── maros_meszaros_problem.py ├── parametric_problems ├── __init__.py ├── lasso.py ├── mpc.py └── portfolio.py ├── problem_classes ├── __init__.py ├── control.py ├── eq_qp.py ├── huber.py ├── lasso.py ├── maros_meszaros.py ├── maros_meszaros_data │ ├── AUG2D.mat │ ├── AUG2DC.mat │ ├── AUG2DCQP.mat │ ├── AUG2DQP.mat │ ├── AUG3D.mat │ ├── AUG3DC.mat │ ├── AUG3DCQP.mat │ ├── AUG3DQP.mat │ ├── BOYD1.mat │ ├── BOYD2.mat │ ├── CONT-050.mat │ ├── CONT-100.mat │ ├── CONT-101.mat │ ├── CONT-200.mat │ ├── CONT-201.mat │ ├── CONT-300.mat │ ├── CVXQP1_L.mat │ ├── CVXQP1_M.mat │ ├── CVXQP1_S.mat │ ├── CVXQP2_L.mat │ ├── CVXQP2_M.mat │ ├── CVXQP2_S.mat │ ├── CVXQP3_L.mat │ ├── CVXQP3_M.mat │ ├── CVXQP3_S.mat │ ├── DPKLO1.mat │ ├── DTOC3.mat │ ├── DUAL1.mat │ ├── DUAL2.mat │ ├── DUAL3.mat │ ├── DUAL4.mat │ ├── DUALC1.mat │ ├── DUALC2.mat │ ├── DUALC5.mat │ ├── DUALC8.mat │ ├── EXDATA.mat │ ├── GENHS28.mat │ ├── GOULDQP2.mat │ ├── GOULDQP3.mat │ ├── HS118.mat │ ├── HS21.mat │ ├── HS268.mat │ ├── HS35.mat │ ├── HS35MOD.mat │ ├── HS51.mat │ ├── HS52.mat │ ├── HS53.mat │ ├── HS76.mat │ ├── HUES-MOD.mat │ ├── HUESTIS.mat │ ├── KSIP.mat │ ├── LASER.mat │ ├── LISWET1.mat │ ├── LISWET10.mat │ ├── LISWET11.mat │ ├── LISWET12.mat │ ├── LISWET2.mat │ ├── LISWET3.mat │ ├── LISWET4.mat │ ├── LISWET5.mat │ ├── LISWET6.mat │ ├── LISWET7.mat │ ├── LISWET8.mat │ ├── LISWET9.mat │ ├── LOTSCHD.mat │ ├── MOSARQP1.mat │ ├── MOSARQP2.mat │ ├── POWELL20.mat │ ├── PRIMAL1.mat │ ├── PRIMAL2.mat │ ├── PRIMAL3.mat │ ├── PRIMAL4.mat │ ├── PRIMALC1.mat │ ├── PRIMALC2.mat │ ├── PRIMALC5.mat │ ├── PRIMALC8.mat │ ├── Q25FV47.mat │ ├── QADLITTL.mat │ ├── QAFIRO.mat │ ├── QBANDM.mat │ ├── QBEACONF.mat │ ├── QBORE3D.mat │ ├── QBRANDY.mat │ ├── QCAPRI.mat │ ├── QE226.mat │ ├── QETAMACR.mat │ ├── QFFFFF80.mat │ ├── QFORPLAN.mat │ ├── QGFRDXPN.mat │ ├── QGROW15.mat │ ├── QGROW22.mat │ ├── QGROW7.mat │ ├── QISRAEL.mat │ ├── QPCBLEND.mat │ ├── QPCBOEI1.mat │ ├── QPCBOEI2.mat │ ├── QPCSTAIR.mat │ ├── QPILOTNO.mat │ ├── QPTEST.mat │ ├── QRECIPE.mat │ ├── QSC205.mat │ ├── QSCAGR25.mat │ ├── QSCAGR7.mat │ ├── QSCFXM1.mat │ ├── QSCFXM2.mat │ ├── QSCFXM3.mat │ ├── QSCORPIO.mat │ ├── QSCRS8.mat │ ├── QSCSD1.mat │ ├── QSCSD6.mat │ ├── QSCSD8.mat │ ├── QSCTAP1.mat │ ├── QSCTAP2.mat │ ├── QSCTAP3.mat │ ├── QSEBA.mat │ ├── QSHARE1B.mat │ ├── QSHARE2B.mat │ ├── QSHELL.mat │ ├── QSHIP04L.mat │ ├── QSHIP04S.mat │ ├── QSHIP08L.mat │ ├── QSHIP08S.mat │ ├── QSHIP12L.mat │ ├── QSHIP12S.mat │ ├── QSIERRA.mat │ ├── QSTAIR.mat │ ├── QSTANDAT.mat │ ├── README.md │ ├── S268.mat │ ├── STADAT1.mat │ ├── STADAT2.mat │ ├── STADAT3.mat │ ├── STCQP1.mat │ ├── STCQP2.mat │ ├── TAME.mat │ ├── UBH1.mat │ ├── VALUES.mat │ ├── YAO.mat │ ├── ZECEVIC2.mat │ └── sif │ │ ├── cleanup_dir.m │ │ ├── extract_sif.m │ │ ├── sif2mat.m │ │ └── sif_data │ │ ├── AUG2D.SIF │ │ ├── AUG2DC.SIF │ │ ├── AUG2DCQP.SIF │ │ ├── AUG2DQP.SIF │ │ ├── AUG3D.SIF │ │ ├── AUG3DC.SIF │ │ ├── AUG3DCQP.SIF │ │ ├── AUG3DQP.SIF │ │ ├── BOYD1.SIF │ │ ├── BOYD2.SIF │ │ ├── CONT-050.SIF │ │ ├── CONT-100.SIF │ │ ├── CONT-101.SIF │ │ ├── CONT-200.SIF │ │ ├── CONT-201.SIF │ │ ├── CONT-300.SIF │ │ ├── CVXQP1_L.SIF │ │ ├── CVXQP1_M.SIF │ │ ├── CVXQP1_S.SIF │ │ ├── CVXQP2_L.SIF │ │ ├── CVXQP2_M.SIF │ │ ├── CVXQP2_S.SIF │ │ ├── CVXQP3_L.SIF │ │ ├── CVXQP3_M.SIF │ │ ├── CVXQP3_S.SIF │ │ ├── DPKLO1.SIF │ │ ├── DTOC3.SIF │ │ ├── DUAL1.SIF │ │ ├── DUAL2.SIF │ │ ├── DUAL3.SIF │ │ ├── DUAL4.SIF │ │ ├── DUALC1.SIF │ │ ├── DUALC2.SIF │ │ ├── DUALC5.SIF │ │ ├── DUALC8.SIF │ │ ├── EXDATA.SIF │ │ ├── GENHS28.SIF │ │ ├── GOULDQP2.SIF │ │ ├── GOULDQP3.SIF │ │ ├── HS118.SIF │ │ ├── HS21.SIF │ │ ├── HS268.SIF │ │ ├── HS35.SIF │ │ ├── HS35MOD.SIF │ │ ├── HS51.SIF │ │ ├── HS52.SIF │ │ ├── HS53.SIF │ │ ├── HS76.SIF │ │ ├── HUES-MOD.SIF │ │ ├── HUESTIS.SIF │ │ ├── KSIP.SIF │ │ ├── LASER.SIF │ │ ├── LISWET1.SIF │ │ ├── LISWET10.SIF │ │ ├── LISWET11.SIF │ │ ├── LISWET12.SIF │ │ ├── LISWET2.SIF │ │ ├── LISWET3.SIF │ │ ├── LISWET4.SIF │ │ ├── LISWET5.SIF │ │ ├── LISWET6.SIF │ │ ├── LISWET7.SIF │ │ ├── LISWET8.SIF │ │ ├── LISWET9.SIF │ │ ├── LOTSCHD.SIF │ │ ├── MOSARQP1.SIF │ │ ├── MOSARQP2.SIF │ │ ├── POWELL20.SIF │ │ ├── PRIMAL1.SIF │ │ ├── PRIMAL2.SIF │ │ ├── PRIMAL3.SIF │ │ ├── PRIMAL4.SIF │ │ ├── PRIMALC1.SIF │ │ ├── PRIMALC2.SIF │ │ ├── PRIMALC5.SIF │ │ ├── PRIMALC8.SIF │ │ ├── Q25FV47.SIF │ │ ├── QADLITTL.SIF │ │ ├── QAFIRO.SIF │ │ ├── QBANDM.SIF │ │ ├── QBEACONF.SIF │ │ ├── QBORE3D.SIF │ │ ├── QBRANDY.SIF │ │ ├── QCAPRI.SIF │ │ ├── QE226.SIF │ │ ├── QETAMACR.SIF │ │ ├── QFFFFF80.SIF │ │ ├── QFORPLAN.SIF │ │ ├── QGFRDXPN.SIF │ │ ├── QGROW15.SIF │ │ ├── QGROW22.SIF │ │ ├── QGROW7.SIF │ │ ├── QISRAEL.SIF │ │ ├── QPCBLEND.SIF │ │ ├── QPCBOEI1.SIF │ │ ├── QPCBOEI2.SIF │ │ ├── QPCSTAIR.SIF │ │ ├── QPILOTNO.SIF │ │ ├── QPTEST.SIF │ │ ├── QRECIPE.SIF │ │ ├── QSC205.SIF │ │ ├── QSCAGR25.SIF │ │ ├── QSCAGR7.SIF │ │ ├── QSCFXM1.SIF │ │ ├── QSCFXM2.SIF │ │ ├── QSCFXM3.SIF │ │ ├── QSCORPIO.SIF │ │ ├── QSCRS8.SIF │ │ ├── QSCSD1.SIF │ │ ├── QSCSD6.SIF │ │ ├── QSCSD8.SIF │ │ ├── QSCTAP1.SIF │ │ ├── QSCTAP2.SIF │ │ ├── QSCTAP3.SIF │ │ ├── QSEBA.SIF │ │ ├── QSHARE1B.SIF │ │ ├── QSHARE2B.SIF │ │ ├── QSHELL.SIF │ │ ├── QSHIP04L.SIF │ │ ├── QSHIP04S.SIF │ │ ├── QSHIP08L.SIF │ │ ├── QSHIP08S.SIF │ │ ├── QSHIP12L.SIF │ │ ├── QSHIP12S.SIF │ │ ├── QSIERRA.SIF │ │ ├── QSTAIR.SIF │ │ ├── QSTANDAT.SIF │ │ ├── S268.SIF │ │ ├── STADAT1.SIF │ │ ├── STADAT2.SIF │ │ ├── STADAT3.SIF │ │ ├── STCQP1.SIF │ │ ├── STCQP2.SIF │ │ ├── TAME.SIF │ │ ├── UBH1.SIF │ │ ├── VALUES.SIF │ │ ├── YAO.SIF │ │ └── ZECEVIC2.SIF ├── portfolio.py ├── qplib.py ├── qplib_data │ ├── .gitignore │ ├── download.py │ └── list_convex_qps.txt ├── random_qp.py ├── suitesparse_huber.py ├── suitesparse_lasso.py ├── suitesparse_matrix_collection │ ├── .gitignore │ └── download.jl └── svm.py ├── qplib_problems ├── __init__.py └── qplib_problem.py ├── results ├── benchmark_problems │ └── benchmark_problems.png └── maros_meszaros_problems │ └── maros_meszaros_problems.png ├── run_all_cluster.sh ├── run_benchmark_problems.py ├── run_cluster.sh ├── run_maros_meszaros_problems.py ├── run_parametric_problems.py ├── run_qplib_problems.py ├── run_suitesparse_problems.py ├── solvers ├── __init__.py ├── ecos.py ├── gurobi.py ├── mosek.py ├── osqp.py ├── qpoases.py ├── results.py ├── solvers.py └── statuses.py ├── suitesparse_problems ├── __init__.py └── suitesparse_problem.py └── utils ├── __init__.py ├── benchmark.py ├── general.py ├── maros_meszaros.py └── parametric.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/README.md -------------------------------------------------------------------------------- /benchmark_problems/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark_problems/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/benchmark_problems/example.py -------------------------------------------------------------------------------- /maros_meszaros_problems/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maros_meszaros_problems/maros_meszaros_problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/maros_meszaros_problems/maros_meszaros_problem.py -------------------------------------------------------------------------------- /parametric_problems/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parametric_problems/lasso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/parametric_problems/lasso.py -------------------------------------------------------------------------------- /parametric_problems/mpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/parametric_problems/mpc.py -------------------------------------------------------------------------------- /parametric_problems/portfolio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/parametric_problems/portfolio.py -------------------------------------------------------------------------------- /problem_classes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /problem_classes/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/control.py -------------------------------------------------------------------------------- /problem_classes/eq_qp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/eq_qp.py -------------------------------------------------------------------------------- /problem_classes/huber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/huber.py -------------------------------------------------------------------------------- /problem_classes/lasso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/lasso.py -------------------------------------------------------------------------------- /problem_classes/maros_meszaros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros.py -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/AUG2D.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/AUG2D.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/AUG2DC.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/AUG2DC.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/AUG2DCQP.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/AUG2DCQP.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/AUG2DQP.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/AUG2DQP.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/AUG3D.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/AUG3D.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/AUG3DC.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/AUG3DC.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/AUG3DCQP.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/AUG3DCQP.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/AUG3DQP.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/AUG3DQP.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/BOYD1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/BOYD1.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/BOYD2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/BOYD2.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/CONT-050.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/CONT-050.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/CONT-100.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/CONT-100.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/CONT-101.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/CONT-101.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/CONT-200.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/CONT-200.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/CONT-201.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/CONT-201.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/CONT-300.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/CONT-300.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/CVXQP1_L.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/CVXQP1_L.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/CVXQP1_M.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/CVXQP1_M.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/CVXQP1_S.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/CVXQP1_S.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/CVXQP2_L.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/CVXQP2_L.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/CVXQP2_M.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/CVXQP2_M.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/CVXQP2_S.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/CVXQP2_S.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/CVXQP3_L.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/CVXQP3_L.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/CVXQP3_M.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/CVXQP3_M.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/CVXQP3_S.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/CVXQP3_S.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/DPKLO1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/DPKLO1.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/DTOC3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/DTOC3.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/DUAL1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/DUAL1.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/DUAL2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/DUAL2.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/DUAL3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/DUAL3.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/DUAL4.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/DUAL4.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/DUALC1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/DUALC1.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/DUALC2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/DUALC2.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/DUALC5.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/DUALC5.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/DUALC8.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/DUALC8.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/EXDATA.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/EXDATA.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/GENHS28.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/GENHS28.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/GOULDQP2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/GOULDQP2.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/GOULDQP3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/GOULDQP3.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/HS118.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/HS118.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/HS21.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/HS21.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/HS268.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/HS268.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/HS35.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/HS35.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/HS35MOD.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/HS35MOD.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/HS51.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/HS51.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/HS52.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/HS52.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/HS53.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/HS53.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/HS76.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/HS76.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/HUES-MOD.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/HUES-MOD.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/HUESTIS.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/HUESTIS.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/KSIP.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/KSIP.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/LASER.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/LASER.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/LISWET1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/LISWET1.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/LISWET10.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/LISWET10.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/LISWET11.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/LISWET11.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/LISWET12.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/LISWET12.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/LISWET2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/LISWET2.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/LISWET3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/LISWET3.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/LISWET4.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/LISWET4.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/LISWET5.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/LISWET5.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/LISWET6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/LISWET6.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/LISWET7.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/LISWET7.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/LISWET8.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/LISWET8.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/LISWET9.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/LISWET9.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/LOTSCHD.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/LOTSCHD.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/MOSARQP1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/MOSARQP1.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/MOSARQP2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/MOSARQP2.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/POWELL20.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/POWELL20.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/PRIMAL1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/PRIMAL1.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/PRIMAL2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/PRIMAL2.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/PRIMAL3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/PRIMAL3.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/PRIMAL4.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/PRIMAL4.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/PRIMALC1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/PRIMALC1.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/PRIMALC2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/PRIMALC2.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/PRIMALC5.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/PRIMALC5.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/PRIMALC8.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/PRIMALC8.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/Q25FV47.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/Q25FV47.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QADLITTL.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QADLITTL.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QAFIRO.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QAFIRO.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QBANDM.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QBANDM.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QBEACONF.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QBEACONF.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QBORE3D.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QBORE3D.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QBRANDY.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QBRANDY.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QCAPRI.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QCAPRI.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QE226.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QE226.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QETAMACR.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QETAMACR.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QFFFFF80.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QFFFFF80.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QFORPLAN.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QFORPLAN.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QGFRDXPN.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QGFRDXPN.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QGROW15.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QGROW15.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QGROW22.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QGROW22.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QGROW7.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QGROW7.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QISRAEL.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QISRAEL.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QPCBLEND.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QPCBLEND.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QPCBOEI1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QPCBOEI1.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QPCBOEI2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QPCBOEI2.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QPCSTAIR.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QPCSTAIR.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QPILOTNO.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QPILOTNO.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QPTEST.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QPTEST.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QRECIPE.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QRECIPE.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSC205.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSC205.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSCAGR25.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSCAGR25.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSCAGR7.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSCAGR7.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSCFXM1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSCFXM1.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSCFXM2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSCFXM2.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSCFXM3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSCFXM3.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSCORPIO.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSCORPIO.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSCRS8.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSCRS8.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSCSD1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSCSD1.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSCSD6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSCSD6.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSCSD8.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSCSD8.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSCTAP1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSCTAP1.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSCTAP2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSCTAP2.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSCTAP3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSCTAP3.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSEBA.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSEBA.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSHARE1B.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSHARE1B.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSHARE2B.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSHARE2B.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSHELL.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSHELL.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSHIP04L.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSHIP04L.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSHIP04S.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSHIP04S.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSHIP08L.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSHIP08L.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSHIP08S.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSHIP08S.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSHIP12L.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSHIP12L.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSHIP12S.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSHIP12S.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSIERRA.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSIERRA.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSTAIR.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSTAIR.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/QSTANDAT.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/QSTANDAT.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/README.md -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/S268.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/S268.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/STADAT1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/STADAT1.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/STADAT2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/STADAT2.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/STADAT3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/STADAT3.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/STCQP1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/STCQP1.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/STCQP2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/STCQP2.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/TAME.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/TAME.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/UBH1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/UBH1.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/VALUES.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/VALUES.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/YAO.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/YAO.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/ZECEVIC2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/ZECEVIC2.mat -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/cleanup_dir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/cleanup_dir.m -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/extract_sif.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/extract_sif.m -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif2mat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif2mat.m -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/AUG2D.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/AUG2D.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/AUG2DC.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/AUG2DC.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/AUG2DCQP.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/AUG2DCQP.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/AUG2DQP.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/AUG2DQP.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/AUG3D.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/AUG3D.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/AUG3DC.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/AUG3DC.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/AUG3DCQP.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/AUG3DCQP.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/AUG3DQP.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/AUG3DQP.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/BOYD1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/BOYD1.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/BOYD2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/BOYD2.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/CONT-050.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/CONT-050.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/CONT-100.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/CONT-100.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/CONT-101.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/CONT-101.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/CONT-200.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/CONT-200.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/CONT-201.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/CONT-201.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/CONT-300.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/CONT-300.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/CVXQP1_L.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/CVXQP1_L.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/CVXQP1_M.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/CVXQP1_M.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/CVXQP1_S.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/CVXQP1_S.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/CVXQP2_L.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/CVXQP2_L.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/CVXQP2_M.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/CVXQP2_M.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/CVXQP2_S.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/CVXQP2_S.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/CVXQP3_L.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/CVXQP3_L.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/CVXQP3_M.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/CVXQP3_M.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/CVXQP3_S.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/CVXQP3_S.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/DPKLO1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/DPKLO1.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/DTOC3.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/DTOC3.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/DUAL1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/DUAL1.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/DUAL2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/DUAL2.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/DUAL3.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/DUAL3.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/DUAL4.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/DUAL4.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/DUALC1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/DUALC1.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/DUALC2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/DUALC2.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/DUALC5.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/DUALC5.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/DUALC8.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/DUALC8.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/EXDATA.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/EXDATA.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/GENHS28.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/GENHS28.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/GOULDQP2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/GOULDQP2.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/GOULDQP3.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/GOULDQP3.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/HS118.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/HS118.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/HS21.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/HS21.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/HS268.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/HS268.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/HS35.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/HS35.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/HS35MOD.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/HS35MOD.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/HS51.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/HS51.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/HS52.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/HS52.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/HS53.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/HS53.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/HS76.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/HS76.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/HUES-MOD.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/HUES-MOD.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/HUESTIS.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/HUESTIS.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/KSIP.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/KSIP.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/LASER.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/LASER.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/LISWET1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/LISWET1.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/LISWET10.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/LISWET10.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/LISWET11.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/LISWET11.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/LISWET12.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/LISWET12.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/LISWET2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/LISWET2.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/LISWET3.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/LISWET3.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/LISWET4.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/LISWET4.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/LISWET5.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/LISWET5.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/LISWET6.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/LISWET6.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/LISWET7.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/LISWET7.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/LISWET8.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/LISWET8.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/LISWET9.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/LISWET9.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/LOTSCHD.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/LOTSCHD.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/MOSARQP1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/MOSARQP1.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/MOSARQP2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/MOSARQP2.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/POWELL20.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/POWELL20.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/PRIMAL1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/PRIMAL1.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/PRIMAL2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/PRIMAL2.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/PRIMAL3.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/PRIMAL3.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/PRIMAL4.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/PRIMAL4.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/PRIMALC1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/PRIMALC1.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/PRIMALC2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/PRIMALC2.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/PRIMALC5.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/PRIMALC5.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/PRIMALC8.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/PRIMALC8.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/Q25FV47.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/Q25FV47.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QADLITTL.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QADLITTL.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QAFIRO.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QAFIRO.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QBANDM.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QBANDM.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QBEACONF.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QBEACONF.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QBORE3D.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QBORE3D.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QBRANDY.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QBRANDY.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QCAPRI.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QCAPRI.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QE226.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QE226.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QETAMACR.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QETAMACR.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QFFFFF80.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QFFFFF80.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QFORPLAN.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QFORPLAN.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QGFRDXPN.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QGFRDXPN.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QGROW15.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QGROW15.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QGROW22.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QGROW22.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QGROW7.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QGROW7.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QISRAEL.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QISRAEL.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QPCBLEND.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QPCBLEND.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QPCBOEI1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QPCBOEI1.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QPCBOEI2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QPCBOEI2.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QPCSTAIR.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QPCSTAIR.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QPILOTNO.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QPILOTNO.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QPTEST.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QPTEST.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QRECIPE.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QRECIPE.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSC205.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSC205.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSCAGR25.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSCAGR25.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSCAGR7.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSCAGR7.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSCFXM1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSCFXM1.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSCFXM2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSCFXM2.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSCFXM3.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSCFXM3.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSCORPIO.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSCORPIO.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSCRS8.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSCRS8.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSCSD1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSCSD1.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSCSD6.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSCSD6.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSCSD8.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSCSD8.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSCTAP1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSCTAP1.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSCTAP2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSCTAP2.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSCTAP3.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSCTAP3.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSEBA.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSEBA.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSHARE1B.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSHARE1B.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSHARE2B.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSHARE2B.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSHELL.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSHELL.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSHIP04L.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSHIP04L.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSHIP04S.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSHIP04S.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSHIP08L.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSHIP08L.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSHIP08S.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSHIP08S.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSHIP12L.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSHIP12L.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSHIP12S.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSHIP12S.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSIERRA.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSIERRA.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSTAIR.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSTAIR.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/QSTANDAT.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/QSTANDAT.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/S268.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/S268.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/STADAT1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/STADAT1.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/STADAT2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/STADAT2.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/STADAT3.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/STADAT3.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/STCQP1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/STCQP1.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/STCQP2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/STCQP2.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/TAME.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/TAME.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/UBH1.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/UBH1.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/VALUES.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/VALUES.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/YAO.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/YAO.SIF -------------------------------------------------------------------------------- /problem_classes/maros_meszaros_data/sif/sif_data/ZECEVIC2.SIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/maros_meszaros_data/sif/sif_data/ZECEVIC2.SIF -------------------------------------------------------------------------------- /problem_classes/portfolio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/portfolio.py -------------------------------------------------------------------------------- /problem_classes/qplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/qplib.py -------------------------------------------------------------------------------- /problem_classes/qplib_data/.gitignore: -------------------------------------------------------------------------------- 1 | *.qplib 2 | -------------------------------------------------------------------------------- /problem_classes/qplib_data/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/qplib_data/download.py -------------------------------------------------------------------------------- /problem_classes/qplib_data/list_convex_qps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/qplib_data/list_convex_qps.txt -------------------------------------------------------------------------------- /problem_classes/random_qp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/random_qp.py -------------------------------------------------------------------------------- /problem_classes/suitesparse_huber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/suitesparse_huber.py -------------------------------------------------------------------------------- /problem_classes/suitesparse_lasso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/suitesparse_lasso.py -------------------------------------------------------------------------------- /problem_classes/suitesparse_matrix_collection/.gitignore: -------------------------------------------------------------------------------- 1 | *.mat 2 | -------------------------------------------------------------------------------- /problem_classes/suitesparse_matrix_collection/download.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/suitesparse_matrix_collection/download.jl -------------------------------------------------------------------------------- /problem_classes/svm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/problem_classes/svm.py -------------------------------------------------------------------------------- /qplib_problems/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qplib_problems/qplib_problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/qplib_problems/qplib_problem.py -------------------------------------------------------------------------------- /results/benchmark_problems/benchmark_problems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/results/benchmark_problems/benchmark_problems.png -------------------------------------------------------------------------------- /results/maros_meszaros_problems/maros_meszaros_problems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/results/maros_meszaros_problems/maros_meszaros_problems.png -------------------------------------------------------------------------------- /run_all_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/run_all_cluster.sh -------------------------------------------------------------------------------- /run_benchmark_problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/run_benchmark_problems.py -------------------------------------------------------------------------------- /run_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/run_cluster.sh -------------------------------------------------------------------------------- /run_maros_meszaros_problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/run_maros_meszaros_problems.py -------------------------------------------------------------------------------- /run_parametric_problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/run_parametric_problems.py -------------------------------------------------------------------------------- /run_qplib_problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/run_qplib_problems.py -------------------------------------------------------------------------------- /run_suitesparse_problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/run_suitesparse_problems.py -------------------------------------------------------------------------------- /solvers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solvers/ecos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/solvers/ecos.py -------------------------------------------------------------------------------- /solvers/gurobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/solvers/gurobi.py -------------------------------------------------------------------------------- /solvers/mosek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/solvers/mosek.py -------------------------------------------------------------------------------- /solvers/osqp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/solvers/osqp.py -------------------------------------------------------------------------------- /solvers/qpoases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/solvers/qpoases.py -------------------------------------------------------------------------------- /solvers/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/solvers/results.py -------------------------------------------------------------------------------- /solvers/solvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/solvers/solvers.py -------------------------------------------------------------------------------- /solvers/statuses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/solvers/statuses.py -------------------------------------------------------------------------------- /suitesparse_problems/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suitesparse_problems/suitesparse_problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/suitesparse_problems/suitesparse_problem.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/utils/benchmark.py -------------------------------------------------------------------------------- /utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/utils/general.py -------------------------------------------------------------------------------- /utils/maros_meszaros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/utils/maros_meszaros.py -------------------------------------------------------------------------------- /utils/parametric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osqp/osqp_benchmarks/HEAD/utils/parametric.py --------------------------------------------------------------------------------