Skip to content

Commit

Permalink
test: test symbolic indexing of HomotopyContinuationFunction
Browse files Browse the repository at this point in the history
  • Loading branch information
AayushSabharwal committed Dec 21, 2024
1 parent 940a7f5 commit 4c5fd58
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/downstream/comprehensive_indexing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,11 @@ begin
dprob = DiscreteProblem(jsys, u0_vals, tspan, p_vals)
jprob = JumpProblem(jsys, deepcopy(dprob), Direct(); rng)
nprob = NonlinearProblem(nsys, u0_vals, p_vals)
hcprob = NonlinearProblem(HomotopyContinuationFunction(nprob.f), nprob.u0, nprob.p)
ssprob = SteadyStateProblem(osys, u0_vals, p_vals)
optprob = OptimizationProblem(optsys, u0_vals, p_vals, grad = true, hess = true)
problems = [oprob, sprob, dprob, jprob, nprob, ssprob, optprob]
systems = [osys, ssys, jsys, jsys, nsys, osys, optsys]
problems = [oprob, sprob, dprob, jprob, nprob, hcprob, ssprob, optprob]
systems = [osys, ssys, jsys, jsys, nsys, nsys, osys, optsys]

# Creates an `EnsembleProblem` for each problem.
eoprob = EnsembleProblem(oprob)
Expand Down

0 comments on commit 4c5fd58

Please sign in to comment.