Skip to content

Commit

Permalink
export HalfInteger
Browse files Browse the repository at this point in the history
  • Loading branch information
Jutho committed Jan 10, 2019
1 parent 088c52e commit 65e3f34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ While the following function signatures are probably self-explanatory, you can q
* `δ(j₁, j₂, j₃) -> ::Bool`
* `Δ(T::Type{<:AbstractFloat} = Float64, j₁, j₂, j₃) -> ::T`

The package also defines the `HalfInteger` type that can be used to represent half-integer values.
Furthermore, the range operator `a:b` can be used to create ranges of `HalfInteger` values (a `HalfIntegerRange`).
The package also defines the `HalfInteger` type that can be used to represent half-integer values. Construct if as `HalfInteger(a::Real)` or `HalfInteger(numerator::Integer, denominator::Integer)`. Furthermore, the range operator `a:b` can be used to create ranges of `HalfInteger` values (a `HalfIntegerRange`).

## Implementation
Largely based on reading the paper (but not the code):
Expand Down
2 changes: 1 addition & 1 deletion src/WignerSymbols.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__precompile__(true)
module WignerSymbols
export δ, Δ, clebschgordan, wigner3j, wigner6j, racahV, racahW
export δ, Δ, clebschgordan, wigner3j, wigner6j, racahV, racahW, HalfInteger

using Base.GMP.MPZ

Expand Down

0 comments on commit 65e3f34

Please sign in to comment.