Comparison math nodes

Use Comparison math nodes to perform mathematical comparisons between values or attributes which can be used in the creation of procedural animations, rigging setups, and dynamic simulations.

And
Outputs the result of the and (&&) logical operation.
Output is True if both 1 and 2 inputs are True.
Equal
Outputs the result of the comparison (==) logical operation.

Output is True if the inputs are equal more or less the given epsilon.

GreaterThan
Outputs the result of the greater than (>) logical operation.

Output is True if input 1 is greater than 2.

LessThan
Outputs the result of the less than (>) logical operation.

Output is True if input 1 is less than 2.

Max
Outputs the maximum value from the list of inputs
Min
Outputs the minimum value from the list of inputs.
Not
Outputs the inverse of the Boolean input.

Output is True if the input is false, and False if it is true.

Or
Outputs the result of the or (||) logical operation.

Output is True if input 1 or 2 are true.