.. _processorsComparisonDoc: .. index:: single: Comparison Processors =========================== Comparison Processor Blocks =========================== * `Equal ()`_ * `Greater ()`_ * `GreaterOrEqual ()`_ * `Less ()`_ * `LessOrEqual ()`_ * `NotEqual ()`_ ---- .. index:: single: Equal() .. index:: single: Comparison Processors; Equal .. _Equal_CP: Equal () ======== :: # Switch is on [ 1, 1 ] >> Equal () >> Switch; # Switch is off [ 1, 0 ] >> Equal () >> Switch; ---- .. index:: single: Greater() .. index:: single: Comparison Processors; Greater .. _Greater_CP: Greater () ========== :: # Switch is on [ 1, 0 ] >> Greater () >> Switch; # Switch is off [ 0, 1 ] >> Greater () >> Switch; # Switch is off [ 1, 1 ] >> Greater () >> Switch; ---- .. index:: single: GreaterOrEqual() .. index:: single: Comparison Processors; GreaterOrEqual .. _GreaterOrEqual_CP: GreaterOrEqual () ================= :: # Switch is on [ 1, 0 ] >> GreaterOrEqual () >> Switch; # Switch is off [ 0, 1 ] >> GreaterOrEqual () >> Switch; # Switch is on [ 1, 1 ] >> GreaterOrEqual () >> Switch; ---- .. index:: single: Less() .. index:: single: Comparison Processors; Less .. _Less_CP: Less () ======= :: # Switch is on [ 0, 1 ] >> Less () >> Switch; # Switch is off [ 1, 0 ] >> Less () >> Switch; # Switch is off [ 1, 1 ] >> Less () >> Switch; ---- .. index:: single: LessOrEqual() .. index:: single: Comparison Processors; LessOrEqual .. _LessOrEqual_CP: LessOrEqual () ============== :: # Switch is on [ 0, 1 ] >> LessOrEqual () >> Switch; # Switch is off [ 1, 0 ] >> LessOrEqual () >> Switch; # Switch is on [ 1, 1 ] >> LessOrEqual () >> Switch; ---- .. index:: single: NotEqual() .. index:: single: Comparison Processors; NotEqual .. _NotEqual_CP: NotEqual () =========== :: # Switch is on [ 0, 1 ] >> NotEqual () >> Switch; # Switch is off [ 1, 1 ] >> NotEqual () >> Switch;