X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?a=blobdiff_plain;f=ginac%2Fwildcard.h;h=41a2157e5f5a90f3439967e5f99722810ce8da83;hb=f62443c1f2c678be0b6ff6ce58618f6e3b4cdfa8;hp=68fe2b99654c31fa1097cfdd91d9d88faad37737;hpb=da64e515abf7243bc4c84ca3631470931c4e6691;p=ginac.git diff --git a/ginac/wildcard.h b/ginac/wildcard.h index 68fe2b99..41a2157e 100644 --- a/ginac/wildcard.h +++ b/ginac/wildcard.h @@ -3,7 +3,7 @@ * Interface to GiNaC's wildcard objects. */ /* - * GiNaC Copyright (C) 1999-2005 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2017 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 @@ -20,14 +20,14 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef __GINAC_WILDCARD_H__ -#define __GINAC_WILDCARD_H__ +#ifndef GINAC_WILDCARD_H +#define GINAC_WILDCARD_H #include "ex.h" +#include "archive.h" namespace GiNaC { - /** This class acts as a wildcard for subs(), match(), has() and find(). An * integer label is used to identify different wildcards. */ class wildcard : public basic @@ -41,10 +41,14 @@ public: // functions overriding virtual functions from base classes public: - bool match(const ex & pattern, lst & repl_lst) const; + bool match(const ex & pattern, exmap& repl_lst) const override; + /** Save (a.k.a. serialize) object into archive. */ + void archive(archive_node& n) const override; + /** Read (a.k.a. deserialize) object from archive. */ + void read_archive(const archive_node& n, lst& syms) override; protected: - unsigned calchash() const; + unsigned calchash() const override; // non-virtual functions in this class public: @@ -59,16 +63,11 @@ protected: private: unsigned label; /**< Label used to distinguish different wildcards */ }; +GINAC_DECLARE_UNARCHIVER(wildcard); // utility functions -/** Specialization of is_exactly_a(obj) for wildcard objects. */ -template<> inline bool is_exactly_a(const basic & obj) -{ - return obj.tinfo()==TINFO_wildcard; -} - /** Create a wildcard object with the specified label. */ inline ex wild(unsigned label = 0) { @@ -80,4 +79,4 @@ bool haswild(const ex & x); } // namespace GiNaC -#endif // ndef __GINAC_WILDCARD_H__ +#endif // ndef GINAC_WILDCARD_H