Austin Schuh | 9049e20 | 2022-02-20 17:34:16 -0800 | [diff] [blame^] | 1 | .. _linear_system_solvers_setting : |
| 2 | |
| 3 | Linear Systems Solvers |
| 4 | ----------------------- |
| 5 | The settings parameter :code:`linsys_solver` defines the solver for the linear system. |
| 6 | In C it corresponds to an integer :code:`c_int` (see :ref:`c_cpp_data_types`) and in the other high level languages to a string. |
| 7 | |
| 8 | |
| 9 | +-----------------+-------------------+--------------------------------+---------------+ |
| 10 | | Solver | String option | C Constant | Integer value | |
| 11 | +=================+===================+================================+===============+ |
| 12 | | QDLDL | "qdldl" | :code:`QDLDL_SOLVER` | :code:`0` | |
| 13 | +-----------------+-------------------+--------------------------------+---------------+ |
| 14 | | MKL Pardiso | "mkl pardiso" | :code:`MKL_PARDISO_SOLVER` | :code:`1` | |
| 15 | +-----------------+-------------------+--------------------------------+---------------+ |
| 16 | |
| 17 | |
| 18 | |
| 19 | To add new linear system solvers see :ref:`interfacing_new_linear_system_solvers`. |
| 20 | |
| 21 | |
| 22 | |