1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
|
-- File: PCollection_HDirectedGraph.cdl
-- Created: Wed Apr 24 16:53:50 1991
-- Author: Denis PASCAL
-- <dp@topsn2>
---Copyright: Matra Datavision 1991, 1992
---Copyright: Matra Datavision 1991
-- Revised: Mireille MERCIEN
-- <mip@sdsun3>
---Copyright: Matra Datavision 1992
generic class HDirectedGraph from PCollection (
Item as Storable ;
Attribute as Storable)
---Purpose: Definition of a generic directed graph for a type of
-- Item associated to a vertex, and a type of Attribute
-- associated to an Edge. A Directed Graph is a
-- collection that includes a set of Vertices and a set
-- of Edges. A vertex, also called a "Node", forms the
-- basic structural element of the graph. Each edge,
-- also called an "Arc" defines an oriented link between
-- two vertices. In the scheme A->B, vertex A is called
-- the SOURCE of the link, B its DESTINATION, and B is
-- ADJACENT to A. If there is no edge which destinates
-- to a vertex, this vertex is a ROOT of the graph. If
-- there is no edge which originates from a vertex, this
-- vertex is a LEAF of the graph.
---Keywords: SOURCE vertex, DESTINATION Vertex, ROOT vertex, LEAF
-- vertex, ADJACENT vertex. Depth-first search, breadth, first Search.
---References: Software Components with ADA (The Benjamin/Cummings
-- Company, Inc. 1986).
inherits Persistent
raises NoSuchObject from Standard,
NoMoreObject from Standard
class Edge inherits Persistent
---Purpose: Defines nested class Edge of a Directed Graph.
-- An Edge is an oriented link between two vertices.
raises NoMoreObject from Standard ,
NoSuchObject from Standard
is
Create (Source,Destination : Vertex; Value : Attribute)
---Purpose: Creates an oriented link between <source> and
-- <destination> with an associated attribute. To
-- be used only by DirectedGraph methods to
-- create and add an edge to a given graph.
returns mutable Edge;
GetAttribute (me)
---Level: Public
---Purpose: Returns attribute associated to <me>.
returns Attribute;
SetAttribute (me : mutable; Value : Attribute)
---Level: Internal
---Purpose: To associate an attribute to <me>.
is private;
Source (me)
---Level: Public
---Purpose: Returns the vertex which originates from <me>.
returns mutable Vertex;
SetSource (me :mutable; V: Vertex)
---Level: Internal
---Purpose: Sets the vertex which originates from <me>.
is private;
Destination (me)
---Level: Public
---Purpose: Returns the vertex which destinates to <me>.
returns mutable Vertex;
SetDestination (me :mutable ; V: Vertex)
---Level: Internal
---Purpose: Sets the vertex which destinates to <me>.
is private;
Reverse (me : mutable);
---Level: Public
---Purpose: Reverse the orientation of <me>.
-- The source vertex becomes the destination vertex, and
-- the destination becomes the source.
IsLoop (me) returns Boolean from Standard;
---Level: Public
---Purpose: Returns True if the fields <MyDestination> and
-- <Mysource> are equal.
fields
MyAttribute : Attribute;
MySource : Vertex;
MyDestination : Vertex;
friends class HDirectedGraph from PCollection,
class Vertex from PCollection
end;
class SetOfEdge instantiates HSet from PCollection(Edge);
---Purpose: Defines nested class SetOfEdge used as field of
-- Vertex and DirectedGraph.
class SetOfVertex instantiates HSet from PCollection(Vertex);
---Purpose: Defines nested class SetOfVertex used as field of a
-- DirectedGraph.
class StackOfVertex instantiates HStack from PCollection(Vertex);
---Purpose: Defines nested class StackOfVertex used as field of
-- DepthFirstIterator class.
class QueueOfVertex instantiates HQueue from PCollection(Vertex);
---Purpose: Defines nested class QueueOfVertex used as field of
-- BreadthFirstIterator.
class FrontEdgesIterator
---Purpose: Defines nested class FrontEdgesIterator, to visit
-- every edge that originates from a given vertex.
raises NoMoreObject from Standard ,
NoSuchObject from Standard
is
Create (aVertex : Vertex) returns FrontEdgesIterator;
More (me)
---Level: Public
---Purpose: Returns TRUE if there are other edges.
returns Boolean from Standard;
Next (me : in out) raises NoMoreObject from Standard;
---Level: Public
---Purpose: Set the iterator to the next Edge.
Value (me)
---Level: Public
---Purpose: Returns the edge value for the current
-- position of the iterator.
returns any Edge
raises NoSuchObject from Standard;
Clear (me : in out);
---Level: Public
---Purpose: To clear the iterator before having visiting all edges.
fields
MyEdgeIterator : SetIteratorOfSetOfEdge;
HasMore : Boolean from Standard;
end;
class BackEdgesIterator
---Purpose: Defines nested class BackEdgesIterator, to visit
-- every edge that destinates to a given vertex.
raises NoMoreObject from Standard ,
NoSuchObject from Standard
is
Create (aVertex : Vertex) returns BackEdgesIterator;
More (me)
---Level: Public
---Purpose: Returns TRUE if there are other edges.
returns Boolean from Standard;
Next (me : in out) raises NoMoreObject from Standard;
---Level: Public
---Purpose: Sets the iterator to the next edge.
Value (me)
---Level: Public
---Purpose: Returns the edge value for the current
-- position of the iterator.
returns any Edge
raises NoSuchObject from Standard;
Clear (me : in out);
---Level: Public
---Purpose: To clear the iterator before having visiting all edges.
fields
MyEdgeIterator : SetIteratorOfSetOfEdge;
HasMore : Boolean from Standard;
end;
class DepthFirstIterator
---Purpose: Defines nested class DepthFirstIterator, to visit
-- every vertex that depends of a given one. Depth
-- First Search is functionnally the equivalent of a
-- preorder tree traversal. We start at a given
-- Vertex V and recursively visit all adjacent
-- unvisited Vertices.
raises NoMoreObject from Standard ,
NoSuchObject from Standard
is
Create (aVertex : Vertex) returns DepthFirstIterator;
More (me)
---Level: Public
---Purpose: Returns TRUE if there are other vertices.
returns Boolean from Standard;
Next (me : in out) raises NoMoreObject from Standard;
---Level: Public
---Purpose: Sets the iterator to the next vertex.
Value (me)
---Level: Public
---Purpose: Returns the vertex value for the current
-- position of the iterator.
returns any Vertex
raises NoSuchObject from Standard;
Clear (me : in out);
---Level: Public
---Purpose: To clear the iterator before having visiting
-- all vertices.
fields
Visited : SetOfVertex;
Ready : StackOfVertex;
HasMore : Boolean from Standard;
end;
class BreadthFirstIterator
---Purpose: Defines nested class BreadthFirstIterator, to visit
-- every vertex that depends of a given one. We start
-- at a given vertex V, visit all its adjacent
-- vertices, and then recursively visit the unvisited
-- adjacent vertices of these previous ones.
raises NoMoreObject from Standard ,
NoSuchObject from Standard
is
Create (aVertex : Vertex) returns BreadthFirstIterator;
More (me)
---Level: Public
---Purpose: Returns TRUE if there are other vertices.
returns Boolean from Standard;
Next (me : in out) raises NoMoreObject from Standard;
---Level: Public
---Purpose: Sets the iterator to the next vertex.
Value (me)
---Level: Public
---Purpose: Returns the vertex value for the current
-- position of the iterator.
returns any Vertex
raises NoSuchObject from Standard;
Clear (me : in out);
---Level: Public
---Purpose: To clear the iterator before having visiting
-- all vertices.
fields
Visited : SetOfVertex;
Ready : QueueOfVertex;
HasMore : Boolean from Standard;
end;
class AdjacentVerticesIterator
---Purpose: Defines nested class AdjacentVerticesIterator, to
-- visit every adjacent vertex of a given one
-- (Destination vertices of its front edges).
raises NoMoreObject from Standard ,
NoSuchObject from Standard
is
Create (aVertex : Vertex) returns AdjacentVerticesIterator;
More (me)
---Level: Public
---Purpose: Returns TRUE if there are other vertices.
returns Boolean from Standard;
Next (me : in out) raises NoMoreObject from Standard;
---Level: Public
---Purpose: Sets the iterator to the next vertex.
Value (me)
---Level: Public
---Purpose: Returns the vertex value for the current
-- position of the iterator.
returns any Vertex
raises NoSuchObject from Standard;
Clear (me : in out);
---Level: Public
---Purpose: To clear the iterator before having visiting all vertices.
fields
MyEdgeIterator : SetIteratorOfSetOfEdge;
HasMore : Boolean from Standard;
end;
----------------------- Class Vertex ----------------------------------
class Vertex inherits Persistent
---Purpose: Defines nested class vertex of a DirectedGraph. The
-- Vertex is the basic element of a graph.
raises NoMoreObject from Standard ,
NoSuchObject from Standard
is
Create (Value : Item ; InGraph : HDirectedGraph)
---Purpose: Creates a vertex with an associated item. To
-- be used only by DirectedGraph methods to
-- create and add a vertex to a given graph.
returns mutable Vertex;
GetItem (me)
---Level: Public
---Purpose: Returns item associated to <me>.
returns any Item;
SetItem (me : mutable; value : Item)
---Level: Internal
---Purpose: Associates an item to <me>.
is private;
GetGraph (me)
---Level: Public
---Purpose: Returns the HDirectedGraph which owns <me>.
returns HDirectedGraph;
AddFrontEdge (me : mutable; anEdge : Edge)
---Level: Internal
---Purpose: To add an edge that destinates to <me>.
-- To be used only by editing methods of a DirectedGraph.
-- Returns False if the edge already exists.
returns Boolean from Standard
is private;
RemoveFrontEdge (me : mutable; anEdge : Edge)
---Level: Internal
---Purpose: To remove an edge that originates from <me>.
-- To be used only by editing methods of a DirectedGraph.
-- An exception is raised if <anEdge> doesn't belong to
-- myFrontEdges field.
raises NoSuchObject from Standard
is private;
NbFrontEdges (me) returns Integer;
---Level: Public
---Purpose: Returns the number of edges which originates from <me>.
GetFrontEdges (me)
---Level: Public
---Purpose: Returns "myFrontEdges" Field for Iterator.
returns SetOfEdge
is private;
AddBackEdge (me : mutable; anEdge : Edge)
---Level: Internal
---Purpose: To add an edge that destinates to <me>. To be
-- used only by editing methods of a
-- DirectedGraph, to update it after
-- modifications. Returns False if the edge already exists.
returns Boolean from Standard
is private;
RemoveBackEdge (me : mutable; anEdge : Edge)
---Level: Internal
---Purpose: To remove an edge that destinates to <me>. To
-- be used only by editing methods of a
-- DirectedGraph, to update it after
-- modifications. An exception is raised if
-- <anEdge> doesn't belong to myBackEdges field.
raises NoSuchObject from Standard
is private;
NbBackEdges (me)
---Level: Public
---Purpose: Returns the number of edge which destinates to <me>.
returns Integer from Standard;
GetBackEdges (me)
---Level: Internal
---Purpose: Returns "myBackEdges" field for Iterator.
returns SetOfEdge
is private;
IsRoot (me)
---Level: Public
---Purpose: Returns TRUE if NbBackEdges = 0.
returns Boolean from Standard;
IsLeaf (me)
---Level: Public
---Purpose: Returns TRUE if NbFrontEdges = 0.
returns Boolean from Standard;
IsDestination (me; aVertex : Vertex)
---Level: Public
---Purpose: Returns TRUE if it exists an edge which
-- originates from <me> and destinates to <aVertex>.
returns Boolean from Standard;
IsSource (me; aVertex : Vertex)
---Level: Public
---Purpose: Returns TRUE if it exists an edge which
-- originates from <aVertex> and destinates to <me>.
returns Boolean from Standard;
fields
MyItem : Item;
MyGraph : HDirectedGraph;
MyFrontEdges : SetOfEdge;
MyBackEdges : SetOfEdge;
friends class HDirectedGraph from PCollection,
class Edge from PCollection,
class BackEdgesIterator from PCollection,
class FrontEdgesIterator from PCollection,
class DepthFirstIterator from PCollection,
class BreadthFirstIterator from PCollection,
class AdjacentVerticesIterator from PCollection
end;
class VerticesIterator
---Purpose: Defines nested class VerticesIterator, to visit
-- every vertex of a given directed graph.
raises NoMoreObject from Standard ,
NoSuchObject from Standard
is
Create (aGraph : HDirectedGraph) returns VerticesIterator;
More (me)
---Level: Public
---Purpose: Returns TRUE if there are other vertices.
returns Boolean from Standard;
Next (me : in out) raises NoMoreObject from Standard;
---Level: Public
---Purpose: Sets the iterator to the next vertex.
Value (me)
---Level: Public
---Purpose: Returns the vertex value for the current
-- position of the iterator.
returns any Vertex
raises NoSuchObject from Standard;
Clear (me : in out);
---Level: Public
---Purpose: To clear the iterator before having visiting
-- all vertices.
fields
MyVertexIterator : SetIteratorOfSetOfVertex;
HasMore : Boolean from Standard;
end;
class RootsIterator
---Purpose: Defines nested class RootsIterator, to visit every
-- "root" vertex of a directed graph.
raises NoMoreObject from Standard ,
NoSuchObject from Standard
is
Create (aGraph : HDirectedGraph) returns RootsIterator;
More (me)
---Level: Public
---Purpose: Returns TRUE if there are other vertices.
returns Boolean from Standard;
Next (me : in out) raises NoMoreObject from Standard;
---Level: Public
---Purpose: Sets the iterator to the next vertex.
Value (me)
---Level: Public
---Purpose: Returns the vertex value for the current
-- position of the iterator.
returns any Vertex
raises NoSuchObject from Standard;
Clear (me : in out);
---Level: Public
---Purpose: To clear the iterator before having visiting
-- all vertices.
fields
MyVertexIterator : SetIteratorOfSetOfVertex;
HasMore : Boolean from Standard;
end;
class LeavesIterator
---Purpose: Defines nested class LeavesIterator, to visit every
-- "leaf" vertex of a directed graph.
raises NoMoreObject from Standard ,
NoSuchObject from Standard
is
Create (aGraph : HDirectedGraph) returns LeavesIterator;
More (me)
---Level: Public
---Purpose: Returns TRUE if there are other vertices.
returns Boolean from Standard;
Next (me : in out) raises NoMoreObject from Standard;
---Level: Public
---Purpose: Set the iterator to the next vertex.
Value (me)
---Level: Public
---Purpose: Returns the vertex value for the current
-- position of the iterator.
returns any Vertex
raises NoSuchObject from Standard;
Clear (me : in out);
---Level: Public
---Purpose: To clear the iterator before having visiting
-- all vertices.
fields
MyVertexIterator : SetIteratorOfSetOfVertex;
HasMore : Boolean from Standard;
end;
class EdgesIterator
---Purpose: Defines nested class EdgesIterator, to visit every
-- edge of a directed graph.
raises NoMoreObject from Standard ,
NoSuchObject from Standard
is
Create (aGraph : HDirectedGraph) returns EdgesIterator;
More (me) returns Boolean from Standard;
---Level: Public
---Purpose: Returns TRUE if there are other edges.
Next (me : in out) raises NoMoreObject from Standard;
---Level: Public
---Purpose: Sets the iterator to the next edge.
Value (me)
---Level: Public
---Purpose: Returns the edge value for the current
-- position of the iterator.
returns any Edge
raises NoSuchObject from Standard;
Clear (me : in out);
---Level: Public
---Purpose: To clear the iterator before having visiting all edges.
fields
MyEdgeIterator : SetIteratorOfSetOfEdge;
HasMore : Boolean from Standard;
end;
--------------------- class HDirectedGraph -----------------------------
is
Create returns mutable HDirectedGraph;
---Purpose: Creates an empty Directed Graph.
NumberOfVertices (me) returns Integer from Standard;
---Level: Public
NumberOfEdges (me) returns Integer from Standard;
---Level: Public
NumberOfLeaves (me) returns Integer from Standard;
---Level: Public
---Purpose: Returns the number of "leaf" vertices of <me>.
NumberOfRoots (me) returns Integer from Standard;
---Level: Public
---Purpose: Returns the number of "root" vertices of <me>.
IsEmpty (me) returns Boolean from Standard;
---Level: Public
Clear (me : mutable);
---Level: Public
---Purpose: Removes all edges and vertices of <me>.
IsMember (me; aVertex : Vertex) returns Boolean from Standard;
---Level: Public
IsMember (me; anEdge : Edge) returns Boolean from Standard;
---Level: Public
Add (me : mutable; Value : Item)
---Level: Public
---Purpose: Creates and Adds a vertex, with a given value
-- <value>, to <me>. Of course this new Vertex is a
-- "root" and "leaf" vertex of <me> because it has no
-- connexion with other vertices of the directed graph.
returns mutable Vertex;
Remove (me : mutable; aVertex : mutable Vertex)
---Level: Public
---Purpose: Removes <aVertex> from <me>. Removes also all the
-- edges of <me> which reference <aVertex>; Updates
-- Source and Destination vertices of each of these
-- edges . Raises an exception if <aVertex> is not
-- member of <me>.
raises NoSuchObject from Standard;
Add (me : mutable; Source : mutable Vertex;
Destination : mutable Vertex; Value : Attribute)
---Level: Public
---Purpose: Creates and adds an edge from <source> to
-- <destination>, with the attribute <value>, to
-- <me>. Updates Source and Destination Vertices of
-- this new edge. Raises an exception if <source> or
-- <destination> are not members of <me>.
returns mutable Edge
raises NoSuchObject from Standard;
Remove (me : mutable; AnEdge : mutable Edge)
---Level: Public
---Purpose: Removes <anEdge> from <me>. And Updates Source
-- and Destination Vertices of <anEdge>. Raises an
-- exception if <Edge> is not member of <me>.
raises NoSuchObject from Standard;
GetVertices (me)
---Level: Internal
---Purpose: Returns "myVertices" field for Iterator.
returns SetOfVertex
is private;
GetEdges (me)
---Level: Internal
---Purpose: Returns "myEdges" field for Iterator.
returns SetOfEdge
is private;
ShallowCopy(me) returns mutable like me
is redefined;
---Level: Advanced
---C++: function call
ShallowDump (me; s: in out OStream)
is redefined;
---Level: Advanced
---C++: function call
fields
MyVertices : SetOfVertex;
MyEdges : SetOfEdge;
friends class VerticesIterator from PCollection,
class RootsIterator from PCollection,
class LeavesIterator from PCollection,
class EdgesIterator from PCollection
end;
|