vote up 3 vote down star

I'm looking for a tool to refactor boolean expression. I've got expressions like

a1 => (b1 <=> c or d) AND 
a2 => (b2 <=> c or d) AND
a2 => (b2 <=> c or d)

The tool should be able to simplify expressions, e.g. extract the sub expression "c or d" in the example above. Is there a free computer algebra system which can do this?

Currently I think of refactoring the expressions manually an prove the equivalence with a little haskell quickcheck script.

flag

1 Answer

vote up 1 vote down

I'm not sure about a tool but take a look at Boolean Algebra

you can draw a grid of all the inputs and output to try and find a minimal boolean expression

link|flag
The first problem is that the number of variables of about 50. The second problem is that I'm not looking for a minimal expression. I want to refactor existing expression to make them maintainable. – ordnungswidrig Apr 20 at 9:20
in loo of finding a tool, write some tests around it and create a method a1 >= foo(b1) – Scott Cowan Apr 20 at 14:40
you could loop thru arrays of a and b to trim it down too – Scott Cowan Apr 20 at 14:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.