Compare commits

...

2 Commits

4 changed files with 3 additions and 3 deletions

View File

@ -7,5 +7,5 @@
</script> </script>
<script type="text/javascript" async <script type="text/javascript" async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/MathJax.js?config=TeX-MML-AM_CHTML"> src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/MathJax.js?config=AM_CHTML">
</script> </script>

View File

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

View File

@ -1,4 +1,4 @@
use crate::index::Index2D; use index::Index2D;
use num_traits::{NumOps, One, Zero}; use num_traits::{NumOps, One, Zero};
use std::fmt::Debug; 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}; use std::ops::{Add, AddAssign, Deref, DerefMut, Index, IndexMut, Mul, MulAssign, Neg};
pub mod ops; pub mod ops;
mod index;
/// A 2D array of values which can be operated upon. /// A 2D array of values which can be operated upon.
/// ///