Skip to content
Merged
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
19 changes: 10 additions & 9 deletions src/SymbolicIntegration.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@ __precompile__()

module SymbolicIntegration

include("general.jl")
include("rational_functions.jl")
include("differential_fields.jl")
include("complex_fields.jl")
include("transcendental_functions.jl")
include("risch_diffeq.jl")
include("parametric_problems.jl")
include("coupled_differential_systems.jl")
include("algebraic_functions.jl")
# Include Risch method algorithm components
include("methods/risch/general.jl")
include("methods/risch/rational_functions.jl")
include("methods/risch/differential_fields.jl")
include("methods/risch/complex_fields.jl")
include("methods/risch/transcendental_functions.jl")
include("methods/risch/risch_diffeq.jl")
include("methods/risch/parametric_problems.jl")
include("methods/risch/coupled_differential_systems.jl")
include("methods/risch/algebraic_functions.jl")
include("frontend.jl")

# Add method dispatch system
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 7 additions & 5 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@ using Symbolics
@test integrate(x^3 + 2*x + 1, x) isa Any
end

# Include comprehensive test suites
include("test_rational_integration.jl")
include("test_complex_fields.jl")
include("test_bronstein_examples.jl")
# Include Risch method test suites
include("methods/risch/test_rational_integration.jl")
include("methods/risch/test_complex_fields.jl")
include("methods/risch/test_bronstein_examples.jl")
include("methods/risch/test_algorithm_internals.jl")

# Include general test suites
include("test_stewart_examples.jl")
include("test_algorithm_internals.jl")
end
Loading