Document internal namespace

This commit is contained in:
Chen-Pang He 2014-07-05 21:50:05 +08:00
parent 8ee38d2db6
commit 1a817d3b70
2 changed files with 22 additions and 0 deletions

View File

@ -220,6 +220,9 @@
/** \brief Namespace containing all symbols from the %Eigen library. */
namespace Eigen {
/** \brief Namespace containing low-level routines from the %Eigen library. */
namespace internal {}
inline static const char *SimdInstructionSetsInUse(void) {
#if defined(EIGEN_VECTORIZE_AVX)
return "AVX SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2";

View File

@ -0,0 +1,19 @@
// This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2014 Chen-Pang He <jdh8@ms63.hinet.net>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
// As its name suggests, this file is intended to be read by Doxygen.
// There is nothing defined so we need no #include guard.
//! \brief Namespace containing all symbols from the %Eigen library.
namespace Eigen {
//! \brief Namespace containing low-level routines from the %Eigen library.
namespace internal {}
}