Update to the last Rust.
The `Bounded` trait is no longer on the Rust prelude.
This commit is contained in:
parent
98b2aa8b9c
commit
096cce413f
|
@ -1,6 +1,6 @@
|
|||
//! Traits giving structural informations on linear algebra objects or the space they live in.
|
||||
|
||||
use std::num::Zero;
|
||||
use std::num::{Zero, Bounded};
|
||||
use std::vec::{VecIterator, VecMutIterator};
|
||||
use traits::operations::{RMul, LMul, ScalarAdd, ScalarSub};
|
||||
use traits::geometry::{Dot, Norm, UniformSphereSample};
|
||||
|
|
Loading…
Reference in New Issue