Skip to content

Commit 4c6cff2

Browse files
committed
format
1 parent 56fa290 commit 4c6cff2

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

HISTORY.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
## JumpProcesses unreleased (master branch)
44

55
## 9.14
6-
- Added the constant complexity next reaction method (CCNRM).
6+
7+
- Added the constant complexity next reaction method (CCNRM).
78

89
## 9.13
910

test/table_test.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ end
6565
##### PRIORITY TIME TABLE TESTS FOR CCNRM
6666
mintime = 0.0;
6767
maxtime = 100.0;
68-
timestep = 1.5/16;
68+
timestep = 1.5 / 16;
6969
times = [2.0, 8.0, 13.0, 15.0, 74.0]
7070

7171
ptt = DJ.PriorityTimeTable(times, mintime, timestep)
@@ -89,7 +89,7 @@ end
8989
@test DJ.getfirst(ptt) === (0, 0) # No more left.
9090

9191
mintime = 66.0;
92-
timestep = 0.75/16;
92+
timestep = 0.75 / 16;
9393
DJ.rebuild!(ptt, mintime, timestep)
9494
@test ptt.groups[11].numpids == 2 # 73.5-74.25
9595
@test ptt.groups[18].numpids == 1

test/variable_rate.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,4 +323,4 @@ let
323323
umean = getmean(Nsims, sjm_prob, alg, dt, tsave)
324324
@test all(abs.(umean .- n.(tsave)) .< 0.05 * n.(tsave))
325325
end
326-
end
326+
end

0 commit comments

Comments
 (0)