
/*****************************************************************************\

MODULE: mat_poly_ZZ

SUMMARY:

Routine for computing the characteristic polynomial of a matrix over ZZ.



\*****************************************************************************/


#include "mat_ZZ.h"
#include "ZZX.h"

void CharPoly(ZZX& f, const matrix(ZZ)& M);
// f = characteristic polynomial of M;
// f must be monic.


