Files
PINA/pina/solvers/__init__.py
github-actions[bot] 9463ae4b15 🎨 Format Python code with psf/black (#297)
Co-authored-by: dario-coscia <dario-coscia@users.noreply.github.com>
2024-05-10 14:08:01 +02:00

19 lines
371 B
Python

__all__ = [
"SolverInterface",
"PINNInterface",
"PINN",
"GPINN",
"CausalPINN",
"CompetitivePINN",
"SAPINN",
"SupervisedSolver",
"ReducedOrderModelSolver",
"GAROM",
]
from .solver import SolverInterface
from .pinns import *
from .supervised import SupervisedSolver
from .rom import ReducedOrderModelSolver
from .garom import GAROM