|
2 | 2 | * Copyright (C) 2015, International Business Machines Corporation
|
3 | 3 | * All Rights Reserved
|
4 | 4 | *******************************************************************************/
|
5 |
| -*/ |
6 |
| -type StringListData = uint64 tupleNum, list<rstring> potterList, list<rstring> lotrList,list<rstring> austenList; |
| 5 | +type StringListData = uint64 tupleNum, list<rstring> characterList; |
7 | 6 | type ThreeClauseString = rstring hero,rstring heroine,rstring villain;
|
8 | 7 | type IntData = int64 x, int64 y, int64 z;
|
9 | 8 |
|
10 | 9 | composite GenerateStringList(output OutStream) {
|
11 | 10 | param
|
12 |
| - expression<list<rstring>> $nameList: ["Harry","Herminone","Ron","Mrs. Weasley","Sirius","Dumbledore","Lilly","Voldemort","James","Malfoy"]; |
13 |
| - expression<list<rstring>> $nameList2: ["Aragorn","Frodo","Gandalf","Eowyn","Merry","Fatty","Pippin","Eomer","Theoden","Faramir","Boromir"]; |
14 | 11 | expression<int32> $iterations: (int32)getSubmissionTimeValue("iterations","100000000");
|
15 | 12 | graph
|
16 | 13 | stream<StringListData> OutStream = Beacon() {
|
17 | 14 | param iterations: $iterations;
|
18 | 15 | output OutStream:
|
19 | 16 | tupleNum=IterationCount(),
|
20 |
| - potterList = $nameList, |
21 |
| - lotrList = $nameList2, |
22 |
| - austenList = ["Emma","Lizzy","Jane","Wentworth","Elinor","Fanny","Anne","Lady Susan","Catherine","Henry"]; |
| 17 | + characterList = ["Emma","Lizzy","Jane","Wentworth","Elinor","Fanny","Anne","Lady Susan","Catherine","Henry"]; |
23 | 18 | }
|
24 | 19 | }
|
25 | 20 |
|
|
0 commit comments