Class Comparison

class libcalculus.Comparison

A class that represents a generic comparison (complex, real, etc.), deducing types only when used. Comparisons such as Function() > 0 and Function() == 1j produce instances of this class.

__and__(value, /)

Return self&value.

__call__()

Evaluate the comparison at a point or on an np.ndarray of points.

__iand__(value, /)

Return self&=value.

__invert__()

~self

__ior__(value, /)

Return self|=value.

__or__(value, /)

Return self|value.