Skip to content

Commit

Permalink
update _basixcpp.pyi
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed Aug 4, 2023
1 parent f7f7183 commit bc62ec2
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions python/basix/_basixcpp.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,24 @@ class ElementFamily:
@property
def value(self) -> int: ...

class PolysetType:
__members__: ClassVar[dict] = ... # read-only
__entries: ClassVar[dict] = ...
default: ClassVar[PolysetType] = ...
macroedge: ClassVar[PolysetType] = ...
def __init__(self, value: int) -> None: ...
def __eq__(self, other: object) -> bool: ...
def __getstate__(self) -> int: ...
def __hash__(self) -> int: ...
def __index__(self) -> int: ...
def __int__(self) -> int: ...
def __ne__(self, other: object) -> bool: ...
def __setstate__(self, state: int) -> None: ...
@property
def name(self) -> str: ...
@property
def value(self) -> int: ...

class FiniteElement:
def __hash__(self, object, int): ClassVar[None] = ...
def __init__(self, *args, **kwargs) -> None: ...
Expand Down Expand Up @@ -346,9 +364,9 @@ def index(arg0: int, arg1: int) -> int: ...
@overload
def index(arg0: int, arg1: int, arg2: int) -> int: ...
@overload
def make_quadrature(arg0: QuadratureType, arg1: CellType, arg2: int) -> Tuple[npt.NDArray[numpy.float64],npt.NDArray[numpy.float64]]: ...
def make_quadrature(arg0: QuadratureType, arg1: CellType, arg2: PolysetType, arg3: int) -> Tuple[npt.NDArray[numpy.float64],npt.NDArray[numpy.float64]]: ...
@overload
def make_quadrature(arg0: CellType, arg1: int) -> Tuple[npt.NDArray[numpy.float64],npt.NDArray[numpy.float64]]: ...
def make_quadrature(arg0: CellType, arg1: PolysetType, arg2: int) -> Tuple[npt.NDArray[numpy.float64],npt.NDArray[numpy.float64]]: ...
def sub_entity_connectivity(arg0) -> List[List[List[List[int]]]]: ...
def sub_entity_geometry(arg0, arg1: int, arg2: int) -> npt.NDArray[numpy.float64]: ...
def tabulate_polynomial_set(arg0: CellType, arg1: int, arg2: int, arg3: npt.NDArray[numpy.float64]) -> npt.NDArray[numpy.float64]: ...
Expand Down

0 comments on commit bc62ec2

Please sign in to comment.