Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
11 changes: 10 additions & 1 deletion lib/DiffEqBase/src/DiffEqBase.jl
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ include("dae_initialization.jl")

include("callbacks.jl")
include("common_defaults.jl")
include("domain_checks.jl")
include("solve.jl")
include("internal_euler.jl")
include("norecompile.jl")
Expand Down Expand Up @@ -194,6 +195,9 @@ export SensitivityADPassThrough

export AutoDePSpecialize

# written at `solve` call sites.
export @isoutofdomain

# Declare DiffEqBase-owned, documented API names `public` so downstream packages can
# drop their `DiffEqBase.X` non-public ExplicitImports ignores. The `public` keyword is
# only parseable on Julia >= 1.11.0-DEV.469, so it is gated to keep the 1.10 floor parsing.
Expand All @@ -220,7 +224,12 @@ export AutoDePSpecialize
:prepare_alg, :prob2dtmin, :timedepentdtmin, :check_prob_alg_pairing,
:default_factorize, :stripunits,
# Solver-author wrapper/tag types and convergence-testing entry type
:EvalFunc, :OrdinaryDiffEqTag, :ConvergenceSetup
:EvalFunc, :OrdinaryDiffEqTag, :ConvergenceSetup,
# Domain-violation mechanism (`domain_checks` solver keyword)
:DomainCheckedFunction, :domain_checks_failing, :apply_domain_checks,
:strip_domain_checks, :find_domain_checks, :supports_domain_checks,
# Source-retaining `isoutofdomain` predicates, for failure diagnostics
:TracedPredicate, :TracedPredicateLeaf, :isoutofdomain_report
)
)
end
Expand Down
Loading
Loading