Template Class StateVariableData

Class Documentation

template<typename RealValueType>
class StateVariableData

Class holding the current value of each non-transient variable in the model.

Template Parameters:

RealValueType – The type associated to a real value. Normally it is simply a double.

Public Functions

StateVariableData() = default
inline StateVariableData(const size_t bool_count, const size_t int_count, const size_t real_count, const size_t locations_count)
inline StateVariableData(const StateVariableData<RealValueType> &other)
inline bool empty() const
inline StateVariableData &operator=(const StateVariableData<RealValueType> &other)
inline bool operator==(const StateVariableData<RealValueType> &other) const
inline void setBool(const size_t bool_idx, bool value)
inline void setInt(const size_t int_idx, int64_t value)
inline void setReal(const size_t real_idx, RealValueType value)
inline void setLocation(const size_t location_idx, uint64_t value)
inline const std::vector<bool> &getBoolData() const
inline const std::vector<int64_t> &getIntData() const
inline const std::vector<RealValueType> &getRealData() const
inline const std::vector<uint64_t> &getLocationData() const