From 351421e9e7dc18813912f5ad373da4ca1060c834 Mon Sep 17 00:00:00 2001 From: dehnert Date: Fri, 1 Mar 2013 10:53:55 +0100 Subject: [PATCH] Corrected typo. --- src/parser/PrismParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser/PrismParser.cpp b/src/parser/PrismParser.cpp index 19eed26ae..bf8d03cce 100644 --- a/src/parser/PrismParser.cpp +++ b/src/parser/PrismParser.cpp @@ -115,7 +115,7 @@ struct PrismParser::PrismGrammar : qi::grammar> relations_ >> integerExpression)[qi::_val = phoenix::construct>(phoenix::new_(qi::_1, qi::_3, qi::_2))]; - relativeExpression.name("boolean expression"); + relativeExpression.name("relative expression"); atomicBooleanExpression %= (relativeExpression | booleanVariableExpression | qi::lit("(") >> booleanExpression >> qi::lit(")") | booleanConstantExpression); atomicBooleanExpression.name("boolean expression"); notExpression = atomicBooleanExpression[qi::_val = qi::_1] | (qi::lit("!") >> atomicBooleanExpression)[qi::_val = phoenix::construct>(phoenix::new_(qi::_1, storm::ir::expressions::UnaryBooleanFunctionExpression::NOT))];