Eliminate Decision by Point Point Pseudo Code

Get value of point 1

GetValue of Point 2

Switch comparison type

      Case Greater than

    If (Value 1 is > Value 2)

      Eliminate the decision

    End if

Case Less Than:

    If (Value 1 is < Value 2)

      Eliminate the decision

    End if

Case Equal To

    If (Value 1 = = Value 2)

      Eliminate the decision

    End if

End switch

 Note: Alphanumeric comparison is case sensitive.

More information

Eliminate Decision by Point Point.