Skip to content

Commit 0a43802

Browse files
SII
1 parent e26cd99 commit 0a43802

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

lib/SCCNonlinearSolve/Project.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ NonlinearSolveBase = "be0214bd-f91f-a760-ac4e-3421ce2b2da0"
1010
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
1111
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
1212
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
13+
SymbolicIndexingInterface = "2efcf032-c050-4f8e-a9bb-153293bab1f5"
1314

1415
[compat]
1516
Aqua = "0.8"
@@ -25,7 +26,7 @@ Pkg = "1.10"
2526
PrecompileTools = "1.2"
2627
ReTestItems = "1.24"
2728
Reexport = "1"
28-
SciMLBase = "2.58"
29+
SciMLBase = "2.60"
2930
StableRNGs = "1"
3031
StaticArrays = "1.9.8"
3132
Test = "1.10"

lib/SCCNonlinearSolve/src/SCCNonlinearSolve.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ module SCCNonlinearSolve
22

33
import SciMLBase
44
import CommonSolve
5+
import SymbolicIndexingInterface
56

67
function CommonSolve.solve(prob::SciMLBase.SCCNonlinearProblem, alg; kwargs...)
78
numscc = length(prob.probs)
@@ -13,7 +14,7 @@ function CommonSolve.solve(prob::SciMLBase.SCCNonlinearProblem, alg; kwargs...)
1314

1415
lasti = 1
1516
for i in 1:numscc
16-
prob.explictfuns![i](parameter_values(prob.probs[i]), sols)
17+
prob.explictfuns![i](SymbolicIndexingInterface.parameter_values(prob.probs[i]), sols)
1718
sol = SciMLBase.solve(prob.probs[i], alg; kwargs...)
1819
_sol = SciMLBase.build_solution(
1920
prob.probs[i], nothing, sol.u, sol.resid, retcode = sol.retcode)

0 commit comments

Comments
 (0)