Skip to content
Snippets Groups Projects
Commit 445ce0f2 authored by Henry Weller's avatar Henry Weller
Browse files

Test-Matrix: Removed timing test

parent 67a51b1f
No related merge requests found
...@@ -131,22 +131,6 @@ int main(int argc, char *argv[]) ...@@ -131,22 +131,6 @@ int main(int argc, char *argv[])
Info<< "det = " << detDecomposed(squareMatrix, sign) << endl; Info<< "det = " << detDecomposed(squareMatrix, sign) << endl;
} }
{
scalarSquareMatrix squareMatrix(3000, 3000, 1);
for(label i=0; i<squareMatrix.n(); i++)
{
squareMatrix(i, i) = 10;
}
scalarField rhs(squareMatrix.n(), 0);
rhs[0] = 1;
rhs[1] = 2;
rhs[2] = 3;
LUsolve(squareMatrix, rhs);
}
Info<< "\nEnd\n" << endl; Info<< "\nEnd\n" << endl;
return 0; return 0;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment