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.
14 lines
815 B
14 lines
815 B
#pragma once
|
|
|
|
#include "storm-counterexamples/counterexamples/MILPMinimalLabelSetGenerator.h"
|
|
#include "storm-counterexamples/counterexamples/SMTMinimalLabelSetGenerator.h"
|
|
|
|
namespace storm {
|
|
namespace api {
|
|
|
|
std::shared_ptr<storm::counterexamples::Counterexample> computeHighLevelCounterexampleMilp(storm::storage::SymbolicModelDescription const& symbolicModel, std::shared_ptr<storm::models::sparse::Mdp<double>> mdp, std::shared_ptr<storm::logic::Formula const> const& formula);
|
|
|
|
std::shared_ptr<storm::counterexamples::Counterexample> computeHighLevelCounterexampleMaxSmt(storm::storage::SymbolicModelDescription const& symbolicModel, std::shared_ptr<storm::models::sparse::Model<double>> model, std::shared_ptr<storm::logic::Formula const> const& formula);
|
|
|
|
}
|
|
}
|