CCNOT operation

Warning

This documentation refers to the Classic QDK, which has been replaced by the Modern QDK.

Please see https://aka.ms/qdk.api for the API documentation for the Modern QDK.

Namespace: Microsoft.Quantum.Intrinsic

Package: Microsoft.Quantum.Type2.Core

Applies the doubly controlled–NOT (CCNOT) gate to three qubits.

operation CCNOT (control1 : Qubit, control2 : Qubit, target : Qubit) : Unit is Adj + Ctl

Input

control1 : Qubit

First control qubit for the CCNOT gate.

control2 : Qubit

Second control qubit for the CCNOT gate.

target : Qubit

Target qubit for the CCNOT gate.

Output : Unit

Remarks

Equivalent to:

Controlled X([control1, control2], target);