Move Index2D trait to the matrix module

This commit is contained in:
Andrew Cassidy 2023-05-21 01:43:25 -07:00
parent 11e6b8c87f
commit bc1b3f199d
3 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,6 @@
extern crate core;
pub mod decompose;
pub mod index;
mod matrix;
mod util;

View File

@ -1,4 +1,4 @@
use crate::index::Index2D;
use index::Index2D;
use num_traits::{NumOps, One, Zero};
use std::fmt::Debug;
@ -7,6 +7,7 @@ use std::iter::{zip, Flatten, Product, Sum};
use std::ops::{Add, AddAssign, Deref, DerefMut, Index, IndexMut, Mul, MulAssign, Neg};
pub mod ops;
mod index;
/// A 2D array of values which can be operated upon.
///