Browse Source

Update src/storm/storage/prism/OverlappingGuardAnalyser.h

Co-authored-by: Tim Quatmann <tim.quatmann@cs.rwth-aachen.de>
tempestpy_adaptions
Sebastian Junges 4 years ago
committed by GitHub
parent
commit
b3a69e24a3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      src/storm/storage/prism/OverlappingGuardAnalyser.h

8
src/storm/storage/prism/OverlappingGuardAnalyser.h

@ -20,7 +20,14 @@ namespace storm {
class OverlappingGuardAnalyser {
public:
OverlappingGuardAnalyser(Program const& program, std::shared_ptr<storm::utility::solver::SmtSolverFactory>& smtSolverFactory);
/*!
* returns true iff there are two commands that
* * are contained in the same module,
* * either have the same action label or are both unlabeled, and
* * have overlapping guards, i.e., can be enabled simultaneously.
*/
bool hasModuleWithInnerActionOverlap();
private:
Program const& program;
@ -29,4 +36,3 @@ namespace storm {
};
}
}
Loading…
Cancel
Save