X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Ftensor.h;h=8f02143756b24269ff3aec16e5797cc348cd626e;hp=daf869e67f98140d93665f3258c6640d9bb77c54;hb=08c190937df7e802393b588d3cc82d2bdf00b128;hpb=83a7ee99a947cbbf331018b803ad6be43a9ccd45 diff --git a/ginac/tensor.h b/ginac/tensor.h index daf869e6..8f021437 100644 --- a/ginac/tensor.h +++ b/ginac/tensor.h @@ -3,7 +3,7 @@ * Interface to GiNaC's special tensors. */ /* - * GiNaC Copyright (C) 1999-2008 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 @@ -20,14 +20,14 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef __GINAC_TENSOR_H__ -#define __GINAC_TENSOR_H__ +#ifndef GINAC_TENSOR_H +#define GINAC_TENSOR_H #include "ex.h" +#include "archive.h" namespace GiNaC { - /** This class holds one of GiNaC's predefined special tensors such as the * delta and the metric tensors. They are represented without indices. * To attach indices to them, wrap them in an object of class indexed. */ @@ -35,13 +35,9 @@ class tensor : public basic { GINAC_DECLARE_REGISTERED_CLASS(tensor, basic) - // other constructors -protected: - tensor(tinfo_t ti) : inherited(ti) {} - // functions overriding virtual functions from base classes protected: - unsigned return_type() const { return return_types::noncommutative_composite; } + unsigned return_type() const override { return return_types::noncommutative_composite; } // non-virtual functions in this class public: @@ -60,16 +56,18 @@ class tensdelta : public tensor // functions overriding virtual functions from base classes public: - bool info(unsigned inf) const; - ex eval_indexed(const basic & i) const; - bool contract_with(exvector::iterator self, exvector::iterator other, exvector & v) const; + bool info(unsigned inf) const override; + ex eval_indexed(const basic & i) const override; + bool contract_with(exvector::iterator self, exvector::iterator other, exvector & v) const override; +protected: + unsigned return_type() const override { return return_types::commutative; } // non-virtual functions in this class protected: - unsigned return_type() const { return return_types::commutative; } void do_print(const print_context & c, unsigned level) const; void do_print_latex(const print_latex & c, unsigned level) const; }; +GINAC_DECLARE_UNARCHIVER(tensdelta); /** This class represents a general metric tensor which can be used to @@ -81,15 +79,17 @@ class tensmetric : public tensor // functions overriding virtual functions from base classes public: - bool info(unsigned inf) const; - ex eval_indexed(const basic & i) const; - bool contract_with(exvector::iterator self, exvector::iterator other, exvector & v) const; + bool info(unsigned inf) const override; + ex eval_indexed(const basic & i) const override; + bool contract_with(exvector::iterator self, exvector::iterator other, exvector & v) const override; +protected: + unsigned return_type() const override { return return_types::commutative; } // non-virtual functions in this class protected: - unsigned return_type() const { return return_types::commutative; } void do_print(const print_context & c, unsigned level) const; }; +GINAC_DECLARE_UNARCHIVER(tensmetric); /** This class represents a Minkowski metric tensor. It has all the @@ -106,12 +106,18 @@ public: // functions overriding virtual functions from base classes public: - bool info(unsigned inf) const; - ex eval_indexed(const basic & i) const; + bool info(unsigned inf) const override; + ex eval_indexed(const basic & i) 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 return_type() const override { return return_types::commutative; } // non-virtual functions in this class protected: - unsigned return_type() const { return return_types::commutative; } void do_print(const print_context & c, unsigned level) const; void do_print_latex(const print_latex & c, unsigned level) const; @@ -119,6 +125,7 @@ protected: private: bool pos_sig; /**< If true, the metric is diag(-1,1,1...). Otherwise it is diag(1,-1,-1,...). */ }; +GINAC_DECLARE_UNARCHIVER(minkmetric); /** This class represents an antisymmetric spinor metric tensor which @@ -131,15 +138,15 @@ class spinmetric : public tensmetric // functions overriding virtual functions from base classes public: - bool info(unsigned inf) const; - ex eval_indexed(const basic & i) const; - bool contract_with(exvector::iterator self, exvector::iterator other, exvector & v) const; + bool info(unsigned inf) const override; + ex eval_indexed(const basic & i) const override; + bool contract_with(exvector::iterator self, exvector::iterator other, exvector & v) const override; - // non-virtual functions in this class protected: void do_print(const print_context & c, unsigned level) const; void do_print_latex(const print_latex & c, unsigned level) const; }; +GINAC_DECLARE_UNARCHIVER(spinmetric); /** This class represents the totally antisymmetric epsilon tensor. If @@ -155,13 +162,19 @@ public: // functions overriding virtual functions from base classes public: - bool info(unsigned inf) const; - ex eval_indexed(const basic & i) const; - bool contract_with(exvector::iterator self, exvector::iterator other, exvector & v) const; + bool info(unsigned inf) const override; + ex eval_indexed(const basic & i) const override; + bool contract_with(exvector::iterator self, exvector::iterator other, exvector & v) 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 return_type() const override { return return_types::commutative; } // non-virtual functions in this class protected: - unsigned return_type() const { return return_types::commutative; } void do_print(const print_context & c, unsigned level) const; void do_print_latex(const print_latex & c, unsigned level) const; @@ -170,6 +183,7 @@ private: bool minkowski; /**< If true, tensor is in Minkowski-type space. Otherwise it is in a Euclidean space. */ bool pos_sig; /**< If true, the metric is assumed to be diag(-1,1,1...). Otherwise it is diag(1,-1,-1,...). This is only relevant if minkowski = true. */ }; +GINAC_DECLARE_UNARCHIVER(tensepsilon); // utility functions @@ -243,4 +257,4 @@ ex lorentz_eps(const ex & i1, const ex & i2, const ex & i3, const ex & i4, bool } // namespace GiNaC -#endif // ndef __GINAC_TENSOR_H__ +#endif // ndef GINAC_TENSOR_H