org.evosuite.symbolic.expr.RealConstraint Maven / Gradle / Ivy
/**
* 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.expr;
import org.evosuite.Properties;
import org.evosuite.symbolic.ConstraintTooLongException;
import org.evosuite.symbolic.DSEStats;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public final class RealConstraint extends Constraint {
static Logger log = LoggerFactory.getLogger(RealConstraint.class);
private static final long serialVersionUID = 6021027178547577289L;
/**
*
* Constructor for RealConstraint.
*
*
* @param left
* a {@link org.evosuite.symbolic.expr.Expression} object.
* @param cmp
* a {@link org.evosuite.symbolic.expr.Comparator} object.
* @param right
* a {@link org.evosuite.symbolic.expr.Expression} object.
*/
public RealConstraint(Expression left, Comparator cmp,
Expression right) {
super();
this.left = left;
this.cmp = cmp;
this.right = right;
if (getSize() > Properties.DSE_CONSTRAINT_LENGTH) {
DSEStats.getInstance().reportConstraintTooLong(getSize());
throw new ConstraintTooLongException(getSize());
}
}
private final Expression left;
private final Comparator cmp;
private final Expression right;
/** {@inheritDoc} */
@Override
public Comparator getComparator() {
return cmp;
}
/** {@inheritDoc} */
@Override
public Expression getLeftOperand() {
return left;
}
/** {@inheritDoc} */
@Override
public Expression getRightOperand() {
return right;
}
/** {@inheritDoc} */
@Override
public String toString() {
return left + cmp.toString() + right;
}
@Override
public Constraint negate() {
return new RealConstraint(left, cmp.not(), right);
}
@Override
public K accept(ConstraintVisitor v, V arg) {
return v.visit(this, arg);
}
}