* Adding Equations, solving typos * improve _code.rst * the team rst and restuctore index.rst * fixing errors --------- Co-authored-by: Dario Coscia <dariocoscia@dhcp-015.eduroam.sissa.it>
13 lines
212 B
Python
13 lines
212 B
Python
__all__ = [
|
|
'PINN',
|
|
'GAROM',
|
|
'SupervisedSolver',
|
|
'SolverInterface'
|
|
|
|
]
|
|
|
|
from .garom import GAROM
|
|
from .pinn import PINN
|
|
from .supervised import SupervisedSolver
|
|
from .solver import SolverInterface
|