We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b3efc3 commit 341000aCopy full SHA for 341000a
src/QuantumToolbox.jl
@@ -134,4 +134,13 @@ include("visualization.jl")
134
# deprecated functions
135
include("deprecated.jl")
136
137
+# module initialization
138
+function __init__()
139
+ # this will be called immediately after the module is loaded (e.g., by import or using) at runtime for the first time.
140
+ # useful for announcement
141
+ @warn "The definition of `liouvillian` L for a given Hamiltonian H is changed to L[⋅] = -i( H[⋅] - [⋅]H' ), with ' representing complex conjugation. " *
142
+ "QuantumToolbox.jl no longer expects H to be Hermitian."
143
+ return nothing
144
+end
145
+
146
end
0 commit comments