0001-Added-new-generic-double-vector-type.patch

Anonymous, 01/28/2013 06:34 PM

Download (1.41 KB)

View differences:

proto/sandbox/rst/math/VectorDouble.proto
1
package rst.math;
2

  
3
option java_outer_classname = "VectorDoubleType";
4

  
5
/**
6
 * A message representing a double vector of n entries. Use more specific
7
 * data-type whenever possible.
8
 *
9
 * @author Arne Nordmann <anordman@cor-lab.uni-bielefeld.de> 
10
 */
11
message VectorDouble {
12

  
13
    /**
14
     * Vector elements.
15
     */
16
    repeated double data = 2 [packed=true];
17

  
18
}
proto/sandbox/rst/math/__package.proto
1
/**
2
 * This package contains data types representing mathematical concepts.
3
 */
4
package rst.math;
0
-