Compare commits

..

No commits in common. "bc1b3f199dd7e120e0671142a3533c1d904935aa" and "58ff79f64936c4436d4ad213905841bdef62aad9" have entirely different histories.

4 changed files with 3 additions and 3 deletions

View File

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

View File

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

View File

@ -1,4 +1,4 @@
use index::Index2D;
use crate::index::Index2D;
use num_traits::{NumOps, One, Zero};
use std::fmt::Debug;
@ -7,7 +7,6 @@ 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.
///