blob: 1aa84756b0869e06e347a71619ac4a2d673a4f73 [file] [log] [blame]
Austin Schuh9049e202022-02-20 17:34:16 -08001.. _linear_system_solvers_setting :
2
3Linear Systems Solvers
4-----------------------
5The settings parameter :code:`linsys_solver` defines the solver for the linear system.
6In 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
19To add new linear system solvers see :ref:`interfacing_new_linear_system_solvers`.
20
21
22