summaryrefslogtreecommitdiff
path: root/src/theory/fp
diff options
context:
space:
mode:
authorMartin <martin.brain@cs.ox.ac.uk>2017-10-10 07:21:26 +0100
committerAndres Noetzli <andres.noetzli@gmail.com>2017-10-09 23:21:26 -0700
commit8c860213ca3a43e1fe483accb4b2b928ae14028e (patch)
tree4383636a3c88e1cde14e78b9ee4f04f46952c392 /src/theory/fp
parent96a0bc3b022b67b5ab79bf2ab087573c65a8d248 (diff)
Add skeleton of the FP theory solver (#1130)
This commit adds the skeleton of the theory solver using a dummy version of the converter (fp_converter.{h,cpp}). The converter is a class that is used to produce bit-vector expressions equivalent to floating-point ones. The commit sets up the equality engine and the infrastructure for interacting with the main theory components. The majority of this code is still agnostic to how the conversion is actually implemented / what kind of theory solver this is. This is pretty much the template code you need to write any kind of theory solver. This includes equality reasoning and so should be able to solve some basic problems.
Diffstat (limited to 'src/theory/fp')
-rw-r--r--src/theory/fp/fp_converter.cpp38
-rw-r--r--src/theory/fp/fp_converter.h55
-rw-r--r--src/theory/fp/kinds2
-rw-r--r--src/theory/fp/theory_fp.cpp688
-rw-r--r--src/theory/fp/theory_fp.h106
-rw-r--r--src/theory/fp/theory_fp_type_rules.h16
6 files changed, 826 insertions, 79 deletions
diff --git a/src/theory/fp/fp_converter.cpp b/src/theory/fp/fp_converter.cpp
new file mode 100644
index 000000000..6ce2195cb
--- /dev/null
+++ b/src/theory/fp/fp_converter.cpp
@@ -0,0 +1,38 @@
+/********************* */
+/*! \file fp_converter.cpp
+ ** \verbatim
+ ** Top contributors (to current version):
+ ** Martin Brain
+ ** This file is part of the CVC4 project.
+ ** Copyright (c) 2009-2017 by the authors listed in the file AUTHORS
+ ** in the top-level source directory) and their institutional affiliations.
+ ** All rights reserved. See the file COPYING in the top-level source
+ ** directory for licensing information.\endverbatim
+ **
+ ** \brief Conversion of floating-point operations to bit-vectors using symfpu.
+ **/
+
+#include "theory/fp/fp_converter.h"
+
+#include <stack>
+
+namespace CVC4 {
+namespace theory {
+namespace fp {
+
+FpConverter::FpConverter(context::UserContext *user)
+ : d_additionalAssertions(user) {}
+
+Node FpConverter::convert(TNode node) {
+ Unimplemented("Conversion not implemented.");
+ return node;
+}
+
+Node FpConverter::getValue(Valuation &val, TNode var) {
+ Unimplemented("Conversion not implemented.");
+ return Node::null();
+}
+
+} // namespace fp
+} // namespace theory
+} // namespace CVC4
diff --git a/src/theory/fp/fp_converter.h b/src/theory/fp/fp_converter.h
new file mode 100644
index 000000000..8a054e03a
--- /dev/null
+++ b/src/theory/fp/fp_converter.h
@@ -0,0 +1,55 @@
+/********************* */
+/*! \file fp_converter.h
+ ** \verbatim
+ ** Top contributors (to current version):
+ ** Martin Brain
+ ** This file is part of the CVC4 project.
+ ** Copyright (c) 2009-2017 by the authors listed in the file AUTHORS
+ ** in the top-level source directory) and their institutional affiliations.
+ ** All rights reserved. See the file COPYING in the top-level source
+ ** directory for licensing information.\endverbatim
+ **
+ ** \brief Converts floating-point nodes to bit-vector expressions.
+ **
+ ** Uses the symfpu library to convert from floating-point operations to
+ ** bit-vectors and propositions allowing the theory to be solved by
+ ** 'bit-blasting'.
+ **/
+
+#include "cvc4_private.h"
+
+#ifndef __CVC4__THEORY__FP__FP_CONVERTER_H
+#define __CVC4__THEORY__FP__FP_CONVERTER_H
+
+#include "context/cdhashmap.h"
+#include "context/cdlist.h"
+#include "theory/valuation.h"
+#include "util/floatingpoint.h"
+#include "util/hash.h"
+
+namespace CVC4 {
+namespace theory {
+namespace fp {
+
+typedef PairHashFunction<TypeNode, TypeNode, TypeNodeHashFunction,
+ TypeNodeHashFunction>
+ PairTypeNodeHashFunction;
+
+class FpConverter {
+ public:
+ context::CDList<Node> d_additionalAssertions;
+
+ FpConverter(context::UserContext *);
+
+ /** Adds a node to the conversion, returns the converted node */
+ Node convert(TNode);
+
+ /** Gives the node representing the value of a given variable */
+ Node getValue(Valuation &, TNode);
+};
+
+} // namespace fp
+} // namespace theory
+} // namespace CVC4
+
+#endif /* __CVC4__THEORY__FP__THEORY_FP_H */
diff --git a/src/theory/fp/kinds b/src/theory/fp/kinds
index 144e5736f..966ed4d71 100644
--- a/src/theory/fp/kinds
+++ b/src/theory/fp/kinds
@@ -8,7 +8,7 @@ theory THEORY_FP ::CVC4::theory::fp::TheoryFp "theory/fp/theory_fp.h"
typechecker "theory/fp/theory_fp_type_rules.h"
rewriter ::CVC4::theory::fp::TheoryFpRewriter "theory/fp/theory_fp_rewriter.h"
-properties check
+properties check propagate
# Theory content goes here.
diff --git a/src/theory/fp/theory_fp.cpp b/src/theory/fp/theory_fp.cpp
index 6c8e49e74..276edfc0a 100644
--- a/src/theory/fp/theory_fp.cpp
+++ b/src/theory/fp/theory_fp.cpp
@@ -16,6 +16,12 @@
**/
#include "theory/fp/theory_fp.h"
+#include "theory/theory_model.h"
+
+#include <set>
+#include <stack>
+#include <unordered_set>
+#include <vector>
using namespace std;
@@ -25,103 +31,663 @@ namespace fp {
namespace removeToFPGeneric {
- Node removeToFPGeneric (TNode node) {
- Assert(node.getKind() == kind::FLOATINGPOINT_TO_FP_GENERIC);
+Node removeToFPGeneric(TNode node) {
+ Assert(node.getKind() == kind::FLOATINGPOINT_TO_FP_GENERIC);
- FloatingPointToFPGeneric info =
- node.getOperator().getConst<FloatingPointToFPGeneric>();
+ FloatingPointToFPGeneric info =
+ node.getOperator().getConst<FloatingPointToFPGeneric>();
- size_t children = node.getNumChildren();
+ size_t children = node.getNumChildren();
- Node op;
+ Node op;
+ NodeManager *nm = NodeManager::currentNM();
- if (children == 1) {
- op = NodeManager::currentNM()->mkConst(
- FloatingPointToFPIEEEBitVector(info.t.exponent(),
- info.t.significand()));
- return NodeManager::currentNM()->mkNode(op, node[0]);
+ if (children == 1) {
+ op = nm->mkConst(FloatingPointToFPIEEEBitVector(info));
+ return nm->mkNode(op, node[0]);
- } else {
- Assert(children == 2);
- Assert(node[0].getType().isRoundingMode());
-
- TypeNode t = node[1].getType();
-
- if (t.isFloatingPoint()) {
- op = NodeManager::currentNM()->mkConst(
- FloatingPointToFPFloatingPoint(info.t.exponent(),
- info.t.significand()));
- } else if (t.isReal()) {
- op = NodeManager::currentNM()->mkConst(
- FloatingPointToFPReal(info.t.exponent(),
- info.t.significand()));
- } else if (t.isBitVector()) {
- op = NodeManager::currentNM()->mkConst(
- FloatingPointToFPSignedBitVector(info.t.exponent(),
- info.t.significand()));
+ } else {
+ Assert(children == 2);
+ Assert(node[0].getType().isRoundingMode());
- } else {
- throw TypeCheckingExceptionPrivate(
- node,
- "cannot rewrite to_fp generic due to incorrect type of second "
- "argument");
- }
+ TypeNode t = node[1].getType();
- return NodeManager::currentNM()->mkNode(op, node[0], node[1]);
+ if (t.isFloatingPoint()) {
+ op = nm->mkConst(FloatingPointToFPFloatingPoint(info));
+ } else if (t.isReal()) {
+ op = nm->mkConst(FloatingPointToFPReal(info));
+ } else if (t.isBitVector()) {
+ op = nm->mkConst(FloatingPointToFPSignedBitVector(info));
+ } else {
+ throw TypeCheckingExceptionPrivate(
+ node,
+ "cannot rewrite to_fp generic due to incorrect type of second "
+ "argument");
}
- Unreachable("to_fp generic not rewritten");
+ return nm->mkNode(op, node[0], node[1]);
}
+
+ Unreachable("to_fp generic not rewritten");
}
+} // namespace removeToFPGeneric
+
+namespace helper {
+Node buildConjunct(const std::vector<TNode> &assumptions) {
+ if (assumptions.size() == 0) {
+ return NodeManager::currentNM()->mkConst<bool>(true);
+
+ } else if (assumptions.size() == 1) {
+ return assumptions[0];
+ } else {
+ // \todo see bv::utils::flattenAnd
+
+ NodeBuilder<> conjunction(kind::AND);
+ for (std::vector<TNode>::const_iterator it = assumptions.begin();
+ it != assumptions.end(); ++it) {
+ conjunction << *it;
+ }
+
+ return conjunction;
+ }
+}
+} // namespace helper
/** Constructs a new instance of TheoryFp w.r.t. the provided contexts. */
-TheoryFp::TheoryFp(context::Context* c, context::UserContext* u,
- OutputChannel& out, Valuation valuation,
- const LogicInfo& logicInfo)
- : Theory(THEORY_FP, c, u, out, valuation, logicInfo)
-{}/* TheoryFp::TheoryFp() */
+TheoryFp::TheoryFp(context::Context *c, context::UserContext *u,
+ OutputChannel &out, Valuation valuation,
+ const LogicInfo &logicInfo)
+ : Theory(THEORY_FP, c, u, out, valuation, logicInfo),
+ d_notification(*this),
+ d_equalityEngine(d_notification, c, "theory::fp::TheoryFp", true),
+ d_registeredTerms(u),
+ d_conv(u),
+ d_expansionRequested(false),
+ d_conflict(c, false),
+ d_conflictNode(c, Node::null()),
+ d_minMap(u),
+ d_maxMap(u),
+ d_toUBVMap(u),
+ d_toSBVMap(u),
+ d_toRealMap(u) {
+ // Kinds that are to be handled in the congruence closure
+
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_ABS);
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_NEG);
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_PLUS);
+ // d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_SUB); // Removed
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_MULT);
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_DIV);
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_FMA);
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_SQRT);
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_REM);
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_RTI);
+ // d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_MIN); // Removed
+ // d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_MAX); // Removed
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_MIN_TOTAL);
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_MAX_TOTAL);
+
+ // d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_EQ); // Removed
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_LEQ);
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_LT);
+ // d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_GEQ); // Removed
+ // d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_GT); // Removed
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_ISN);
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_ISSN);
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_ISZ);
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_ISINF);
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_ISNAN);
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_ISNEG);
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_ISPOS);
+
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_TO_FP_IEEE_BITVECTOR);
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_TO_FP_FLOATINGPOINT);
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_TO_FP_REAL);
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_TO_FP_SIGNED_BITVECTOR);
+ d_equalityEngine.addFunctionKind(
+ kind::FLOATINGPOINT_TO_FP_UNSIGNED_BITVECTOR);
+ // d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_TO_FP_GENERIC); //
+ // Needed in parsing, should be rewritten away
+ // d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_TO_UBV); // Removed
+ // d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_TO_SBV); // Removed
+ // d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_TO_REAL); // Removed
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_TO_UBV_TOTAL);
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_TO_SBV_TOTAL);
+ d_equalityEngine.addFunctionKind(kind::FLOATINGPOINT_TO_REAL_TOTAL);
-Node TheoryFp::expandDefinition(LogicRequest &, Node node) {
- Trace("fp-expandDefinition") << "TheoryFp::expandDefinition(): " << node << std::endl;
+} /* TheoryFp::TheoryFp() */
+
+Node TheoryFp::minUF(Node node) {
+ Assert(node.getKind() == kind::FLOATINGPOINT_MIN);
+ TypeNode t(node.getType());
+ Assert(t.getKind() == kind::FLOATINGPOINT_TYPE);
+
+ NodeManager *nm = NodeManager::currentNM();
+ ComparisonUFMap::const_iterator i(d_minMap.find(t));
+
+ Node fun;
+ if (i == d_minMap.end()) {
+ std::vector<TypeNode> args(2);
+ args[0] = t;
+ args[1] = t;
+ fun = nm->mkSkolem("floatingpoint_min_zero_case",
+ nm->mkFunctionType(args,
+#ifdef SYMFPUPROPISBOOL
+ nm->booleanType()
+#else
+ nm->mkBitVectorType(1U)
+#endif
+ ),
+ "floatingpoint_min_zero_case",
+ NodeManager::SKOLEM_EXACT_NAME);
+ d_minMap.insert(t, fun);
+ } else {
+ fun = (*i).second;
+ }
+ return nm->mkNode(kind::APPLY_UF, fun, node[1],
+ node[0]); // Application reverses the order or arguments
+}
+
+Node TheoryFp::maxUF(Node node) {
+ Assert(node.getKind() == kind::FLOATINGPOINT_MAX);
+ TypeNode t(node.getType());
+ Assert(t.getKind() == kind::FLOATINGPOINT_TYPE);
+
+ NodeManager *nm = NodeManager::currentNM();
+ ComparisonUFMap::const_iterator i(d_maxMap.find(t));
+
+ Node fun;
+ if (i == d_maxMap.end()) {
+ std::vector<TypeNode> args(2);
+ args[0] = t;
+ args[1] = t;
+ fun = nm->mkSkolem("floatingpoint_max_zero_case",
+ nm->mkFunctionType(args,
+#ifdef SYMFPUPROPISBOOL
+ nm->booleanType()
+#else
+ nm->mkBitVectorType(1U)
+#endif
+ ),
+ "floatingpoint_max_zero_case",
+ NodeManager::SKOLEM_EXACT_NAME);
+ d_maxMap.insert(t, fun);
+ } else {
+ fun = (*i).second;
+ }
+ return nm->mkNode(kind::APPLY_UF, fun, node[1], node[0]);
+}
+
+Node TheoryFp::toUBVUF(Node node) {
+ Assert(node.getKind() == kind::FLOATINGPOINT_TO_UBV);
+
+ TypeNode target(node.getType());
+ Assert(target.getKind() == kind::BITVECTOR_TYPE);
+
+ TypeNode source(node[1].getType());
+ Assert(source.getKind() == kind::FLOATINGPOINT_TYPE);
+
+ std::pair<TypeNode, TypeNode> p(source, target);
+ NodeManager *nm = NodeManager::currentNM();
+ ConversionUFMap::const_iterator i(d_toUBVMap.find(p));
+
+ Node fun;
+ if (i == d_toUBVMap.end()) {
+ std::vector<TypeNode> args(2);
+ args[0] = nm->roundingModeType();
+ args[1] = source;
+ fun = nm->mkSkolem("floatingpoint_to_ubv_out_of_range_case",
+ nm->mkFunctionType(args, target),
+ "floatingpoint_to_ubv_out_of_range_case",
+ NodeManager::SKOLEM_EXACT_NAME);
+ d_toUBVMap.insert(p, fun);
+ } else {
+ fun = (*i).second;
+ }
+ return nm->mkNode(kind::APPLY_UF, fun, node[0], node[1]);
+}
+
+Node TheoryFp::toSBVUF(Node node) {
+ Assert(node.getKind() == kind::FLOATINGPOINT_TO_SBV);
+
+ TypeNode target(node.getType());
+ Assert(target.getKind() == kind::BITVECTOR_TYPE);
+
+ TypeNode source(node[1].getType());
+ Assert(source.getKind() == kind::FLOATINGPOINT_TYPE);
+
+ std::pair<TypeNode, TypeNode> p(source, target);
+ NodeManager *nm = NodeManager::currentNM();
+ ConversionUFMap::const_iterator i(d_toSBVMap.find(p));
+
+ Node fun;
+ if (i == d_toSBVMap.end()) {
+ std::vector<TypeNode> args(2);
+ args[0] = nm->roundingModeType();
+ args[1] = source;
+ fun = nm->mkSkolem("floatingpoint_to_sbv_out_of_range_case",
+ nm->mkFunctionType(args, target),
+ "floatingpoint_to_sbv_out_of_range_case",
+ NodeManager::SKOLEM_EXACT_NAME);
+ d_toSBVMap.insert(p, fun);
+ } else {
+ fun = (*i).second;
+ }
+ return nm->mkNode(kind::APPLY_UF, fun, node[0], node[1]);
+}
+
+Node TheoryFp::toRealUF(Node node) {
+ Assert(node.getKind() == kind::FLOATINGPOINT_TO_REAL);
+ TypeNode t(node[0].getType());
+ Assert(t.getKind() == kind::FLOATINGPOINT_TYPE);
+
+ NodeManager *nm = NodeManager::currentNM();
+ ComparisonUFMap::const_iterator i(d_toRealMap.find(t));
+
+ Node fun;
+ if (i == d_toRealMap.end()) {
+ std::vector<TypeNode> args(1);
+ args[0] = t;
+ fun = nm->mkSkolem("floatingpoint_to_real_infinity_and_NaN_case",
+ nm->mkFunctionType(t, nm->realType()),
+ "floatingpoint_to_real_infinity_and_NaN_case",
+ NodeManager::SKOLEM_EXACT_NAME);
+ d_toRealMap.insert(t, fun);
+ } else {
+ fun = (*i).second;
+ }
+ return nm->mkNode(kind::APPLY_UF, fun, node[0]);
+}
+
+Node TheoryFp::expandDefinition(LogicRequest &lr, Node node) {
+ Trace("fp-expandDefinition")
+ << "TheoryFp::expandDefinition(): " << node << std::endl;
+
+ if (!this->d_expansionRequested) {
+ lr.widenLogic(
+ THEORY_UF); // Needed for conversions to/from real and min/max
+ lr.widenLogic(THEORY_BV);
+ this->d_expansionRequested = true;
+ }
+
+ Node res = node;
if (node.getKind() == kind::FLOATINGPOINT_TO_FP_GENERIC) {
- Node res(removeToFPGeneric::removeToFPGeneric(node));
+ res = removeToFPGeneric::removeToFPGeneric(node);
- Trace("fp-expandDefinition") << "TO_FP_GENERIC rewritten to " << res << std::endl;
+ } else if (node.getKind() == kind::FLOATINGPOINT_MIN) {
+ res = NodeManager::currentNM()->mkNode(kind::FLOATINGPOINT_MIN_TOTAL,
+ node[0], node[1], minUF(node));
+
+ } else if (node.getKind() == kind::FLOATINGPOINT_MAX) {
+ res = NodeManager::currentNM()->mkNode(kind::FLOATINGPOINT_MAX_TOTAL,
+ node[0], node[1], maxUF(node));
+
+ } else if (node.getKind() == kind::FLOATINGPOINT_TO_UBV) {
+ FloatingPointToUBV info = node.getOperator().getConst<FloatingPointToUBV>();
+ FloatingPointToUBVTotal newInfo(info);
+
+ res =
+ NodeManager::currentNM()->mkNode( // kind::FLOATINGPOINT_TO_UBV_TOTAL,
+ NodeManager::currentNM()->mkConst(newInfo), node[0], node[1],
+ toUBVUF(node));
+
+ } else if (node.getKind() == kind::FLOATINGPOINT_TO_SBV) {
+ FloatingPointToSBV info = node.getOperator().getConst<FloatingPointToSBV>();
+ FloatingPointToSBVTotal newInfo(info);
+
+ res =
+ NodeManager::currentNM()->mkNode( // kind::FLOATINGPOINT_TO_SBV_TOTAL,
+ NodeManager::currentNM()->mkConst(newInfo), node[0], node[1],
+ toSBVUF(node));
+
+ } else if (node.getKind() == kind::FLOATINGPOINT_TO_REAL) {
+ res = NodeManager::currentNM()->mkNode(kind::FLOATINGPOINT_TO_REAL_TOTAL,
+ node[0], toRealUF(node));
- return res;
} else {
- return node;
+ // Do nothing
}
+
+ if (res != node) {
+ Trace("fp-expandDefinition") << "TheoryFp::expandDefinition(): " << node
+ << " rewritten to " << res << std::endl;
+ }
+
+ return res;
}
+void TheoryFp::convertAndEquateTerm(TNode node) {
+ Trace("fp-convertTerm") << "TheoryFp::convertTerm(): " << node << std::endl;
+ size_t oldAdditionalAssertions = d_conv.d_additionalAssertions.size();
-void TheoryFp::check(Effort level) {
- if (done() && !fullEffort(level)) {
- return;
+ Node converted(d_conv.convert(node));
+
+ if (converted != node) {
+ Debug("fp-convertTerm")
+ << "TheoryFp::convertTerm(): before " << node << std::endl;
+ Debug("fp-convertTerm")
+ << "TheoryFp::convertTerm(): after " << converted << std::endl;
}
- while(!done()) {
+ size_t newAdditionalAssertions = d_conv.d_additionalAssertions.size();
+ Assert(oldAdditionalAssertions <= newAdditionalAssertions);
+
+ while (oldAdditionalAssertions < newAdditionalAssertions) {
+ Node addA = d_conv.d_additionalAssertions[oldAdditionalAssertions];
+
+ Debug("fp-convertTerm") << "TheoryFp::convertTerm(): additional assertion "
+ << addA << std::endl;
+
+#ifdef SYMFPUPROPISBOOL
+ handleLemma(addA, false, true);
+#else
+ NodeManager *nm = NodeManager::currentNM();
+
+ handleLemma(
+ nm->mkNode(kind::EQUAL, addA, nm->mkConst(::CVC4::BitVector(1U, 1U))));
+#endif
+
+ ++oldAdditionalAssertions;
+ }
+
+ // Equate the floating-point atom and the converted one.
+ // Also adds the bit-vectors to the bit-vector solver.
+ if (node.getType().isBoolean()) {
+ if (converted != node) {
+ Assert(converted.getType().isBitVector());
+
+ NodeManager *nm = NodeManager::currentNM();
+
+#ifdef SYMFPUPROPISBOOL
+ handleLemma(nm->mkNode(kind::EQUAL, node, converted));
+#else
+ handleLemma(
+ nm->mkNode(kind::EQUAL, node,
+ nm->mkNode(kind::EQUAL, converted,
+ nm->mkConst(::CVC4::BitVector(1U, 1U)))));
+#endif
+
+ } else {
+ Assert((node.getKind() == kind::EQUAL));
+ }
+
+ } else if (node.getType().isBitVector()) {
+ if (converted != node) {
+ Assert(converted.getType().isBitVector());
+
+ handleLemma(
+ NodeManager::currentNM()->mkNode(kind::EQUAL, node, converted));
+ }
+ }
+
+ return;
+}
+
+void TheoryFp::registerTerm(TNode node) {
+ Trace("fp-registerTerm") << "TheoryFp::registerTerm(): " << node << std::endl;
+
+ if (!isRegistered(node)) {
+ bool success = d_registeredTerms.insert(node);
+ (void)success; // Only used for assertion
+ Assert(success);
+
+ // Add to the equality engine
+ if (node.getKind() == kind::EQUAL) {
+ d_equalityEngine.addTriggerEquality(node);
+ } else {
+ d_equalityEngine.addTerm(node);
+ }
+
+ convertAndEquateTerm(node);
+ }
+ return;
+}
+
+bool TheoryFp::isRegistered(TNode node) {
+ return !(d_registeredTerms.find(node) == d_registeredTerms.end());
+}
+
+void TheoryFp::preRegisterTerm(TNode node) {
+ Trace("fp-preRegisterTerm")
+ << "TheoryFp::preRegisterTerm(): " << node << std::endl;
+ registerTerm(node);
+ return;
+}
+
+void TheoryFp::addSharedTerm(TNode node) {
+ Trace("fp-addSharedTerm")
+ << "TheoryFp::addSharedTerm(): " << node << std::endl;
+ // A system-wide invariant; terms must be registered before they are shared
+ Assert(isRegistered(node));
+ return;
+}
+
+void TheoryFp::handleLemma(Node node) {
+ Trace("fp") << "TheoryFp::handleLemma(): asserting " << node << std::endl;
+
+ d_out->lemma(node, false,
+ true); // Has to be true because it contains embedded ITEs
+ // Ignore the LemmaStatus structure for now...
+
+ return;
+}
+
+bool TheoryFp::handlePropagation(TNode node) {
+ Trace("fp") << "TheoryFp::handlePropagation(): propagate " << node
+ << std::endl;
+
+ bool stat = d_out->propagate(node);
+
+ if (!stat) handleConflict(node);
+
+ return stat;
+}
+
+void TheoryFp::handleConflict(TNode node) {
+ Trace("fp") << "TheoryFp::handleConflict(): conflict detected " << node
+ << std::endl;
+
+ d_conflictNode = node;
+ d_conflict = true;
+ d_out->conflict(node);
+ return;
+}
+
+void TheoryFp::check(Effort level) {
+ Trace("fp") << "TheoryFp::check(): started at effort level " << level
+ << std::endl;
+
+ while (!done() && !d_conflict) {
// Get all the assertions
Assertion assertion = get();
TNode fact = assertion.assertion;
Debug("fp") << "TheoryFp::check(): processing " << fact << std::endl;
- // Do the work
- switch(fact.getKind()) {
+ // Only handle equalities; the rest should be handled by
+ // the bit-vector theory
+
+ bool negated = fact.getKind() == kind::NOT;
+ TNode predicate = negated ? fact[0] : fact;
+
+ if (predicate.getKind() == kind::EQUAL) {
+ Assert(!(predicate[0].getType().isFloatingPoint() ||
+ predicate[0].getType().isRoundingMode()) ||
+ isRegistered(predicate[0]));
+ Assert(!(predicate[1].getType().isFloatingPoint() ||
+ predicate[1].getType().isRoundingMode()) ||
+ isRegistered(predicate[1]));
+ registerTerm(predicate); // Needed for float equalities
+
+ if (negated) {
+ Debug("fp-eq") << "TheoryFp::check(): adding dis-equality " << fact[0]
+ << std::endl;
+ d_equalityEngine.assertEquality(predicate, false, fact);
+
+ } else {
+ Debug("fp-eq") << "TheoryFp::check(): adding equality " << fact
+ << std::endl;
+ d_equalityEngine.assertEquality(predicate, true, fact);
+ }
+ } else {
+ // A system-wide invariant; predicates are registered before they are
+ // asserted
+ Assert(isRegistered(predicate));
+
+ if (d_equalityEngine.isFunctionKind(predicate.getKind())) {
+ Debug("fp-eq") << "TheoryFp::check(): adding predicate " << predicate
+ << " is " << !negated << std::endl;
+ d_equalityEngine.assertPredicate(predicate, !negated, fact);
+ }
+ }
+ }
+
+ Trace("fp") << "TheoryFp::check(): completed" << std::endl;
+
+ /* Checking should be handled by the bit-vector engine */
+ return;
+
+} /* TheoryFp::check() */
+
+void TheoryFp::setMasterEqualityEngine(eq::EqualityEngine *eq) {
+ d_equalityEngine.setMasterEqualityEngine(eq);
+}
+
+Node TheoryFp::explain(TNode n) {
+ Trace("fp") << "TheoryFp::explain(): explain " << n << std::endl;
+
+ // All things we assert directly (and not via bit-vector) should
+ // come from the equality engine so this should be sufficient...
+ std::vector<TNode> assumptions;
+
+ bool polarity = n.getKind() != kind::NOT;
+ TNode atom = polarity ? n : n[0];
+ if (atom.getKind() == kind::EQUAL) {
+ d_equalityEngine.explainEquality(atom[0], atom[1], polarity, assumptions);
+ } else {
+ d_equalityEngine.explainPredicate(atom, polarity, assumptions);
+ }
+
+ return helper::buildConjunct(assumptions);
+}
+
+Node TheoryFp::getModelValue(TNode var) {
+ return d_conv.getValue(d_valuation, var);
+}
+
+void TheoryFp::collectModelInfo(TheoryModel *m) {
+ std::set<Node> relevantTerms;
+
+ Trace("fp-collectModelInfo")
+ << "TheoryFp::collectModelInfo(): begin" << std::endl;
+
+ // Work out which variables are needed
+ computeRelevantTerms(relevantTerms);
+
+ if (Trace.isOn("fp-collectModelInfo")) {
+ for (std::set<Node>::const_iterator i(relevantTerms.begin());
+ i != relevantTerms.end(); ++i) {
+ Trace("fp-collectModelInfo")
+ << "TheoryFp::collectModelInfo(): relevantTerms " << *i << std::endl;
+ }
+ }
+
+ std::unordered_set<TNode, TNodeHashFunction> visited;
+ std::stack<TNode> working;
+ std::set<TNode> relevantVariables;
+ for (std::set<Node>::const_iterator i(relevantTerms.begin());
+ i != relevantTerms.end(); ++i) {
+ working.push(*i);
+ }
- /* cases for all the theory's kinds go here... */
+ while (!working.empty()) {
+ TNode current = working.top();
+ working.pop();
- default:
- Unhandled(fact.getKind());
+ // Ignore things that have already been explored
+ if (visited.find(current) == visited.end()) {
+ visited.insert(current);
+
+ TypeNode t(current.getType());
+
+ if ((t.isRoundingMode() || t.isFloatingPoint()) &&
+ this->isLeaf(current)) {
+ relevantVariables.insert(current);
+ }
+
+ for (size_t i = 0; i < current.getNumChildren(); ++i) {
+ working.push(current[i]);
+ }
}
}
-}/* TheoryFp::check() */
+ for (std::set<TNode>::const_iterator i(relevantVariables.begin());
+ i != relevantVariables.end(); ++i) {
+ TNode node = *i;
+
+ Trace("fp-collectModelInfo")
+ << "TheoryFp::collectModelInfo(): relevantVariable " << node
+ << std::endl;
+
+ m->assertEquality(node, d_conv.getValue(d_valuation, node), true);
+ }
+
+ return;
+}
+
+bool TheoryFp::NotifyClass::eqNotifyTriggerEquality(TNode equality,
+ bool value) {
+ Debug("fp-eq")
+ << "TheoryFp::eqNotifyTriggerEquality(): call back as equality "
+ << equality << " is " << value << std::endl;
+
+ if (value) {
+ return d_theorySolver.handlePropagation(equality);
+ } else {
+ return d_theorySolver.handlePropagation(equality.notNode());
+ }
+}
+
+bool TheoryFp::NotifyClass::eqNotifyTriggerPredicate(TNode predicate,
+ bool value) {
+ Debug("fp-eq")
+ << "TheoryFp::eqNotifyTriggerPredicate(): call back as predicate "
+ << predicate << " is " << value << std::endl;
+
+ if (value) {
+ return d_theorySolver.handlePropagation(predicate);
+ } else {
+ return d_theorySolver.handlePropagation(predicate.notNode());
+ }
+}
+
+bool TheoryFp::NotifyClass::eqNotifyTriggerTermEquality(TheoryId tag, TNode t1,
+ TNode t2, bool value) {
+ Debug("fp-eq") << "TheoryFp::eqNotifyTriggerTermEquality(): call back as "
+ << t1 << (value ? " = " : " != ") << t2 << std::endl;
+
+ if (value) {
+ return d_theorySolver.handlePropagation(t1.eqNode(t2));
+ } else {
+ return d_theorySolver.handlePropagation(t1.eqNode(t2).notNode());
+ }
+}
+
+void TheoryFp::NotifyClass::eqNotifyConstantTermMerge(TNode t1, TNode t2) {
+ Debug("fp-eq") << "TheoryFp::eqNotifyConstantTermMerge(): call back as " << t1
+ << " = " << t2 << std::endl;
+
+ std::vector<TNode> assumptions;
+ d_theorySolver.d_equalityEngine.explainEquality(t1, t2, true, assumptions);
+
+ Node conflict = helper::buildConjunct(assumptions);
+
+ d_theorySolver.handleConflict(conflict);
+}
-}/* CVC4::theory::fp namespace */
-}/* CVC4::theory namespace */
-}/* CVC4 namespace */
+} // namespace fp
+} // namespace theory
+} // namespace CVC4
diff --git a/src/theory/fp/theory_fp.h b/src/theory/fp/theory_fp.h
index 0355ed811..5205f5e23 100644
--- a/src/theory/fp/theory_fp.h
+++ b/src/theory/fp/theory_fp.h
@@ -20,34 +20,110 @@
#ifndef __CVC4__THEORY__FP__THEORY_FP_H
#define __CVC4__THEORY__FP__THEORY_FP_H
+#include <string>
+#include <utility>
+
+#include "context/cdo.h"
+#include "theory/fp/fp_converter.h"
#include "theory/theory.h"
+#include "theory/uf/equality_engine.h"
namespace CVC4 {
namespace theory {
namespace fp {
class TheoryFp : public Theory {
-public:
-
+ public:
/** Constructs a new instance of TheoryFp w.r.t. the provided contexts. */
- TheoryFp(context::Context* c,
- context::UserContext* u,
- OutputChannel& out,
- Valuation valuation,
- const LogicInfo& logicInfo);
+ TheoryFp(context::Context* c, context::UserContext* u, OutputChannel& out,
+ Valuation valuation, const LogicInfo& logicInfo);
+
+ Node expandDefinition(LogicRequest& lr, Node node);
- Node expandDefinition(LogicRequest &, Node node);
+ void preRegisterTerm(TNode node);
+ void addSharedTerm(TNode node);
void check(Effort);
- std::string identify() const {
- return "THEORY_FP";
- }
+ Node getModelValue(TNode var);
+ void collectModelInfo(TheoryModel* m);
+
+ std::string identify() const { return "THEORY_FP"; }
+
+ void setMasterEqualityEngine(eq::EqualityEngine* eq);
+
+ Node explain(TNode n);
+
+ protected:
+ /** Equality engine */
+ class NotifyClass : public eq::EqualityEngineNotify {
+ protected:
+ TheoryFp& d_theorySolver;
+
+ public:
+ NotifyClass(TheoryFp& solver) : d_theorySolver(solver) {}
+ bool eqNotifyTriggerEquality(TNode equality, bool value);
+ bool eqNotifyTriggerPredicate(TNode predicate, bool value);
+ bool eqNotifyTriggerTermEquality(TheoryId tag, TNode t1, TNode t2,
+ bool value);
+ void eqNotifyConstantTermMerge(TNode t1, TNode t2);
+ void eqNotifyNewClass(TNode t) {}
+ void eqNotifyPreMerge(TNode t1, TNode t2) {}
+ void eqNotifyPostMerge(TNode t1, TNode t2) {}
+ void eqNotifyDisequal(TNode t1, TNode t2, TNode reason) {}
+ };
+ friend NotifyClass;
+
+ NotifyClass d_notification;
+ eq::EqualityEngine d_equalityEngine;
+
+ /** General utility **/
+ void registerTerm(TNode node);
+ bool isRegistered(TNode node);
+
+ context::CDHashSet<Node, NodeHashFunction> d_registeredTerms;
+
+ /** Bit-blasting conversion */
+ FpConverter d_conv;
+ bool d_expansionRequested;
+
+ void convertAndEquateTerm(TNode node);
+
+ /** Interaction with the rest of the solver **/
+ void handleLemma(Node node);
+ bool handlePropagation(TNode node);
+ void handleConflict(TNode node);
+
+ context::CDO<bool> d_conflict;
+ context::CDO<Node> d_conflictNode;
+
+ /** Uninterpretted functions for partially defined functions. **/
+ typedef context::CDHashMap<TypeNode, Node, TypeNodeHashFunction>
+ ComparisonUFMap;
+
+ ComparisonUFMap d_minMap;
+ ComparisonUFMap d_maxMap;
+
+ Node minUF(Node);
+ Node maxUF(Node);
+
+ typedef context::CDHashMap<std::pair<TypeNode, TypeNode>, Node,
+ PairTypeNodeHashFunction>
+ ConversionUFMap;
+
+ ConversionUFMap d_toUBVMap;
+ ConversionUFMap d_toSBVMap;
+
+ Node toUBVUF(Node);
+ Node toSBVUF(Node);
+
+ ComparisonUFMap d_toRealMap;
-};/* class TheoryFp */
+ Node toRealUF(Node);
+}; /* class TheoryFp */
-}/* CVC4::theory::fp namespace */
-}/* CVC4::theory namespace */
-}/* CVC4 namespace */
+} // namespace fp
+} // namespace theory
+} // namespace CVC4
#endif /* __CVC4__THEORY__FP__THEORY_FP_H */
diff --git a/src/theory/fp/theory_fp_type_rules.h b/src/theory/fp/theory_fp_type_rules.h
index aa213f84f..2f7dd2e01 100644
--- a/src/theory/fp/theory_fp_type_rules.h
+++ b/src/theory/fp/theory_fp_type_rules.h
@@ -194,6 +194,7 @@ class FloatingPointPartialOperationTypeRule {
inline static TypeNode computeType(NodeManager* nodeManager, TNode n,
bool check) {
TRACE("FloatingPointOperationTypeRule");
+ AlwaysAssert(n.getNumChildren() > 0);
TypeNode firstOperand = n[0].getType(check);
@@ -203,9 +204,9 @@ class FloatingPointPartialOperationTypeRule {
n, "floating-point operation applied to a non floating-point sort");
}
- size_t children = n.getNumChildren();
+ const size_t children = n.getNumChildren();
for (size_t i = 1; i < children - 1; ++i) {
- if (!(n[i].getType(check) == firstOperand)) {
+ if (n[i].getType(check) != firstOperand) {
throw TypeCheckingExceptionPrivate(
n, "floating-point partial operation applied to mixed sorts");
}
@@ -240,6 +241,7 @@ class FloatingPointToFPIEEEBitVectorTypeRule {
inline static TypeNode computeType(NodeManager* nodeManager, TNode n,
bool check) {
TRACE("FloatingPointToFPIEEEBitVectorTypeRule");
+ AlwaysAssert(n.getNumChildren() == 1);
FloatingPointToFPIEEEBitVector info =
n.getOperator().getConst<FloatingPointToFPIEEEBitVector>();
@@ -270,6 +272,7 @@ class FloatingPointToFPFloatingPointTypeRule {
inline static TypeNode computeType(NodeManager* nodeManager, TNode n,
bool check) {
TRACE("FloatingPointToFPFloatingPointTypeRule");
+ AlwaysAssert(n.getNumChildren() == 2);
FloatingPointToFPFloatingPoint info =
n.getOperator().getConst<FloatingPointToFPFloatingPoint>();
@@ -301,6 +304,7 @@ class FloatingPointToFPRealTypeRule {
inline static TypeNode computeType(NodeManager* nodeManager, TNode n,
bool check) {
TRACE("FloatingPointToFPRealTypeRule");
+ AlwaysAssert(n.getNumChildren() == 2);
FloatingPointToFPReal info =
n.getOperator().getConst<FloatingPointToFPReal>();
@@ -332,6 +336,7 @@ class FloatingPointToFPSignedBitVectorTypeRule {
inline static TypeNode computeType(NodeManager* nodeManager, TNode n,
bool check) {
TRACE("FloatingPointToFPSignedBitVectorTypeRule");
+ AlwaysAssert(n.getNumChildren() == 2);
FloatingPointToFPSignedBitVector info =
n.getOperator().getConst<FloatingPointToFPSignedBitVector>();
@@ -363,6 +368,7 @@ class FloatingPointToFPUnsignedBitVectorTypeRule {
inline static TypeNode computeType(NodeManager* nodeManager, TNode n,
bool check) {
TRACE("FloatingPointToFPUnsignedBitVectorTypeRule");
+ AlwaysAssert(n.getNumChildren() == 2);
FloatingPointToFPUnsignedBitVector info =
n.getOperator().getConst<FloatingPointToFPUnsignedBitVector>();
@@ -419,6 +425,7 @@ class FloatingPointToUBVTypeRule {
inline static TypeNode computeType(NodeManager* nodeManager, TNode n,
bool check) {
TRACE("FloatingPointToUBVTypeRule");
+ AlwaysAssert(n.getNumChildren() == 2);
FloatingPointToUBV info = n.getOperator().getConst<FloatingPointToUBV>();
@@ -449,6 +456,7 @@ class FloatingPointToSBVTypeRule {
inline static TypeNode computeType(NodeManager* nodeManager, TNode n,
bool check) {
TRACE("FloatingPointToSBVTypeRule");
+ AlwaysAssert(n.getNumChildren() == 2);
FloatingPointToSBV info = n.getOperator().getConst<FloatingPointToSBV>();
@@ -479,6 +487,7 @@ class FloatingPointToUBVTotalTypeRule {
inline static TypeNode computeType(NodeManager* nodeManager, TNode n,
bool check) {
TRACE("FloatingPointToUBVTotalTypeRule");
+ AlwaysAssert(n.getNumChildren() == 3);
FloatingPointToUBVTotal info = n.getOperator().getConst<FloatingPointToUBVTotal>();
@@ -519,6 +528,7 @@ class FloatingPointToSBVTotalTypeRule {
inline static TypeNode computeType(NodeManager* nodeManager, TNode n,
bool check) {
TRACE("FloatingPointToSBVTotalTypeRule");
+ AlwaysAssert(n.getNumChildren() == 3);
FloatingPointToSBVTotal info = n.getOperator().getConst<FloatingPointToSBVTotal>();
@@ -559,6 +569,7 @@ class FloatingPointToRealTypeRule {
inline static TypeNode computeType(NodeManager* nodeManager, TNode n,
bool check) {
TRACE("FloatingPointToRealTypeRule");
+ AlwaysAssert(n.getNumChildren() == 1);
if (check) {
TypeNode operandType = n[0].getType(check);
@@ -578,6 +589,7 @@ class FloatingPointToRealTotalTypeRule {
inline static TypeNode computeType(NodeManager* nodeManager, TNode n,
bool check) {
TRACE("FloatingPointToRealTotalTypeRule");
+ AlwaysAssert(n.getNumChildren() == 2);
if (check) {
TypeNode operandType = n[0].getType(check);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback