]> www.ginac.de Git - ginac.git/blobdiff - ginac/exprseq.h
Univariate Hensel lifting now uses upoly.
[ginac.git] / ginac / exprseq.h
index f28b1f763caa0c4024886726f146acbe373d426d..ea26f858241ec1fccb6c09764b585919ffe9728a 100644 (file)
@@ -3,7 +3,7 @@
  *  Definition of GiNaC's exprseq. */
 
 /*
- *  GiNaC Copyright (C) 1999-2004 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2008 Johannes Gutenberg University Mainz, Germany
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -17,7 +17,7 @@
  *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
 #ifndef __GINAC_EXPRSEQ_H__
@@ -31,18 +31,9 @@ namespace GiNaC {
 
 typedef container<std::vector> exprseq;
 
-/** Specialization of container::get_tinfo() for exprseq. */
-template<> inline unsigned exprseq::get_tinfo() { return TINFO_exprseq; }
-
 // defined in exprseq.cpp
 template<> bool exprseq::info(unsigned inf) const;
 
-/** Specialization of is_exactly_a<exprseq>(obj) for exprseq objects. */
-template<> inline bool is_exactly_a<exprseq>(const basic & obj)
-{
-       return obj.tinfo() == TINFO_exprseq;
-}
-
 } // namespace GiNaC
 
 #endif // ndef __GINAC_EXPRSEQ_H__