Remove unused commented out code

This commit is contained in:
Egor Larionov 2020-05-22 21:34:53 -07:00 committed by Dzmitry Malyshau
parent 753773cfcd
commit 9dcd9fc3dd

View file

@ -429,9 +429,6 @@ where
// FIXME: Ugly type signatures - blocked by rust-lang/rust#24092 // FIXME: Ugly type signatures - blocked by rust-lang/rust#24092
Self: Index<usize, Output = <Self as Matrix>::Column>, Self: Index<usize, Output = <Self as Matrix>::Column>,
Self: IndexMut<usize, Output = <Self as Matrix>::Column>, Self: IndexMut<usize, Output = <Self as Matrix>::Column>,
//Self: approx::AbsDiffEq<Epsilon = <Self as VectorSpace>::Scalar>,
//Self: approx::RelativeEq<Epsilon = <Self as VectorSpace>::Scalar>,
//Self: approx::UlpsEq<Epsilon = <Self as VectorSpace>::Scalar>,
{ {
/// The row vector of the matrix. /// The row vector of the matrix.
type Row: VectorSpace<Scalar = Self::Scalar> + Array<Element = Self::Scalar>; type Row: VectorSpace<Scalar = Self::Scalar> + Array<Element = Self::Scalar>;