I'd like to preprocess boolean formulas so that a and (a or b) and c
becomes just a and c
There are never any negations, so it should be a simple problem, but nothing really obvious comes to mind (other than folding and-in-and, or-in-or, duplicates, sorting). Am I missing something totally obvious perhaps?