Description:
MWAOP detects if several operators with non-intuitive clear precedence are used without explicit grouping by parentheses. Sometimes programmer's assumption about operator priorities is not true, and in any case enclosing such operations in parentheses can only increase readability of program.
Example:
x & y == z x && y & z x || y = z