Skip to content
Snippets Groups Projects
Commit a3c4ca5d authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Use a more complicated example

parent e138bd8a
No related branches found
No related tags found
No related merge requests found
......@@ -201,8 +201,8 @@ void testSampleFunction() {
SampleFunctional::SmallMatrix A;
A[0][0] = 3;
A[0][1] = 0;
A[1][0] = 0;
A[0][1] = 1.5;
A[1][0] = 1.5;
A[1][1] = 3;
SampleFunctional::SmallVector b;
b[0] = 1;
......@@ -232,8 +232,8 @@ void testTrivialFunction() {
SampleFunctional::SmallMatrix A;
A[0][0] = 3;
A[0][1] = 0;
A[1][0] = 0;
A[0][1] = 1.5;
A[1][0] = 1.5;
A[1][1] = 3;
SampleFunctional::SmallVector b;
b[0] = 1;
......
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