Open goretkin opened 4 years ago
In particular, I have a question about how to access the assignment to e.g. x
without referring to "x", and without using get_numeral_int
, since I would the code to be more general.
This is in contrast to the example in the README, which would use "x" instead of x
.
for (k, v) in consts(m)
println("$k = $v")
end
This is a question, not necessarily specific to the Julia interface to Z3, and a note to others who might need to solve a similar problem of producing all feasible solutions. Is this the recommended way in Z3?
The snippet below produces the indices of all unit square grid cells (pixels) that intersect with a circle of radius 10.