Is there any tool or library in java which simplifies a boolean expression formula and gives result.
when inputs are like that,
exp = (a || a' ) result = 1
exp = ( a || b ) && ( a' || b ) result = b (after simplification)
Expressions can be larger or more complex than above.
a'do you mean "not a"? That should be!ain Java. Btw( a || b ) && ( !a || b )evaluates tofalse, notb. Did you mean( a && b ) || ( !a && b )? – Péter Török Feb 24 '11 at 11:51