From 8df5bca979cc6acdf85215fda611e45211ed09ae Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Sun, 23 Jan 2011 18:22:18 -0500 Subject: rename build stages to multiples of 10; old stage 2 becomes stage 15, while stage 20 generates errors (instead of warnings) on conflicting API. --- Eigen/src/Core/Dot.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Eigen/src/Core/Dot.h') diff --git a/Eigen/src/Core/Dot.h b/Eigen/src/Core/Dot.h index 4f6219540..16496273c 100644 --- a/Eigen/src/Core/Dot.h +++ b/Eigen/src/Core/Dot.h @@ -81,19 +81,19 @@ MatrixBase::dot(const MatrixBase& other) const eigen_assert(size() == other.size()); -#if EIGEN2_SUPPORT_STAGE >= STAGE3_FULL_EIGEN3_API +#if EIGEN2_SUPPORT_STAGE >= STAGE30_FULL_EIGEN3_API return internal::dot_nocheck::run(*this, other); #else return internal::dot_nocheck::run(other,*this); #endif } -#if EIGEN2_SUPPORT_STAGE <= STAGE3_FULL_EIGEN3_API +#if EIGEN2_SUPPORT_STAGE <= STAGE30_FULL_EIGEN3_API /** \returns the dot product of *this with other, with the Eigen2 convention that the dot product is linear in the first variable * (conjugating the second variable). Of course this only makes a difference in the complex case. * - * This method is only available in EIGEN2_SUPPORT mode. With EIGEN2_SUPPORT_STAGE1_FULL_EIGEN2_API and - * EIGEN2_SUPPORT_STAGE2_RESOLVE_API_CONFLICTS, the dot() method itself uses it. With EIGEN2_SUPPORT_STAGE3_FULL_EIGEN3_API, + * This method is only available in EIGEN2_SUPPORT mode. With EIGEN2_SUPPORT_STAGE10_FULL_EIGEN2_API and + * EIGEN2_SUPPORT_STAGE20_RESOLVE_API_CONFLICTS, the dot() method itself uses it. With EIGEN2_SUPPORT_STAGE30_FULL_EIGEN3_API, * the dot() method no longer uses it, but it's still available. * * \only_for_vectors -- cgit v1.2.3