* @param equality the equality to test
* @param x the unknown in the equation
* @return true if the equality is an absolute value equation
*/
public static boolean isA(Equality equality, Variable x) {
return equality.contains(new Abs(new FunctionPattern(x)));
}