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.
32 lines
1.2 KiB
32 lines
1.2 KiB
#pragma once
|
|
|
|
#include "storm/storage/jani/Variable.h"
|
|
|
|
namespace storm {
|
|
namespace jani {
|
|
|
|
class BooleanVariable : public Variable {
|
|
public:
|
|
|
|
/*!
|
|
* Creates a Boolean variable with initial value
|
|
*/
|
|
BooleanVariable(std::string const& name, storm::expressions::Variable const& variable);
|
|
|
|
/*!
|
|
* Creates a Boolean variable with initial value
|
|
*/
|
|
BooleanVariable(std::string const& name, storm::expressions::Variable const& variable, storm::expressions::Expression const& initialValue, bool transient=false);
|
|
|
|
virtual std::unique_ptr<Variable> clone() const override;
|
|
|
|
virtual bool isBooleanVariable() const override;
|
|
};
|
|
|
|
/**
|
|
* Convenience function to call the appropriate constructor and return a shared pointer to the variable.
|
|
*/
|
|
std::shared_ptr<BooleanVariable> makeBooleanVariable(std::string const& name, storm::expressions::Variable const& variable, boost::optional<storm::expressions::Expression> initValue, bool transient);
|
|
|
|
}
|
|
}
|