X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?a=blobdiff_plain;f=ginac%2Fcontainer.h;h=f1c56afcfe92709414c27cccefdc34cbedbc6526;hb=319c9533e12eba2449001c47545e3c3cf48c482f;hp=04ab31d1110ce64f1af2946c4e7ac4dc51215dce;hpb=8f283de519668b70b2e675a7055c7f1bf7ba197c;p=ginac.git diff --git a/ginac/container.h b/ginac/container.h index 04ab31d1..f1c56afc 100644 --- a/ginac/container.h +++ b/ginac/container.h @@ -3,7 +3,7 @@ * Wrapper template for making GiNaC classes out of STL containers. */ /* - * GiNaC Copyright (C) 1999-2015 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2016 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 @@ -205,7 +205,6 @@ public: size_t nops() const override { return this->seq.size(); } ex op(size_t i) const override; ex & let_op(size_t i) override; - ex eval(int level = 0) const override; ex subs(const exmap & m, unsigned options = 0) const override; void read_archive(const archive_node &n, lst &sym_lst) override @@ -336,7 +335,6 @@ protected: void do_print_tree(const print_tree & c, unsigned level) const; void do_print_python(const print_python & c, unsigned level) const; void do_print_python_repr(const print_python_repr & c, unsigned level) const; - STLT evalchildren(int level) const; STLT subschildren(const exmap & m, unsigned options = 0) const; }; @@ -482,15 +480,6 @@ ex & container::let_op(size_t i) return *it; } -template