Skip to content

Commit 26ed30a

Browse files
vnickolovMats-SX
andcommitted
Improve the intro bits for triangle count migration
Co-authored-by: Mats Rydberg <[email protected]>
1 parent 06ada3e commit 26ed30a

File tree

1 file changed

+6
-36
lines changed

1 file changed

+6
-36
lines changed
Lines changed: 6 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
[[migration-triangle-count]]
22
= Triangle Counting / Clustering Coefficient
33

4-
[abstract]
5-
--
6-
The `alpha` procedure group `gds.alpha.triangleCount` is being replaced by a pair of procedure groups:
4+
The `alpha` procedures from the namespace `algo.triangleCount` are being replaced by a pair of procedure namespaces:
75

86
* <<algorithms-triangle-count, gds.triangleCount>>
97
* <<algorithms-local-clustering-coefficient, gds.localClusteringCoefficient>>
10-
--
8+
9+
Everything relating to clustering coefficients has been extracted into a separate algorithm backing `gds.localClusteringCoefficient` procedures.
10+
To compute both triangle count and local clustering coefficient values multiple procedures will be necessary.
11+
1112

1213
.Common changes in Configuration
1314
[opts=header]
@@ -22,24 +23,10 @@ The `alpha` procedure group `gds.alpha.triangleCount` is being replaced by a pai
2223
| `graph` | -
2324
|===
2425

25-
.Changes in Configuration of `gds.triangleCount`
26+
.Changes in YIELD fields of `algo.triangleCount`
2627
[opts=header]
2728
|===
2829
|Graph Algorithms v3.5 |Graph Data Science v1.2
29-
| - | `maxDegree`
30-
|===
31-
32-
.Changes in Configuration of `gds.localClusteringCoefficient`
33-
[opts=header]
34-
|===
35-
|Graph Algorithms v3.5 |Graph Data Science v1.2
36-
| - | `triangleCountProperty`
37-
|===
38-
39-
.Changes in YIELD fields of `gds.triangleCount`
40-
[opts=header]
41-
|===
42-
|Graph Algorithms v3.5 |Graph Data Science v1.0
4330
| `nodeId` | `nodeId` footnote:triangle-count-stream-yield[Only for `stream` mode]
4431
| `triangles` | `triangleCount` footnote:triangle-count-stream-yield[Only for `stream` mode]
4532
| `triangleCount` | `globalTriangleCount` footnote:triangle-count-write-yield[Not present in `stream` mode]
@@ -55,21 +42,4 @@ The `alpha` procedure group `gds.alpha.triangleCount` is being replaced by a pai
5542
| `min, max, mean, p50, p75, p90, p95, p99, p999` | -
5643
|===
5744

58-
.Changes in YIELD fields of `gds.localClusteringCoefficient`
59-
[opts=header]
60-
|===
61-
|Graph Algorithms v3.5 |Graph Data Science v1.0
62-
| `nodeId` | `nodeId` footnote:lcc-stream-yield[Only for `stream` mode]
63-
| `localClusteringCoefficient` | `triangleCount` footnote:lcc-stream-yield[Only for `stream` mode]
64-
| `nodeCount` | `nodeCount` footnote:lcc-write-yield[Not present in `stream` mode]
65-
| `averageClusteringCoefficient` | `averageClusteringCoefficient` footnote:lcc-write-yield[]
66-
| `loadMillis` | `createMillis`
67-
| `computeMillis` | `computeMillis`
68-
| `writeMillis` | `writeMillis`
69-
| `write` | -
70-
| - | `configuration` footnote:wcc-gds-config[The configuration used to run the algorithm]
71-
| `clusteringCoefficientProperty` footnote:lcc-config[Inlined as `writeProperty` into `configuration`] | -
72-
| `min, max, mean, p50, p75, p90, p95, p99, p999` | -
73-
|===
74-
7545

0 commit comments

Comments
 (0)