aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Expand)AuthorAge
* rename Block to DynBlock and rework API to make place forGravatar Benoit Jacob2007-12-05
* Rework the unit-tests to use lower precision, so as to eliminateGravatar Benoit Jacob2007-12-03
* Much more convenient, less over-engineered NumTraits. Done during this KDE-Ed...Gravatar Benoit Jacob2007-12-02
* add more unit-tests (covering transpose, conjugate, adjoint, dot product...)Gravatar Benoit Jacob2007-11-28
* rename Object -> MatrixBaseGravatar Benoit Jacob2007-11-27
* Matrix(int) constructor is only for vectors.Gravatar Benoit Jacob2007-11-26
* Matrix(int,int) constructor no longer takes default arguments.Gravatar Benoit Jacob2007-11-26
* - improve and comment the "BasicStuff" test.Gravatar Benoit Jacob2007-11-26
* Fix damage done by automatic search-and-replaceGravatar Benoit Jacob2007-11-25
* add cast<newtype>() function to casts the scalars to another type.Gravatar Benoit Jacob2007-10-19
* clarify the situation with EI_INHERIT_ASSIGNMENT_OPERATORSGravatar Benoit Jacob2007-10-15
* make shameless use of const_cast to reduce code redundancy. This means Eigen2Gravatar Benoit Jacob2007-10-15
* Merge WrapArray into FromArray. Less code. The downside is that we're using o...Gravatar Benoit Jacob2007-10-14
* add fromArray() and wrapArray().Gravatar Benoit Jacob2007-10-14
* restrict identity() to square matrices; small change helping g++ optimize.Gravatar Benoit Jacob2007-10-14
* add zero() and identity() static methods, update unit-testsGravatar Benoit Jacob2007-10-14
* remove support for type std::complex<int>. Simplify NumTraits accordingly.Gravatar Benoit Jacob2007-10-14
* mark more methods as const. also rename, Numeric.h->NumTraits.hGravatar Benoit Jacob2007-10-13
* implement the first _real_ unit-tests, testing the results for correctness in...Gravatar Benoit Jacob2007-10-13
* add unary operator-(), computing the opposite.Gravatar Benoit Jacob2007-10-13
* split MatrixOps.h into 3 files; rename ScalarOps.h; remove useless #includes.Gravatar Benoit Jacob2007-10-13
* some renaming in the fuzzy compares, and in the multiplicationsGravatar Benoit Jacob2007-10-13
* rework the numeric traits now that we're using a namespace and no prefixGravatar Benoit Jacob2007-10-12
* SVN_SILENT:Gravatar Benoit Jacob2007-10-12
* simplify the new USING_EIGEN_DATA_TYPES macroGravatar Benoit Jacob2007-10-11
* Democracy 1 - 0 DictatorshipGravatar Benoit Jacob2007-10-11
* fix big bug in loop unrollingGravatar Benoit Jacob2007-10-10
* fix dot product, add norm/norm2/normalizedGravatar Benoit Jacob2007-10-10
* add norm() and norm2(); some polishingGravatar Benoit Jacob2007-10-08
* reverse certain inner loops. Now the benchmark runs in 3.5s instead of 5.5s b...Gravatar Benoit Jacob2007-10-08
* add dot product, extend meta unrolling everywhereGravatar Benoit Jacob2007-10-08
* reorganize meta loop unrolling, add Trace (meta-unrolled), fix compilation is...Gravatar Benoit Jacob2007-10-07
* reorganization of headers, part 2/2...Gravatar Benoit Jacob2007-10-07
* reorganisation of headers, commit47b935fc42cbf2ca992d8a270bc1b0fc97d1f6bcGravatar Benoit Jacob2007-10-07
* aargh, had forgotten to 'svn add' a file. Yeah, 'svn st' is my friend, i know...Gravatar Benoit Jacob2007-10-07
* add matrix conjugation and adjunction.Gravatar Benoit Jacob2007-10-07
* Introduce Numeric Traits, with fuzzy compares, random numbers, etc.Gravatar Benoit Jacob2007-10-07
* Add matrix transpositionGravatar Benoit Jacob2007-10-01
* Move the meta loop unrolling to a separate file, Loop.hGravatar Benoit Jacob2007-10-01
* Split Row and Column into separate files.Gravatar Benoit Jacob2007-10-01
* remove useless typedefsGravatar Benoit Jacob2007-10-01
* Michael was right, it's best to base the unrolling limit on the product Rows*...Gravatar Benoit Jacob2007-10-01
* - add copyright line for Michael OlbrichGravatar Benoit Jacob2007-10-01
* adapt to coding style used elsewhere in eigen2Gravatar Benoit Jacob2007-10-01
* Generic loop unrolling with template metaprograms. It seems to be as fast asGravatar Michael Olbrich2007-09-30
* for dynamic size matrix (Rows|Cols)AtCompileTime is always EiDynamic and notGravatar Michael Olbrich2007-09-30
* Fix super-nasty bug in the declaration of the storage array of fixed-size mat...Gravatar Benoit Jacob2007-09-30
* Get rid of a nasty const_cast by introducing a MatrixConstRef class.Gravatar Benoit Jacob2007-09-29
* make matrix multiplication do immediate evaluation; add lazyMul() for the old...Gravatar Benoit Jacob2007-09-29
* some reorganization leading to simpler expression treesGravatar Benoit Jacob2007-09-28