Is there a library for .NET that does parenthesis or expression reduction and optimization?
- by Matt
Is there a library for .NET that does parenthesis or expression reduction and optimization?
Something that would take an expression such as (A & (((B) | (C)) | D))) and return
A & (B | C | D)
But also take (A & A) and return A