Skip to content

Commit

Permalink
spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
MasonProtter committed Jul 31, 2024
1 parent 0a3f62c commit 6793f13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/systems/systems.jl
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ function __structural_simplify(sys::AbstractSystem, io = nothing; simplify = fal
elseif __num_isdiag_noise(sorted_g_rows)
# If each column of the noise matrix has either 0 or 1 non-zero entry, then this is "diagonal noise".
# In this case, the solver just takes a vector column of equations and it interprets that to
# mean that each noise process is independant
# mean that each noise process is independent
noise_eqs = __get_num_diag_noise(sorted_g_rows)
is_scalar_noise = false
else
Expand Down
2 changes: 1 addition & 1 deletion test/sdesystem.jl
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@ end
prob = SDEProblem(de, u0map, (0.0, 100.0), parammap)
# SOSRI only works for diagonal and scalar noise
@test_throws ErrorException solve(prob, SOSRI()).retcode==ReturnCode.Success
# ImplictEM does work for non-diagonal noise
# ImplicitEM does work for non-diagonal noise
@test solve(prob, ImplicitEM()).retcode == ReturnCode.Success
end

Expand Down

0 comments on commit 6793f13

Please sign in to comment.