X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fsymmetry.h;h=afb6a27b0d3a52247f67242945d0d103354b24cc;hp=9232180fbeb2837d4f593897fdf748a7ef9d81bb;hb=761d1597532504762c1f9b438c7727c4f74d7da3;hpb=67edef78ce992a8f6ad704bfac228b8dec6eacd2 diff --git a/ginac/symmetry.h b/ginac/symmetry.h index 9232180f..afb6a27b 100644 --- a/ginac/symmetry.h +++ b/ginac/symmetry.h @@ -3,7 +3,7 @@ * Interface to GiNaC's symmetry definitions. */ /* - * GiNaC Copyright (C) 1999-2010 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 @@ -61,6 +61,15 @@ public: /** Create node with two children. */ symmetry(symmetry_type t, const symmetry &c1, const symmetry &c2); + // functions overriding virtual functions from base classes +public: + /** 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 override; + // non-virtual functions in this class public: /** Get symmetry type. */ @@ -80,17 +89,13 @@ public: /** Check whether this node actually represents any kind of symmetry. */ bool has_symmetry() const {return type != none || !children.empty(); } + /** Check whether this node involves anything non symmetric. */ + bool has_nonsymmetric() const; /** Check whether this node involves a cyclic symmetry. */ bool has_cyclic() const; - - /** Save (a.k.a. serialize) object into archive. */ - void archive(archive_node& n) const; - /** Read (a.k.a. deserialize) object from archive. */ - void read_archive(const archive_node& n, lst& syms); protected: void do_print(const print_context & c, unsigned level) const; void do_print_tree(const print_tree & c, unsigned level) const; - unsigned calchash() const; // member variables private: @@ -165,7 +170,7 @@ inline ex antisymmetrize(const ex & e, const exvector & v) return antisymmetrize(e, v.begin(), v.end()); } -/** Symmetrize expression by cyclic permuation over a set of objects +/** Symmetrize expression by cyclic permutation over a set of objects * (symbols, indices). */ ex symmetrize_cyclic(const ex & e, exvector::const_iterator first, exvector::const_iterator last);