Browse Source

fixed correct export of modulo operator

tempestpy_adaptions
TimQu 6 years ago
parent
commit
092a43a0a5
  1. 2
      src/storm/storage/jani/JSONExporter.cpp

2
src/storm/storage/jani/JSONExporter.cpp

@ -590,7 +590,7 @@ namespace storm {
case OpType::Power: case OpType::Power:
return "pow"; return "pow";
case OpType::Modulo: case OpType::Modulo:
return "mod";
return "%";
case OpType::Equal: case OpType::Equal:
return "="; return "=";
case OpType::NotEqual: case OpType::NotEqual:
Loading…
Cancel
Save