From c564f5070e5e26e84e6aeec9811ce583251beb06 Mon Sep 17 00:00:00 2001 From: ssit Date: Wed, 6 Dec 2023 15:08:29 -0500 Subject: [PATCH] Fix locale::facet::_S_create_c_locale name not valid --- source/Agents/GP/GPTrainingLoop.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Agents/GP/GPTrainingLoop.hpp b/source/Agents/GP/GPTrainingLoop.hpp index d640aaaf..b46681e6 100644 --- a/source/Agents/GP/GPTrainingLoop.hpp +++ b/source/Agents/GP/GPTrainingLoop.hpp @@ -162,7 +162,7 @@ namespace cowboys { const size_t numAgents = numArenas * NumAgentsForArena; std::stringstream ss; - ss.imbue(std::locale("")); + // ss.imbue(std::locale("")); ss << std::fixed << numAgents; std::cout << "number of agents " << std::fixed << ss.str() << std::endl;