Browse Source

Removing debug output.

tempestpy_adaptions
gereon 12 years ago
parent
commit
dfd4df2884
  1. 2
      src/ir/expressions/UnaryBooleanFunctionExpression.h
  2. 1
      src/parser/PrismParser.cpp

2
src/ir/expressions/UnaryBooleanFunctionExpression.h

@ -54,7 +54,7 @@ public:
switch (functionType) { switch (functionType) {
case NOT: result += "!"; break; case NOT: result += "!"; break;
} }
result += this->getChild()->toString();
result += "(" + this->getChild()->toString() + ")";
return result; return result;
} }

1
src/parser/PrismParser.cpp

@ -33,7 +33,6 @@ namespace parser {
* exception is passed on to the caller. * exception is passed on to the caller.
*/ */
storm::ir::Program PrismParser::parseFile(std::string const& filename) const { storm::ir::Program PrismParser::parseFile(std::string const& filename) const {
std::cerr << "parseFile( " << filename << " )" << std::endl;
// Open file and initialize result. // Open file and initialize result.
std::ifstream inputFileStream(filename, std::ios::in); std::ifstream inputFileStream(filename, std::ios::in);
storm::ir::Program result; storm::ir::Program result;

Loading…
Cancel
Save