minor fix

This commit is contained in:
Jiri Pittner 2021-06-10 17:46:35 +02:00
parent 30861fdac6
commit e57d8fde1c
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ namespace LA {
template <typename T>
void Polynomial<T>::polydiv(const Polynomial &rhs, Polynomial &q, Polynomial &r) const
{
if(rhs[rhs.degree()]==0) laerror("division by a polynomial with zero leading coefficient - simplify it first");
if(rhs[rhs.degree()]==(T)0) laerror("division by a polynomial with zero leading coefficient - simplify it first");
if(rhs.degree()==0) //scalar division
{
q= *this/rhs[0];