Skip to content

Commit

Permalink
Merge pull request #216 from JuliaReach/schillic/unused
Browse files Browse the repository at this point in the history
Remove unused variables
  • Loading branch information
schillic authored Mar 2, 2024
2 parents b11e6ff + 55212a2 commit 44b33b8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/check_1D_dense.jl
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function check_1D_dense(models::Vector{String}, deltas::Vector{Float64})
dict[:T] = 20.0
dict[:logfile] = "$model-check-1D-dense-givenstep.txt"
end
result = solve(S, Options(dict))
solve(S, Options(dict))
end
println()
end
Expand Down
2 changes: 1 addition & 1 deletion src/check_1D_discrete.jl
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function check_1D_discrete(models::Vector{String})
dict[:T] = 20.0
dict[:logfile] = "$model-check-1D-discrete-fixedstep.txt"
end
result = solve(S, Options(dict))
solve(S, Options(dict))
end
println()
end
Expand Down
3 changes: 1 addition & 2 deletions src/check_kD_dense.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ function check_kD_dense(models::Vector{String}, deltas::Vector{Float64})
S, options_raw = func(:mode => "check")

# options
n = MathematicalSystems.statedim(S)
dict_raw = options_raw.dict
dict_raw[:verbosity] = "info"
dict_raw[] = delta
Expand All @@ -50,7 +49,7 @@ function check_kD_dense(models::Vector{String}, deltas::Vector{Float64})
dict[:T] = 20.0
dict[:logfile] = "$model-check-kD-dense-givenstep.txt"
end
result = solve(S, Options(dict))
solve(S, Options(dict))
end
println()
end
Expand Down
3 changes: 1 addition & 2 deletions src/check_kD_discrete.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ function check_kD_discrete(models::Vector{String})
S, options_raw = func(:mode => "check")

# options
n = MathematicalSystems.statedim(S)
dict_raw = options_raw.dict
dict_raw[:verbosity] = "info"
dict_raw[] = 5e-3
Expand All @@ -48,7 +47,7 @@ function check_kD_discrete(models::Vector{String})
dict[:T] = 20.0
dict[:logfile] = "$model-check-kD-discrete-fixedstep.txt"
end
result = solve(S, Options(dict))
solve(S, Options(dict))
end
println()
end
Expand Down

0 comments on commit 44b33b8

Please sign in to comment.