nalgebra/benches/lib.rs

20 lines
393 B
Rust
Raw Normal View History

#![feature(test)]
2017-08-16 00:24:34 +08:00
#![allow(unused_macros)]
2018-02-02 19:26:35 +08:00
extern crate nalgebra as na;
extern crate rand;
2018-02-02 19:26:35 +08:00
extern crate test;
extern crate typenum;
use na::DMatrix;
2018-10-22 13:00:10 +08:00
use rand::{IsaacRng, Rng};
mod core;
mod geometry;
2018-10-22 13:00:10 +08:00
mod linalg;
fn reproductible_dmatrix(nrows: usize, ncols: usize) -> DMatrix<f64> {
let mut rng = IsaacRng::new_unseeded();
DMatrix::<f64>::from_fn(nrows, ncols, |_, _| rng.gen())
}