Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add BVDAE solvers #217

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use core
Signed-off-by: Qingyu Qu <2283984853@qq.com>
  • Loading branch information
ErikQQY committed Oct 15, 2024
commit 38a48f132ba03e297b28d25eec7d684c341c9dce
4 changes: 2 additions & 2 deletions lib/BoundaryValueDiffEqAscher/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
AlmostBlockDiagonals = "a95523ee-d6da-40b5-98cc-27bc505739d5"
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
BandedMatrices = "aae01518-5342-5314-be14-df237901396f"
BoundaryValueDiffEq = "764a87c0-6b3e-53db-9096-fe964310641d"
BoundaryValueDiffEqCore = "56b672f2-a5fe-4263-ab2d-da677488eb3a"
ConcreteStructs = "2569d6c7-a4a2-43d3-a901-331e8e4be471"
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
FastClosures = "9aa1b823-49e4-5ca5-8b0f-3971ec8bab6a"
Expand All @@ -34,7 +34,7 @@ Adapt = "4"
AlmostBlockDiagonals = "0.1.10"
ArrayInterface = "7.7"
BandedMatrices = "1.4"
BoundaryValueDiffEq = "5.10"
BoundaryValueDiffEqCore = "1.0.0"
ConcreteStructs = "0.2.3"
DiffEqBase = "6.146"
DiffEqDevTools = "2.44"
Expand Down
24 changes: 13 additions & 11 deletions lib/BoundaryValueDiffEqAscher/src/BoundaryValueDiffEqAscher.jl
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
module BoundaryValueDiffEqAscher

using ADTypes
using LinearAlgebra
using AlmostBlockDiagonals
using SciMLBase
using NonlinearSolve
using ForwardDiff
using BoundaryValueDiffEqCore
using ConcreteStructs
using FastClosures
using ForwardDiff
using LinearAlgebra
using NonlinearSolve
using PreallocationTools
using RecursiveArrayTools
using Reexport
using SciMLBase
using Setfield
using ConcreteStructs
using PreallocationTools

import BoundaryValueDiffEq.BVPJacobianAlgorithm
import BoundaryValueDiffEq: __extract_problem_details, concrete_jacobian_algorithm, __Fix3,
__concrete_nonlinearsolve_algorithm, __unsafe_nonlinearfunction,
BoundaryValueDiffEqAlgorithm, __sparse_jacobian_cache, __vec,
__vec_f, __vec_f!, __vec_bc, __vec_bc!
import BoundaryValueDiffEqCore: BVPJacobianAlgorithm, __extract_problem_details,
concrete_jacobian_algorithm, __Fix3,
__concrete_nonlinearsolve_algorithm,
__unsafe_nonlinearfunction, BoundaryValueDiffEqAlgorithm,
__sparse_jacobian_cache, __vec, __vec_f, __vec_f!, __vec_bc,
__vec_bc!

import SciMLBase: AbstractDiffEqInterpolation, StandardBVProblem, __solve, _unwrap_val

Expand Down
1 change: 0 additions & 1 deletion lib/BoundaryValueDiffEqAscher/src/algorithms.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

abstract type AbstractAscher <: BoundaryValueDiffEqAlgorithm end

for stage in (1, 2, 3, 4, 5, 6, 7)
Expand Down
Loading