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

Compare minima for the trivial function

parent 00595ea8
No related branches found
No related tags found
No related merge requests found
...@@ -152,7 +152,14 @@ void testTrivialFunction() { ...@@ -152,7 +152,14 @@ void testTrivialFunction() {
error -= returned; error -= returned;
assert(error.two_norm() < 1e-10); // FIXME: 1e-10 sounds reasonable. Is it? assert(error.two_norm() < 1e-10); // FIXME: 1e-10 sounds reasonable. Is it?
functionTester(J, start, 5); double const ret1 = functionTester(J, start, 6);
std::cout << std::endl;
start[0] = 279;
start[1] = -96;
double const ret2 = functionTester(J, start, 16);
assert(std::abs(ret1 - ret2) < 1e-5);
} }
int main() { int main() {
......
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