Hi,
Is there a simple way to check whether two result sets are equivalent/the same?
Here's a toy example:
A = x>0; B = -x<0;
I'd like to test if A==B. For example, this command outputs
(x > 0) == (-x < 0).
I've also tried using Complement, with no success.
Thank you! Pedro