Austin Schuh | 9049e20 | 2022-02-20 17:34:16 -0800 | [diff] [blame] | 1 | .. _cutest_interface: |
| 2 | |
| 3 | CUTEst |
| 4 | ====== |
| 5 | |
| 6 | The command to solve a problem in SIF format contained in the file |
| 7 | probname.SIF is |
| 8 | |
| 9 | .. code:: |
| 10 | |
| 11 | runcutest -p osqp -D probname.SIF |
| 12 | |
| 13 | See the man page for runcutest for more details or other options. |
| 14 | |
| 15 | The default OSQP settings used in CUTEst appear in the `OSQP.SPC <https://github.com/ralna/CUTEst/blob/master/src/osqp/OSQP.SPC>`_ file. |
| 16 | Optionally, new parameter values to overwrite the default values can be stored in a file :code:`OSQP.SPC` in the directory where the :code:`runcutest` command is executed. |
| 17 | The format of the file :code:`OSQP.SPC` is the parameter name starting in the first column followed by one or more spaces and then the parameter value. |
| 18 | The parameter names are case sensitive. |
| 19 | If the parameter value is :code:`true` or :code:`false`, then use :code:`1` for true and :code:`0` for :code:`false`. |
| 20 | |
| 21 | For more details see the `README.osqp <https://github.com/ralna/CUTEst/blob/master/src/osqp/README.osqp>`_ file in the CUTEst repository. |
| 22 | |