Skip to content

Commit 5dbcd14

Browse files
committed
included missing distribution folder
1 parent e963353 commit 5dbcd14

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/BosonSampling.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ include("boson_samplers/metropolis_independant_sampler.jl")
4747
include("boson_samplers/metropolis_sampler.jl")
4848
include("boson_samplers/noisy_sampler.jl")
4949

50+
include("distributions/noisy_distribution.jl")
51+
include("distributions/theoretical_distribution.jl")
52+
5053
include("permanent_conjectures/bapat_sunder.jl")
5154
include("permanent_conjectures/counter_example_functions.jl")
5255
include("permanent_conjectures/counter_example_numerical_search.jl")

src/types/input.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ struct Input{T<:InputType}
7171
end
7272
function Input{T}(r::ModeOccupation, G::GramMatrix) where {T<:InputType}
7373

74-
if T <: PartDist && T != RandomModel
74+
if T in [PartDist, ToyModel]
7575
return new{T}(r,G,r.n,r.m)
7676
else
7777
error("type ", T, " not implemented")

0 commit comments

Comments
 (0)