You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 lines
568 B

#ifndef STORM_MODELCHECKER_MULTIOBJECTIVE_PCAA_H_
#define STORM_MODELCHECKER_MULTIOBJECTIVE_PCAA_H_
#include <memory>
#include "src/modelchecker/results/CheckResult.h"
#include "src/logic/Formulas.h"
namespace storm {
namespace modelchecker {
namespace multiobjective {
template<typename SparseModelType>
std::unique_ptr<CheckResult> performPcaa(SparseModelType const& model, storm::logic::MultiObjectiveFormula const& formula);
}
}
}
#endif /* STORM_MODELCHECKER_MULTIOBJECTIVE_PCAA_H_ */