3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-08 17:01:55 +00:00

add stub for rewriter

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-10-04 18:14:43 -07:00
parent fb41fbf5e1
commit 522be5d8c2
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1 @@

View file

@ -0,0 +1,20 @@
/*++
Copyright (c) 2025 Microsoft Corporation
Module Name:
finite_sets_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.
--*/