Skip to content

Commit

Permalink
fix typos from swapping to SimpleNonlinearSolve.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
juddmehr committed Apr 3, 2024
1 parent bfae26a commit aa6497a
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/process/solve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ function solve(solver_options::NonlinearSolveOptions, sensitivity_parameters, co

(;
nlsolve_algorithm,
# # General Controls
nlsolve_alias_initial_guess,
# # Iteration Controls
# Iteration Controls
nlsolve_abstol,
nlsolve_maxiters,
converged,
Expand All @@ -58,7 +56,7 @@ function solve(solver_options::NonlinearSolveOptions, sensitivity_parameters, co
end

# build problem object
prob = NonlinearSolve.NonlinearProblem(
prob = SimpleNonlinearSolve.NonlinearProblem(
rwrap!,
initial_guess,
(;
Expand All @@ -79,7 +77,7 @@ function solve(solver_options::NonlinearSolveOptions, sensitivity_parameters, co
if verbose
println(" " * "Nonlinear Solve Trace:")
end
sol = NonlinearSolve.solve(
sol = SimpleNonlinearSolve.solve(
prob, # problem
nlsolve_algorithm();
abstol=nlsolve_abstol,
Expand Down

0 comments on commit aa6497a

Please sign in to comment.