Skip to content

Commit

Permalink
Qnumerics (#149)
Browse files Browse the repository at this point in the history
changes to:

file structure
integrators signature
rollouts (differentiable)
more!

---------

Co-authored-by: Andy Goldschmidt <[email protected]>
  • Loading branch information
aarontrowbridge and Andy Goldschmidt committed Aug 19, 2024
1 parent e85ed96 commit 735495f
Show file tree
Hide file tree
Showing 69 changed files with 6,906 additions and 6,661 deletions.
871 changes: 135 additions & 736 deletions Manifest.toml

Large diffs are not rendered by default.

13 changes: 7 additions & 6 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "QuantumCollocation"
uuid = "0dc23a59-5ffb-49af-b6bd-932a8ae77adf"
authors = ["Aaron Trowbridge <[email protected]> and contributors"]
version = "0.3.0"
version = "0.2.0"

[deps]
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
Expand All @@ -17,9 +17,7 @@ Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
NamedTrajectories = "538bc3a1-5ab9-4fc3-b776-35ca1e893e08"
QuantumInterface = "5717a53b-5d69-4fa3-b976-0bf2f97ca1e5"
QuantumOpticsBase = "4f57444f-1401-5e15-980d-4471b28d5678"
QuantumToolbox = "6c2fb7c5-b903-41d2-bc5e-5a7c320b9fab"
ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
Expand All @@ -31,16 +29,19 @@ TrajectoryIndexingUtils = "6dad8b7f-dd9a-4c28-9b70-85b9a079bfc8"
[compat]
BenchmarkTools = "1.3"
CairoMakie = "0.10, 0.11, 0.12"
Distributions = "≥0.25"
Einsum = "0.4"
ExponentialAction = "0.2"
ForwardDiff = "0.10"
IJulia = "1.24"
Ipopt = "1.4"
JLD2 = "0.4"
MathOptInterface = "1.20"
NamedTrajectories = "0.1"
NamedTrajectories = "0.2.0"
ProgressMeter = "1.10"
Reexport = "1.2"
Symbolics ="≥5.17"
Symbolics = "≥5.17"
TestItemRunner = "0.2"
TestItems = "0.1"
TrajectoryIndexingUtils = "0.1"
julia = "1.10"
Expand Down
Loading

2 comments on commit 735495f

@aarontrowbridge
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/113449

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.0 -m "<description of version>" 735495f0f3daf87ab987424dd73db76fb52c374e
git push origin v0.2.0

Please sign in to comment.