3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-05-26 13:37:49 -07:00
parent a1991d803f
commit 33cdc06eb4

View file

@ -299,7 +299,7 @@ namespace smt {
}
/**
nonempty(R union Q, Seen) = R = {} or Q = {}
nonempty(R union Q, Seen) = R != {} or Q != {}
nonempty(R[if(p,R1,R2)], Seen) = if(p, nonempty(R[R1], Seen), nonempty(R[R2], Seen)) (co-factor)
nonempty(R, Seen) = nullable(R) or (R not in Seen and nonempty(D(first(R),R), Seen u { R })) (derivative)