Skip to content

Commit 0f1c756

Browse files
Minor fixes
1 parent caa604e commit 0f1c756

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed

CHANGELOG.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased](https://github.com/qutip/QuantumToolbox.jl/tree/main)
99

10-
## [v0.33.1]
11-
Release date: 2025-07-22
12-
1310
- Support `SciMLOperators v1`. ([#470])
1411

1512
## [v0.33.0]
@@ -192,7 +189,6 @@ Release date: 2024-11-13
192189
[v0.32.0]: https://github.com/qutip/QuantumToolbox.jl/releases/tag/v0.32.0
193190
[v0.32.1]: https://github.com/qutip/QuantumToolbox.jl/releases/tag/v0.32.1
194191
[v0.33.0]: https://github.com/qutip/QuantumToolbox.jl/releases/tag/v0.33.0
195-
[v0.33.1]: https://github.com/qutip/QuantumToolbox.jl/releases/tag/v0.33.1
196192
[#86]: https://github.com/qutip/QuantumToolbox.jl/issues/86
197193
[#139]: https://github.com/qutip/QuantumToolbox.jl/issues/139
198194
[#271]: https://github.com/qutip/QuantumToolbox.jl/issues/271

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "QuantumToolbox"
22
uuid = "6c2fb7c5-b903-41d2-bc5e-5a7c320b9fab"
33
authors = ["Alberto Mercurio", "Yi-Te Huang"]
4-
version = "0.33.1"
4+
version = "0.33.0"
55

66
[deps]
77
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
@@ -61,7 +61,7 @@ OrdinaryDiffEqTsit5 = "1"
6161
Pkg = "1"
6262
Random = "1"
6363
SciMLBase = "2"
64-
SciMLOperators = "1"
64+
SciMLOperators = "0.3, 0.4, 1"
6565
SparseArrays = "1"
6666
SpecialFunctions = "2"
6767
StaticArraysCore = "1"

src/qobj/quantum_object_evo.jl

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -512,12 +512,7 @@ function (A::QuantumObjectEvolution)(
512512
)
513513
end
514514

515-
# We put `nothing` in the place of `u` because the time-dependence doesn't depend on the state
516-
## TODO: should use SciMLOperators v1 API: A.data(ψout.data, ψin.data, nothing, p, t)
517-
## But somehow that doesn't work for some specific cases in our runtests.
518-
## Therefore, we use the most basic way to do it for now
519-
update_coefficients!(A.data, nothing, p, t)
520-
mul!(ψout.data, A.data, ψin.data)
515+
A.data(ψout.data, ψin.data, nothing, p, t)
521516

522517
return ψout
523518
end

0 commit comments

Comments
 (0)