org.evosuite.symbolic.solver.cvc4.ConstraintToCVC4Visitor Maven / Gradle / Ivy
The newest version!
/**
* Copyright (C) 2010-2018 Gordon Fraser, Andrea Arcuri and EvoSuite
* contributors
*
* This file is part of EvoSuite.
*
* EvoSuite is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3.0 of the License, or
* (at your option) any later version.
*
* EvoSuite 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
* Lesser Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with EvoSuite. If not, see .
*/
package org.evosuite.symbolic.solver.cvc4;
import java.util.HashSet;
import java.util.Set;
import org.evosuite.symbolic.expr.Comparator;
import org.evosuite.symbolic.expr.ConstraintVisitor;
import org.evosuite.symbolic.expr.Expression;
import org.evosuite.symbolic.expr.IntegerConstraint;
import org.evosuite.symbolic.expr.RealConstraint;
import org.evosuite.symbolic.expr.StringConstraint;
import org.evosuite.symbolic.solver.SmtExprBuilder;
import org.evosuite.symbolic.solver.smt.SmtExpr;
final class ConstraintToCVC4Visitor implements ConstraintVisitor {
private final Set stringConstants = new HashSet();
private final ExprToCVC4Visitor exprVisitor;
public ConstraintToCVC4Visitor() {
this(false);
}
public ConstraintToCVC4Visitor(boolean rewriteNonLinearConstraints) {
this.exprVisitor = new ExprToCVC4Visitor(rewriteNonLinearConstraints);
}
@Override
public SmtExpr visit(IntegerConstraint c, Void arg) {
Expression> leftOperand = c.getLeftOperand();
Expression> rightOperand = c.getRightOperand();
Comparator cmp = c.getComparator();
return visit(leftOperand, cmp, rightOperand);
}
private SmtExpr visit(Expression> leftOperand, Comparator cmp,
Expression> rightOperand) {
SmtExpr left = leftOperand.accept(exprVisitor, null);
SmtExpr right = rightOperand.accept(exprVisitor, null);
if (left == null || right == null) {
return null;
}
return mkComparison(left, cmp, right);
}
@Override
public SmtExpr visit(RealConstraint c, Void arg) {
Expression> leftOperand = c.getLeftOperand();
Expression> rightOperand = c.getRightOperand();
Comparator cmp = c.getComparator();
return visit(leftOperand, cmp, rightOperand);
}
@Override
public SmtExpr visit(StringConstraint c, Void arg) {
Expression> leftOperand = c.getLeftOperand();
Expression> rightOperand = c.getRightOperand();
Comparator cmp = c.getComparator();
return visit(leftOperand, cmp, rightOperand);
}
private static SmtExpr mkComparison(SmtExpr left, Comparator cmp,
SmtExpr right) {
switch (cmp) {
case LT: {
SmtExpr lt = SmtExprBuilder.mkLt(left, right);
return lt;
}
case LE: {
SmtExpr le = SmtExprBuilder.mkLe(left, right);
return le;
}
case GT: {
SmtExpr gt = SmtExprBuilder.mkGt(left, right);
return gt;
}
case GE: {
SmtExpr ge = SmtExprBuilder.mkGe(left, right);
return ge;
}
case EQ: {
SmtExpr ge = SmtExprBuilder.mkEq(left, right);
return ge;
}
case NE: {
SmtExpr ge = SmtExprBuilder.mkEq(left, right);
SmtExpr ne = SmtExprBuilder.mkNot(ge);
return ne;
}
default: {
throw new RuntimeException("Unknown comparator for constraint "
+ cmp.toString());
}
}
}
public Set getStringConstants() {
return stringConstants;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy