summaryrefslogtreecommitdiff
path: root/src/theory/fp/theory_fp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/fp/theory_fp.h')
-rw-r--r--src/theory/fp/theory_fp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/fp/theory_fp.h b/src/theory/fp/theory_fp.h
index 663be2f81..9dd532a5d 100644
--- a/src/theory/fp/theory_fp.h
+++ b/src/theory/fp/theory_fp.h
@@ -33,7 +33,7 @@ namespace cvc5 {
namespace theory {
namespace fp {
-class FpConverter;
+class FpWordBlaster;
class TheoryFp : public Theory
{
@@ -120,11 +120,11 @@ class TheoryFp : public Theory
context::CDHashSet<Node> d_registeredTerms;
/** The word-blaster. Translates FP -> BV. */
- std::unique_ptr<FpConverter> d_conv;
+ std::unique_ptr<FpWordBlaster> d_wordBlaster;
bool d_expansionRequested;
- void convertAndEquateTerm(TNode node);
+ void wordBlastAndEquateTerm(TNode node);
/** Interaction with the rest of the solver **/
void handleLemma(Node node, InferenceId id);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback