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::{f32, f64};
|
||||||
use std::ops::{Add, Sub};
|
use std::ops::{Add, Sub};
|
||||||
|
|
||||||
use coverage::Coverage;
|
use crate::coverage::Coverage;
|
||||||
use mark_matrix::MarkMatrix;
|
use crate::mark_matrix::MarkMatrix;
|
||||||
pub use weight_matrix::WeightMatrix;
|
pub use crate::weight_matrix::WeightMatrix;
|
||||||
|
|
||||||
use ndarray::Array2;
|
use ndarray::Array2;
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
use SquareMatrix;
|
use crate::SquareMatrix;
|
||||||
|
|
||||||
#[derive(Clone, Copy, PartialEq, Eq, Debug)]
|
#[derive(Clone, Copy, PartialEq, Eq, Debug)]
|
||||||
#[repr(u8)]
|
#[repr(u8)]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
use WeightNum;
|
use crate::WeightNum;
|
||||||
use Weights;
|
use crate::Weights;
|
||||||
use SquareMatrix;
|
use crate::SquareMatrix;
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct WeightMatrix<T: WeightNum> {
|
pub struct WeightMatrix<T: WeightNum> {
|
||||||
|
Loading…
Reference in New Issue
Block a user