Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.

Commit 2a7297a

Browse files
Guen Pmsquantumdocs
andauthored
Update to QDK release 0.14.2011.120240 (#444)
* Build 0.14.2011.120240. * remove optional parentheses (new v0.14 feature) Co-authored-by: XField <vitorcia@microsoft.com>
1 parent 783f4a7 commit 2a7297a

File tree

65 files changed

+94
-94
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+94
-94
lines changed

Build/images/samples/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://github.com/microsoft/iqsharp/blob/main/images/iqsharp-base/Dockerfile.
33
# As per Binder documentation, we choose to use an SHA sum here instead of a
44
# tag.
5-
FROM mcr.microsoft.com/quantum/iqsharp-base:0.13.20102604
5+
FROM mcr.microsoft.com/quantum/iqsharp-base:0.14.2011120240
66

77
# Mark that this Dockerfile is used with the samples repository.
88
ENV IQSHARP_HOSTING_ENV=SAMPLES_DOCKERFILE

samples/algorithms/chsh-game/CHSHGame.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.Quantum.Sdk/0.13.201118141-beta">
1+
<Project Sdk="Microsoft.Quantum.Sdk/0.14.2011120240">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>

samples/algorithms/database-search/DatabaseSearch.qs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ namespace Microsoft.Quantum.Samples.DatabaseSearch {
383383
: Unit
384384
is Adj + Ctl {
385385
for (markedElement in markedElements) {
386-
(ControlledOnInt(markedElement, X))(databaseRegister, markedQubit);
386+
ControlledOnInt(markedElement, X)(databaseRegister, markedQubit);
387387
}
388388
}
389389

@@ -487,7 +487,7 @@ namespace Microsoft.Quantum.Samples.DatabaseSearch {
487487
// state.
488488
using ((markedQubit, databaseRegister) = (Qubit(), Qubit[nDatabaseQubits])) {
489489
// Implement the quantum search algorithm.
490-
(GroverSearch(markedElements, nIterations, 0))([markedQubit] + databaseRegister);
490+
GroverSearch(markedElements, nIterations, 0)([markedQubit] + databaseRegister);
491491

492492
// Measure the marked qubit. On success, this should be One.
493493
let resultSuccess = MResetZ(markedQubit);

samples/algorithms/database-search/DatabaseSearchSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.Quantum.Sdk/0.13.201118141-beta">
1+
<Project Sdk="Microsoft.Quantum.Sdk/0.14.2011120240">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>

samples/algorithms/integer-factorization/IntegerFactorization.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.Quantum.Sdk/0.13.201118141-beta">
1+
<Project Sdk="Microsoft.Quantum.Sdk/0.14.2011120240">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>

samples/algorithms/oracle-synthesis/OracleSynthesis.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.Quantum.Sdk/0.13.201118141-beta">
1+
<Project Sdk="Microsoft.Quantum.Sdk/0.14.2011120240">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>

samples/algorithms/order-finding/OrderFinding.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.Quantum.Sdk/0.13.201118141-beta">
1+
<Project Sdk="Microsoft.Quantum.Sdk/0.14.2011120240">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
44
<TargetFramework>netcoreapp3.1</TargetFramework>

samples/algorithms/repeat-until-success/RepeatUntilSuccess.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.Quantum.Sdk/0.13.201118141-beta">
1+
<Project Sdk="Microsoft.Quantum.Sdk/0.14.2011120240">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>

samples/algorithms/reversible-logic-synthesis/ReversibleLogicSynthesis.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.Quantum.Sdk/0.13.201118141-beta">
1+
<Project Sdk="Microsoft.Quantum.Sdk/0.14.2011120240">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>

samples/algorithms/simple-grover/SimpleGroverSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.Quantum.Sdk/0.13.201118141-beta">
1+
<Project Sdk="Microsoft.Quantum.Sdk/0.14.2011120240">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>

0 commit comments

Comments
 (0)