Skip to content

Latest commit

 

History

History
57 lines (36 loc) · 1.73 KB

microsoft.quantum.arithmetic.applyxorinplace.md

File metadata and controls

57 lines (36 loc) · 1.73 KB
uid title ms.date ms.topic qsharp.kind qsharp.namespace qsharp.name qsharp.summary
Microsoft.Quantum.Arithmetic.ApplyXorInPlace
ApplyXorInPlace operation
7/28/2023 12:00:00 AM
managed-reference
operation
Microsoft.Quantum.Arithmetic
ApplyXorInPlace
Applies a bitwise-XOR operation between a classical integer and an integer represented by a register of qubits.

ApplyXorInPlace 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.Arithmetic

Package: Microsoft.Quantum.Standard

Applies a bitwise-XOR operation between a classical integer and an integer represented by a register of qubits.

operation ApplyXorInPlace (value : Int, target : Microsoft.Quantum.Arithmetic.LittleEndian) : Unit is Adj + Ctl

Description

Applies X operations to qubits in a little-endian register based on 1 bits in an integer.

Let us denote value by a and let y be an unsigned integer encoded in target, then ApplyXorInPlace performs an operation given by the following map: $\ket{y}\rightarrow \ket{y\oplus a}$ , where $\oplus$ is the bitwise exclusive OR operator.

Input

value : Int

An integer which is assumed to be non-negative.

target : LittleEndian

A quantum register which is used to store value in little-endian encoding.

Output : Unit