From d4f791e80df5bd8976c53078252e8a9d4435c64e Mon Sep 17 00:00:00 2001 From: Lanchid Date: Tue, 7 May 2013 14:38:25 +0200 Subject: [PATCH] Removed default values for prctl, csl and ltl settings and added test formulas for the "die" test as prctl file --- src/utility/Settings.cpp | 6 +++--- test/functional/die/testFormulas.prctl | 4 ++++ 2 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 test/functional/die/testFormulas.prctl diff --git a/src/utility/Settings.cpp b/src/utility/Settings.cpp index d43a7b785..9a9ab1120 100644 --- a/src/utility/Settings.cpp +++ b/src/utility/Settings.cpp @@ -137,9 +137,9 @@ void Settings::initDescriptions() { ("test-prctl", bpo::value(), "name of prctl file") ("trafile", bpo::value()->required(), "name of the .tra file") ("labfile", bpo::value()->required(), "name of the .lab file") - ("prctl", bpo::value()->default_value(""), "text file containing prctl formulas") - ("csl", bpo::value()->default_value(""), "text file containing csl formulas") - ("ltl", bpo::value()->default_value(""), "text file containing ltl formulas") + ("prctl", bpo::value(), "text file containing prctl formulas") + ("csl", bpo::value(), "text file containing csl formulas") + ("ltl", bpo::value(), "text file containing ltl formulas") ("transrew", bpo::value()->default_value(""), "name of transition reward file") ("staterew", bpo::value()->default_value(""), "name of state reward file") ("fix-deadlocks", "insert self-loops for states without outgoing transitions") diff --git a/test/functional/die/testFormulas.prctl b/test/functional/die/testFormulas.prctl new file mode 100644 index 000000000..8deea6c43 --- /dev/null +++ b/test/functional/die/testFormulas.prctl @@ -0,0 +1,4 @@ +P=? [ F one ] +P=? [ F two ] +P=? [ F three ] +R=? [ F done ]