Skip to content
This repository was archived by the owner on Nov 6, 2023. It is now read-only.

Commit 7c14be1

Browse files
authored
🤖 Format .jl files
1 parent de3d8d6 commit 7c14be1

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

src/processes/inhibition.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ struct InhibitionProcess{R<:Real} <: PointProcess
1111
r::R
1212
end
1313

14-
randsingle(rng::Random.AbstractRNG, p::InhibitionProcess, g) = PointSet(sample(rng, g, MinDistanceSampling(p.r)))
14+
randsingle(rng::Random.AbstractRNG, p::InhibitionProcess, g) = PointSet(sample(rng, g, MinDistanceSampling(p.r)))

test/processes.jl

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
binom = BinomialProcess(100)
2121
poisson1 = PoissonProcess(100.0)
2222
poisson2 = PoissonProcess(λ)
23-
inhibit = InhibitionProcess(0.1)
23+
inhibit = InhibitionProcess(0.1)
2424
procs = [binom, poisson1, poisson2, inhibit]
2525

2626
@testset "Basic" begin
@@ -55,11 +55,9 @@
5555
@test isnothing(rand(PoissonProcess(100.0), pp))
5656
end
5757

58-
@testset "Inhibition" begin
59-
end
58+
@testset "Inhibition" begin end
6059

61-
@testset "Cluster" begin
62-
end
60+
@testset "Cluster" begin end
6361

6462
@testset "Union" begin
6563
b = Box((0.0, 0.0), (100.0, 100.0))

0 commit comments

Comments
 (0)