|
| 1 | +{ |
| 2 | + "name": "nw", |
| 3 | + "prims": [ |
| 4 | + { "name": "SET-CONTEXT", "argTypes": ["turtleset", "linkset"], "returnType": "unit" }, |
| 5 | + { "name": "GET-CONTEXT", "argTypes": [], "returnType": "list" }, |
| 6 | + { "name": "WITH-CONTEXT", "argTypes": ["turtleset", "linkset", "unit"], "returnType": "unit" }, |
| 7 | + |
| 8 | + { "name": "TURTLES-IN-RADIUS", "argTypes": ["number"], "returnType": "turtleset" }, |
| 9 | + { "name": "TURTLES-IN-OUT-RADIUS", "argTypes": ["number"], "returnType": "turtleset" }, |
| 10 | + { "name": "TURTLES-IN-IN-RADIUS", "argTypes": ["number"], "returnType": "turtleset" }, |
| 11 | + { "name": "TURTLES-IN-REVERSE-RADIUS", "argTypes": ["number"], "returnType": "turtleset" }, |
| 12 | + |
| 13 | + { "name": "DISTANCE-TO", "argTypes": ["wildcard"], "returnType": "wildcard" }, |
| 14 | + { "name": "PATH-TO", "argTypes": ["wildcard"], "returnType": "wildcard" }, |
| 15 | + { "name": "TURTLES-ON-PATH-TO", "argTypes": ["wildcard"], "returnType": "wildcard" }, |
| 16 | + |
| 17 | + { "name": "WEIGHTED-DISTANCE-TO", "argTypes": ["wildcard", "string"], "returnType": "wildcard" }, |
| 18 | + { "name": "WEIGHTED-PATH-TO", "argTypes": ["wildcard", "string"], "returnType": "wildcard" }, |
| 19 | + { "name": "TURTLES-ON-WEIGHTED-PATH-TO", "argTypes": ["wildcard", "string"], "returnType": "wildcard" }, |
| 20 | + |
| 21 | + { "name": "MEAN-PATH-LENGTH", "argTypes": [], "returnType": "wildcard" }, |
| 22 | + { "name": "MEAN-WEIGHTED-PATH-LENGTH", "argTypes": ["string"], "returnType": "wildcard" }, |
| 23 | + |
| 24 | + { "name": "BETWEENNESS-CENTRALITY", "argTypes": [], "returnType": "number" }, |
| 25 | + { "name": "CLOSENESS-CENTRALITY", "argTypes": [], "returnType": "number" }, |
| 26 | + { "name": "WEIGHTED-CLOSENESS-CENTRALITY", "argTypes": ["string"], "returnType": "number" }, |
| 27 | + { "name": "EIGENVECTOR-CENTRALITY", "argTypes": [], "returnType": "number" }, |
| 28 | + { "name": "PAGE-RANK", "argTypes": [], "returnType": "number" }, |
| 29 | + |
| 30 | + { "name": "CLUSTERING-COEFFICIENT", "argTypes": [], "returnType": "number" }, |
| 31 | + { "name": "WEAK-COMPONENT-CLUSTERS", "argTypes": [], "returnType": "list" }, |
| 32 | + { "name": "LOUVAIN-COMMUNITIES", "argTypes": [], "returnType": "list" }, |
| 33 | + { "name": "MODULARITY", "argTypes": ["list"], "returnType": "number" }, |
| 34 | + { "name": "MAXIMAL-CLIQUES", "argTypes": [], "returnType": "list" }, |
| 35 | + { "name": "BIGGEST-MAXIMAL-CLIQUES", "argTypes": [], "returnType": "list" }, |
| 36 | + |
| 37 | + { "name": "GENERATE-PREFERENTIAL-ATTACHMENT", "argTypes": ["wildcard", "wildcard", "number"], "returnType": "unit" }, |
| 38 | + { "name": "GENERATE-RANDOM", "argTypes": ["wildcard", "wildcard", "number", "number"], "returnType": "unit" }, |
| 39 | + { "name": "GENERATE-WATTS-STROGATZ", "argTypes": ["wildcard", "wildcard", "number", "number", "number"], "returnType": "unit" }, |
| 40 | + |
| 41 | + { "name": "SAVE-GRAPHML", "argTypes": ["string"], "returnType": "unit" }, |
| 42 | + { "name": "LOAD-GRAPHML", "argTypes": ["string"], "returnType": "unit" }, |
| 43 | + { "name": "SAVE-MATRIX", "argTypes": ["string"], "returnType": "unit" }, |
| 44 | + { "name": "LOAD-MATRIX", "argTypes": ["string"], "returnType": "unit" }, |
| 45 | + { "name": "SAVE-DL", "argTypes": ["string"], "returnType": "unit" }, |
| 46 | + { "name": "LOAD-DL", "argTypes": ["string"], "returnType": "unit" }, |
| 47 | + { "name": "SAVE-GDF", "argTypes": ["string"], "returnType": "unit" }, |
| 48 | + { "name": "LOAD-GDF", "argTypes": ["string"], "returnType": "unit" }, |
| 49 | + { "name": "SAVE-GEXF", "argTypes": ["string"], "returnType": "unit" }, |
| 50 | + { "name": "LOAD-GEXF", "argTypes": ["string"], "returnType": "unit" }, |
| 51 | + { "name": "SAVE-GML", "argTypes": ["string"], "returnType": "unit" }, |
| 52 | + { "name": "LOAD-GML", "argTypes": ["string"], "returnType": "unit" }, |
| 53 | + { "name": "SAVE-VNA", "argTypes": ["string"], "returnType": "unit" }, |
| 54 | + { "name": "LOAD-VNA", "argTypes": ["string"], "returnType": "unit" }, |
| 55 | + { "name": "SAVE", "argTypes": ["string"], "returnType": "unit" }, |
| 56 | + { "name": "LOAD", "argTypes": ["string"], "returnType": "unit" } |
| 57 | + ] |
| 58 | +} |
0 commit comments