Files
Z3Prover-z3/examples/python
Guangyu (Gary) HU 704dc9375d mini_ic3: fix generalize() returning empty/init-overlapping core (#9245)
Two fixes in examples/python/mini_ic3.py:

1. generalize(): the polarity of the disjointness check was inverted,
   and there was no guard against an empty unsat core. With an empty
   core, And([])=True so check_disjoint(init, prev(True)) is always
   False (init is sat), and the code returned the empty core. That
   empty core then became cube2clause([])=Or([])=False, which got
   added as a lemma to all frames. The frame became inconsistent and
   is_valid() returned And(Or())=False as the "inductive invariant".

   Fix: require len(core) > 0 AND check_disjoint(init, prev(core))
   (without the spurious 'not'), so the core is only used when it
   is genuinely disjoint from init.

2. is_transition(): when an init rule's body happens to be an And
   without any Invariant predicate (e.g. (and (not A) (not B) ...)),
   is_body() returns (And(...), None). is_transition then passed
   inv0=None to subst_vars() which crashed inside get_vars(). Add an
   explicit None check so the rule falls through to is_init().

Verified on horn1..5 (unchanged behavior), h_CRC and h_FIFO from the
blocksys benchmarks (now correctly return CEX matching z3 spacer),
and cache_coherence_three (no longer collapses to (and or)).
2026-04-09 02:01:07 -07:00
..
2019-06-30 08:40:41 +03:00
2018-12-28 13:28:15 -05:00
2019-08-14 22:00:50 -07:00
2022-05-28 09:37:41 -07:00
2021-02-21 13:13:19 +00:00
2022-04-04 20:19:15 +02:00
2019-01-18 16:18:16 -08:00
2021-03-26 14:58:23 -07:00
2019-01-04 18:30:02 -05:00
2018-05-19 11:16:20 +02:00
2024-02-07 23:06:43 -08:00
2012-10-28 12:19:45 -07:00
2019-08-14 22:00:50 -07:00
2019-06-10 17:45:55 -07:00
2022-04-05 04:26:40 +02:00

The example is copied to the build directory during configuration.
You can execute it using
    python example.py
in the build directory after you build Z3.