Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacsas committed Nov 11, 2024
1 parent 56fa290 commit 4c6cff2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
## JumpProcesses unreleased (master branch)

## 9.14
- Added the constant complexity next reaction method (CCNRM).

- Added the constant complexity next reaction method (CCNRM).

## 9.13

Expand Down
4 changes: 2 additions & 2 deletions test/table_test.jl
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ end
##### PRIORITY TIME TABLE TESTS FOR CCNRM
mintime = 0.0;
maxtime = 100.0;
timestep = 1.5/16;
timestep = 1.5 / 16;
times = [2.0, 8.0, 13.0, 15.0, 74.0]

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

mintime = 66.0;
timestep = 0.75/16;
timestep = 0.75 / 16;
DJ.rebuild!(ptt, mintime, timestep)
@test ptt.groups[11].numpids == 2 # 73.5-74.25
@test ptt.groups[18].numpids == 1
Expand Down
2 changes: 1 addition & 1 deletion test/variable_rate.jl
Original file line number Diff line number Diff line change
Expand Up @@ -323,4 +323,4 @@ let
umean = getmean(Nsims, sjm_prob, alg, dt, tsave)
@test all(abs.(umean .- n.(tsave)) .< 0.05 * n.(tsave))
end
end
end

0 comments on commit 4c6cff2

Please sign in to comment.