bv: Rename lazy solver to layered solver. (#6889)
authorMathias Preiner <mathias.preiner@gmail.com>
Thu, 15 Jul 2021 01:54:33 +0000 (18:54 -0700)
committerGitHub <noreply@github.com>
Thu, 15 Jul 2021 01:54:33 +0000 (01:54 +0000)
commitbb6813731ef1059ab38cedcc5af026b6e75bd6be
tree42613e96a0e119fe21fadb8e031fd92c3dbfb50c
parentffdf7434ba53191546e13663764894852e8bc6dd
bv: Rename lazy solver to layered solver. (#6889)
28 files changed:
src/CMakeLists.txt
src/options/bv_options.toml
src/theory/bv/bitblast/eager_bitblaster.cpp
src/theory/bv/bitblast/eager_bitblaster.h
src/theory/bv/bitblast/lazy_bitblaster.cpp
src/theory/bv/bitblast/lazy_bitblaster.h
src/theory/bv/bv_eager_solver.cpp
src/theory/bv/bv_eager_solver.h
src/theory/bv/bv_quick_check.cpp
src/theory/bv/bv_quick_check.h
src/theory/bv/bv_solver_layered.cpp [new file with mode: 0644]
src/theory/bv/bv_solver_layered.h [new file with mode: 0644]
src/theory/bv/bv_solver_lazy.cpp [deleted file]
src/theory/bv/bv_solver_lazy.h [deleted file]
src/theory/bv/bv_subtheory.h
src/theory/bv/bv_subtheory_algebraic.cpp
src/theory/bv/bv_subtheory_algebraic.h
src/theory/bv/bv_subtheory_bitblast.cpp
src/theory/bv/bv_subtheory_bitblast.h
src/theory/bv/bv_subtheory_core.cpp
src/theory/bv/bv_subtheory_core.h
src/theory/bv/bv_subtheory_inequality.cpp
src/theory/bv/bv_subtheory_inequality.h
src/theory/bv/theory_bv.cpp
src/theory/bv/theory_bv.h
src/theory/inference_id.cpp
src/theory/inference_id.h
test/unit/theory/theory_bv_white.cpp