Skip to content
Snippets Groups Projects
Commit de175a9f authored by Oliver Sander's avatar Oliver Sander
Browse files

[!366] CHOLMOD: provide access to the cholmod_common object

Merge branch 'feature/cholmod-common' into 'master'

ref:core/dune-istl\> This allows other implementations that are using the
istl-cholmod wrapper to set options and other parameters of the cholmod
solver.

See merge request [!366]

  [!366]: gitlab.dune-project.org/core/dune-istl/merge_requests/366
parents 848d3972 918d1e45
No related branches found
No related tags found
1 merge request!366CHOLMOD: provide access to the cholmod_common object
Pipeline #25732 failed
# Master (will become release 2.8)
- Added public access of the `cholmod_common` object in class `Cholmod`.
## Deprecations and removals
- Drop deprecated bindings of direct solver Pardiso.
......
......@@ -311,6 +311,16 @@ public:
return SolverCategory::Category::sequential;
}
/** \brief return a reference to the CHOLMOD common object for advanced option settings
*
* The CHOLMOD common object stores all parameters and options for the solver to run
* and can be modified in several ways, see CHOLMOD Userguide for further information
*/
cholmod_common& cholmodCommonObject()
{
return c_;
}
private:
// create a destrucable unique_ptr
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment