def are_flipped_inequalities_equal()

in src/math_verify/grader.py [0:0]


    def are_flipped_inequalities_equal(a: Relational, b: Relational) -> bool:
        try:
            return sympy_expr_eq(
                a.lhs - a.rhs, b.rhs - b.lhs, float_rounding, numeric_precision
            )  # type: ignore
        except Exception:
            pass
        return False