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.
19 lines
444 B
19 lines
444 B
#pragma once
|
|
|
|
#include "src/storage/jani/Variable.h"
|
|
|
|
namespace storm {
|
|
namespace jani {
|
|
|
|
class BooleanVariable : public Variable {
|
|
public:
|
|
/*!
|
|
* Creates a boolean variable.
|
|
*/
|
|
BooleanVariable(std::string const& name, storm::expressions::Variable const& variable);
|
|
|
|
virtual bool isBooleanVariable() const override;
|
|
};
|
|
|
|
}
|
|
}
|