-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_dependencies.dot
62 lines (43 loc) · 1.26 KB
/
model_dependencies.dot
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
digraph {
newrank=true;
Project -> Garden;
Product -> ProductType;
Task -> TaskType;
Polyculture -> Species;
Garden -> Polyculture;
Species -> SpeciesProduction -> Production;
Species -> SpeciesTask -> Task;
Species -> SpeciesCosts -> Costs;
Project -> ProjectTask -> Task;
Project -> ProjectCosts -> Costs;
Project -> ProjectProduction -> Production;
Garden -> GardenProduction -> Production;
Garden -> GardenCosts -> Costs;
Garden -> GardenTask -> Task;
Production -> Product;
Costs -> CostType;
TaskType -> Costs;
subgraph cluster_0 {
Production; Product; ProductType;
}
subgraph cluster_1 {
Task; TaskType;
}
subgraph cluster_3 {
}
subgraph cluster_4 {
Project; ProjectTask; ProjectCosts; ProjectProduction;
}
subgraph cluster_5 {
Costs; CostType;
}
subgraph cluster_6 {
Garden; Polyculture; GardenTask; GardenCosts; GardenProduction;
}
subgraph cluster_7 {
Species; SpeciesTask; SpeciesCosts; SpeciesProduction;
}
{ rank=same; Production; Task; Costs; }
{ rank=same; ProjectTask; ProjectCosts; ProjectProduction; }
{ rank=same; GardenTask; GardenCosts; GardenProduction; }
}