forked from pythonworkflow/python-workflow-definition
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaiida_simple.json
More file actions
51 lines (51 loc) · 812 Bytes
/
aiida_simple.json
File metadata and controls
51 lines (51 loc) · 812 Bytes
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
{
"nodes": [
{
"id": 0,
"type": "function",
"value": "workflow.get_prod_and_div"
},
{
"id": 1,
"type": "function",
"value": "workflow.get_sum"
},
{
"id": 2,
"type": "function",
"value": "workflow.square"
},
{
"id": 3,
"type": "output",
"name": "result",
"value": null
}
],
"edges": [
{
"target": 1,
"targetPort": "x",
"source": 0,
"sourcePort": "prod"
},
{
"target": 1,
"targetPort": "y",
"source": 0,
"sourcePort": "div"
},
{
"target": 2,
"targetPort": "x",
"source": 1,
"sourcePort": null
},
{
"target": 3,
"targetPort": null,
"source": 2,
"sourcePort": null
}
]
}