Eliminate Decision by Attribute Value Pseudo Code

Get the Attribute

Switch comparison type

Case Greater than

  If (attribute1 is > Value)

      Eliminate the decision

  End if

Case Less Than:

    If (attribute 1 is < Value)

      Eliminate the decision

    End if

Case Equal To

    If (attribute 1 = = Value)

      Eliminate the decision

    End if

End switch

 Note: Alphanumeric comparison is case sensitive.

More information

Eliminate Decision by Attribute Value.