Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3/Protos/ExternalEvaluationMessages.proto @ 3852

Last change on this file since 3852 was 3852, checked in by abeham, 14 years ago

#866

  • Added ExternalEvaluation project (but excluded in build list as it does not yet compile)
File size: 1.4 KB
Line 
1package HeuristicLab.Problems.ExternalEvaluation;
2option java_package = "com.heuristiclab.problems.externalevaluation";
3
4message MainMessage {
5  message IntegerVariables {
6    required string name = 1;
7    optional int32 data = 2;
8  }
9  repeated IntegerVariables integerVars = 1;
10 
11  message IntegerArrayVariables {
12    required string name = 1;
13    repeated string data = 2;
14  }
15  repeated IntegerArrayVariables integerArrayVars = 2;
16 
17  message DoubleVariables {
18    required string name = 1;
19    optional double data = 2;
20  }
21  repeated DoubleVariables doubleVars = 3;
22 
23  message DoubleArrayVariables {
24    required string name = 1;
25    repeated double data = 2;
26  }
27  repeated DoubleArrayVariables doubleArrayVars = 4;
28 
29  message BoolVariables {
30    required string name = 1;
31    optional bool data = 2;
32  }
33  repeated BoolVariables boolVars = 5;
34 
35  message BoolArrayVariables {
36    required string name = 1;
37    repeated bool data = 2;
38  }
39  repeated BoolArrayVariables boolArrayVars = 6;
40 
41  message StringVariables {
42    required string name = 1;
43    optional string data = 2;
44  }
45  repeated StringData stringVars = 7;
46 
47  message StringArrayVariables {
48    required string name = 1;
49    repeated string data = 2;
50  }
51  repeated StringArrayVariables stringArrayVars = 8;
52 
53  message RawVariables {
54    required string name = 1;
55    optional bytes data = 2;
56  }
57  repeated RawVariables rawVars = 9;
58}
Note: See TracBrowser for help on using the repository browser.