Skip to content

Commit

Permalink
Phase space functions declaration moved in QuantumOpticsBase.jl (#297)
Browse files Browse the repository at this point in the history
* Added imports for phasespace funcs

* Removed exports of phasespace funcs
defined in base

* Update Project.toml

Co-authored-by: David Plankensteiner <david-pl@users.noreply.github.com>
  • Loading branch information
myrddin89 and david-pl authored Mar 30, 2021
1 parent d9b5226 commit e8a3ed0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "QuantumOptics"
uuid = "6e0679c1-51ea-5a7c-ac74-d61b76210b0c"
version = "v0.8.4"
version = "v0.8.5"

[deps]
Arpack = "7d9fca2a-8960-54d3-9f78-7d1dccf2cb97"
Expand All @@ -21,7 +21,7 @@ Arpack = "0.5.1"
DiffEqCallbacks = "2"
FFTW = "1"
OrdinaryDiffEq = "5"
QuantumOpticsBase = "0.2.5"
QuantumOpticsBase = "0.2.7"
RecursiveArrayTools = "2"
Reexport = "0.2, 1.0"
StochasticDiffEq = "6"
Expand Down
15 changes: 8 additions & 7 deletions src/QuantumOptics.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ using Reexport
@reexport using QuantumOpticsBase
using SparseArrays, LinearAlgebra

export qfunc, wigner, coherentspinstate, qfuncsu2, wignersu2, ylm,
eigenstates, eigenenergies, simdiag,
timeevolution, diagonaljumps, @skiptimechecks,
steadystate,
timecorrelations,
semiclassical,
stochastic
export
ylm,
eigenstates, eigenenergies, simdiag,
timeevolution, diagonaljumps, @skiptimechecks,
steadystate,
timecorrelations,
semiclassical,
stochastic


include("phasespace.jl")
Expand Down
6 changes: 6 additions & 0 deletions src/phasespace.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
import WignerSymbols: clebschgordan
import QuantumOpticsBase:
qfunc,
wigner,
coherentspinstate,
qfuncsu2,
wignersu2

"""
qfunc(a, α)
Expand Down

2 comments on commit e8a3ed0

@david-pl
Copy link
Member

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/33167

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.8.5 -m "<description of version>" e8a3ed060278bb7e4790474053cbe06ce55d656e
git push origin v0.8.5

Please sign in to comment.