SolverConfig ============ .. cpp:class:: numpy::SolverConfig numpy C++ class. Example ------- .. code-block:: cpp #include using namespace numpy; // Use SolverConfig SolverConfig obj; // ... operations ... Other Methods ------------- .. list-table:: :widths: 40 20 15 25 :header-rows: 1 * - Signature - Return Type - Location - Example * - ``SolverConfig cg(doubletol = 1e-6, intmax_iter = 1000)`` - SolverConfig - NP_SPARSE.H:71 - * - ``SolverConfig direct()`` - SolverConfig - NP_SPARSE.H:57 - * - ``SolverConfig iterative(doubletol = 1e-6, intmax_iter = 1000)`` - SolverConfig - NP_SPARSE.H:63 -