Skip to content

Commit

Permalink
Update Stub Files
Browse files Browse the repository at this point in the history
  • Loading branch information
ax3l authored and github-actions[bot] committed Apr 18, 2024
1 parent 827d0d5 commit 28897d2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 24 deletions.
12 changes: 4 additions & 8 deletions src/amrex/space1d/amrex_1d_pybind/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -3429,6 +3429,10 @@ class BaseFab_Real:
def __cuda_array_interface__(self) -> dict: ...

class Box:
big_end: IntVect
hi_vect: IntVect
lo_vect: IntVect
small_end: IntVect
def __add__(self, arg0: IntVect) -> Box: ...
def __iadd__(self, arg0: IntVect) -> Box: ...
@typing.overload
Expand Down Expand Up @@ -3516,30 +3520,22 @@ class Box:
def surrounding_nodes(self, d: Direction) -> Box: ...
def ubound(self, arg0: Box) -> Dim3: ...
@property
def big_end(self) -> IntVect: ...
@property
def cell_centered(self) -> bool: ...
@property
def d_num_pts(self) -> float: ...
@property
def hi_vect(self) -> IntVect: ...
@property
def is_empty(self) -> bool: ...
@property
def is_square(self) -> bool: ...
@property
def ix_type(self) -> IndexType: ...
@property
def lo_vect(self) -> IntVect: ...
@property
def num_pts(self) -> int: ...
@property
def ok(self) -> bool: ...
@property
def size(self) -> IntVect: ...
@property
def small_end(self) -> IntVect: ...
@property
def the_unit_box() -> Box: ...
@property
def type(self) -> IntVect: ...
Expand Down
12 changes: 4 additions & 8 deletions src/amrex/space2d/amrex_2d_pybind/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -3453,6 +3453,10 @@ class BaseFab_Real:
def __cuda_array_interface__(self) -> dict: ...

class Box:
big_end: IntVect
hi_vect: IntVect
lo_vect: IntVect
small_end: IntVect
def __add__(self, arg0: IntVect) -> Box: ...
def __iadd__(self, arg0: IntVect) -> Box: ...
@typing.overload
Expand Down Expand Up @@ -3540,30 +3544,22 @@ class Box:
def surrounding_nodes(self, d: Direction) -> Box: ...
def ubound(self, arg0: Box) -> Dim3: ...
@property
def big_end(self) -> IntVect: ...
@property
def cell_centered(self) -> bool: ...
@property
def d_num_pts(self) -> float: ...
@property
def hi_vect(self) -> IntVect: ...
@property
def is_empty(self) -> bool: ...
@property
def is_square(self) -> bool: ...
@property
def ix_type(self) -> IndexType: ...
@property
def lo_vect(self) -> IntVect: ...
@property
def num_pts(self) -> int: ...
@property
def ok(self) -> bool: ...
@property
def size(self) -> IntVect: ...
@property
def small_end(self) -> IntVect: ...
@property
def the_unit_box() -> Box: ...
@property
def type(self) -> IntVect: ...
Expand Down
12 changes: 4 additions & 8 deletions src/amrex/space3d/amrex_3d_pybind/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -3429,6 +3429,10 @@ class BaseFab_Real:
def __cuda_array_interface__(self) -> dict: ...

class Box:
big_end: IntVect
hi_vect: IntVect
lo_vect: IntVect
small_end: IntVect
def __add__(self, arg0: IntVect) -> Box: ...
def __iadd__(self, arg0: IntVect) -> Box: ...
@typing.overload
Expand Down Expand Up @@ -3516,30 +3520,22 @@ class Box:
def surrounding_nodes(self, d: Direction) -> Box: ...
def ubound(self, arg0: Box) -> Dim3: ...
@property
def big_end(self) -> IntVect: ...
@property
def cell_centered(self) -> bool: ...
@property
def d_num_pts(self) -> float: ...
@property
def hi_vect(self) -> IntVect: ...
@property
def is_empty(self) -> bool: ...
@property
def is_square(self) -> bool: ...
@property
def ix_type(self) -> IndexType: ...
@property
def lo_vect(self) -> IntVect: ...
@property
def num_pts(self) -> int: ...
@property
def ok(self) -> bool: ...
@property
def size(self) -> IntVect: ...
@property
def small_end(self) -> IntVect: ...
@property
def the_unit_box() -> Box: ...
@property
def type(self) -> IntVect: ...
Expand Down

0 comments on commit 28897d2

Please sign in to comment.