Remove unused imports
Fixes compile warnings
This commit is contained in:
parent
32baeea31f
commit
ec3385ceab
3 changed files with 1 additions and 3 deletions
|
@ -21,7 +21,6 @@ use std::ops::*;
|
||||||
|
|
||||||
use rand::{Rand, Rng};
|
use rand::{Rand, Rng};
|
||||||
use rand::distributions::range::SampleRange;
|
use rand::distributions::range::SampleRange;
|
||||||
use num_traits::Float;
|
|
||||||
use num_traits::cast;
|
use num_traits::cast;
|
||||||
|
|
||||||
use structure::*;
|
use structure::*;
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
use num_traits::{Zero, One};
|
use num_traits::{Zero};
|
||||||
use num_traits::cast;
|
use num_traits::cast;
|
||||||
|
|
||||||
use structure::Angle;
|
use structure::Angle;
|
||||||
|
|
|
@ -17,7 +17,6 @@ use std::mem;
|
||||||
use std::ops::*;
|
use std::ops::*;
|
||||||
|
|
||||||
use rand::{Rand, Rng};
|
use rand::{Rand, Rng};
|
||||||
use num_traits::Float;
|
|
||||||
use num_traits::cast;
|
use num_traits::cast;
|
||||||
|
|
||||||
use structure::*;
|
use structure::*;
|
||||||
|
|
Loading…
Reference in a new issue