From ce08a14390ebd9ef1e087d4a122a8bb41b82bc9d Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 15 Apr 2018 13:04:34 +0200 Subject: [PATCH] Sloppy Graveyard on 37 is known --- pattern2.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pattern2.cpp b/pattern2.cpp index c7f54e0c..f2383f04 100644 --- a/pattern2.cpp +++ b/pattern2.cpp @@ -994,7 +994,12 @@ int geosupport_graveyard() { if(!nonbitrunc) return 2; // always works in patterns supporting three-color - return geosupport_threecolor(); + int tc = geosupport_threecolor(); + if(tc) return tc; + + if(S3 == 3 && S7 == 7) return 1; + if(S3 == 4 && !(S7&1)) return 2; + return 0; } int pattern_threecolor(cell *c) {