make boolean parameter optional
parent
551643bf6e
commit
14d8870c6b
|
@ -69,7 +69,7 @@ class GTSAM_EXPORT TranslationRecovery {
|
||||||
* @param lmParams parameters for optimization.
|
* @param lmParams parameters for optimization.
|
||||||
*/
|
*/
|
||||||
TranslationRecovery(const LevenbergMarquardtParams &lmParams,
|
TranslationRecovery(const LevenbergMarquardtParams &lmParams,
|
||||||
bool use_bilinear_translation_factor)
|
bool use_bilinear_translation_factor = false)
|
||||||
: lmParams_(lmParams),
|
: lmParams_(lmParams),
|
||||||
use_bilinear_translation_factor_(use_bilinear_translation_factor) {}
|
use_bilinear_translation_factor_(use_bilinear_translation_factor) {}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue