Change std::rand to rand in lower_triangular.rs

This commit is contained in:
Peter Nguyen 2014-03-13 19:35:01 -04:00
parent 503b567b27
commit fc10742b5c
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
use std::rand::Rand;
use std::rand;
use rand::Rand;
use rand;
use std::num::{One, Zero};
use std::vec;