Skip to content

Commit 27868a1

Browse files
authored
Introduce GabsRepr for future work in QuantumSymbolics (#50)
1 parent 8aef7dd commit 27868a1

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# News
22

3+
## v0.3.9 - 2025-04-08
4+
5+
- Add `GabsRepr` type for representations in Gabs.
6+
37
## v0.3.8 - 2025-03-08
48
- Introduce `metrics.jl` file for metric declarations.
59

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "QuantumInterface"
22
uuid = "5717a53b-5d69-4fa3-b976-0bf2f97ca1e5"
33
authors = ["QuantumInterface.jl contributors"]
4-
version = "0.3.8"
4+
version = "0.3.9"
55

66
[deps]
77
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

src/express.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,8 @@ end
2929
"""Similar to `QuantumOpticsRepr`, but using trajectories instead of superoperators."""
3030
struct QuantumMCRepr <: AbstractRepresentation end
3131
"""Representation using tableaux governed by `QuantumClifford.jl`"""
32-
struct CliffordRepr <: AbstractRepresentation end
32+
struct CliffordRepr <: AbstractRepresentation end
33+
"""Representation using Gaussian phase space formalism governed by `Gabs.jl`."""
34+
struct GabsRepr{B} <: AbstractRepresentation
35+
basis::B
36+
end

0 commit comments

Comments
 (0)