nilv:: lazy inverse_exp does 5 steps

This commit is contained in:
Zeno Rogue 2019-08-06 21:09:24 +02:00
parent 4d64618600
commit 990bddb58d
1 changed files with 1 additions and 1 deletions

View File

@ -550,7 +550,7 @@ namespace nisot {
hyperpoint inverse_exp(const hyperpoint h, iePrecision p) {
if(sol) return solv::get_inverse_exp(h, p == iLazy);
if(nil) return nilv::get_inverse_exp(h, 10);
if(nil) return nilv::get_inverse_exp(h, p == iLazy ? 5 : 20);
return point3(h[0], h[1], h[2]);
}