Skip to content

Commit

Permalink
add all the vector and matrix types
Browse files Browse the repository at this point in the history
  • Loading branch information
karlnapf authored and vigsterkr committed Mar 10, 2016
1 parent d58ca49 commit d22d1bb
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions examples/meta/generator/targets/cpp.json
Expand Up @@ -17,32 +17,32 @@
"Type": {
"RealFeatures": "DenseFeatures<float64_t>",
"Default": "$type",
"bool": "boolean",
"string": "String",
"BoolVector": "bool*",
"CharVector": "char*",
"ByteVector": "byte*",
"WordVector": "word*",
"ShortVector": "short*",
"IntVector": "int*",
"LongIntVector": "long*",
"ULongIntVector": "ulong*",
"ShortRealVector": "short*",
"RealVector": "float*",
"LongRealVector": "SGVector<float64_t>",
"ComplexVector": "?????",
"BoolMatrix": "bool**",
"CharMatrix": "char**",
"ByteMatrix": "byte**",
"WordMatrix": "word**",
"ShortMatrix": "short**",
"IntMatrix": "int**",
"LongIntMatrix": "long**",
"ULongIntMatrix": "ulong**",
"ShortRealMatrix": "float**",
"RealMatrix": "float**",
"LongRealMatrix": "double**",
"ComplexMatrix": "????"
"bool": "bool",
"string": "char*",
"BoolVector": "SGVector<bool>",
"CharVector": "SGVector<char>",
"ByteVector": "SGVector<bye>",
"WordVector": "SGVector<unsigned int>",
"ShortVector": "SGVector<short>",
"IntVector": "SGVector<int32_t>",
"LongIntVector": "SGVector<long long>",
"ULongIntVector": "SGVector<long long int>",
"ShortRealVector": "SGVector<float32_t>",
"RealVector": "SGVector<float64_t>",
"LongRealVector": "SGVector<floatmax_t>",
"ComplexVector": "SGVector<complex128_t>",
"BoolMatrix": "SGMatrix<bool>",
"CharMatrix": "SGMatrix<char>",
"ByteMatrix": "SGMatrix<byte>",
"WordMatrix": "SGMatrix<unsigned int>",
"ShortMatrix": "SGMatrix<short>",
"IntMatrix": "SGMatrix<int32_t>",
"LongIntMatrix": "SGMatrix<long long int>",
"ULongIntMatrix": "SGMatrix<unsigned long long int>",
"ShortRealMatrix": "SGMatrix<float32_t>",
"RealMatrix": "SGMatrix<float64_t>",
"LongRealMatrix": "SGMatrix<floatmax_t>",
"ComplexMatrixSGMatrix<complex128_t>
},
"Expr": {
"StringLiteral": "\"$literal\"",
Expand Down

0 comments on commit d22d1bb

Please sign in to comment.