X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fexpairseq.h;h=a099c7a90d0235b8ee8d781e1e07547099a3ecea;hp=6e98bbfcc70572ae56aa1b55a88f8380dc858714;hb=9985e28882888663fd8e43e8c59728ddcad552d0;hpb=c532971f9e99886781437912ae1655719284ac2f diff --git a/ginac/expairseq.h b/ginac/expairseq.h index 6e98bbfc..a099c7a9 100644 --- a/ginac/expairseq.h +++ b/ginac/expairseq.h @@ -3,7 +3,7 @@ * Interface to sequences of expression pairs. */ /* - * GiNaC Copyright (C) 1999-2015 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2020 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 @@ -26,18 +26,12 @@ #include "expair.h" #include "indexed.h" -// CINT needs to work properly with and -#include -#include -#include #include namespace GiNaC { typedef std::vector epvector; ///< expair-vector typedef epvector::iterator epp; ///< expair-vector pointer -typedef std::list epplist; ///< list of expair-vector pointers -typedef std::vector epplistvector; ///< vector of epplist /** Complex conjugate every element of an epvector. Returns zero if this * does not change anything. */ @@ -61,34 +55,34 @@ public: expairseq(const ex & lh, const ex & rh); expairseq(const exvector & v); expairseq(const epvector & v, const ex & oc, bool do_index_renaming = false); - expairseq(std::auto_ptr, const ex & oc, bool do_index_renaming = false); + expairseq(epvector && vp, const ex & oc, bool do_index_renaming = false); // functions overriding virtual functions from base classes public: - unsigned precedence() const {return 10;} - bool info(unsigned inf) const; - size_t nops() const; - ex op(size_t i) const; - ex map(map_function & f) const; - ex eval(int level=0) const; - ex to_rational(exmap & repl) const; - ex to_polynomial(exmap & repl) const; - bool match(const ex & pattern, exmap& repl_lst) const; - ex subs(const exmap & m, unsigned options = 0) const; - ex conjugate() const; + unsigned precedence() const override {return 10;} + bool info(unsigned inf) const override; + size_t nops() const override; + ex op(size_t i) const override; + ex map(map_function & f) const override; + ex eval() const override; + ex to_rational(exmap & repl) const override; + ex to_polynomial(exmap & repl) const override; + bool match(const ex & pattern, exmap& repl_lst) const override; + ex subs(const exmap & m, unsigned options = 0) const override; + ex conjugate() const override; - void archive(archive_node& n) const; - void read_archive(const archive_node& n, lst& syms); + void archive(archive_node& n) const override; + void read_archive(const archive_node& n, lst& syms) override; protected: - bool is_equal_same_type(const basic & other) const; - unsigned return_type() const; - unsigned calchash() const; - ex expand(unsigned options=0) const; + bool is_equal_same_type(const basic & other) const override; + unsigned return_type() const override; + unsigned calchash() const override; + ex expand(unsigned options=0) const override; // new virtual functions which can be overridden by derived classes protected: virtual ex thisexpairseq(const epvector & v, const ex & oc, bool do_index_renaming = false) const; - virtual ex thisexpairseq(std::auto_ptr vp, const ex & oc, bool do_index_renaming = false) const; + virtual ex thisexpairseq(epvector && vp, const ex & oc, bool do_index_renaming = false) const; virtual void printseq(const print_context & c, char delim, unsigned this_precedence, unsigned upper_precedence) const; @@ -110,7 +104,6 @@ protected: protected: void do_print(const print_context & c, unsigned level) const; void do_print_tree(const print_tree & c, unsigned level) const; - void construct_from_2_ex_via_exvector(const ex & lh, const ex & rh); void construct_from_2_ex(const ex & lh, const ex & rh); void construct_from_2_expairseq(const expairseq & s1, const expairseq & s2); @@ -118,14 +111,15 @@ protected: const ex & e); void construct_from_exvector(const exvector & v); void construct_from_epvector(const epvector & v, bool do_index_renaming = false); + void construct_from_epvector(epvector && v, bool do_index_renaming = false); void make_flat(const exvector & v); void make_flat(const epvector & v, bool do_index_renaming = false); void canonicalize(); void combine_same_terms_sorted_seq(); bool is_canonical() const; - std::auto_ptr expandchildren(unsigned options) const; - std::auto_ptr evalchildren(int level) const; - std::auto_ptr subschildren(const exmap & m, unsigned options = 0) const; + epvector expandchildren(unsigned options) const; + epvector evalchildren() const; + epvector subschildren(const exmap & m, unsigned options = 0) const; // member variables @@ -171,7 +165,7 @@ class make_flat_inserter return x; sort(dummies_of_factor.begin(), dummies_of_factor.end(), ex_is_less()); ex new_factor = rename_dummy_indices_uniquely(used_indices, - dummies_of_factor, x); + dummies_of_factor, x); combine_indices(dummies_of_factor); return new_factor; } @@ -180,8 +174,8 @@ class make_flat_inserter { exvector new_dummy_indices; set_union(used_indices.begin(), used_indices.end(), - dummies_of_factor.begin(), dummies_of_factor.end(), - std::back_insert_iterator(new_dummy_indices), ex_is_less()); + dummies_of_factor.begin(), dummies_of_factor.end(), + std::back_insert_iterator(new_dummy_indices), ex_is_less()); used_indices.swap(new_dummy_indices); } bool do_renaming;