First official checkin.
5 * Created by Jens Alfke on 9/2/09.
6 * Copyright 2009 Jens Alfke. All rights reserved.
7 * BSD-Licensed: See the file "LICENSE.txt" for details.
10 #include <gtest/gtest.h> // Get gtest from <http://code.google.com/p/googletest/>
16 std::ostream& operator<< (std::ostream &out, const Blob&);
18 void shuffle(int a[], int n, unsigned seed =0);
27 Timer (const char *operation, int divisor =1);
29 double elapsed() {return now() - _time;}
32 const char *_operation;
34 double _cpuTime, _time;