X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fmatrix.h;h=725ea2bb99b0e26a6fe61b6e5865ed823ca1df34;hp=a1ac7cbcb968883c19c68620bc73e7392d406e93;hb=052e9928511dd77d1d5d489b2a61b75579cc44e3;hpb=3ac17e18ada69428fe170c10abcc5f33a30f0676 diff --git a/ginac/matrix.h b/ginac/matrix.h index a1ac7cbc..725ea2bb 100644 --- a/ginac/matrix.h +++ b/ginac/matrix.h @@ -3,7 +3,7 @@ * Interface to symbolic matrices */ /* - * GiNaC Copyright (C) 1999-2006 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2015 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,16 +20,17 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef __GINAC_MATRIX_H__ -#define __GINAC_MATRIX_H__ +#ifndef GINAC_MATRIX_H +#define GINAC_MATRIX_H -#include -#include #include "basic.h" #include "ex.h" +#include "archive.h" -namespace GiNaC { +#include +#include +namespace GiNaC { /** Helper template to allow initialization of matrices via an overloaded * comma operator (idea stolen from Blitz++). */ @@ -97,17 +98,19 @@ class matrix : public basic // other constructors public: matrix(unsigned r, unsigned c); - matrix(unsigned r, unsigned c, const exvector & m2); matrix(unsigned r, unsigned c, const lst & l); - // First step of initialization of matrix with a comma-separated seqeuence + // First step of initialization of matrix with a comma-separated sequence // of expressions. Subsequent steps are handled by matrix_init<>::operator,(). matrix_init operator=(const ex & x) { m[0] = x; return matrix_init(++m.begin()); } - + +protected: + matrix(unsigned r, unsigned c, const exvector & m2); + matrix(unsigned r, unsigned c, exvector && m2); // functions overriding virtual functions from base classes public: size_t nops() const; @@ -121,7 +124,13 @@ public: ex scalar_mul_indexed(const ex & self, const numeric & other) const; bool contract_with(exvector::iterator self, exvector::iterator other, exvector & v) const; ex conjugate() const; + ex real_part() const; + ex imag_part() 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: bool match_same_type(const basic & other) const; unsigned return_type() const { return return_types::noncommutative; }; @@ -149,6 +158,7 @@ public: matrix solve(const matrix & vars, const matrix & rhs, unsigned algo = solve_algo::automatic) const; unsigned rank() const; + bool is_zero_matrix() const; protected: ex determinant_minor() const; int gauss_elimination(const bool det = false); @@ -167,6 +177,7 @@ protected: unsigned col; ///< number of columns exvector m; ///< representation (cols indexed first) }; +GINAC_DECLARE_UNARCHIVER(matrix); // wrapper functions around member functions @@ -241,4 +252,4 @@ inline ex symbolic_matrix(unsigned r, unsigned c, const std::string & base_name) } // namespace GiNaC -#endif // ndef __GINAC_MATRIX_H__ +#endif // ndef GINAC_MATRIX_H