Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
f0af49e
moving otimes to isomorphisms
aarontrowbridge Nov 1, 2024
e7aacc4
manifest update
aarontrowbridge Nov 1, 2024
c0a550e
integrator signature refactor -- removes sys dependence
aarontrowbridge Nov 1, 2024
eeac85a
problem template fixes (tests passing)
aarontrowbridge Nov 1, 2024
f2dd861
moved isomorphisms to core
aarontrowbridge Nov 1, 2024
e634cc3
big rip
aarontrowbridge Nov 4, 2024
d07420d
big rip 2: quantum objects
aarontrowbridge Nov 6, 2024
e3412e4
traj init for unitary
andgoldschmidt Nov 6, 2024
c0cdbbf
state sampling problem template
andgoldschmidt Nov 6, 2024
d54f53c
refactored system to integrator interface
aarontrowbridge Nov 6, 2024
4708228
density operators
aarontrowbridge Nov 10, 2024
f66b443
traj init for unitary
andgoldschmidt Nov 6, 2024
c7bdccc
state sampling problem template
andgoldschmidt Nov 6, 2024
b69af1d
bug fix: a_guess option
andgoldschmidt Nov 7, 2024
c215e41
bug fix: free phase obj
andgoldschmidt Nov 7, 2024
edde00e
phase rollout fidelity
andgoldschmidt Nov 7, 2024
43e73d9
free phase initialization
andgoldschmidt Nov 7, 2024
f5d943e
Tests for free phases
andgoldschmidt Nov 9, 2024
2ab761f
free phase incr
andgoldschmidt Nov 9, 2024
b4d5eea
bug fix: mintime and robprob fidelity subspace
andgoldschmidt Nov 9, 2024
d26420c
bug fix: drop drive_sigma arg, fix subspace nothing
andgoldschmidt Nov 9, 2024
3a34581
problem template fixes (tests passing)
aarontrowbridge Nov 1, 2024
98800fd
big rip
aarontrowbridge Nov 4, 2024
1bdd6a4
refactored system to integrator interface
aarontrowbridge Nov 6, 2024
6705653
density operators
aarontrowbridge Nov 10, 2024
91fd3a5
rebase fixes (broken)
aarontrowbridge Nov 11, 2024
a6aae3b
Merge remote-tracking branch 'origin/main' into 163-feature-peel-off-…
aarontrowbridge Nov 11, 2024
c8621ac
rebase complete (fixes free phase loss)
aarontrowbridge Nov 11, 2024
bfb6ff8
docs uopdates
aarontrowbridge Nov 12, 2024
0d2efae
renaming OperatorType -> AbstractPiccoloOperator
aarontrowbridge Nov 19, 2024
560c857
adding quantum system templates + cleaning
aarontrowbridge Nov 19, 2024
fbcbb1b
update system type from AbstractQuantumSystem to OpenQuantumSystem an…
aarontrowbridge Dec 2, 2024
5c4d06f
refactor trajectory initialization to use density_to_iso_vec for init…
aarontrowbridge Dec 5, 2024
881e083
refactor rollout_fidelity to have sys as arg
aarontrowbridge Dec 23, 2024
eac5100
passing tests (except for direct sum prob)
aarontrowbridge Jan 6, 2025
cbeebbb
refactor add_suffix and remove_suffix functions to eliminate sys para…
aarontrowbridge Jan 9, 2025
5199435
bump version to 0.5.0 and update dependencies for compatibility
aarontrowbridge Jan 9, 2025
601cd2d
Merge branch 'main' into 163-feature-peel-off-core-functionality-into…
jack-champagne Jan 13, 2025
6107ce4
remove operatortype
jack-champagne Jan 13, 2025
09a3143
add back in zero initial and final
jack-champagne Jan 13, 2025
45b6d36
revert removing list of state names
jack-champagne Jan 13, 2025
f72f5fd
refactor callbacks and problem templates to use rollout fidelity and …
aarontrowbridge Jan 14, 2025
ae3a31f
update Project.toml dependencies and refactor drive length references…
aarontrowbridge Jan 14, 2025
19004b3
fix callbacks except for new tol
jack-champagne Jan 15, 2025
8211e7c
remove fidelity test from callback test suite - see PR comment #173
jack-champagne Jan 15, 2025
cc602dc
add qualified path for get_datavec
jack-champagne Jan 15, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
moved isomorphisms to core
  • Loading branch information
aarontrowbridge committed Nov 1, 2024
commit f2dd8619fcb902ae87a9f7994ee7e6d4a6fcc890
8 changes: 7 additions & 1 deletion Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

julia_version = "1.11.1"
manifest_format = "2.0"
project_hash = "cecc8792db4cc9bf9f6ba0dc2c5f0853bdc65504"
project_hash = "bc51caf2fe1ada0f18728d27d7398f420fc47d2e"

[[deps.ADTypes]]
git-tree-sha1 = "eea5d80188827b35333801ef97a40c2ed653b081"
Expand Down Expand Up @@ -1343,6 +1343,12 @@ version = "2.11.1"
[deps.QuadGK.weakdeps]
Enzyme = "7da242da-08ed-463a-9acd-ee780be4f1d9"

[[deps.QuantumCollocationCore]]
deps = ["Reexport", "TestItemRunner", "TestItems"]
path = "../QuantumCollocationCore.jl"
uuid = "2b384925-53cb-4042-a8d2-6faa627467e1"
version = "0.0.1"

[[deps.REPL]]
deps = ["InteractiveUtils", "Markdown", "Sockets", "StyledStrings", "Unicode"]
uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
Expand Down
1 change: 1 addition & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
NamedTrajectories = "538bc3a1-5ab9-4fc3-b776-35ca1e893e08"
ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca"
QuantumCollocationCore = "2b384925-53cb-4042-a8d2-6faa627467e1"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
Expand Down
4 changes: 1 addition & 3 deletions src/QuantumCollocation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@ module QuantumCollocation

using Reexport

@reexport using QuantumCollocationCore

include("options.jl")
@reexport using .Options

include("isomorphisms.jl")
@reexport using .Isomorphisms

include("quantum_object_utils.jl")
@reexport using .QuantumObjectUtils

Expand Down
207 changes: 0 additions & 207 deletions src/isomorphisms.jl

This file was deleted.

1 change: 0 additions & 1 deletion src/quantum_systems.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ export QuantumSystem
export CompositeQuantumSystem
export QuantumSystemCoupling

export iso
export lift

using ..Isomorphisms
Expand Down