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.
23 lines
801 B
23 lines
801 B
#pragma once
|
|
|
|
#include "src/storage/jani/Variable.h"
|
|
|
|
namespace storm {
|
|
namespace jani {
|
|
|
|
class UnboundedIntegerVariable : public Variable {
|
|
public:
|
|
/*!
|
|
* Creates an unbounded integer variable without initial value.
|
|
*/
|
|
UnboundedIntegerVariable(std::string const& name, storm::expressions::Variable const& variable, bool transient=false);
|
|
/*!
|
|
* Creates an unbounded integer variable with initial value.
|
|
*/
|
|
UnboundedIntegerVariable(std::string const& name, storm::expressions::Variable const& variable, storm::expressions::Expression const&, bool transient=false);
|
|
|
|
virtual bool isUnboundedIntegerVariable() const override;
|
|
};
|
|
|
|
}
|
|
}
|