blob: cf21fca262817dea074455e2c741acdf0ecb6be3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- src/kernel/LinAlg_SPARSKIT.cpp.orig 2024-03-08 06:48:58 UTC
+++ src/kernel/LinAlg_SPARSKIT.cpp
@@ -117,7 +117,7 @@ void LinAlg_CreateVector(gVector *V, gSolver *Solver,
V->N = n;
}
-void LinAlg_CreateMatrix(gMatrix *M, gSolver *Solver, int n, int m)
+void LinAlg_CreateMatrix(gMatrix *M, gSolver *Solver, int n, int m, bool silent)
{
init_matrix(n, &M->M, &Solver->Params);
}
|