Home | History | Annotate | Download | only in ceres

Lines Matching refs:functor

47 // a class with a templated operator() (a functor) that computes
102 // WARNING: Since the functor will get instantiated with different types for
107 template <typename Functor, int kGlobalSize, int kLocalSize>
111 functor_(new Functor()) {}
113 // Takes ownership of functor.
114 explicit AutoDiffLocalParameterization(Functor* functor) :
115 functor_(functor) {}
137 return internal::AutoDiff<Functor, double, kGlobalSize, kLocalSize>
149 internal::scoped_ptr<Functor> functor_;