Eliminate Decision by Point Value Pseudo Code

Get value of point 1

Switch comparison type

  Case Greater than

    If (Point Value is > Value)

      Eliminate the decision

    End if

  Case Less Than:

    If (Point Value is < Value)

      Eliminate the decision

    End if

  Case Equal To

    If (Point Value = = Value)

      Eliminate the decision

    End if

End switch

 Note: Alphanumeric comparison is case sensitive.

More information

Eliminate Decision by Point Value.