From ffda562f7cb93686796b1470a62f091b5932dc90 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 27 Dec 2023 10:58:55 +0100 Subject: [PATCH] geom3:: fixed Sol, NIH and SolN embeddings being always displayed as legal --- embeddings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embeddings.cpp b/embeddings.cpp index 99428eee..c254f80c 100644 --- a/embeddings.cpp +++ b/embeddings.cpp @@ -90,7 +90,7 @@ EX namespace geom3 { ans += " torus"; } if(among(sp, seSol, seNIH, seSolN)) { - if((meuclid && !PURE) && !bt::in()) ans += " pure or bin"; + if((meuclid && !PURE) || !bt::in()) ans += " pure or bin"; } return ans; }