Fix benchmarks

The extern crate declarations had to be adjusted.
This commit is contained in:
Eduard Bopp 2015-03-29 13:32:14 +02:00
parent 0362d0d875
commit cbe90b1e4e
4 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
#![feature(test)]
extern crate test;
extern crate "nalgebra" as na;
extern crate nalgebra as na;
use test::Bencher;
use na::{DVec, DMat};

View File

@ -2,7 +2,7 @@
extern crate test;
extern crate rand;
extern crate "nalgebra" as na;
extern crate nalgebra as na;
use rand::{IsaacRng, Rng};
use test::Bencher;

View File

@ -2,7 +2,7 @@
extern crate test;
extern crate rand;
extern crate "nalgebra" as na;
extern crate nalgebra as na;
use rand::{IsaacRng, Rng};
use test::Bencher;

View File

@ -2,7 +2,7 @@
extern crate test;
extern crate rand;
extern crate "nalgebra" as na;
extern crate nalgebra as na;
use rand::{IsaacRng, Rng};
use test::Bencher;