From 47f14bdc238bb13d351938d187a7c239b75bea60 Mon Sep 17 00:00:00 2001 From: sp Date: Sun, 7 Jan 2024 17:10:30 +0100 Subject: [PATCH] removed debug output --- util/Grid.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/util/Grid.cpp b/util/Grid.cpp index 936f715..4ccfd00 100644 --- a/util/Grid.cpp +++ b/util/Grid.cpp @@ -141,7 +141,6 @@ void Grid::printToPrism(std::ostream& os, std::vector& configurat walkable.insert(walkable.end(), balls.begin(), balls.end()); for(auto const& c : walkable) { - std::cout << "checking: " << c << " south of c: " << c.getSouth().first << " " << c.getSouth().second << std::endl; if(isWall(c.getNorth())) northRestriction.push_back(c); if(isWall(c.getEast())) eastRestriction.push_back(c); if(isWall(c.getSouth())) southRestriction.push_back(c);