* Solvers for multiple models - Implementing the possibility to add multiple models for solvers (e.g. GAN) - Implementing GAROM solver, see https://arxiv.org/abs/2305.15881 - Implementing tests for GAROM solver (cpu only) - Fixing docs PINNs - Creating a solver directory, for consistency in the package --------- Co-authored-by: Dario Coscia <dariocoscia@dhcp-040.eduroam.sissa.it>
8 lines
88 B
Python
8 lines
88 B
Python
__all__ = [
|
|
'PINN',
|
|
'GAROM',
|
|
]
|
|
|
|
from .garom import GAROM
|
|
from .pinn import PINN
|