Skip to content

Commit

Permalink
remove minimal polynomial from matrix trait
Browse files Browse the repository at this point in the history
  • Loading branch information
redshiftzero committed Jul 5, 2023
1 parent 3516b31 commit 3bb36c5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
5 changes: 0 additions & 5 deletions poseidon-parameters/src/matrix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -311,11 +311,6 @@ impl<F: PrimeField> SquareMatrixOperations<F> for SquareMatrix<F> {
}
}
}

/// Compute the minimal polynomial of the matrix.
fn min_poly(&self) -> Polynomial<F> {
unimplemented!("min_poly not yet implemented")
}
}

/// Multiply scalar by SquareMatrix
Expand Down
2 changes: 0 additions & 2 deletions poseidon-parameters/src/matrix_ops.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,6 @@ pub trait SquareMatrixOperations<F> {
fn cofactors(&self) -> Self;
/// Compute the matrix determinant
fn determinant(&self) -> F;
/// Compute the minimal polynomial
fn min_poly(&self) -> Polynomial<F>;
}

#[cfg(test)]
Expand Down

0 comments on commit 3bb36c5

Please sign in to comment.