-
-
Notifications
You must be signed in to change notification settings - Fork 27
Open
Labels
Description
For example licensing.dedup() should have simplified the following expression:
(gpl AND mit) AND mit AND (gpl OR mit) -> gpl AND mit AND (gpl OR mit)
But currently it does not flatten AND statements in parenthesis, but it should.
This can be done either by:
licensing.dedup(str(expression.flatten()))(?)- By replacing OR statements by one symbol, simplifying and then getting the OR statements back by using substitution tables.