Skip to content

Commit 584abd7

Browse files
Merge pull request SciML#1201 from jClugstor/remove_ensemble
Remove solve dispatches for EnsembleProblem, WeightedEnsembleProblem
2 parents 3979645 + 561364d commit 584abd7

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Printf = "1.9"
9595
RecursiveArrayTools = "3.1"
9696
Reexport = "1.0"
9797
ReverseDiff = "1"
98-
SciMLBase = "2.94.0"
98+
SciMLBase = "2.114.0"
9999
SciMLOperators = "1"
100100
SciMLStructures = "1.5"
101101
Setfield = "1"

src/solve.jl

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1221,17 +1221,6 @@ function solve_call(prob::SteadyStateProblem,
12211221
kwargs...)
12221222
end
12231223

1224-
function solve(prob::EnsembleProblem, args...; kwargs...)
1225-
alg = extract_alg(args, kwargs, kwargs)
1226-
if length(args) > 1
1227-
__solve(prob, alg, Base.tail(args)...; kwargs...)
1228-
else
1229-
__solve(prob, alg; kwargs...)
1230-
end
1231-
end
1232-
function solve(prob::SciMLBase.WeightedEnsembleProblem, args...; kwargs...)
1233-
SciMLBase.WeightedEnsembleSolution(solve(prob.ensembleprob), prob.weights)
1234-
end
12351224
function solve(prob::AbstractNoiseProblem, args...; kwargs...)
12361225
__solve(prob, args...; kwargs...)
12371226
end

0 commit comments

Comments
 (0)