Eliminate Decision by Attribute Attribute Pseudo Code

Get the First Attribute value

Get the second attribute value

Switch comparison type

  Case Greater than

If (attribute1 is > attribute2)

      Eliminate the decision

End if

  Case Less Than:

    If (attribute 1 is < attribute 2)

      Eliminate the decision

    End if

  Case Equal To

    If (attribute 1 = = attribute 2)

      Eliminate the decision

End if

End switch

Note: Comparison is case sensitive.

More information

Eliminate Decision by Attribute attribute.