Browse Source

removed print from CloneVisitor

tempestpy_adaptions
Stefan Pranger 4 years ago
parent
commit
84bcfef24e
  1. 1
      src/storm/logic/CloneVisitor.cpp

1
src/storm/logic/CloneVisitor.cpp

@ -88,7 +88,6 @@ namespace storm {
}
boost::any CloneVisitor::visit(GameFormula const& f, boost::any const& data) const {
STORM_PRINT_AND_LOG("CloneVisitor called for GameFormula\n");
std::shared_ptr<Formula> subformula = boost::any_cast<std::shared_ptr<Formula>>(f.getSubformula().accept(*this, data));
return std::static_pointer_cast<Formula>(std::make_shared<GameFormula>(f.getCoalition(), subformula));
}

Loading…
Cancel
Save