From 0a91c081fb18301549ca8c82a3fe518420e4b081 Mon Sep 17 00:00:00 2001 From: Varun Agrawal Date: Tue, 10 Mar 2020 14:18:07 -0400 Subject: [PATCH] moved references for implementation from header to cpp --- gtsam/base/Vector.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/gtsam/base/Vector.h b/gtsam/base/Vector.h index 576717a0c..bd72a0473 100644 --- a/gtsam/base/Vector.h +++ b/gtsam/base/Vector.h @@ -80,9 +80,6 @@ static_assert( * Numerically stable function for comparing if floating point values are equal * within epsilon tolerance. * Used for vector and matrix comparison with C++11 compatible functions. - * References: - * 1. https://randomascii.wordpress.com/2012/02/25/comparing-floating-point-numbers-2012-edition/ - * 2. https://floating-point-gui.de/errors/comparison/ * Return true if two numbers are close wrt epsilon. */ GTSAM_EXPORT bool fpEqual(double a, double b, double epsilon);