Skip to content
Snippets Groups Projects
Commit 0bac8d6c authored by Oliver Sander's avatar Oliver Sander Committed by sander@FU-BERLIN.DE
Browse files

bugfix: we need acosh instead of acos

[[Imported from SVN: r9199]]
parent 2cb550a7
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ class HyperbolicHalfspacePoint
return 8.0/15 - 24*(x-1)/35;
} else {
T d = x*x-1;
return -6*x/(d*d) + (4*x*x+2)*std::acos(x)/(std::pow(d,5.2));
return -6*x/(d*d) + (4*x*x+2)*std::acosh(x)/(std::pow(d,5.2));
}
}
......
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