Skip to content

Commit

Permalink
remove Nullable form cumulants description
Browse files Browse the repository at this point in the history
  • Loading branch information
kdomino committed Mar 15, 2018
1 parent 3d5b277 commit e0528c3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/cumulant.jl
Original file line number Diff line number Diff line change
Expand Up @@ -266,22 +266,22 @@ in this algorithm exclpartlen = 1
```jldoctest
julia> cum = SymmetricTensor([1.0 2.0 3.0; 2.0 4.0 6.0; 3.0 6.0 5.0]);
julia> outerpodcum(4,2,cum)
SymmetricTensor(Nullable{Array{Float64,4}}[[3.0 6.0; 6.0 12.0]
julia> outerprodcum(4,2,cum, cum)
SymmetricTensors.SymmetricTensor{Float64,4}(Union{Array{Float64,4}, Void}[[3.0 6.0; 6.0 12.0]
[6.0 12.0; 12.0 24.0]
[6.0 12.0; 12.0 24.0]
[12.0 24.0; 24.0 48.0] #NULL; #NULL #NULL]
[12.0 24.0; 24.0 48.0] nothing; nothing nothing]
Nullable{Array{Float64,4}}[#NULL #NULL; #NULL #NULL]
Union{Array{Float64,4}, Void}[nothing nothing; nothing nothing]
Nullable{Array{Float64,4}}[[9.0 18.0; 18.0 36.0]
Union{Array{Float64,4}, Void}[[9.0 18.0; 18.0 36.0]
[18.0 36.0; 36.0 72.0] #NULL; #NULL #NULL]
[18.0 36.0; 36.0 72.0] nothing; nothing nothing]
Nullable{Array{Float64,4}}[[23.0 46.0; 46.0 92.0] [45.0; 90.0]; #NULL [75.0]],2,2,3,false)
Union{Array{Float64,4}, Void}[[23.0 46.0; 46.0 92.0] [45.0; 90.0]; nothing [75.0]], 2, 2, 3, false)
```
"""
function outerprodcum(retd::Int, npart::Int,
Expand Down

0 comments on commit e0528c3

Please sign in to comment.