Fix warnings.
This commit is contained in:
parent
83f25e0552
commit
15d1fa0b8b
1
Makefile
1
Makefile
|
@ -20,6 +20,7 @@ distcheck:
|
||||||
git clone --recursive . $(tmp)
|
git clone --recursive . $(tmp)
|
||||||
make -C $(tmp)
|
make -C $(tmp)
|
||||||
make -C $(tmp) test
|
make -C $(tmp) test
|
||||||
|
make -C $(tmp) bench
|
||||||
rm -rf $(tmp)
|
rm -rf $(tmp)
|
||||||
|
|
||||||
.PHONY:doc
|
.PHONY:doc
|
||||||
|
|
|
@ -3,10 +3,8 @@
|
||||||
extern crate test;
|
extern crate test;
|
||||||
extern crate "nalgebra" as na;
|
extern crate "nalgebra" as na;
|
||||||
|
|
||||||
use std::rand::{IsaacRng, Rng};
|
|
||||||
use test::Bencher;
|
use test::Bencher;
|
||||||
use na::{Inv};
|
use na::{DVec, DMat};
|
||||||
use na::{Vec2, Vec3, Vec4, Vec5, Vec6, DVec, Mat2, Mat3, Mat4, Mat5, Mat6, DMat};
|
|
||||||
|
|
||||||
macro_rules! bench_mul_dmat(
|
macro_rules! bench_mul_dmat(
|
||||||
($bh: expr, $nrows: expr, $ncols: expr) => {
|
($bh: expr, $nrows: expr, $ncols: expr) => {
|
||||||
|
|
Loading…
Reference in New Issue