Fix bug #595: typo

This commit is contained in:
Gael Guennebaud 2013-06-10 13:10:36 +02:00
parent a4a575e2a3
commit 05c9be65ce

View File

@ -99,7 +99,7 @@ int main(int argc, char *argv[])
SPMV_BENCH(res = dm * sm);
std::cout << "Dense " << t.value()/repeats << "\t";
SPMV_BENCHres = dm.transpose() * sm);
SPMV_BENCH(res = dm.transpose() * sm);
std::cout << t.value()/repeats << endl;
}
#endif