diff options
author | Jed Barber <jjbarber@y7mail.com> | 2020-04-28 01:00:15 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2020-04-28 01:00:15 +1000 |
commit | 902eab7f70be354b04763b17752971c7e10f65bc (patch) | |
tree | e6577756b20c595e3695bf485297e678032943d7 | |
parent | 05d903360247c57cd0db740ff1cb04ee39a1cb2e (diff) |
Abandoned isomorphism function
-rw-r--r-- | design_notes.txt | 2 | ||||
-rw-r--r-- | src/directed_graphs.adb | 14 | ||||
-rw-r--r-- | src/directed_graphs.ads | 4 |
3 files changed, 0 insertions, 20 deletions
diff --git a/design_notes.txt b/design_notes.txt index 835030c..3d7b996 100644 --- a/design_notes.txt +++ b/design_notes.txt @@ -38,8 +38,6 @@ List of Cursor funcs: Has_Element Element (cursor -> node) - Isomorphic - (generally for most non-mutable Graph functions that operate on an input of a single node, a cursor is also fine) List of Graph funcs: 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) |