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.
85 lines
1.9 KiB
85 lines
1.9 KiB
/*
|
|
* IntegerConstantExpression.h
|
|
*
|
|
* Created on: 04.01.2013
|
|
* Author: chris
|
|
*/
|
|
|
|
#ifndef INTEGERCONSTANTEXPRESSION_H_
|
|
#define INTEGERCONSTANTEXPRESSION_H_
|
|
|
|
#include "ConstantExpression.h"
|
|
|
|
namespace storm {
|
|
|
|
namespace ir {
|
|
|
|
namespace expressions {
|
|
|
|
class IntegerConstantExpression : public ConstantExpression {
|
|
public:
|
|
IntegerConstantExpression(std::string constantName) : ConstantExpression(int_, constantName), defined(false), value(0) {
|
|
}
|
|
IntegerConstantExpression(const IntegerConstantExpression& ice)
|
|
: ConstantExpression(ice), defined(ice.defined), value(ice.value) {
|
|
}
|
|
|
|
virtual ~IntegerConstantExpression() {
|
|
|
|
}
|
|
|
|
virtual std::shared_ptr<BaseExpression> clone(const std::map<std::string, std::string>& renaming, const std::map<std::string, uint_fast64_t>& bools, const std::map<std::string, uint_fast64_t>& ints) {
|
|
return std::shared_ptr<BaseExpression>(new IntegerConstantExpression(*this));
|
|
}
|
|
|
|
virtual int_fast64_t getValueAsInt(std::pair<std::vector<bool>, std::vector<int_fast64_t>> const* variableValues) const {
|
|
if (!defined) {
|
|
throw storm::exceptions::ExpressionEvaluationException() << "Cannot evaluate expression: "
|
|
<< "Integer constant '" << this->getConstantName() << "' is undefined.";
|
|
} else {
|
|
return value;
|
|
}
|
|
}
|
|
|
|
virtual void accept(ExpressionVisitor* visitor) {
|
|
visitor->visit(this);
|
|
}
|
|
|
|
virtual std::string toString() const {
|
|
std::string result = this->constantName;
|
|
if (defined) {
|
|
result += "[" + boost::lexical_cast<std::string>(value) + "]";
|
|
}
|
|
return result;
|
|
}
|
|
virtual std::string dump(std::string prefix) const {
|
|
std::stringstream result;
|
|
result << prefix << "IntegerConstantExpression " << this->toString() << std::endl;
|
|
return result.str();
|
|
}
|
|
|
|
bool isDefined() {
|
|
return defined;
|
|
}
|
|
|
|
int getValue() {
|
|
return value;
|
|
}
|
|
|
|
void define(int_fast64_t value) {
|
|
defined = true;
|
|
this->value = value;
|
|
}
|
|
|
|
private:
|
|
bool defined;
|
|
int_fast64_t value;
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* INTEGERCONSTANTEXPRESSION_H_ */
|