You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 12, 2024. It is now read-only.
/// Called when qubits are allocated by Q# <a href="https://docs.microsoft.com/azure/quantum/user-guide/language/statements/quantummemorymanagement#use-statement"><c>using</c></a> block.
566
+
/// Called when qubits are allocated by Q# <a href="https://docs.microsoft.com/azure/quantum/user-guide/language/statements/quantummemorymanagement#use-statement"><c>use</c></a> block.
567
567
/// </summary>
568
568
/// <param name="qubits">Qubits that are being allocated</param>.
569
569
/// <remarks>
@@ -573,7 +573,7 @@ public interface IQuantumProcessor
573
573
voidOnAllocateQubits(IQArray<Qubit>qubits);
574
574
575
575
/// <summary>
576
-
/// Called when qubits are released in Q# in the end of <a href="https://docs.microsoft.com/azure/quantum/user-guide/language/statements/quantummemorymanagement#use-statement"><c>using</c></a> block.
576
+
/// Called when qubits are released in Q# in the end of <a href="https://docs.microsoft.com/azure/quantum/user-guide/language/statements/quantummemorymanagement#use-statement"><c>use</c></a> block.
577
577
/// </summary>
578
578
/// <param name="qubits">Qubits that are being released</param>.
579
579
/// <remarks>
@@ -583,7 +583,7 @@ public interface IQuantumProcessor
583
583
voidOnReleaseQubits(IQArray<Qubit>qubits);
584
584
585
585
/// <summary>
586
-
/// Called when qubits are borrowed by Q# <a href="https://docs.microsoft.com/azure/quantum/user-guide/language/statements/quantummemorymanagement#borrow-statement"><c>borrowing</c></a> block.
586
+
/// Called when qubits are borrowed by Q# <a href="https://docs.microsoft.com/azure/quantum/user-guide/language/statements/quantummemorymanagement#borrow-statement"><c>borrow</c></a> block.
587
587
/// </summary>
588
588
/// <param name="qubits">Qubits that are being borrowed</param>.
589
589
/// <param name="allocatedForBorrowingCount">Number of qubits that have been allocated for borrowing. This might happen if there have not been enough already allocated qubits available for borrowing.</param>.
@@ -594,7 +594,7 @@ public interface IQuantumProcessor
/// Called when qubits are returned in the end of Q# <a href="https://docs.microsoft.com/azure/quantum/user-guide/language/statements/quantummemorymanagement#borrow-statement"><c>borrowing</c></a> block.
597
+
/// Called when qubits are returned in the end of Q# <a href="https://docs.microsoft.com/azure/quantum/user-guide/language/statements/quantummemorymanagement#borrow-statement"><c>borrow</c></a> block.
598
598
/// </summary>
599
599
/// <param name="qubits">Qubits that have been borrowed and are now being returned</param>.
600
600
/// <param name="releasedOnReturnCount">Number of qubits that have been released once returned. This might happen if they have been allocated only for borrowing.</param>.
0 commit comments