Add arithmetic optimizer stage that removes LogicalNot that takes a comparison as input, i.e.
!(a == b) => a != b !(a != b) => a == b !(a < b) => a >= b !(a <= b) => a > b !(a > b) => a <= b !(a >= b) => a < b PiperOrigin-RevId: 197477959
Loading
Please sign in to comment