dwavebinarycsp.factories.constraint.gates.xor_gate#

xor_gate(variables, vartype=Vartype.BINARY, name='XOR')[source]#

XOR gate.

Parameters:
  • variables (list) – Variable labels for the and gate as [in1, in2, out], where in1, in2 are inputs and out the gate’s output.

  • vartype (Vartype, optional, default='BINARY') –

    Variable type. Accepted input values:

    • Vartype.SPIN, ‘SPIN’, {-1, 1}

    • Vartype.BINARY, ‘BINARY’, {0, 1}

  • name (str, optional, default='XOR') – Name for the constraint.

Returns:

Constraint that is satisfied when its variables are assigned values that match the valid states of an XOR gate.

Return type:

Constraint(Constraint)

Examples

>>> import dwavebinarycsp.factories.constraint.gates as gates
>>> csp = dwavebinarycsp.ConstraintSatisfactionProblem(dwavebinarycsp.BINARY)
>>> csp.add_constraint(gates.xor_gate(['x', 'y', 'z'], name='XOR1'))
>>> csp.check({'x': 1, 'y': 1, 'z': 1})
False