Skip to content

Commit

Permalink
✏️ Fix copy-paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelwa committed Dec 3, 2024
1 parent 7f82138 commit 559237d
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions bindings/mnt/pyfiction/pyfiction.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -220,11 +220,11 @@ class cartesian_layout:

def offset_coordinates(self) -> List[offset_coordinate]: ...

def ground_offset_coordinates(self) -> List[offset_coordinate]: ...
def ground_coordinates(self) -> List[offset_coordinate]: ...

def adjacent_offset_coordinates(self, c: offset_coordinate) -> List[offset_coordinate]: ...
def adjacent_coordinates(self, c: offset_coordinate) -> List[offset_coordinate]: ...

def adjacent_opposite_offset_coordinates(self, c: offset_coordinate) -> List[offset_coordinate]: ...
def adjacent_opposite_coordinates(self, c: offset_coordinate) -> List[offset_coordinate]: ...

def __repr__(self) -> str: ...

Expand Down Expand Up @@ -318,11 +318,11 @@ class shifted_cartesian_layout:

def offset_coordinates(self) -> List[offset_coordinate]: ...

def ground_offset_coordinates(self) -> List[offset_coordinate]: ...
def ground_coordinates(self) -> List[offset_coordinate]: ...

def adjacent_offset_coordinates(self, c: offset_coordinate) -> List[offset_coordinate]: ...
def adjacent_coordinates(self, c: offset_coordinate) -> List[offset_coordinate]: ...

def adjacent_opposite_offset_coordinates(self, c: offset_coordinate) -> List[offset_coordinate]: ...
def adjacent_opposite_coordinates(self, c: offset_coordinate) -> List[offset_coordinate]: ...

def __repr__(self) -> str: ...

Expand Down Expand Up @@ -416,11 +416,11 @@ class hexagonal_layout:

def cube_coordinates(self) -> List[cube_coordinate]: ...

def ground_cube_coordinates(self) -> List[cube_coordinate]: ...
def ground_coordinates(self) -> List[cube_coordinate]: ...

def adjacent_cube_coordinates(self, c: cube_coordinate) -> List[cube_coordinate]: ...
def adjacent_coordinates(self, c: cube_coordinate) -> List[cube_coordinate]: ...

def adjacent_opposite_cube_coordinates(self, c: cube_coordinate) -> List[cube_coordinate]: ...
def adjacent_opposite_coordinates(self, c: cube_coordinate) -> List[cube_coordinate]: ...

def __repr__(self) -> str: ...

Expand Down Expand Up @@ -555,9 +555,9 @@ class cartesian_gate_layout(clocked_cartesian_layout):

def is_po(self, n: int) -> bool: ...

def is_pi_offset_coordinate(self, t: offset_coordinate) -> bool: ...
def is_pi_coordinate(self, t: offset_coordinate) -> bool: ...

def is_po_offset_coordinate(self, t: offset_coordinate) -> bool: ...
def is_po_coordinate(self, t: offset_coordinate) -> bool: ...

def is_inv(self) -> bool: ...

Expand Down Expand Up @@ -629,19 +629,19 @@ class cartesian_gate_layout(clocked_cartesian_layout):

def get_int(self, t: offset_coordinate) -> int: ...

def get_offset_coordinate(self, n: int) -> offset_coordinate: ...
def get_coordinate(self, n: int) -> offset_coordinate: ...

def make_int(self, n: int) -> int: ...

def move_int(self, n: int, t: offset_coordinate, new_children: List[offset_coordinate] = []) -> None: ...

def clear_offset_coordinate(self, t: offset_coordinate) -> None: ...
def clear_coordinate(self, t: offset_coordinate) -> None: ...

def is_gate_offset_coordinate(self, t: offset_coordinate) -> bool: ...
def is_gate_coordinate(self, t: offset_coordinate) -> bool: ...

