Skip to content

Commit e89360c

Browse files
committed
Added missing / constraint
1 parent e2a8aa7 commit e89360c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/pbe/transduction/knowledge_graph/kg_path_finder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ def find_paths_from_level(
9090
if level < 0:
9191
return []
9292
for inp, out in pairs:
93-
if "+" in inp or "|" in inp or ">" in inp or "<" in inp:
93+
if "+" in inp or "|" in inp or ">" in inp or "<" in inp or "/" in inp:
9494
return []
95-
if "+" in out or "|" in out or ">" in out or "<" in out:
95+
if "+" in out or "|" in out or ">" in out or "<" in out or "/" in out:
9696
return []
9797
d = level
9898
while d < max_distance:

0 commit comments

Comments
 (0)