3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-28 23:17:56 +00:00

ho matcher draft

Draft implementation of higher-order matcher.
No specific tuning at this point.
This commit is contained in:
Nikolaj Bjorner 2025-07-04 18:01:37 -07:00
parent 0ee1ee54bd
commit 951554e883
3 changed files with 1290 additions and 0 deletions

View file

@ -58,6 +58,7 @@ add_executable(test-z3
heap.cpp
heap_trie.cpp
hilbert_basis.cpp
ho_matcher.cpp
horn_subsume_model_converter.cpp
hwf.cpp
inf_rational.cpp

1288
src/test/ho_matcher.cpp Normal file

File diff suppressed because it is too large Load diff

View file

@ -270,4 +270,5 @@ int main(int argc, char ** argv) {
TST(sls_test);
TST(scoped_vector);
TST(sls_seq_plugin);
TST(ho_matcher);
}