I am not sure that this is possible using SMT-LIB, if it is not possible does an alternative solver exist that can do it?
Consider the equations
a < 10
anda > 5
b < 5
andb > 0
b < c < a
- with
a
,b
andc
integers
The values for a
and b
where the maximum number of model exist that satisfy the equations when a=9
and b=1
.
Do SMT-LIB support the following: For each values of a
and b
count the number of models that satisfy the formulas and give the value for a
and b
that maximize the count.
Let's break down your goals:
a
andb
(...and more) can be assignedIn general, this is not possible, as the domain of some variables in the problem might contain an infinite number of elements.
Even when one can safely assume that the domain of every other variable contains a finite number of elements, it is still highly inefficient. For instance, if you had only Boolean variables in your problem, you would still have an exponential number of combination of values --and therefore candidate models-- to consider along the search.
However, it is also possible that your actual application is not that complex in practice, and therefore it can be handled by an SMT Solver.
The general idea could be to use some SMT Solver API and proceed as follows:
assert
the whole formulapush
a back-track pointassert
one specific combination of values, e.g.a = 8 and b = 2
check
for a solutionUNSAT
, exit the inner-most loopSAT
, increase counter of models for the given combination of values ofa
andb
c = 5 and d = 6
assert
a new constraint requesting that at least one of the "other" variables changes its value, e.g.c != 5 or d != 6
pop
backtrack pointAlternatively, you may enumerate the possible assignments over
a
andb
implicitly rather than explicitly. The idea would be as follows:assert
the whole formulacheck
for a solutionUNSAT
, exit loopSAT
, take the combination of values of your control variables from the model (e.g.a = 8 and b = 2
), check in an internal map if you encountered this combination before, if not set the counter to1
, otherwise increase the counter by1
.c = 5 and d = 6
assert
a new constraint requesting for a new solution, e.g.a != 8 or b != 2 or c != 5 or d != 6
In the case that you are in doubt on which SMT Solver to pick, I would advice you to start solving your task with pysmt, which allows one to choose among several SMT engines with ease.
If for your application an explicit enumeration of models is too slow to be practical, then I would advice you to look at the vast literature on Counting Solutions of CSPs, where this problem has already been tackled and there seem to exist several ways to approximately estimate the number of solutions of CSPs.