X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fncmul.cpp;h=adc36a524491ee2e72047d92281eafd5c1d22c72;hp=21cdefda7ccfb3e3d1c48d8268d11e9f0f957ff4;hb=cbb93fadabbd56ba006902967b15b2b2aebb037c;hpb=27d6204effdef95a00af461fff98024e290dbaa7 diff --git a/ginac/ncmul.cpp b/ginac/ncmul.cpp index 21cdefda..adc36a52 100644 --- a/ginac/ncmul.cpp +++ b/ginac/ncmul.cpp @@ -3,7 +3,7 @@ * Implementation of GiNaC's non-commutative products of expressions. */ /* - * GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2010 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 @@ -17,40 +17,40 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include -#include -#include - #include "ncmul.h" #include "ex.h" #include "add.h" #include "mul.h" +#include "clifford.h" #include "matrix.h" -#include "print.h" #include "archive.h" -#include "debugmsg.h" +#include "indexed.h" #include "utils.h" +#include +#include +#include + namespace GiNaC { -GINAC_IMPLEMENT_REGISTERED_CLASS(ncmul, exprseq) +GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(ncmul, exprseq, + print_func(&ncmul::do_print). + print_func(&ncmul::do_print_tree). + print_func(&ncmul::do_print_csrc). + print_func(&ncmul::do_print_csrc)) + ////////// -// default constructor, destructor, copy constructor assignment operator and helpers +// default constructor ////////// ncmul::ncmul() { - debugmsg("ncmul default constructor",LOGLEVEL_CONSTRUCT); - tinfo_key = TINFO_ncmul; } -DEFAULT_COPY(ncmul) -DEFAULT_DESTROY(ncmul) - ////////// // other constructors ////////// @@ -59,83 +59,55 @@ DEFAULT_DESTROY(ncmul) ncmul::ncmul(const ex & lh, const ex & rh) : inherited(lh,rh) { - debugmsg("ncmul constructor from ex,ex",LOGLEVEL_CONSTRUCT); - tinfo_key = TINFO_ncmul; } ncmul::ncmul(const ex & f1, const ex & f2, const ex & f3) : inherited(f1,f2,f3) { - debugmsg("ncmul constructor from 3 ex",LOGLEVEL_CONSTRUCT); - tinfo_key = TINFO_ncmul; } ncmul::ncmul(const ex & f1, const ex & f2, const ex & f3, const ex & f4) : inherited(f1,f2,f3,f4) { - debugmsg("ncmul constructor from 4 ex",LOGLEVEL_CONSTRUCT); - tinfo_key = TINFO_ncmul; } ncmul::ncmul(const ex & f1, const ex & f2, const ex & f3, const ex & f4, const ex & f5) : inherited(f1,f2,f3,f4,f5) { - debugmsg("ncmul constructor from 5 ex",LOGLEVEL_CONSTRUCT); - tinfo_key = TINFO_ncmul; } ncmul::ncmul(const ex & f1, const ex & f2, const ex & f3, const ex & f4, const ex & f5, const ex & f6) : inherited(f1,f2,f3,f4,f5,f6) { - debugmsg("ncmul constructor from 6 ex",LOGLEVEL_CONSTRUCT); - tinfo_key = TINFO_ncmul; } ncmul::ncmul(const exvector & v, bool discardable) : inherited(v,discardable) { - debugmsg("ncmul constructor from exvector,bool",LOGLEVEL_CONSTRUCT); - tinfo_key = TINFO_ncmul; } -ncmul::ncmul(exvector * vp) : inherited(vp) +ncmul::ncmul(std::auto_ptr vp) : inherited(vp) { - debugmsg("ncmul constructor from exvector *",LOGLEVEL_CONSTRUCT); - tinfo_key = TINFO_ncmul; } ////////// // archiving ////////// -DEFAULT_ARCHIVING(ncmul) - + ////////// // functions overriding virtual functions from base classes ////////// // public -void ncmul::print(const print_context & c, unsigned level) const +void ncmul::do_print(const print_context & c, unsigned level) const { - debugmsg("ncmul print", LOGLEVEL_PRINT); - - if (is_a(c)) { - - inherited::print(c, level); - - } else if (is_a(c)) { - - c.s << "ncmul("; - exvector::const_iterator it = seq.begin(), itend = seq.end()-1; - while (it != itend) { - it->print(c, precedence()); - c.s << ","; - it++; - } - it->print(c, precedence()); - c.s << ")"; + printseq(c, '(', '*', ')', precedence(), level); +} - } else - printseq(c, '(', '*', ')', precedence(), level); +void ncmul::do_print_csrc(const print_context & c, unsigned level) const +{ + c.s << class_name(); + printseq(c, '(', ',', ')', precedence(), precedence()); } bool ncmul::info(unsigned inf) const @@ -143,27 +115,28 @@ bool ncmul::info(unsigned inf) const return inherited::info(inf); } -typedef std::vector intvector; +typedef std::vector uintvector; ex ncmul::expand(unsigned options) const { // First, expand the children - exvector expanded_seq = expandchildren(options); + std::auto_ptr vp = expandchildren(options); + const exvector &expanded_seq = vp.get() ? *vp : this->seq; // Now, look for all the factors that are sums and remember their // position and number of terms. - intvector positions_of_adds(expanded_seq.size()); - intvector number_of_add_operands(expanded_seq.size()); + uintvector positions_of_adds(expanded_seq.size()); + uintvector number_of_add_operands(expanded_seq.size()); - int number_of_adds = 0; - int number_of_expanded_terms = 1; + size_t number_of_adds = 0; + size_t number_of_expanded_terms = 1; - unsigned current_position = 0; + size_t current_position = 0; exvector::const_iterator last = expanded_seq.end(); for (exvector::const_iterator cit=expanded_seq.begin(); cit!=last; ++cit) { if (is_exactly_a(*cit)) { positions_of_adds[number_of_adds] = current_position; - unsigned num_ops = cit->nops(); + size_t num_ops = cit->nops(); number_of_add_operands[number_of_adds] = num_ops; number_of_expanded_terms *= num_ops; number_of_adds++; @@ -172,21 +145,41 @@ ex ncmul::expand(unsigned options) const } // If there are no sums, we are done - if (number_of_adds == 0) - return (new ncmul(expanded_seq, true))-> - setflag(status_flags::dynallocated | (options == 0 ? status_flags::expanded : 0)); + if (number_of_adds == 0) { + if (vp.get()) + return (new ncmul(vp))-> + setflag(status_flags::dynallocated | (options == 0 ? status_flags::expanded : 0)); + else + return *this; + } // Now, form all possible products of the terms of the sums with the // remaining factors, and add them together exvector distrseq; distrseq.reserve(number_of_expanded_terms); - intvector k(number_of_adds); + uintvector k(number_of_adds); + + /* Rename indices in the static members of the product */ + exvector expanded_seq_mod; + size_t j = 0; + exvector va; + + for (size_t i=0; i setflag(status_flags::dynallocated | (options == 0 ? status_flags::expanded : 0))); @@ -206,6 +199,9 @@ ex ncmul::expand(unsigned options) const int ncmul::degree(const ex & s) const { + if (is_equal(ex_to(s))) + return 1; + // Sum up degrees of factors int deg_sum = 0; exvector::const_iterator i = seq.begin(), end = seq.end(); @@ -218,6 +214,9 @@ int ncmul::degree(const ex & s) const int ncmul::ldegree(const ex & s) const { + if (is_equal(ex_to(s))) + return 1; + // Sum up degrees of factors int deg_sum = 0; exvector::const_iterator i = seq.begin(), end = seq.end(); @@ -230,6 +229,9 @@ int ncmul::ldegree(const ex & s) const ex ncmul::coeff(const ex & s, int n) const { + if (is_equal(ex_to(s))) + return n==1 ? _ex1 : _ex0; + exvector coeffseq; coeffseq.reserve(seq.size()); @@ -262,12 +264,12 @@ ex ncmul::coeff(const ex & s, int n) const return _ex0; } -unsigned ncmul::count_factors(const ex & e) const +size_t ncmul::count_factors(const ex & e) const { - if ((is_ex_exactly_of_type(e,mul)&&(e.return_type()!=return_types::commutative))|| - (is_ex_exactly_of_type(e,ncmul))) { - unsigned factors=0; - for (unsigned i=0; i(e)&&(e.return_type()!=return_types::commutative))|| + (is_exactly_a(e))) { + size_t factors=0; + for (size_t i=0; i(e)&&(e.return_type()!=return_types::commutative))|| + (is_exactly_a(e))) { + for (size_t i=0; i exvectorvector; * - ncmul() -> 1 * - ncmul(...,c1,...,c2,...) -> *(c1,c2,ncmul(...)) (pull out commutative elements) * - ncmul(x1,y1,x2,y2) -> *(ncmul(x1,x2),ncmul(y1,y2)) (collect elements of same type) - * - ncmul(x1,x2,x3,...) -> x::simplify_ncmul(x1,x2,x3,...) + * - ncmul(x1,x2,x3,...) -> x::eval_ncmul(x1,x2,x3,...) * * @param level cut-off in recursive evaluation */ ex ncmul::eval(int level) const @@ -316,7 +318,7 @@ ex ncmul::eval(int level) const // ncmul(...,*(x1,x2),...,ncmul(x3,x4),...) -> // ncmul(...,x1,x2,...,x3,x4,...) (associativity) - unsigned factors = 0; + size_t factors = 0; exvector::const_iterator cit = evaledseq.begin(), citend = evaledseq.end(); while (cit != citend) factors += count_factors(*cit++); @@ -324,25 +326,28 @@ ex ncmul::eval(int level) const exvector assocseq; assocseq.reserve(factors); cit = evaledseq.begin(); + make_flat_inserter mf(evaledseq, true); while (cit != citend) - append_factors(assocseq, *cit++); + { ex factor = mf.handle_factor(*(cit++), 1); + append_factors(assocseq, factor); + } // ncmul(x) -> x if (assocseq.size()==1) return *(seq.begin()); - + // ncmul() -> 1 if (assocseq.empty()) return _ex1; // determine return types - unsignedvector rettypes; - rettypes.reserve(assocseq.size()); - unsigned i = 0; - unsigned count_commutative=0; - unsigned count_noncommutative=0; - unsigned count_noncommutative_composite=0; + unsignedvector rettypes(assocseq.size()); + size_t i = 0; + size_t count_commutative=0; + size_t count_noncommutative=0; + size_t count_noncommutative_composite=0; cit = assocseq.begin(); citend = assocseq.end(); while (cit != citend) { - switch (rettypes[i] = cit->return_type()) { + rettypes[i] = cit->return_type(); + switch (rettypes[i]) { case return_types::commutative: count_commutative++; break; @@ -366,8 +371,8 @@ ex ncmul::eval(int level) const commutativeseq.reserve(count_commutative+1); exvector noncommutativeseq; noncommutativeseq.reserve(assocseq.size()-count_commutative); - unsigned num = assocseq.size(); - for (unsigned i=0; i rttinfos; evv.reserve(assoc_num); rttinfos.reserve(assoc_num); cit = assocseq.begin(), citend = assocseq.end(); while (cit != citend) { - unsigned ti = cit->return_type_tinfo(); - unsigned rtt_num = rttinfos.size(); + return_type_t ti = cit->return_type_tinfo(); + size_t rtt_num = rttinfos.size(); // search type in vector of known types for (i=0; i 0); - unsigned s=0; + size_t s=0; for (i=0; i s(new exvector); s->reserve(seq.size()); exvector::const_iterator it = seq.begin(), itend = seq.end(); while (it != itend) { @@ -451,16 +457,15 @@ ex ncmul::evalm(void) const // If there are only matrices, simply multiply them it = s->begin(); itend = s->end(); - if (is_ex_of_type(*it, matrix)) { + if (is_a(*it)) { matrix prod(ex_to(*it)); it++; while (it != itend) { - if (!is_ex_of_type(*it, matrix)) + if (!is_a(*it)) goto no_matrix; prod = prod.mul(ex_to(*it)); it++; } - delete s; return prod; } @@ -468,16 +473,45 @@ no_matrix: return (new ncmul(s))->setflag(status_flags::dynallocated); } -ex ncmul::thisexprseq(const exvector & v) const +ex ncmul::thiscontainer(const exvector & v) const { return (new ncmul(v))->setflag(status_flags::dynallocated); } -ex ncmul::thisexprseq(exvector * vp) const +ex ncmul::thiscontainer(std::auto_ptr vp) const { return (new ncmul(vp))->setflag(status_flags::dynallocated); } +ex ncmul::conjugate() const +{ + if (return_type() != return_types::noncommutative) { + return exprseq::conjugate(); + } + + if (!is_clifford_tinfo(return_type_tinfo())) { + return exprseq::conjugate(); + } + + exvector ev; + ev.reserve(nops()); + for (const_iterator i=end(); i!=begin();) { + --i; + ev.push_back(i->conjugate()); + } + return (new ncmul(ev, true))->setflag(status_flags::dynallocated).eval(); +} + +ex ncmul::real_part() const +{ + return basic::real_part(); +} + +ex ncmul::imag_part() const +{ + return basic::imag_part(); +} + // protected /** Implementation of ex::diff() for a non-commutative product. It applies @@ -485,13 +519,13 @@ ex ncmul::thisexprseq(exvector * vp) const * @see ex::diff */ ex ncmul::derivative(const symbol & s) const { - unsigned num = seq.size(); + size_t num = seq.size(); exvector addseq; addseq.reserve(num); // D(a*b*c) = D(a)*b*c + a*D(b)*c + a*b*D(c) exvector ncmulseq = seq; - for (unsigned i=0; isetflag(status_flags::dynallocated)); @@ -505,7 +539,7 @@ int ncmul::compare_same_type(const basic & other) const return inherited::compare_same_type(other); } -unsigned ncmul::return_type(void) const +unsigned ncmul::return_type() const { if (seq.empty()) return return_types::commutative; @@ -525,22 +559,20 @@ unsigned ncmul::return_type(void) const } if ((rt == return_types::noncommutative) && (!all_commutative)) { // another nc element found, compare type_infos - if (noncommutative_element->return_type_tinfo() != i->return_type_tinfo()) { - // diffent types -> mul is ncc - return return_types::noncommutative_composite; - } + if(noncommutative_element->return_type_tinfo() != i->return_type_tinfo()) + return return_types::noncommutative_composite; } ++i; } // all factors checked - GINAC_ASSERT(!all_commutative); // not all factors should commute, because this is a ncmul(); + GINAC_ASSERT(!all_commutative); // not all factors should commutate, because this is a ncmul(); return all_commutative ? return_types::commutative : return_types::noncommutative; } -unsigned ncmul::return_type_tinfo(void) const +return_type_t ncmul::return_type_tinfo() const { if (seq.empty()) - return tinfo_key; + return make_return_type_t(); // return type_info of first noncommutative element exvector::const_iterator i = seq.begin(), end = seq.end(); @@ -551,7 +583,7 @@ unsigned ncmul::return_type_tinfo(void) const } // no noncommutative element found, should not happen - return tinfo_key; + return make_return_type_t(); } ////////// @@ -564,19 +596,37 @@ unsigned ncmul::return_type_tinfo(void) const // non-virtual functions in this class ////////// -exvector ncmul::expandchildren(unsigned options) const +std::auto_ptr ncmul::expandchildren(unsigned options) const { - exvector s; - s.reserve(seq.size()); - exvector::const_iterator it = seq.begin(), itend = seq.end(); - while (it != itend) { - s.push_back(it->expand(options)); - it++; + const_iterator cit = this->seq.begin(), end = this->seq.end(); + while (cit != end) { + const ex & expanded_ex = cit->expand(options); + if (!are_ex_trivially_equal(*cit, expanded_ex)) { + + // copy first part of seq which hasn't changed + std::auto_ptr s(new exvector(this->seq.begin(), cit)); + reserve(*s, this->seq.size()); + + // insert changed element + s->push_back(expanded_ex); + ++cit; + + // copy rest + while (cit != end) { + s->push_back(cit->expand(options)); + ++cit; + } + + return s; + } + + ++cit; } - return s; + + return std::auto_ptr(0); // nothing has changed } -const exvector & ncmul::get_factors(void) const +const exvector & ncmul::get_factors() const { return seq; } @@ -585,12 +635,12 @@ const exvector & ncmul::get_factors(void) const // friend functions ////////// -ex nonsimplified_ncmul(const exvector & v) +ex reeval_ncmul(const exvector & v) { return (new ncmul(v))->setflag(status_flags::dynallocated); } -ex simplified_ncmul(const exvector & v) +ex hold_ncmul(const exvector & v) { if (v.empty()) return _ex1; @@ -601,4 +651,6 @@ ex simplified_ncmul(const exvector & v) status_flags::evaluated); } +GINAC_BIND_UNARCHIVER(ncmul); + } // namespace GiNaC