//============================================================================== // // Copyright (c) 2002- // Authors: // * Dave Parker (University of Oxford, formerly University of Birmingham) // //------------------------------------------------------------------------------ // // This file is part of PRISM. // // PRISM is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // PRISM is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with PRISM; if not, write to the Free Software Foundation, // Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // //============================================================================== package parser.ast; import param.BigRational; import parser.*; import parser.visitor.*; import prism.PrismLangException; public class ExpressionForAll extends Expression { protected Expression expression = null; // Constructors public ExpressionForAll() { } public ExpressionForAll(Expression e) { expression = e; } // Set methods public void setExpression(Expression e) { expression = e; } // Get methods public Expression getExpression() { return expression; } // Methods required for Expression: @Override public boolean isConstant() { return false; } @Override public boolean isProposition() { return false; } @Override public Object evaluate(EvaluateContext ec) throws PrismLangException { throw new PrismLangException("Cannot evaluate an E operator without a model"); } @Override public BigRational evaluateExact(EvaluateContext ec) throws PrismLangException { throw new PrismLangException("Cannot evaluate an E operator without a model"); } @Override public boolean returnsSingleValue() { return false; } // Methods required for ASTElement: @Override public Object accept(ASTVisitor v) throws PrismLangException { return v.visit(this); } @Override public Expression deepCopy() { ExpressionForAll expr = new ExpressionForAll(expression.deepCopy()); expr.setType(type); expr.setPosition(this); return expr; } // Standard methods @Override public String toString() { String s = ""; s += "A [ " + expression + " ]"; return s; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((expression == null) ? 0 : expression.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; ExpressionForAll other = (ExpressionForAll) obj; if (expression == null) { if (other.expression != null) return false; } else if (!expression.equals(other.expression)) return false; return true; } } //------------------------------------------------------------------------------