From fba1953f63bceb8ea8dae7753f64a5f1ad73154b Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 7 Feb 2020 19:44:44 +0100 Subject: [PATCH] fixed getcurrfp in horospherical hyperbolic --- fieldpattern.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fieldpattern.cpp b/fieldpattern.cpp index 777d1204..9d13446d 100644 --- a/fieldpattern.cpp +++ b/fieldpattern.cpp @@ -1149,7 +1149,7 @@ EX struct fpattern& getcurrfp() { fp.Prime = 5; fp.force_hash = 0x9FDE7B38u; fp.solve(); return fp; } - if(WDIM == 3 && !quotient && !hybri) { + if(WDIM == 3 && !quotient && !hybri && !bt::in()) { static fpattern fp(0); if(fp.Prime) return fp; for(int p=2; p<8; p++) { fp.Prime = p; if(!fp.solve()) break; }