From b07987b2f4340c7241ae76b4989d503d9a20dd11 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 27 Mar 2024 20:59:11 +0100 Subject: [PATCH] removed debug displayed by irregular --- irregular.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/irregular.cpp b/irregular.cpp index cfdeb02a..8d7d3204 100644 --- a/irregular.cpp +++ b/irregular.cpp @@ -402,10 +402,7 @@ bool step(int delta) { if(notfound) { status[4] = XLAT("cells badly paired: %1", its(notfound)); runlevel = 0; break; } int heptas = 0; - for(auto p: cells_of_heptagon) { - printf("%p: %d\n", hr::voidp(p.first), isize(p.second)); - heptas++; - } + for(auto p: cells_of_heptagon) heptas++; if(heptas != isize(all)) { status[4] = XLAT("cells not covered: %1", its(isize(all) - heptas));