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
842 B

#include "storm/storage/jani/RealVariable.h"
namespace storm {
namespace jani {
RealVariable::RealVariable(std::string const& name, storm::expressions::Variable const& variable) : storm::jani::Variable(name, variable) {
// Intentionally left empty.
}
RealVariable::RealVariable(std::string const& name, storm::expressions::Variable const& variable, storm::expressions::Expression const& initValue, bool transient) : storm::jani::Variable(name, variable, initValue, transient) {
// Intentionally left empty.
}
std::unique_ptr<Variable> RealVariable::clone() const {
return std::make_unique<RealVariable>(*this);
}
bool RealVariable::isRealVariable() const {
return true;
}
}
}