mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
fixing a lot of typos
This commit is contained in:
committed by
Charles Schlosser
parent
c29c800126
commit
6331da95eb
@@ -152,7 +152,7 @@ const unsigned int LvalueBit = 0x20;
|
||||
* Means that the underlying array of coefficients can be directly accessed as a plain strided array. The memory layout
|
||||
* of the array of coefficients must be exactly the natural one suggested by rows(), cols(),
|
||||
* outerStride(), innerStride(), and the RowMajorBit. This rules out expressions such as Diagonal, whose coefficients,
|
||||
* though referencable, do not have such a regular memory layout.
|
||||
* though referenceable, do not have such a regular memory layout.
|
||||
*
|
||||
* See the comment on LvalueBit for an explanation of how LvalueBit and DirectAccessBit are mutually orthogonal.
|
||||
*/
|
||||
|
||||
@@ -263,8 +263,8 @@ static const auto fix();
|
||||
* }
|
||||
* \endcode
|
||||
* In this example, the function Eigen::seqN knows that the second argument is expected to be a size.
|
||||
* If the passed compile-time value N equals Eigen::Dynamic, then the proxy object returned by fix will be dissmissed,
|
||||
* and converted to an Eigen::Index of value \c n. Otherwise, the runtime-value \c n will be dissmissed, and the
|
||||
* If the passed compile-time value N equals Eigen::Dynamic, then the proxy object returned by fix will be dismissed,
|
||||
* and converted to an Eigen::Index of value \c n. Otherwise, the runtime-value \c n will be dismissed, and the
|
||||
* returned ArithmeticSequence will be of the exact same type as <tt> seqN(0,fix<N>) </tt>.
|
||||
*
|
||||
* \sa fix, seqN, class ArithmeticSequence
|
||||
|
||||
@@ -212,7 +212,7 @@
|
||||
|
||||
/// \internal EIGEN_COMP_FCC set to FCC version if the compiler is Fujitsu Compiler (traditional mode)
|
||||
/// \note The Fujitsu C/C++ compiler uses the traditional mode based
|
||||
/// on EDG g++ 6.1 by default or if envoked with the -Nnoclang flag
|
||||
/// on EDG g++ 6.1 by default or if invoked with the -Nnoclang flag
|
||||
#if defined(__FUJITSU)
|
||||
#define EIGEN_COMP_FCC (__FCC_major__ * 100 + __FCC_minor__ * 10 + __FCC_patchlevel__)
|
||||
#else
|
||||
@@ -221,7 +221,7 @@
|
||||
|
||||
/// \internal EIGEN_COMP_CLANGFCC set to FCC version if the compiler is Fujitsu Compiler (Clang mode)
|
||||
/// \note The Fujitsu C/C++ compiler uses the non-traditional mode
|
||||
/// based on Clang 7.1.0 if envoked with the -Nclang flag
|
||||
/// based on Clang 7.1.0 if invoked with the -Nclang flag
|
||||
#if defined(__CLANG_FUJITSU)
|
||||
#define EIGEN_COMP_CLANGFCC (__FCC_major__ * 100 + __FCC_minor__ * 10 + __FCC_patchlevel__)
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user