X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fncmul.cpp;h=e3a6b552f7e6d0294022fb69603083325ec40b4f;hp=2b91cb23dd44853906dc64dd32adbdfb8136378a;hb=eefedc70f63222beca918a3df89cabac700df1eb;hpb=dbd9c306a74f1cb258c0d15a346b973b39deaad2 diff --git a/ginac/ncmul.cpp b/ginac/ncmul.cpp index 2b91cb23..e3a6b552 100644 --- a/ginac/ncmul.cpp +++ b/ginac/ncmul.cpp @@ -29,16 +29,20 @@ #include "add.h" #include "mul.h" #include "matrix.h" -#include "print.h" #include "archive.h" #include "utils.h" namespace GiNaC { -GINAC_IMPLEMENT_REGISTERED_CLASS(ncmul, exprseq) +GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(ncmul, exprseq, + print_func(&ncmul::do_print). + print_func(&basic::do_print_tree). + print_func(&ncmul::do_print_csrc). + print_func(&ncmul::do_print_csrc)) + ////////// -// default ctor, dtor, copy ctor, assignment operator and helpers +// default constructor ////////// ncmul::ncmul() @@ -46,9 +50,6 @@ ncmul::ncmul() tinfo_key = TINFO_ncmul; } -DEFAULT_COPY(ncmul) -DEFAULT_DESTROY(ncmul) - ////////// // other constructors ////////// @@ -88,7 +89,7 @@ ncmul::ncmul(const exvector & v, bool discardable) : inherited(v,discardable) tinfo_key = TINFO_ncmul; } -ncmul::ncmul(exvector * vp) : inherited(vp) +ncmul::ncmul(std::auto_ptr vp) : inherited(vp) { tinfo_key = TINFO_ncmul; } @@ -105,26 +106,15 @@ DEFAULT_ARCHIVING(ncmul) // public -void ncmul::print(const print_context & c, unsigned level) const +void ncmul::do_print(const print_context & c, unsigned level) const { - if (is_a(c)) { - - inherited::print(c, level); - - } else if (is_a(c) || is_a(c)) { - - c.s << class_name() << "("; - 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 @@ -144,15 +134,15 @@ ex ncmul::expand(unsigned options) const intvector positions_of_adds(expanded_seq.size()); intvector 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++; @@ -174,7 +164,7 @@ ex ncmul::expand(unsigned options) const while (true) { exvector term = expanded_seq; - for (int i=0; i setflag(status_flags::dynallocated | (options == 0 ? status_flags::expanded : 0))); @@ -251,12 +241,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 @@ -305,7 +295,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++); @@ -325,10 +315,10 @@ ex ncmul::eval(int level) const // 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; + 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()) { @@ -355,8 +345,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; ireturn_type_tinfo(); - unsigned rtt_num = rttinfos.size(); + 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) { @@ -440,16 +430,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; } @@ -457,12 +446,12 @@ 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); } @@ -474,13 +463,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)); @@ -494,7 +483,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; @@ -526,7 +515,7 @@ unsigned ncmul::return_type(void) const return all_commutative ? return_types::commutative : return_types::noncommutative; } -unsigned ncmul::return_type_tinfo(void) const +unsigned ncmul::return_type_tinfo() const { if (seq.empty()) return tinfo_key; @@ -565,7 +554,7 @@ exvector ncmul::expandchildren(unsigned options) const return s; } -const exvector & ncmul::get_factors(void) const +const exvector & ncmul::get_factors() const { return seq; } @@ -574,12 +563,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;