From 559237dda1a861f6d82700ed44667dee928b8a65 Mon Sep 17 00:00:00 2001 From: Marcel Walter Date: Tue, 3 Dec 2024 19:35:23 +0100 Subject: [PATCH] :pencil2: Fix copy-paste error --- bindings/mnt/pyfiction/pyfiction.pyi | 60 ++++++++++++++-------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/bindings/mnt/pyfiction/pyfiction.pyi b/bindings/mnt/pyfiction/pyfiction.pyi index 2086b4c4a..bf3eb9e74 100644 --- a/bindings/mnt/pyfiction/pyfiction.pyi +++ b/bindings/mnt/pyfiction/pyfiction.pyi @@ -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: ... @@ -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: ... @@ -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: ... @@ -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: ... @@ -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]: ... @@ -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: ... @@ -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]: ... @@ -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: ... @@ -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]: ...