File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -238,8 +238,7 @@ template <class T> Polynomial<T> Polynomial<T>::TranslateOfPoly(const Vector<T>
238238}
239239
240240template <class T>
241- Polynomial<T> Polynomial<T>::MonoInNewCoordinates(const Monomial<T> &m,
242- const Matrix<T> &M) const
241+ Polynomial<T> Polynomial<T>::MonoInNewCoordinates(const Monomial<T> &m, const Matrix<T> &M) const
243242{
244243 Polynomial<T> answer(m_space, static_cast<T>(1));
245244
@@ -258,8 +257,7 @@ Polynomial<T> Polynomial<T>::MonoInNewCoordinates(const Monomial<T> &m,
258257 return answer;
259258}
260259
261- template <class T>
262- Polynomial<T> Polynomial<T>::PolyInNewCoordinates(const Matrix<T> &M) const
260+ template <class T> Polynomial<T> Polynomial<T>::PolyInNewCoordinates(const Matrix<T> &M) const
263261{
264262 Polynomial<T> answer(m_space);
265263 for (const auto &term : m_terms) {
You can’t perform that action at this time.
0 commit comments