* updated benchmark files according to recent renamings

* various improvements in BTL including trisolver and cholesky bench
This commit is contained in:
Gael Guennebaud
2008-07-27 11:39:47 +00:00
parent e9e5261664
commit 93115619c2
48 changed files with 1212 additions and 279 deletions

View File

@@ -29,6 +29,7 @@
#include <sys/time.h>
#include <unistd.h>
#include <cstdlib>
#include <numeric>
namespace Eigen
{
@@ -39,11 +40,11 @@ class BenchTimer
{
public:
BenchTimer() : m_best(1e12) {}
BenchTimer() { reset(); }
~BenchTimer() {}
inline void reset(void) {m_best = 1e12;}
inline void reset(void) {m_best = 1e6;}
inline void start(void) {m_start = getTime();}
inline void stop(void)
{