Fix benchmarks
The extern crate declarations had to be adjusted.
This commit is contained in:
parent
0362d0d875
commit
cbe90b1e4e
|
@ -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};
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue