..
adjoint.cpp
Remove usage of #if EIGEN_TEST_PART_XX in unit tests that does not require them (splitting can thus be avoided for them)
2018-07-17 15:52:58 +02:00
AnnoyingScalar.h
bug #1577 : fix msvc compilation of unit test, msvc defines ptrdiff_t as long long
2018-07-30 14:52:15 +02:00
array_cwise.cpp
Rename test/array.cpp to test/array_cwise.cpp to avoid conflicts with the array header.
2018-09-20 18:07:32 +02:00
array_for_matrix.cpp
Extend unit tests for partial reductions
2018-10-09 22:54:54 +02:00
array_of_string.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
array_replicate.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
array_reverse.cpp
Remove usage of #if EIGEN_TEST_PART_XX in unit tests that does not require them (splitting can thus be avoided for them)
2018-07-17 15:52:58 +02:00
bandmatrix.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
basicstuff.cpp
Remove usage of #if EIGEN_TEST_PART_XX in unit tests that does not require them (splitting can thus be avoided for them)
2018-07-17 15:52:58 +02:00
bdcsvd.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
bicgstab.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
block.cpp
Add templated subVector<Vertical/Horizonal>(Index) aliases to col/row(Index) methods (plus subVectors<>() to retrieve the number of rows/columns)
2018-10-02 14:02:34 +02:00
boostmultiprec.cpp
Fix doxy and misc. typos
2018-08-01 21:34:47 -04:00
bug1213_main.cpp
bug1213.cpp
bug1213.h
cholesky.cpp
bug #785 : Make Cholesky decomposition work for empty matrices
2018-12-03 16:18:15 +01:00
cholmod_support.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
CMakeLists.txt
Simplify handling of tests that must fail to compile.
2018-12-12 15:48:36 +01:00
commainitializer.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
conjugate_gradient.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
conservative_resize.cpp
bug #1432 : fix conservativeResize for non-relocatable scalar types. For those we need to by-pass realloc routines and fall-back to allocate as new - copy - delete. The remaining problem is that we don't have any mechanism to accurately determine whether a type is relocatable or not, so currently let's be super conservative using either RequireInitialization or std::is_trivially_copyable
2018-07-18 23:33:07 +02:00
constructor.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
corners.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
ctorleak.cpp
check two ctors
2018-11-23 15:37:09 +01:00
dense_storage.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
denseLM.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
determinant.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
diagonal.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
diagonalmatrices.cpp
bug #520 : add diagmat +/- diagmat operators.
2018-10-10 23:38:22 +02:00
dontalign.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
dynalloc.cpp
Fix 256 bit packet size assumptions in unit tests.
2018-08-02 15:55:36 -07:00
eigen2support.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
eigensolver_complex.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
eigensolver_generalized_real.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
eigensolver_generic.cpp
Add regression test for bug #1174
2018-12-12 18:03:31 +01:00
eigensolver_selfadjoint.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
evaluator_common.h
evaluators.cpp
Add explicit regression test for bug #1622
2018-11-16 11:24:51 +01:00
exceptions.cpp
Generalize ScalarWithExceptions to a full non-copyable and trowing scalar type to be used in other unit tests.
2018-07-18 23:27:37 +02:00
fastmath.cpp
Relaxed fastmath unit test: if std::foo fails, then let's only trigger a warning is numext::foo fails too.
2018-10-11 09:45:30 +02:00
first_aligned.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
geo_alignedbox.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
geo_eulerangles.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
geo_homogeneous.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
geo_hyperplane.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
geo_orthomethods.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
geo_parametrizedline.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
geo_quaternion.cpp
bug #1573 : workaround gcc 4.7 and 4.8 bug
2018-08-27 10:38:20 +02:00
geo_transformations.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
gpu_basic.cu
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
gpu_common.h
Updates to fix HIP-clang specific compile errors.
2018-08-30 20:22:16 +00:00
half_float.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
hessenberg.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
householder.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
incomplete_cholesky.cpp
Remove usage of #if EIGEN_TEST_PART_XX in unit tests that does not require them (splitting can thus be avoided for them)
2018-07-17 15:52:58 +02:00
indexed_view.cpp
Fix max-size in indexed-view
2018-11-08 18:40:22 +01:00
inplace_decomposition.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
integer_types.cpp
Fix 'template argument uses local type'-warnings (when compiled in C++03 mode)
2018-09-10 18:57:28 +02:00
inverse.cpp
Remove usage of #if EIGEN_TEST_PART_XX in unit tests that does not require them (splitting can thus be avoided for them)
2018-07-17 15:52:58 +02:00
is_same_dense.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
jacobi.cpp
Move regression test to right unit test file
2018-11-21 15:59:47 +01:00
jacobisvd.cpp
Add default constructor to Bar to make test compile again with clang-3.8
2018-11-23 14:24:22 +01:00
klu_support.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
linearstructure.cpp
Remove usage of #if EIGEN_TEST_PART_XX in unit tests that does not require them (splitting can thus be avoided for them)
2018-07-17 15:52:58 +02:00
lscg.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
lu.cpp
Fix noise in lu unit test
2018-12-08 00:05:03 +01:00
main.h
Add support for thread local support on platforms that do not support it through emulation using a hash map.
2018-08-13 15:31:23 -07:00
mapped_matrix.cpp
Fix weird issue with MSVC 2013
2018-07-18 02:26:43 -07:00
mapstaticmethods.cpp
Fix numerous shadow-warnings for GCC<=4.8
2018-08-28 18:32:39 +02:00
mapstride.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
meta.cpp
Disable a bonus unit-test which is broken with gcc 4.7
2018-08-27 13:07:34 +02:00
metis_support.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
miscmatrices.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
mixingtypes.cpp
DIsable static assertions only when necessary and disable double-promotion warnings in that case as well
2018-07-26 00:01:24 +02:00
mpl2only.cpp
bug #1392 : fix #include <Eigen/Sparse> with mpl2-only
2017-02-11 10:35:01 +01:00
nesting_ops.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
nomalloc.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
nullary.cpp
bug #1630 : fix linspaced when requesting smaller packet size than default one.
2018-11-28 13:15:06 +01:00
num_dimensions.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
numext.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
packetmath.cpp
bug #1652 : implements a much more accurate version of vectorized sin/cos. This new version achieve same speed for SSE/AVX, and is slightly faster with FMA. Guarantees are as follows:
2019-01-09 15:25:17 +01:00
pardiso_support.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
pastix_support.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
permutationmatrices.cpp
bug #1609 : add inplace transposition unit test
2018-10-10 21:48:58 +02:00
prec_inverse_4x4.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
product_extra.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
product_large.cpp
Add explicit regression test for bug #1622
2018-11-16 11:24:51 +01:00
product_mmtr.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
product_notemporary.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
product_selfadjoint.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
product_small.cpp
Remove usage of #if EIGEN_TEST_PART_XX in unit tests that does not require them (splitting can thus be avoided for them)
2018-07-17 15:52:58 +02:00
product_symm.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
product_syrk.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
product_trmm.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
product_trmv.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
product_trsolve.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
product.h
bug #1562 : optimize evaluation of small products of the form s*A*B by rewriting them as: s*(A.lazyProduct(B)) to save a costly temporary. Measured speedup from 2x to 5x...
2018-07-02 11:41:09 +02:00
qr_colpivoting.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
qr_fullpivoting.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
qr.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
qtvector.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
rand.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
real_qz.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
redux.cpp
Fix bug in partial reduction of expressions requiring evaluation
2018-10-10 13:23:52 -07:00
ref.cpp
Fix maybe-uninitialized warning
2018-10-07 23:29:51 +02:00
reshape.cpp
Change the logic of A.reshaped<Order>() to be a simple alias to A.reshaped<Order>(AutoSize,fix<1>).
2018-10-03 11:41:47 +02:00
resize.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
rvalue_types.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
schur_complex.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
schur_real.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
selfadjoint.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
simplicial_cholesky.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
sizeof.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
sizeoverflow.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
smallvectors.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
sparse_basic.cpp
Fix noise in sparse_basic_3 (numerical cancellation)
2018-12-08 00:13:37 +01:00
sparse_block.cpp
bug #1432 : fix conservativeResize for non-relocatable scalar types. For those we need to by-pass realloc routines and fall-back to allocate as new - copy - delete. The remaining problem is that we don't have any mechanism to accurately determine whether a type is relocatable or not, so currently let's be super conservative using either RequireInitialization or std::is_trivially_copyable
2018-07-18 23:33:07 +02:00
sparse_permutations.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
sparse_product.cpp
Oopps, EIGEN_COMP_MSVC is not available before including Eigen.
2018-07-20 17:51:17 +02:00
sparse_ref.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
sparse_solver.h
Show call stack in case of failing sparse solving.
2018-10-16 00:43:44 +02:00
sparse_solvers.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
sparse_vector.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
sparse.h
sparseLM.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
sparselu.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
sparseqr.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
special_numbers.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
split_test_helper.h
Simplify handling and non-splitted tests and include split_test_helper.h instead of re-generating it. This also allows us to modify it without breaking existing build folder.
2018-07-16 18:55:40 +02:00
spqr_support.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
stable_norm.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
stddeque_overload.cpp
Fix gcc 8.1 warning: "maybe use uninitialized"
2018-10-07 21:54:49 +02:00
stddeque.cpp
Fix gcc 8.1 warning: "maybe use uninitialized"
2018-10-07 21:54:49 +02:00
stdlist_overload.cpp
Fix gcc 8.1 warning: "maybe use uninitialized"
2018-10-07 21:54:49 +02:00
stdlist.cpp
Fix gcc 8.1 warning: "maybe use uninitialized"
2018-10-07 21:54:49 +02:00
stdvector_overload.cpp
Fix gcc 8.1 warning: "maybe use uninitialized"
2018-10-07 21:54:49 +02:00
stdvector.cpp
Fix gcc 8.1 warning: "maybe use uninitialized"
2018-10-07 21:54:49 +02:00
stl_iterators.cpp
bug #1619 : fix mixing of const and non-const generic iterators
2018-11-09 21:45:10 +01:00
superlu_support.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
svd_common.h
Remove local Index typedef from unit-tests
2018-07-12 17:16:40 +02:00
svd_fill.h
Remove local Index typedef from unit-tests
2018-07-12 17:16:40 +02:00
swap.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
symbolic_index.cpp
fix c++11 deprecated warning
2018-10-08 18:26:05 +02:00
triangular.cpp
Fix doxy and misc. typos
2018-08-01 21:34:47 -04:00
umeyama.cpp
Fix double = bool !
2018-11-23 15:12:06 +01:00
umfpack_support.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
unalignedassert.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
unalignedcount.cpp
fix unalignedcount for avx512
2018-09-21 14:40:26 +02:00
upperbidiagonalization.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
vectorization_logic.cpp
fix test regarding AVX512 vectorization of complexes.
2018-12-06 16:55:00 +01:00
vectorwiseop.cpp
Avoid empty macro arguments
2018-10-10 08:23:40 +02:00
visitor.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00
zerosized.cpp
Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }.
2018-07-17 14:46:15 +02:00