Browse Source

changed node shapes a little

Former-commit-id: 8c7fffaf65
tempestpy_adaptions
dehnert 8 years ago
parent
commit
033faa62f0
  1. 8
      src/abstraction/prism/AbstractProgram.cpp

8
src/abstraction/prism/AbstractProgram.cpp

@ -222,9 +222,9 @@ namespace storm {
out << stateName.str(); out << stateName.str();
out << " [ label=\""; out << " [ label=\"";
if (stateValue.first.getBooleanValue(abstractionInformation.getBottomStateVariable(true))) { if (stateValue.first.getBooleanValue(abstractionInformation.getBottomStateVariable(true))) {
out << "*";
out << "*\", margin=0, width=0, height=0, shape=\"none";
} else { } else {
out << stateName.str();
out << stateName.str() << "\", margin=0, width=0, height=0, shape=\"oval";
} }
out << "\" ];" << std::endl; out << "\" ];" << std::endl;
} }
@ -249,7 +249,7 @@ namespace storm {
} }
} }
out << stateName.str() << "_" << index; out << stateName.str() << "_" << index;
out << " [ shape=\"square\", label=\"\" ];" << std::endl;
out << " [ shape=\"square\", width=0, height=0, margin=0, label=\"" << index << "\" ];" << std::endl;
out << "\tpl1_" << stateName.str() << " -> " << "pl2_" << stateName.str() << "_" << index << " [ label=\"" << index << "\" ];" << std::endl; out << "\tpl1_" << stateName.str() << " -> " << "pl2_" << stateName.str() << "_" << index << " [ label=\"" << index << "\" ];" << std::endl;
} }
@ -280,7 +280,7 @@ namespace storm {
index |= 1; index |= 1;
} } } }
out << stateName.str() << "_" << index; out << stateName.str() << "_" << index;
out << " [ shape=\"diamond\", label=\"\" ];" << std::endl;
out << " [ shape=\"point\", label=\"\" ];" << std::endl;
out << "\tpl2_" << stateName.str() << " -> " << "plp_" << stateName.str() << "_" << index << " [ label=\"" << index << "\" ];" << std::endl; out << "\tpl2_" << stateName.str() << " -> " << "plp_" << stateName.str() << "_" << index << " [ label=\"" << index << "\" ];" << std::endl;
} }

Loading…
Cancel
Save