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.
 
 
 
 

25 lines
727 B

#pragma once
#include "src/storage/jani/Variable.h"
namespace storm {
namespace jani {
class RealVariable : public Variable {
public:
/*!
* Creates a real variable without initial value.
*/
RealVariable(std::string const& name, storm::expressions::Variable const& variable);
/*!
* Creates a real variable with initial value.
*/
RealVariable(std::string const& name, storm::expressions::Variable const& variable, storm::expressions::Expression const& initValue, bool transient=false);
virtual bool isRealVariable() const override;
};
}
}