Skip to content

Commit

Permalink
test fix again
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacsas committed Aug 6, 2024
1 parent 43f765c commit 10411f6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion test/bimolerx_test.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotestmean = true
doprintmeans = false

# SSAs to test
SSAalgs = (JumpProcesses.JUMP_AGGREGATORS..., JumpProcesses.NullAggregator)
SSAalgs = (JumpProcesses.JUMP_AGGREGATORS..., JumpProcesses.NullAggregator())

Nsims = 32000
tf = 0.01
Expand Down
2 changes: 1 addition & 1 deletion test/degenerate_rx_cases.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ doprint = false
#using Plots; plotlyjs()
doplot = false

methods = (JumpProcesses.JUMP_AGGREGATORS..., JumpProcesses.NullAggregator)
methods = (JumpProcesses.JUMP_AGGREGATORS..., JumpProcesses.NullAggregator())

# one reaction case, mass action jump, vector of data
rate = [2.0]
Expand Down
2 changes: 1 addition & 1 deletion test/extinction_test.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dg = [[1]]
majump = MassActionJump(rates, reactstoch, netstoch)
u0 = [100000]
dprob = DiscreteProblem(u0, (0.0, 1e5), rates)
algs = (JumpProcesses.JUMP_AGGREGATORS..., JumpProcesses.NullAggregator)
algs = (JumpProcesses.JUMP_AGGREGATORS..., JumpProcesses.NullAggregator())

for n in 1:Nsims
for ssa in algs
Expand Down
2 changes: 1 addition & 1 deletion test/geneexpr_test.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dotestmean = true
doprintmeans = false

# SSAs to test
SSAalgs = (JumpProcesses.JUMP_AGGREGATORS..., JumpProcesses.NullAggregator)
SSAalgs = (JumpProcesses.JUMP_AGGREGATORS..., JumpProcesses.NullAggregator())

# numerical parameters
Nsims = 8000
Expand Down
2 changes: 1 addition & 1 deletion test/linearreaction_test.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ tf = 0.1
baserate = 0.1
A0 = 100
exactmean = (t, ratevec) -> A0 * exp(-sum(ratevec) * t)
SSAalgs = (JumpProcesses.JUMP_AGGREGATORS..., JumpProcesses.NullAggregator)
SSAalgs = (JumpProcesses.JUMP_AGGREGATORS..., JumpProcesses.NullAggregator())
SSAs_to_exclude = (DirectFW(), FRM(), FRMFW())

vartojumps_map = [collect(1:Nrxs), []]
Expand Down
2 changes: 1 addition & 1 deletion test/reversible_binding.jl
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function mastereqmean(u, rates)
end
mastereq_mean = mastereqmean(u0, rates)

algs = (JumpProcesses.JUMP_AGGREGATORS..., JumpProcesses.NullAggregator)
algs = (JumpProcesses.JUMP_AGGREGATORS..., JumpProcesses.NullAggregator())
relative_tolerance = 0.01
for alg in algs
local jprob = JumpProblem(prob, alg, majumps, save_positions = (false, false),
Expand Down

0 comments on commit 10411f6

Please sign in to comment.