Skip to content

Commit

Permalink
chore: Update portgraph to 0.12.2 (#1263)
Browse files Browse the repository at this point in the history
Includes the fix in CQCL/portgraph#139 that
closes #1197
  • Loading branch information
aborgna-q committed Jul 8, 2024
1 parent f158384 commit 5f97886
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ missing_docs = "warn"
debug_assert_with_mut_call = "warn"

[workspace.dependencies]
portgraph = { version = "0.12.1" }
portgraph = { version = "0.12.2" }
insta = { version = "1.34.0" }
bitvec = "1.0.1"
cgmath = "0.18.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ graph LR
subgraph 2 ["(2) DataflowBlock"]
direction LR
3["(3) Input"]
3--"0:0<br>usize"-->5
4["(4) Output"]
5["(5) Tag"]
3--"0:0<br>usize"-->5
5--"0:0<br>[usize]+[usize]"-->4
end
2-."0:0".->6
2-."1:0".->1
1["(1) ExitBlock"]
subgraph 6 ["(6) DataflowBlock"]
direction LR
7["(7) Input"]
7--"0:1<br>usize"-->8
8["(8) Output"]
9["(9) const:sum:{tag:0, vals:[]}"]
9--"0:0<br>[]"-->10
10["(10) LoadConstant"]
7--"0:1<br>usize"-->8
9--"0:0<br>[]"-->10
10--"0:0<br>[]"-->8
end
2-."0:0".->6
2-."1:0".->1
6-."0:0".->1
end
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ graph LR
subgraph 0 ["(0) DFG"]
direction LR
1["(1) Input"]
1--"0:0<br>qubit"-->3
1--"1:1<br>qubit"-->3
2["(2) Output"]
3["(3) test.quantum.CX"]
4["(4) test.quantum.CX"]
1--"0:0<br>qubit"-->3
1--"1:1<br>qubit"-->3
3--"0:1<br>qubit"-->4
3--"1:0<br>qubit"-->4
3-."2:2".->4
4["(4) test.quantum.CX"]
4--"0:0<br>qubit"-->2
4--"1:1<br>qubit"-->2
end
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ graph LR
subgraph 0 ["(0) DFG"]
direction LR
1["(1) Input"]
1--"0:0<br>[]+[]"-->2
2["(2) Output"]
1--"0:0<br>[]+[]"-->2
end

0 comments on commit 5f97886

Please sign in to comment.