polynomial irreducibility test in GF2

This commit is contained in:
2024-01-01 10:58:30 +01:00
parent 1e00570f66
commit 9bceebdd29
5 changed files with 81 additions and 3 deletions

View File

@@ -249,6 +249,12 @@ resize(n,false);
for(int i=0; i<=n; ++i) (*this)[i] = (T) binom(n,i);
}
template <typename T>
Polynomial<T> Polynomial<T>::composition(const Polynomial &rhs) const
{
return value(*this,rhs);
}
/***************************************************************************//**
* forced instantization in the corresponding object file