Problem
Given two boolean functions f1(a,b)
and f2(a,b,c)
with a,b and c booleans, I'd like to know if there exists a value of c such that for any combinations of a et b f1(a,b)=f2(a,b,c)
.
For example if f1(a,b)=a AND b
and f2(a,b,c)=a AND b AND c
, we can see that f1=f2
when c=1
. However, if f1(a,b)=a OR b
and f2(a,b,c)=a AND b AND c
, no value of c holds for f1=f2
.
Failed approach
I tried to use model checking, with a trivial model implemented in nuXmv, to answer this question with a CTL specification such as EF ( AG ( (a & b) = (a & b & c)))
but it fails.
Obviously, it works fine with the specification AG ( c=true -> (a & b = a & b & c))
but it requires to have 2^n specifications (with n being the difference between the number of variables between the two functions).
What is the best way/tool/approach in your opinion to tackle the issue.
Thanks for pointing to the right direction.
If I were using
nuXmv
for this task, I would write the following modeland then incrementally remove from the state space all those states for which the property is falsified. For example, given this:
I would then write this (because
c
is the only watched variable):which would actually allow for the iterative-refinement search to stop because now the property is true under all possible evaluations of
a
andb
:Now, this does not appear to be the ideal solution because it requires parsing the output of
nuXmv
and correspondingly modify the original file. Compared to your approach, that checks all possible assignments of values, this method enumerates only those assignments which make the formula unsatisfiable. Still, there could be exponentially many counter-examples so it is not that much of an improvement.One alternative is to use SMT with universal quantification over an EUF formula including the definitions of
f1
andf2
, where the only free variable isc
:This gives you the following model with the SMT solver
z3
:If you would like to know all possible values of
c
for whichf1 = f2
, then your best shot is to implement an incremental allsat search on top ofz3
(see: plenty of Q/A here on stackoverflow on the topic).