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
939 B
34 lines
939 B
#pragma once
|
|
|
|
#include "storm-config.h"
|
|
#include "storm/settings/modules/ModuleSettings.h"
|
|
|
|
#include "storm/solver/SolverSelectionOptions.h"
|
|
#include "storm/solver/MultiplicationStyle.h"
|
|
|
|
namespace storm {
|
|
namespace settings {
|
|
namespace modules {
|
|
|
|
/*!
|
|
* This class represents the multiplier settings.
|
|
*/
|
|
class MultiplierSettings : public ModuleSettings {
|
|
public:
|
|
|
|
MultiplierSettings();
|
|
|
|
storm::solver::MultiplierType getMultiplierType() const;
|
|
|
|
bool isMultiplierTypeSetFromDefaultValue() const;
|
|
|
|
// The name of the module.
|
|
static const std::string moduleName;
|
|
|
|
private:
|
|
static const std::string multiplierTypeOptionName;
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|