Changes for Cargo edition 2018
This commit is contained in:
parent
d52fb6c257
commit
2824a1123f
@ -21,9 +21,9 @@ extern crate test;
|
||||
use std::{f32, f64};
|
||||
use std::ops::{Add, Sub};
|
||||
|
||||
use coverage::Coverage;
|
||||
use mark_matrix::MarkMatrix;
|
||||
pub use weight_matrix::WeightMatrix;
|
||||
use crate::coverage::Coverage;
|
||||
use crate::mark_matrix::MarkMatrix;
|
||||
pub use crate::weight_matrix::WeightMatrix;
|
||||
|
||||
use ndarray::Array2;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
use SquareMatrix;
|
||||
use crate::SquareMatrix;
|
||||
|
||||
#[derive(Clone, Copy, PartialEq, Eq, Debug)]
|
||||
#[repr(u8)]
|
||||
|
@ -1,6 +1,6 @@
|
||||
use WeightNum;
|
||||
use Weights;
|
||||
use SquareMatrix;
|
||||
use crate::WeightNum;
|
||||
use crate::Weights;
|
||||
use crate::SquareMatrix;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct WeightMatrix<T: WeightNum> {
|
||||
|
Loading…
Reference in New Issue
Block a user