blob: a1cb498d193b3304f88fbd620b81f1dcb4abf626 (
plain)
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
|
-- File: Cumulate.cdl
-- Created: Wed Sep 23 10:36:04 1992
-- Author: Christian CAILLET
-- <cky@phobox>
---Copyright: Matra Datavision 1992
class Cumulate from IFGraph inherits GraphContent
---Purpose : this class evaluates effect of cumulated sub-parts :
-- overlapping, forgotten entities
-- Results are kept in a Graph, several question can be set
-- Basic Iteration gives entities which are part of Cumulation
uses Transient, EntityIterator, Graph
is
Create (agraph : Graph) returns Cumulate;
---Purpose : creates empty Cumulate, ready to work
GetFromEntity (me : in out; ent : any Transient);
---Purpose : adds an entity and its shared ones to the list
GetFromIter (me : in out; iter : EntityIterator);
---Purpose : adds a list of entities (as an iterator) as such, that is,
-- without their shared entities (use AllShared to have them)
ResetData (me : in out);
---Purpose : Allows to restart on a new data set
-- -- Results -- --
-- More-Next-Value-Entity give all entities taken into the Cumulation
-- other informations are provided, as EntityIterator : hence they
-- are available for other evaluations
Evaluate (me : in out) is redefined;
---Purpose : Evaluates the result of cumulation
Overlapped (me) returns EntityIterator;
---Purpose : returns entities which are taken several times
Forgotten (me) returns EntityIterator;
---Purpose : returns entities which are not taken
PerCount (me; count : Integer = 1) returns EntityIterator;
---Purpose : Returns entities taken a given count of times
-- (0 : same as Forgotten, 1 : same as no Overlap : default)
NbTimes (me; ent : Transient) returns Integer;
---Purpose : returns number of times an Entity has been counted
-- (0 means forgotten, more than 1 means overlap, 1 is normal)
HighestNbTimes (me) returns Integer;
---Purpose : Returns the highest number of times recorded for every Entity
-- (0 means empty, 1 means no overlap)
fields
thegraph : Graph;
end Cumulate;
|