Skip to content
Snippets Groups Projects
Commit 675b0a42 authored by Norihiro Watanabe's avatar Norihiro Watanabe
Browse files

remove an unused RowMajorSparsity paramter from a constructor of LisLinearSystem.

parent f0c57790
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ bool LisLinearSystem::checkError(int err)
return ok;
}
LisLinearSystem::LisLinearSystem(std::size_t dimension, RowMajorSparsity*)
LisLinearSystem::LisLinearSystem(std::size_t dimension)
: _dim(dimension), _max_diag_coeff(.0)
{
int ierr = 0;
......
......@@ -20,7 +20,6 @@
#include "lis.h"
#include "MathLib/LinAlg/Sparse/Sparsity.h"
#include "LisOption.h"
namespace MathLib
......@@ -42,9 +41,8 @@ public:
* Create a linear system using Lis
*
* @param length System dimension
* @param sp Sparsity
*/
LisLinearSystem(std::size_t length, RowMajorSparsity* sp);
LisLinearSystem(std::size_t length);
/**
*
......
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