
org.sosy_lab.solver.api.FloatingPointFormulaManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-smt Show documentation
Show all versions of java-smt Show documentation
Unified acccess layer to SMT solvers
/*
* JavaSMT is an API wrapper for a collection of SMT solvers.
* This file is part of JavaSMT.
*
* Copyright (C) 2007-2015 Dirk Beyer
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.sosy_lab.solver.api;
import org.sosy_lab.common.rationals.Rational;
import java.math.BigDecimal;
public interface FloatingPointFormulaManager {
FloatingPointFormula makeNumber(double n, FormulaType.FloatingPointType type);
FloatingPointFormula makeNumber(BigDecimal n, FormulaType.FloatingPointType type);
FloatingPointFormula makeNumber(String n, FormulaType.FloatingPointType type);
FloatingPointFormula makeNumber(Rational n, FormulaType.FloatingPointType type);
FloatingPointFormula makeVariable(String pVar, FormulaType.FloatingPointType type);
FloatingPointFormula makePlusInfinity(FormulaType.FloatingPointType type);
FloatingPointFormula makeMinusInfinity(FormulaType.FloatingPointType type);
FloatingPointFormula makeNaN(FormulaType.FloatingPointType type);
T castTo(FloatingPointFormula number, FormulaType targetType);
FloatingPointFormula castFrom(
Formula number, boolean signed, FormulaType.FloatingPointType targetType);
// ----------------- Arithmetic relations, return type NumeralFormula -----------------
FloatingPointFormula negate(FloatingPointFormula number);
FloatingPointFormula add(FloatingPointFormula number1, FloatingPointFormula number2);
FloatingPointFormula subtract(FloatingPointFormula number1, FloatingPointFormula number2);
FloatingPointFormula divide(FloatingPointFormula number1, FloatingPointFormula number2);
FloatingPointFormula multiply(FloatingPointFormula number1, FloatingPointFormula number2);
// ----------------- Numeric relations, return type BooleanFormula -----------------
/**
* Create a term for assigning one floating-point term to another.
* This means both terms are considered equal afterwards.
* This method is the same as the method equal
for other theories.
*/
BooleanFormula assignment(FloatingPointFormula number1, FloatingPointFormula number2);
/**
* Create a term for comparing the equality of two floating-point terms,
* according to standard floating-point semantics (i.e., NaN != NaN).
* Be careful to not use this method when you really need
* {@link #assignment(FloatingPointFormula, FloatingPointFormula)}.
*/
BooleanFormula equalWithFPSemantics(FloatingPointFormula number1, FloatingPointFormula number2);
BooleanFormula greaterThan(FloatingPointFormula number1, FloatingPointFormula number2);
BooleanFormula greaterOrEquals(FloatingPointFormula number1, FloatingPointFormula number2);
BooleanFormula lessThan(FloatingPointFormula number1, FloatingPointFormula number2);
BooleanFormula lessOrEquals(FloatingPointFormula number1, FloatingPointFormula number2);
BooleanFormula isNaN(FloatingPointFormula number);
BooleanFormula isInfinity(FloatingPointFormula number);
BooleanFormula isZero(FloatingPointFormula number);
BooleanFormula isSubnormal(FloatingPointFormula number);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy