Skip to content

Commit e078e69

Browse files
cscherreroschulz
authored andcommitted
small updates
1 parent ae7d854 commit e078e69

File tree

4 files changed

+1
-62
lines changed

4 files changed

+1
-62
lines changed

src/MeasureBase.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ using Static
3737
using Static: StaticInteger
3838
using FunctionChains
3939

40-
export
4140
export gentype
4241
export rebase
4342

@@ -120,7 +119,6 @@ include("domains.jl")
120119
include("primitive.jl")
121120
include("utils.jl")
122121
include("mass-interface.jl")
123-
# include("absolutecontinuity.jl")
124122

125123
include("primitives/counting.jl")
126124
include("primitives/lebesgue.jl")

src/absolutecontinuity.jl

Lines changed: 0 additions & 56 deletions
This file was deleted.

src/combinators/weighted.jl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,6 @@ end
4646

4747
Base.:*(m::AbstractMeasure, k::Real) = k * m
4848

49-
(::M, ::WeightedMeasure{R,M}) where {R,M} = true
50-
(::WeightedMeasure{R,M}, ::M) where {R,M} = true
51-
5249
gentype::WeightedMeasure) = gentype.base)
5350

5451
insupport::WeightedMeasure, x) = insupport.base, x)

src/utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ showparams(io::IO, nt::NamedTuple) = print(io, nt)
1111

1212
export testvalue
1313

14-
@inline testvalue(μ) = rand(FixedRNG(), μ)
14+
@inline testvalue(μ) = testvalue(Float64, μ)
1515

1616
@inline testvalue(::Type{T}, μ) where {T} = rand(FixedRNG(), T, μ)
1717

0 commit comments

Comments
 (0)