3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-03 13:07:53 +00:00

add outline of axiomatization

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-10-05 14:04:51 -07:00
parent 522be5d8c2
commit ad7b248956
3 changed files with 86 additions and 1 deletions

View file

@ -0,0 +1,20 @@
/*++
Copyright (c) 2025 Microsoft Corporation
Module Name:
finite_set_rewriter.h
Abstract:
Rewriting Simplification for finite sets
Sampe rewrite rules:
set.union s set.empty -> s
set.intersect s set.empty -> set.empty
set.in x (set.singleton y) -> x = y
Generally this module implements basic algebraic simplificaiton rules for finite sets
where the signature is defined in finite_sets_decl_plugin.h.
--*/