summaryrefslogtreecommitdiff
path: root/src/directed_graphs.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/directed_graphs.adb')
-rw-r--r--src/directed_graphs.adb13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/directed_graphs.adb b/src/directed_graphs.adb
index 7641d75..3446247 100644
--- a/src/directed_graphs.adb
+++ b/src/directed_graphs.adb
@@ -10,19 +10,6 @@ package body Directed_Graphs is
- generic
- type Base_Type is private;
- type Array_Type is array (Positive range <>) of Base_Type;
- with package Type_Vectors is new Ada.Containers.Vectors
- (Index_Type => Positive,
- Element_Type => Base_Type);
- function Vector_To_Array
- (Input : in Type_Vectors.Vector)
- return Array_Type;
-
-
-
-
---------
-- "<" --
---------