Files
PINA/pina/solvers/__init__.py
2024-02-09 15:11:51 +01:00

7 lines
193 B
Python

__all__ = ["PINN", "GAROM", "SupervisedSolver", "SolverInterface"]
from .garom import GAROM
from .pinn import PINN
from .supervised import SupervisedSolver
from .solver import SolverInterface