You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
468 B
16 lines
468 B
from .ode import (allhints, checkinfsol, classify_ode,
|
|
constantsimp, dsolve, homogeneous_order)
|
|
|
|
from .lie_group import infinitesimals
|
|
|
|
from .subscheck import checkodesol
|
|
|
|
from .systems import (canonical_odes, linear_ode_to_matrix,
|
|
linodesolve)
|
|
|
|
|
|
__all__ = [
|
|
'allhints', 'checkinfsol', 'checkodesol', 'classify_ode', 'constantsimp',
|
|
'dsolve', 'homogeneous_order', 'infinitesimals', 'canonical_odes', 'linear_ode_to_matrix',
|
|
'linodesolve'
|
|
]
|