summaryrefslogtreecommitdiff
path: root/src/theory/bv/bv_solver_bitblast.cpp
diff options
context:
space:
mode:
authorGereon Kremer <gkremer@stanford.edu>2021-02-18 21:37:30 +0100
committerGitHub <noreply@github.com>2021-02-18 21:37:30 +0100
commitba30b690b29e7e52dd8ea1ea953525c401abf3d9 (patch)
treecf2f9aae0c0a31a0290b8a65cce7b98719b8dae7 /src/theory/bv/bv_solver_bitblast.cpp
parentc6210af1db67701495efa263207b91064a3bcd0b (diff)
New InferenceIds for BV theory (#5909)
This PR introduces new InferenceId for the BV theory and uses them instead of InferenceId::UNKNOWN.
Diffstat (limited to 'src/theory/bv/bv_solver_bitblast.cpp')
-rw-r--r--src/theory/bv/bv_solver_bitblast.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/bv/bv_solver_bitblast.cpp b/src/theory/bv/bv_solver_bitblast.cpp
index bf264f9cd..55ae457bb 100644
--- a/src/theory/bv/bv_solver_bitblast.cpp
+++ b/src/theory/bv/bv_solver_bitblast.cpp
@@ -118,7 +118,7 @@ void BVSolverBitblast::postCheck(Theory::Effort level)
}
NodeManager* nm = NodeManager::currentNM();
- d_im.conflict(nm->mkAnd(conflict), InferenceId::UNKNOWN);
+ d_im.conflict(nm->mkAnd(conflict), InferenceId::BV_BITBLAST_CONFLICT);
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback