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.
34 lines
960 B
34 lines
960 B
#pragma once
|
|
|
|
#include "src/settings/modules/ModuleSettings.h"
|
|
|
|
namespace storm {
|
|
namespace settings {
|
|
namespace modules {
|
|
|
|
/*!
|
|
* This class represents the settings for the abstraction procedures.
|
|
*/
|
|
class AbstractionSettings : public ModuleSettings {
|
|
public:
|
|
/*!
|
|
* Creates a new set of abstraction settings.
|
|
*/
|
|
AbstractionSettings();
|
|
|
|
/*!
|
|
* Retrieves whether the option to add all guards was set.
|
|
*
|
|
* @return True iff the option was set.
|
|
*/
|
|
bool isAddAllGuardsSet() const;
|
|
|
|
const static std::string moduleName;
|
|
|
|
private:
|
|
const static std::string addAllGuardsOptionName;
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|