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.
47 lines
1.3 KiB
47 lines
1.3 KiB
#pragma once
|
|
|
|
|
|
#include "DFTElement.h"
|
|
namespace storm {
|
|
namespace storage {
|
|
template<typename ValueType>
|
|
class DFTConst : public DFTElement<ValueType> {
|
|
|
|
bool mFailed;
|
|
|
|
public:
|
|
DFTConst(size_t id, std::string const& name, bool failed) :
|
|
DFTElement<ValueType>(id, name), mFailed(failed)
|
|
{}
|
|
|
|
DFTElementType type() const override {
|
|
if(mFailed) {
|
|
return DFTElementType::CONSTF;
|
|
} else {
|
|
return DFTElementType::CONSTS;
|
|
}
|
|
}
|
|
|
|
|
|
bool failed() const {
|
|
return mFailed;
|
|
}
|
|
|
|
virtual bool isConstant() const {
|
|
return true;
|
|
}
|
|
|
|
virtual size_t nrChildren() const override {
|
|
return 0;
|
|
}
|
|
|
|
|
|
bool isTypeEqualTo(DFTElement<ValueType> const& other) const override {
|
|
if(!DFTElement<ValueType>::isTypeEqualTo(other)) return false;
|
|
DFTConst<ValueType> const& otherCNST = static_cast<DFTConst<ValueType> const&>(other);
|
|
return (mFailed == otherCNST.mFailed);
|
|
}
|
|
|
|
};
|
|
}
|
|
}
|