Files
PINA/pina/solvers/__init__.py
FilippoOlivo 2be57944ba Fix SupervisedSolver GPU bug and implement GraphSolver (#346)
* Fix some bugs
* Solve bug with GPU and model_summary parameters in SupervisedSolver class
* Implement GraphSolver class
* Fix Tutorial 5
2025-03-19 17:46:33 +01:00

21 lines
427 B
Python

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