Page MenuHomec4science

RROMPyTypes.py
No OneTemporary

File Metadata

Created
Mon, Aug 19, 23:46

RROMPyTypes.py

#!/usr/bin/python
from typing import TypeVar, List, Tuple, Dict, Any
TupleAny = Tuple[Any]
ListAny = List[Any]
DictAny = Dict[Any, Any]
strLst = TypeVar("str or list of str")
Np1D = TypeVar("NumPy 1D array")
Np2D = TypeVar("NumPy 2D array")
Np1DLst = TypeVar("NumPy 1D array or list of NumPy 1D array")
GenExpr = TypeVar("Generic expression")
FenSpace = TypeVar("FEniCS FESpace")
FenExpr = TypeVar("FEniCS expression")
FenFunc = TypeVar("FEniCS function")
BfSExpr = TypeVar("Boolean function or string")
N2FSExpr = TypeVar("NumPy 2D array, float or str")
HFEng = TypeVar("High fidelity engine")
HSEng = TypeVar("Hilbert space engine")
ROMEng = TypeVar("ROM engine")

Event Timeline