diff --git a/src/storm-dft-cli/storm-dyftee.cpp b/src/storm-dft-cli/storm-dyftee.cpp index c018108ec..4feb408a6 100644 --- a/src/storm-dft-cli/storm-dyftee.cpp +++ b/src/storm-dft-cli/storm-dyftee.cpp @@ -80,7 +80,7 @@ void analyzeWithSMT(std::string filename) { * Initialize the settings manager. */ void initializeSettings() { - storm::settings::mutableManager().setName("storm-DyFTeE", "storm-dft"); + storm::settings::mutableManager().setName("Storm-DyFTeE", "storm-dft"); // Register all known settings modules. storm::settings::addModule(); @@ -118,7 +118,7 @@ void initializeSettings() { int main(const int argc, const char** argv) { try { storm::utility::setUp(); - storm::cli::printHeader("storm-DyFTeE", argc, argv); + storm::cli::printHeader("Storm-DyFTeE", argc, argv); initializeSettings(); bool optionsCorrect = storm::cli::parseOptions(argc, argv); diff --git a/src/storm-gspn-cli/storm-gspn.cpp b/src/storm-gspn-cli/storm-gspn.cpp index bbff2c9cc..e7e03b157 100644 --- a/src/storm-gspn-cli/storm-gspn.cpp +++ b/src/storm-gspn-cli/storm-gspn.cpp @@ -40,7 +40,7 @@ * Initialize the settings manager. */ void initializeSettings() { - storm::settings::mutableManager().setName("storm-GSPN", "storm-gspn"); + storm::settings::mutableManager().setName("Storm-GSPN", "storm-gspn"); // Register all known settings modules. storm::settings::addModule(); @@ -75,7 +75,7 @@ std::unordered_map parseCapacitiesList(std::string const& int main(const int argc, const char **argv) { try { storm::utility::setUp(); - storm::cli::printHeader("storm-GSPN", argc, argv); + storm::cli::printHeader("Storm-GSPN", argc, argv); initializeSettings(); bool optionsCorrect = storm::cli::parseOptions(argc, argv); diff --git a/src/storm-gspn/parser/GspnParser.cpp b/src/storm-gspn/parser/GspnParser.cpp index cf5c698f0..b92b6f006 100644 --- a/src/storm-gspn/parser/GspnParser.cpp +++ b/src/storm-gspn/parser/GspnParser.cpp @@ -81,7 +81,7 @@ namespace storm { delete errHandler; xercesc::XMLPlatformUtils::Terminate(); #else - STORM_LOG_THROW(false, storm::exceptions::UnexpectedException, "storm is not compiled with XML support: " << filename << " can not be parsed"); + STORM_LOG_THROW(false, storm::exceptions::UnexpectedException, "Storm is not compiled with XML support: " << filename << " can not be parsed"); #endif } } diff --git a/src/storm-pgcl-cli/storm-pgcl.cpp b/src/storm-pgcl-cli/storm-pgcl.cpp index 2fa9385a2..4e4031ee4 100644 --- a/src/storm-pgcl-cli/storm-pgcl.cpp +++ b/src/storm-pgcl-cli/storm-pgcl.cpp @@ -25,7 +25,7 @@ * Initialize the settings manager. */ void initializeSettings() { - storm::settings::mutableManager().setName("storm-PGCL", "storm-pgcl"); + storm::settings::mutableManager().setName("Storm-PGCL", "storm-pgcl"); // Register all known settings modules. storm::settings::addModule(); @@ -56,7 +56,7 @@ void programGraphToDotFile(storm::ppg::ProgramGraph const& prog) { int main(const int argc, const char** argv) { try { storm::utility::setUp(); - storm::cli::printHeader("storm-PGCL", argc, argv); + storm::cli::printHeader("Storm-PGCL", argc, argv); initializeSettings(); bool optionsCorrect = storm::cli::parseOptions(argc, argv); diff --git a/src/storm/CMakeLists.txt b/src/storm/CMakeLists.txt index 1a722e207..18ac14200 100644 --- a/src/storm/CMakeLists.txt +++ b/src/storm/CMakeLists.txt @@ -20,11 +20,11 @@ set(STORM_MAIN_SOURCES ${STORM_MAIN_FILE}) # Add custom additional include or link directories if (ADDITIONAL_INCLUDE_DIRS) - message(STATUS "storm - Using additional include directories ${ADDITIONAL_INCLUDE_DIRS}") + message(STATUS "Storm - Using additional include directories ${ADDITIONAL_INCLUDE_DIRS}") include_directories(${ADDITIONAL_INCLUDE_DIRS}) endif(ADDITIONAL_INCLUDE_DIRS) if (ADDITIONAL_LINK_DIRS) - message(STATUS "storm - Using additional link directories ${ADDITIONAL_LINK_DIRS}") + message(STATUS "Storm - Using additional link directories ${ADDITIONAL_LINK_DIRS}") link_directories(${ADDITIONAL_LINK_DIRS}) endif(ADDITIONAL_LINK_DIRS) diff --git a/src/storm/parser/JaniParser.cpp b/src/storm/parser/JaniParser.cpp index 826c8075b..d743d9ced 100644 --- a/src/storm/parser/JaniParser.cpp +++ b/src/storm/parser/JaniParser.cpp @@ -237,12 +237,12 @@ namespace storm { } } } - STORM_LOG_THROW(!(accTime && accSteps), storm::exceptions::NotSupportedException, "storm does not allow to accumulate over both time and steps"); + STORM_LOG_THROW(!(accTime && accSteps), storm::exceptions::NotSupportedException, "Storm does not allow to accumulate over both time and steps"); if (propertyStructure.count("step-instant") > 0) { storm::expressions::Expression stepInstantExpr = parseExpression(propertyStructure.at("step-instant"), "Step instant in " + context); - STORM_LOG_THROW(!stepInstantExpr.containsVariables(), storm::exceptions::NotSupportedException, "storm only allows constant step-instants"); + STORM_LOG_THROW(!stepInstantExpr.containsVariables(), storm::exceptions::NotSupportedException, "Storm only allows constant step-instants"); int64_t stepInstant = stepInstantExpr.evaluateAsInt(); STORM_LOG_THROW(stepInstant >= 0, storm::exceptions::InvalidJaniException, "Only non-negative step-instants are allowed"); if(!accTime && !accSteps) { @@ -262,7 +262,7 @@ namespace storm { } } else if (propertyStructure.count("time-instant") > 0) { storm::expressions::Expression timeInstantExpr = parseExpression(propertyStructure.at("time-instant"), "time instant in " + context); - STORM_LOG_THROW(!timeInstantExpr.containsVariables(), storm::exceptions::NotSupportedException, "storm only allows constant time-instants"); + STORM_LOG_THROW(!timeInstantExpr.containsVariables(), storm::exceptions::NotSupportedException, "Storm only allows constant time-instants"); double timeInstant = timeInstantExpr.evaluateAsDouble(); STORM_LOG_THROW(timeInstant >= 0, storm::exceptions::InvalidJaniException, "Only non-negative time-instants are allowed"); if(!accTime && !accSteps) { @@ -284,7 +284,7 @@ namespace storm { STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Instant/Cumul. Reward for reward constraints not supported currently."); } - //STORM_LOG_THROW(!accTime && !accSteps, storm::exceptions::NotSupportedException, "storm only allows accumulation if a step- or time-bound is given."); + //STORM_LOG_THROW(!accTime && !accSteps, storm::exceptions::NotSupportedException, "Storm only allows accumulation if a step- or time-bound is given."); if (rewExpr.isVariable()) { std::string rewardName = rewExpr.getVariables().begin()->getName(); @@ -328,9 +328,9 @@ namespace storm { } if (propertyStructure.count("step-bounds") > 0) { storm::jani::PropertyInterval pi = parsePropertyInterval(propertyStructure.at("step-bounds")); - STORM_LOG_THROW(pi.hasUpperBound(), storm::exceptions::NotSupportedException, "storm only supports step-bounded until with an upper bound"); + STORM_LOG_THROW(pi.hasUpperBound(), storm::exceptions::NotSupportedException, "Storm only supports step-bounded until with an upper bound"); if(pi.hasLowerBound()) { - STORM_LOG_THROW(pi.lowerBound.evaluateAsInt() == 0, storm::exceptions::NotSupportedException, "storm only supports step-bounded until without a (non-trivial) lower-bound"); + STORM_LOG_THROW(pi.lowerBound.evaluateAsInt() == 0, storm::exceptions::NotSupportedException, "Storm only supports step-bounded until without a (non-trivial) lower-bound"); } int64_t upperBound = pi.upperBound.evaluateAsInt(); if(pi.upperBoundStrict) { @@ -340,7 +340,7 @@ namespace storm { return std::make_shared(args[0], args[1], storm::logic::TimeBound(pi.lowerBoundStrict, pi.lowerBound), storm::logic::TimeBound(pi.upperBoundStrict, pi.upperBound), storm::logic::TimeBoundType::Steps); } else if (propertyStructure.count("time-bounds") > 0) { storm::jani::PropertyInterval pi = parsePropertyInterval(propertyStructure.at("time-bounds")); - STORM_LOG_THROW(pi.hasUpperBound(), storm::exceptions::NotSupportedException, "storm only supports time-bounded until with an upper bound."); + STORM_LOG_THROW(pi.hasUpperBound(), storm::exceptions::NotSupportedException, "Storm only supports time-bounded until with an upper bound."); double lowerBound = 0.0; if(pi.hasLowerBound()) { lowerBound = pi.lowerBound.evaluateAsDouble(); diff --git a/src/storm/solver/MathsatSmtSolver.cpp b/src/storm/solver/MathsatSmtSolver.cpp index d7501ad53..9b6f7da2b 100644 --- a/src/storm/solver/MathsatSmtSolver.cpp +++ b/src/storm/solver/MathsatSmtSolver.cpp @@ -107,7 +107,7 @@ namespace storm { #ifdef STORM_HAVE_MSAT msat_push_backtrack_point(env); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without MathSAT support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without MathSAT support."); #endif } @@ -115,7 +115,7 @@ namespace storm { #ifdef STORM_HAVE_MSAT msat_pop_backtrack_point(env); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without MathSAT support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without MathSAT support."); #endif } @@ -123,7 +123,7 @@ namespace storm { #ifdef STORM_HAVE_MSAT SmtSolver::pop(n); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without MathSAT support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without MathSAT support."); #endif } @@ -132,7 +132,7 @@ namespace storm { #ifdef STORM_HAVE_MSAT msat_reset_env(env); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without MathSAT support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without MathSAT support."); #endif } @@ -141,7 +141,7 @@ namespace storm { #ifdef STORM_HAVE_MSAT msat_assert_formula(env, expressionAdapter->translateExpression(e)); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without MathSAT support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without MathSAT support."); #endif } @@ -162,7 +162,7 @@ namespace storm { } return this->lastResult; #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without MathSAT support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without MathSAT support."); #endif } @@ -190,7 +190,7 @@ namespace storm { } return this->lastResult; #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without MathSAT support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without MathSAT support."); #endif } @@ -219,7 +219,7 @@ namespace storm { } return this->lastResult; #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without MathSAT support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without MathSAT support."); #endif } #endif @@ -230,7 +230,7 @@ namespace storm { STORM_LOG_THROW(this->lastResult == SmtSolver::CheckResult::Sat, storm::exceptions::InvalidStateException, "Unable to create model for formula that was not determined to be satisfiable."); return this->convertMathsatModelToValuation(); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without MathSAT support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without MathSAT support."); #endif } @@ -239,7 +239,7 @@ namespace storm { STORM_LOG_THROW(this->lastResult == SmtSolver::CheckResult::Sat, storm::exceptions::InvalidStateException, "Unable to create model for formula that was not determined to be satisfiable."); return std::shared_ptr(new MathsatModelReference(this->getManager(), env, *expressionAdapter)); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without MathSAT support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without MathSAT support."); #endif } @@ -279,7 +279,7 @@ namespace storm { this->allSat(important, [&valuations](storm::expressions::SimpleValuation const& valuation) -> bool { valuations.push_back(valuation); return true; }); return valuations; #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without MathSAT support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without MathSAT support."); #endif } @@ -379,7 +379,7 @@ namespace storm { this->pop(); return static_cast(numberOfModels); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without MathSAT support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without MathSAT support."); #endif } @@ -405,7 +405,7 @@ namespace storm { this->pop(); return static_cast(numberOfModels); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without MathSAT support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without MathSAT support."); #endif } @@ -426,7 +426,7 @@ namespace storm { return unsatAssumptions; #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without MathSAT support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without MathSAT support."); #endif } @@ -440,7 +440,7 @@ namespace storm { } msat_set_itp_group(env, groupIter->second); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without MathSAT support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without MathSAT support."); #endif } @@ -462,7 +462,7 @@ namespace storm { return this->expressionAdapter->translateExpression(interpolant); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without MathSAT support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without MathSAT support."); #endif } } diff --git a/src/storm/solver/TopologicalMinMaxLinearEquationSolver.h b/src/storm/solver/TopologicalMinMaxLinearEquationSolver.h index c8af93f13..70338ce21 100644 --- a/src/storm/solver/TopologicalMinMaxLinearEquationSolver.h +++ b/src/storm/solver/TopologicalMinMaxLinearEquationSolver.h @@ -73,7 +73,7 @@ namespace storm { #ifdef STORM_HAVE_CUDA return basicValueIteration_mvReduce_uint64_double_minimize(maxIterationCount, precision, relativePrecisionCheck, matrixRowIndices, columnIndicesAndValues, x, b, nondeterministicChoiceIndices, iterationCount); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without CUDA support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without CUDA support."); #endif } template <> @@ -92,7 +92,7 @@ namespace storm { #ifdef STORM_HAVE_CUDA return basicValueIteration_mvReduce_uint64_float_minimize(maxIterationCount, precision, relativePrecisionCheck, matrixRowIndices, columnIndicesAndValues, x, b, nondeterministicChoiceIndices, iterationCount); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without CUDA support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without CUDA support."); #endif } @@ -116,7 +116,7 @@ namespace storm { #ifdef STORM_HAVE_CUDA return basicValueIteration_mvReduce_uint64_double_maximize(maxIterationCount, precision, relativePrecisionCheck, matrixRowIndices, columnIndicesAndValues, x, b, nondeterministicChoiceIndices, iterationCount); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without CUDA support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without CUDA support."); #endif } template <> @@ -135,7 +135,7 @@ namespace storm { #ifdef STORM_HAVE_CUDA return basicValueIteration_mvReduce_uint64_float_maximize(maxIterationCount, precision, relativePrecisionCheck, matrixRowIndices, columnIndicesAndValues, x, b, nondeterministicChoiceIndices, iterationCount); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without CUDA support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without CUDA support."); #endif } diff --git a/src/storm/solver/Z3SmtSolver.cpp b/src/storm/solver/Z3SmtSolver.cpp index cb291bcb9..cff81e5e7 100644 --- a/src/storm/solver/Z3SmtSolver.cpp +++ b/src/storm/solver/Z3SmtSolver.cpp @@ -19,7 +19,7 @@ namespace storm { z3::expr z3ExprValuation = model.eval(z3Expr, true); return this->expressionAdapter.translateExpression(z3ExprValuation).isTrue(); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without Z3 support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without Z3 support."); #endif } @@ -30,7 +30,7 @@ namespace storm { z3::expr z3ExprValuation = model.eval(z3Expr, true); return this->expressionAdapter.translateExpression(z3ExprValuation).evaluateAsInt(); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without Z3 support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without Z3 support."); #endif } @@ -41,7 +41,7 @@ namespace storm { z3::expr z3ExprValuation = model.eval(z3Expr, true); return this->expressionAdapter.translateExpression(z3ExprValuation).evaluateAsDouble(); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without Z3 support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without Z3 support."); #endif } @@ -68,7 +68,7 @@ namespace storm { #ifdef STORM_HAVE_Z3 this->solver->push(); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without Z3 support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without Z3 support."); #endif } @@ -77,7 +77,7 @@ namespace storm { #ifdef STORM_HAVE_Z3 this->solver->pop(); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without Z3 support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without Z3 support."); #endif } @@ -86,7 +86,7 @@ namespace storm { #ifdef STORM_HAVE_Z3 this->solver->pop(static_cast(n)); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without Z3 support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without Z3 support."); #endif } @@ -95,7 +95,7 @@ namespace storm { #ifdef STORM_HAVE_Z3 this->solver->reset(); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without Z3 support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without Z3 support."); #endif } @@ -104,7 +104,7 @@ namespace storm { #ifdef STORM_HAVE_Z3 this->solver->add(expressionAdapter->translateExpression(assertion)); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without Z3 support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without Z3 support."); #endif } @@ -125,7 +125,7 @@ namespace storm { } return this->lastResult; #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without Z3 support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without Z3 support."); #endif } @@ -152,7 +152,7 @@ namespace storm { } return this->lastResult; #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without Z3 support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without Z3 support."); #endif } @@ -180,7 +180,7 @@ namespace storm { } return this->lastResult; #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without Z3 support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without Z3 support."); #endif } #endif @@ -190,7 +190,7 @@ namespace storm { STORM_LOG_THROW(this->lastResult == SmtSolver::CheckResult::Sat, storm::exceptions::InvalidStateException, "Unable to create model for formula that was not determined to be satisfiable."); return this->convertZ3ModelToValuation(this->solver->get_model()); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without Z3 support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without Z3 support."); #endif } @@ -199,7 +199,7 @@ namespace storm { STORM_LOG_THROW(this->lastResult == SmtSolver::CheckResult::Sat, storm::exceptions::InvalidStateException, "Unable to create model for formula that was not determined to be satisfiable."); return std::shared_ptr(new Z3ModelReference(this->getManager(), this->solver->get_model(), *this->expressionAdapter)); #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without Z3 support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without Z3 support."); #endif } @@ -234,7 +234,7 @@ namespace storm { this->allSat(important, static_cast>([&valuations](storm::expressions::SimpleValuation const& valuation) -> bool { valuations.push_back(valuation); return true; })); return valuations; #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without Z3 support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without Z3 support."); #endif } @@ -276,7 +276,7 @@ namespace storm { this->pop(); return numberOfModels; #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without Z3 support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without Z3 support."); #endif } @@ -317,7 +317,7 @@ namespace storm { this->pop(); return numberOfModels; #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without Z3 support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without Z3 support."); #endif } @@ -335,7 +335,7 @@ namespace storm { return unsatAssumptions; #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without Z3 support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without Z3 support."); #endif } @@ -346,7 +346,7 @@ namespace storm { solver->set(paramObject); return true; #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without Z3 support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without Z3 support."); #endif } @@ -357,7 +357,7 @@ namespace storm { solver->set(paramObject); return true; #else - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm is compiled without Z3 support."); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm is compiled without Z3 support."); #endif } diff --git a/src/storm/storage/jani/JSONExporter.cpp b/src/storm/storage/jani/JSONExporter.cpp index c39a6b79b..fc5346c0d 100644 --- a/src/storm/storage/jani/JSONExporter.cpp +++ b/src/storm/storage/jani/JSONExporter.cpp @@ -183,7 +183,7 @@ namespace storm { } boost::any FormulaToJaniJson::visit(storm::logic::CumulativeRewardFormula const&, boost::any const&) const { - STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "storm currently does not support translating cummulative reward formulae"); + STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Storm currently does not support translating cumulative reward formulae"); } boost::any FormulaToJaniJson::visit(storm::logic::EventuallyFormula const& f, boost::any const& data) const { diff --git a/src/storm/storm.cpp b/src/storm/storm.cpp index 73c5a8a15..c21be38a0 100644 --- a/src/storm/storm.cpp +++ b/src/storm/storm.cpp @@ -17,8 +17,8 @@ int main(const int argc, const char** argv) { try { storm::utility::Stopwatch totalTimer(true); storm::utility::setUp(); - storm::cli::printHeader("storm", argc, argv); - storm::settings::initializeAll("storm", "storm"); + storm::cli::printHeader("Storm", argc, argv); + storm::settings::initializeAll("Storm", "storm"); bool optionsCorrect = storm::cli::parseOptions(argc, argv); if (!optionsCorrect) { return -1; diff --git a/src/test/storm-test.cpp b/src/test/storm-test.cpp index a88084304..7f33be83a 100644 --- a/src/test/storm-test.cpp +++ b/src/test/storm-test.cpp @@ -2,7 +2,7 @@ #include "storm/settings/SettingsManager.h" int main(int argc, char **argv) { - storm::settings::initializeAll("storm (Functional) Testing Suite", "test"); + storm::settings::initializeAll("Storm (Functional) Testing Suite", "test"); ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); }