summaryrefslogtreecommitdiff
path: root/src/directed_graphs.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2020-05-22 17:42:48 +1000
committerJed Barber <jjbarber@y7mail.com>2020-05-22 17:42:48 +1000
commit5bb4bfd85fb558380a8b06ac77d0e5b27aee1feb (patch)
treead81f63bf4d1cb727e3449fe71c9c0651a6cd808 /src/directed_graphs.ads
parent82a42674ba64c6386152a5910fd7345a92b135e8 (diff)
Contains functions now allows Extended_Node_ID_Type input
Diffstat (limited to 'src/directed_graphs.ads')
-rw-r--r--src/directed_graphs.ads8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/directed_graphs.ads b/src/directed_graphs.ads
index d89b647..d31b7c7 100644
--- a/src/directed_graphs.ads
+++ b/src/directed_graphs.ads
@@ -582,12 +582,12 @@ package Directed_Graphs is
function Contains
(Container : in Graph;
- Node : in Node_ID_Type)
+ Node : in Extended_Node_ID_Type)
return Boolean;
function Contains
(Container : in Graph;
- Node : in Node_ID_Type;
+ Node : in Extended_Node_ID_Type;
Label : in Node_Label_Type)
return Boolean;
@@ -619,12 +619,12 @@ package Directed_Graphs is
function Contains_In_Subgraph
(Position : in Cursor;
- Node : in Node_ID_Type)
+ Node : in Extended_Node_ID_Type)
return Boolean;
function Contains_In_Subgraph
(Position : in Cursor;
- Node : in Node_ID_Type;
+ Node : in Extended_Node_ID_Type;
Label : in Node_Label_Type)
return Boolean;