Skip to content

Commit f8fd575

Browse files
committed
explicit typing
1 parent 1a1a1c7 commit f8fd575

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/cinolib/matrix_eigenfunctions.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ bool matrix_eigenfunctions(const Eigen::SparseMatrix<double> & m,
6565
eigs.compute(Spectra::SortRule::LargestMagn); // largest beacuse it's inverted
6666
if(eigs.info()!=Spectra::CompInfo::Successful) return false;
6767
// assemble output data
68-
auto basis_func = eigs.eigenvectors();
68+
Eigen::MatrixXd basis_func = eigs.eigenvectors();
6969
for(int fid=0; fid<basis_func.cols(); ++fid)
7070
{
7171
double min = max_double;

0 commit comments

Comments
 (0)