mirror of https://github.com/CGAL/cgal
rm name look up conlicts
This commit is contained in:
parent
45329f636c
commit
e395bb743c
|
|
@ -1397,11 +1397,11 @@ void Polynomial<NT>::output_maple(std::ostream& os) const {
|
|||
}
|
||||
|
||||
int i = p.degree();
|
||||
print_maple_monomial(os, p[i], varname, i);
|
||||
CGAL::print_maple_monomial(os, p[i], varname, i);
|
||||
while (--i >= 0) {
|
||||
if (p[i] != NT(0)) {
|
||||
os << " + ";
|
||||
print_maple_monomial(os, p[i], varname, i);
|
||||
CGAL::print_maple_monomial(os, p[i], varname, i);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue