0392-Adds-AMARSi-AdaptiveComponentStatus-proto.patch

Anonymous, 02/17/2014 04:46 PM

Download (1.2 KB)

View differences:

proto/sandbox/rst/amarsi/AdaptiveComponentStatus.proto
1
package rst.amarsi;
2

  
3
option java_outer_classname = "AdaptiveComponentType";
4

  
5
/**
6
 * Holds the status of an AMARSi Adaptive Component, namely:
7
 * - Converged
8
 * - Not Converged
9
 *
10
 * @author Arne Nordmann <anordman@cor-lab.uni-bielefeld.de>
11
 */
12
message AdaptiveComponentStatus {
13

  
14
    /**
15
     * Converged - true or false
16
     */
17
    required bool converged = 1;
18

  
19
}
0
-