diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/directed_graphs.adb | 14 | ||||
-rw-r--r-- | src/directed_graphs.ads | 4 |
2 files changed, 0 insertions, 18 deletions
diff --git a/src/directed_graphs.adb b/src/directed_graphs.adb index 61d704a..82b6bff 100644 --- a/src/directed_graphs.adb +++ b/src/directed_graphs.adb @@ -1286,20 +1286,6 @@ package body Directed_Graphs is - ---------------- - -- Isomorphic -- - ---------------- - - function Isomorphic - (Left, Right : in Cursor) - return Boolean is - begin - return False; - end Isomorphic; - - - - ------------- -- Iterate -- ------------- diff --git a/src/directed_graphs.ads b/src/directed_graphs.ads index 73e34ff..873a793 100644 --- a/src/directed_graphs.ads +++ b/src/directed_graphs.ads @@ -76,10 +76,6 @@ package Directed_Graphs is (Left, Right : in Graph) return Boolean; - function Isomorphic - (Left, Right : in Cursor) - return Boolean; - function To_Graph (Nodes : in Node_Array; Edges : in Edge_Array) |