Skip to content

Commit d2c2ef6

Browse files
committed
Remove gabriel_graph dynamic property and its getter method
1 parent c558d82 commit d2c2ef6

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/LineageTree/lineageTree.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1292,17 +1292,6 @@ def get_gabriel_graph(self, t: int) -> dict[int, set[int]]:
12921292

12931293
return self.Gabriel_graph[t]
12941294

1295-
@dynamic_property
1296-
def gabriel_graph(self):
1297-
self._gabriel_graph = {}
1298-
return self._get_gabriel_graph
1299-
1300-
@gabriel_graph.getter
1301-
def gabriel_graph(self, t):
1302-
print(f"hello {t}")
1303-
if t not in self._gabriel_graph:
1304-
print("hello")
1305-
13061295
def get_all_chains_of_subtree(
13071296
self, node: int, end_time: int | None = None
13081297
) -> list[list[int]]:

0 commit comments

Comments
 (0)