in reply to Walking a boolean tree to produce matching inputs

I would go top down.

The minimal solutions of:

so

It gets complicated if ATOMs are repeated, so you'll have to compute all possible solutions to find the minimas.

e.g. min ( ( a or b ) and ( a or c ) ) = { {a} } cause {a} x {a} = {a} and the other solutions like {b,a}, etc are bigger

HTH! :)

Cheers Rolf

( addicted to the Perl Programming Language)

updates

  • please note that this is related to transforming and minimizing terms. This rings a bell ... we used something like the Horner scheme to solve such tasks at my first year in university... :)

  • you can also approach this with logical operations on bit-vectors representing the truth tables, but be aware that already 10 atoms would require 1024 bit strings to do so.