Merge pull request #104 from aepsil0n/fix-benchmark

Make the benchmarks compile again
This commit is contained in:
Sébastien Crozet 2015-03-27 00:19:46 +01:00
commit b2af1fd641
1 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
#![feature(test)]
extern crate test; extern crate test;
extern crate rand; extern crate rand;
extern crate "nalgebra" as na; extern crate nalgebra as na;
use rand::{IsaacRng, Rng}; use rand::{IsaacRng, Rng};
use test::Bencher; use test::Bencher;