Skip to content
Snippets Groups Projects
Commit 9efd2742 authored by Marco Agnese's avatar Marco Agnese Committed by Christoph Grüninger
Browse files

[suitesparse] Add setOption to LDL wrapper for compatibility

parent 8ff42cf9
No related branches found
No related tags found
1 merge request!8Feature/fs1519 suitesparse ldl spqr
......@@ -163,6 +163,12 @@ namespace Dune {
ldl_permt(dimMat, x, Y_, P_);
}
void setOption(unsigned int option, double value)
{
DUNE_UNUSED_PARAMETER(option);
DUNE_UNUSED_PARAMETER(value);
}
/** @brief Initialize data from given matrix. */
void setMatrix(const Matrix& matrix)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment