From 5d373c5cb815f34019ebbaf8895a547d22fd4b13 Mon Sep 17 00:00:00 2001 From: sp Date: Sun, 14 Jan 2024 16:26:04 +0100 Subject: [PATCH] remove debug printout to std::cout --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index e26762e..012f2e6 100644 --- a/main.cpp +++ b/main.cpp @@ -165,7 +165,7 @@ int main(int argc, char* argv[]) { if(ok) { Grid grid(contentCells, backgroundCells, stateRewards, probIntended, faultyProbability); - grid.printToPrism(std::cout, configurations); + //grid.printToPrism(std::cout, configurations); std::stringstream ss; grid.printToPrism(ss, configurations); std::string str = ss.str();