HomeSort by relevance Sort by last modified time
    Searched defs:JetT (Results 1 - 2 of 2) sorted by null

  /external/ceres-solver/include/ceres/internal/
autodiff.h 158 // identity matrix. The JetT type should be a Jet type, and T should be a
166 // is what would get put in dst if N was 3, offset was 3, and the jet type JetT
168 template <typename JetT, typename T, int N>
169 inline void Make1stOrderPerturbation(int offset, const T* src, JetT* dst) {
181 template <typename JetT, typename T>
182 inline void Take0thOrderPart(int M, const JetT *src, T dst) {
191 template <typename JetT, typename T, int N0, int N>
192 inline void Take1stOrderPart(const int M, const JetT *src, T *dst) {
231 typedef Jet<T, N0 + N1 + N2 + N3 + N4 + N5 + N6 + N7 + N8 + N9> JetT;
232 FixedArray<JetT, (256 * 7) / sizeof(JetT)> x
    [all...]
  /external/ceres-solver/internal/ceres/
autodiff_test.cc 669 typedef Jet<double, 2> JetT;
670 FixedArray<JetT, (256 * 7) / sizeof(JetT)> x(3);
673 x[0] = x[0] + JetT(1.0);

Completed in 187 milliseconds