Use SquareMatrix::ColumnRow instead of Matrix::Column
This commit is contained in:
parent
0014bb22a5
commit
23c632acca
1 changed files with 1 additions and 1 deletions
|
@ -325,7 +325,7 @@ pub trait SquareMatrix where
|
||||||
Row = <Self as SquareMatrix>::ColumnRow,
|
Row = <Self as SquareMatrix>::ColumnRow,
|
||||||
Transpose = Self,
|
Transpose = Self,
|
||||||
>,
|
>,
|
||||||
Self: Mul<<Self as Matrix>::Column, Output = <Self as Matrix>::Column>,
|
Self: Mul<<Self as SquareMatrix>::ColumnRow, Output = <Self as SquareMatrix>::ColumnRow>,
|
||||||
Self: Mul<Self, Output = Self>,
|
Self: Mul<Self, Output = Self>,
|
||||||
{
|
{
|
||||||
// FIXME: Will not be needed once equality constraints in where clauses are implemented
|
// FIXME: Will not be needed once equality constraints in where clauses are implemented
|
||||||
|
|
Loading…
Reference in a new issue