From fd2cc9e07fb04ef82c4a649380809a7948422936 Mon Sep 17 00:00:00 2001 From: sp Date: Sun, 14 Jan 2024 09:19:20 +0100 Subject: [PATCH] set defaults for probIntended and faultyProb --- main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.cpp b/main.cpp index b68cf3f..e26762e 100644 --- a/main.cpp +++ b/main.cpp @@ -129,9 +129,9 @@ int main(int argc, char* argv[]) { std::vector configurations; std::vector probabilities; std::map stateRewards; - float faultyProbability = 0.1; - float probIntended = 0.9; - float probTurnIntended = 1; + float faultyProbability = 0.0; + float probIntended = 1.0; + float probTurnIntended = 1.0; try { bool ok = phrase_parse(contentIter, contentLast, contentParser, qi::space, contentCells);