Skip to content

Commit

Permalink
Fix some incorrect using in extension
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikQQY committed Dec 25, 2024
1 parent 2f06695 commit 65a68e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ext/BoundaryValueDiffEqODEInterfaceExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ using BoundaryValueDiffEqCore: BoundaryValueDiffEqAlgorithm, __extract_u0,
__initial_guess_length, __extract_mesh,
__flatten_initial_guess, __get_bcresid_prototype,
__has_initial_guess, __initial_guess
using SciMLBase: SciMLBase, BVProblem
using SciMLBase: SciMLBase, BVProblem, TwoPointBVProblem
using ODEInterface: OptionsODE, OPT_ATOL, OPT_RTOL, OPT_METHODCHOICE, OPT_DIAGNOSTICOUTPUT,
OPT_ERRORCONTROL, OPT_SINGULARTERM, OPT_MAXSTEPS, OPT_BVPCLASS,
OPT_SOLMETHOD, OPT_RHS_CALLMODE, OPT_COLLOCATIONPTS, OPT_ADDGRIDPOINTS,
Expand Down
2 changes: 1 addition & 1 deletion test/wrappers/odeinterface_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ end

# Just test that it runs. BVPSOL only works with linearly separable BCs.
@testitem "BVPSOL" setup=[ODEInterfaceWrapperTestSetup] begin
using ODEInterface, RecursiveArrayTools, NonlinearSolveFirstOrder
using ODEInterface, RecursiveArrayTools, NonlinearSolveFirstOrder, OrdinaryDiffEq

tpprob = TwoPointBVProblem(ex7_f!, (ex7_2pbc1!, ex7_2pbc2!), u0, tspan,
p; bcresid_prototype = (zeros(1), zeros(1)))
Expand Down

0 comments on commit 65a68e8

Please sign in to comment.