From 178c1aec8880801d6ebc0b8669fec0d7414ffff3 Mon Sep 17 00:00:00 2001 From: dellaert Date: Wed, 17 Jun 2015 09:05:02 -0700 Subject: [PATCH] Better comment --- gtsam/nonlinear/AdaptAutoDiff.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gtsam/nonlinear/AdaptAutoDiff.h b/gtsam/nonlinear/AdaptAutoDiff.h index 7295f3160..adb2031df 100644 --- a/gtsam/nonlinear/AdaptAutoDiff.h +++ b/gtsam/nonlinear/AdaptAutoDiff.h @@ -65,7 +65,12 @@ struct Canonical { } }; -/// Adapt ceres-style autodiff +/** + * The AdaptAutoDiff class uses ceres-style autodiff to adapt a ceres-style + * Function evaluation, i.e., a function F that defines an operator + * template bool operator()(const T* const, const T* const, T* predicted) const; + * For now only binary operators are supported. + */ template class AdaptAutoDiff {