def is_wire_offset_coordinate(self, t: offset_coordinate) -> bool: ...
def is_wire_coordinate(self, t: offset_coordinate) -> bool: ...

def is_empty_offset_coordinate(self, t: offset_coordinate) -> bool: ...
def is_empty_coordinate(self, t: offset_coordinate) -> bool: ...

def pis(self) -> List[offset_coordinate]: ...

Expand Down Expand Up @@ -721,9 +721,9 @@ class shifted_cartesian_gate_layout(clocked_shifted_cartesian_layout):

def is_po(self, n: int) -> bool: ...

def is_pi_offset_coordinate(self, t: offset_coordinate) -> bool: ...
def is_pi_coordinate(self, t: offset_coordinate) -> bool: ...

def is_po_offset_coordinate(self, t: offset_coordinate) -> bool: ...
def is_po_coordinate(self, t: offset_coordinate) -> bool: ...

def is_inv(self) -> bool: ...

Expand Down Expand Up @@ -795,19 +795,19 @@ class shifted_cartesian_gate_layout(clocked_shifted_cartesian_layout):

def get_int(self, t: offset_coordinate) -> int: ...

def get_offset_coordinate(self, n: int) -> offset_coordinate: ...
def get_coordinate(self, n: int) -> offset_coordinate: ...

def make_int(self, n: int) -> int: ...

def move_int(self, n: int, t: offset_coordinate, new_children: List[offset_coordinate] = []) -> None: ...

def clear_offset_coordinate(self, t: offset_coordinate) -> None: ...
def clear_coordinate(self, t: offset_coordinate) -> None: ...

def is_gate_offset_coordinate(self, t: offset_coordinate) -> bool: ...
def is_gate_coordinate(self, t: offset_coordinate) -> bool: ...

def is_wire_offset_coordinate(self, t: offset_coordinate) -> bool: ...
def is_wire_coordinate(self, t: offset_coordinate) -> bool: ...

def is_empty_offset_coordinate(self, t: offset_coordinate) -> bool: ...
def is_empty_coordinate(self, t: offset_coordinate) -> bool: ...

def pis(self) -> List[offset_coordinate]: ...

Expand Down Expand Up @@ -887,9 +887,9 @@ class hexagonal_gate_layout(clocked_hexagonal_layout):

def is_po(self, n: int) -> bool: ...

def is_pi_cube_coordinate(self, t: cube_coordinate) -> bool: ...
def is_pi_coordinate(self, t: cube_coordinate) -> bool: ...

def is_po_cube_coordinate(self, t: cube_coordinate) -> bool: ...
def is_po_coordinate(self, t: cube_coordinate) -> bool: ...

def is_inv(self) -> bool: ...

Expand Down Expand Up @@ -961,19 +961,19 @@ class hexagonal_gate_layout(clocked_hexagonal_layout):

def get_int(self, t: cube_coordinate) -> int: ...

def get_cube_coordinate(self, n: int) -> cube_coordinate: ...
def get_coordinate(self, n: int) -> cube_coordinate: ...

def make_int(self, n: int) -> int: ...

def move_int(self, n: int, t: cube_coordinate, new_children: List[cube_coordinate] = []) -> None: ...

def clear_cube_coordinate(self, t: cube_coordinate) -> None: ...
def clear_coordinate(self, t: cube_coordinate) -> None: ...

def is_gate_cube_coordinate(self, t: cube_coordinate) -> bool: ...
def is_gate_coordinate(self, t: cube_coordinate) -> bool: ...

def is_wire_cube_coordinate(self, t: cube_coordinate) -> bool: ...
def is_wire_coordinate(self, t: cube_coordinate) -> bool: ...

def is_empty_cube_coordinate(self, t: cube_coordinate) -> bool: ...
def is_empty_coordinate(self, t: cube_coordinate) -> bool: ...

def pis(self) -> List[cube_coordinate]: ...

Expand Down

0 comments on commit 559237d

Please sign in to comment.