Merge pull request #215 from microsoft/mariia/api-docs-controlledonbitstring

Improve API documentation for ControlledOnBitString
This commit is contained in:
Chris Granade 2020-01-28 10:24:37 -08:00 коммит произвёл GitHub
Родитель d38bc75bb7 dc932c1ebc
Коммит 35497c79b1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 46 добавлений и 2 удалений

Просмотреть файл

@ -37,14 +37,58 @@ namespace Microsoft.Quantum.Canon {
/// # Summary
/// Returns a unitary operator that applies an oracle on the target register if the control register state corresponds to a specified bit mask.
///
/// # Description
/// The output of this function can be represented by a unitary transformation $U$ such that
/// \begin{align}
/// U \ket{b_0 b_1 \cdots b_{n - 1}} \ket{\psi} = \ket{b_0 b_1 \cdots b_{n-1}} \otimes
/// \begin{cases}
/// V \ket{\psi} & \textrm{if} (b_0 b_1 \cdots b_{n - 1}) = \texttt{bits} \\\\
/// \ket{\psi} & \textrm{otherwise}
/// \end{cases},
/// \end{align}
/// where $V$ is a unitary transformation that represents the action of the `oracle` operation.
///
/// # Input
/// ## bits
/// Boolean array.
/// The bit string to control the given unitary operator on.
/// ## oracle
/// Unitary operator.
/// Unitary operator to be applied on the target register.
///
/// # Output
/// A unitary operator that applies `oracle` on the target register if the control register state corresponds to the bit mask `bits`.
///
/// # Remarks
/// The length of `bits` and `controlRegister` must be equal.
///
/// Given a Boolean array `bits` and a unitary operation `oracle`, the output of this function
/// is an operation that performs the following steps:
/// * apply an `X` operation to each qubit of the control register that corresponds to `false` element of the `bits`;
/// * apply `Controlled oracle` to the control and target registers;
/// * apply an `X` operation to each qubit of the control register that corresponds to `false` element of the `bits` again to return the control register to the original state.
///
/// The output of the `Controlled` functor is a special case of `ControlledOnBitString` where `bits` is equal to `[true, ..., true]`.
///
/// # Example
/// The following code snippets are equivalent:
/// ```qsharp
/// (ControlledOnBitString(bits, oracle))(controlRegister, targetRegister);
/// ```
/// and
/// ```qsharp
/// within {
/// ApplyPauliFromBitString(PauliX, false, bits, controlRegister);
/// } apply {
/// Controlled oracle(controlRegister, targetRegister);
/// }
/// ```
///
/// The following code prepares a state $\frac{1}{2}(\ket{00} - \ket{01} + \ket{10} + \ket{11})$:
/// ```qsharp
/// using (register = Qubit[2]) {
/// ApplyToEach(H, register);
/// (ControlledOnBitString([false], Z))(register[0..0], register[1]);
/// }
/// ```
function ControlledOnBitString<'T> (bits : Bool[], oracle : ('T => Unit is Adj + Ctl)) : ((Qubit[], 'T) => Unit is Adj + Ctl)
{
return ControlledOnBitStringImpl(bits, oracle, _, _);