1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-24 17:10:36 +00:00

improved effciency of 535h by covering seifert_cover

This commit is contained in:
Zeno Rogue 2020-01-06 22:10:44 +01:00
parent 2ec37a4a6d
commit 87b8f585d4

View File

@ -766,7 +766,11 @@ EX namespace reg3 {
quotient_map = new hrmap_from_crystal;
h.zebraval = quotient_map->allh[0]->zebraval;
}
if(hyperbolic && !(cgflags & qIDEAL) && geometry != gSpace535) {
else if(geometry == gSpace535) {
quotient_map = new seifert_weber::hrmap_seifert_cover;
h.zebraval = quotient_map->allh[0]->zebraval;
}
else if(hyperbolic && !(cgflags & qIDEAL)) {
quotient_map = new hrmap_field3;
h.zebraval = quotient_map->allh[0]->zebraval;
}