Renaming
* solvers -> solver * adaptive_functions -> adaptive_function * callbacks -> callback * operators -> operator * pinns -> physics_informed_solver * layers -> block
This commit is contained in:
committed by
Nicola Demo
parent
810d215ca0
commit
df673cad4e
21
pina/solver/__init__.py
Normal file
21
pina/solver/__init__.py
Normal file
@@ -0,0 +1,21 @@
|
||||
__all__ = [
|
||||
"SolverInterface",
|
||||
"SingleSolverInterface",
|
||||
"MultiSolverInterface",
|
||||
"PINNInterface",
|
||||
"PINN",
|
||||
"GradientPINN",
|
||||
"CausalPINN",
|
||||
"CompetitivePINN",
|
||||
"SelfAdaptivePINN",
|
||||
"RBAPINN",
|
||||
"SupervisedSolver",
|
||||
"ReducedOrderModelSolver",
|
||||
"GAROM",
|
||||
]
|
||||
|
||||
from .solver import SolverInterface, SingleSolverInterface, MultiSolverInterface
|
||||
from .physic_informed_solver import *
|
||||
from .supervised import SupervisedSolver
|
||||
from .rom import ReducedOrderModelSolver
|
||||
from .garom import GAROM
|
||||
Reference in New Issue
Block a user