Esempio n. 1
0
int SPOOLESSolverMT::SolveLinearSystem(double * x, const double * rhs)
{
  DisabledSolverError();
  return 1;
}
Esempio n. 2
0
MKL_INT PardisoSolver::SolveLinearSystemDirectIterative(const SparseMatrix * A, double * x, const double * rhs)
{
  DisabledSolverError();
  return 1;
}
Esempio n. 3
0
SPOOLESSolverMT::SPOOLESSolverMT(const SparseMatrix * A, int numThreads, int verbose)
{
  DisabledSolverError();
}
Esempio n. 4
0
MKL_INT PardisoSolver::SolveLinearSystem(double * x, const double * rhs)
{
  DisabledSolverError();
  return 1;
}
Esempio n. 5
0
MKL_INT PardisoSolver::SolveLinearSystemMultipleRHS(double * x, const double * rhs, int numRHS)
{
  DisabledSolverError();
  return 1;
}
Esempio n. 6
0
MKL_INT PardisoSolver::FactorMatrix(const SparseMatrix * A)
{
  DisabledSolverError();
  return 1;
}
Esempio n. 7
0
PardisoSolver::PardisoSolver(const SparseMatrix * A, int numThreads_, matrixType mtype_, reorderingType rtype_, int directIterative_, int verbose_): numThreads(numThreads_), mtype(mtype_), rtype(rtype_), directIterative(directIterative_), verbose(verbose_)
{
  DisabledSolverError();
}
MKL_INT PardisoSolver::ComputeCholeskyDecomposition(const SparseMatrix * A)
{
  DisabledSolverError();
  return 1;
}
PardisoSolver::~PardisoSolver()
{
  DisabledSolverError();
}
Esempio n. 10
0
PardisoSolver::PardisoSolver(const SparseMatrix * A, int numThreads_, int positiveDefinite_, int directIterative_, int verbose_) : numThreads(numThreads_), positiveDefinite(positiveDefinite_), directIterative(directIterative_), verbose(verbose_) 
{
  DisabledSolverError();
}