X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fbasic.cpp;h=c899d19f1659c2641d3b4048108bf5b90019c5f7;hp=9fc4fa308526fdecb00235ab6f528210034759e0;hb=b9cd4b49ffbfbf3e1c36a2b594ec3148a5baca64;hpb=51cdfef2f7b38d28ad4228152ae07f78dd2fe7e9 diff --git a/ginac/basic.cpp b/ginac/basic.cpp index 9fc4fa30..c899d19f 100644 --- a/ginac/basic.cpp +++ b/ginac/basic.cpp @@ -21,8 +21,10 @@ */ #include -#include #include +#ifdef DO_GINAC_ASSERT +# include +#endif #include "basic.h" #include "ex.h" @@ -31,6 +33,8 @@ #include "symbol.h" #include "lst.h" #include "ncmul.h" +#include "relational.h" +#include "print.h" #include "archive.h" #include "utils.h" #include "debugmsg.h" @@ -89,10 +93,7 @@ basic::basic(const archive_node &n, const lst &sym_lst) : flags(0), refcount(0) } /** Unarchive the object. */ -ex basic::unarchive(const archive_node &n, const lst &sym_lst) -{ - return (new basic(n, sym_lst))->setflag(status_flags::dynallocated); -} +DEFAULT_UNARCHIVE(basic) /** Archive the object. */ void basic::archive(archive_node &n) const @@ -112,46 +113,25 @@ void basic::archive(archive_node &n) const // public -/** Output to ostream formatted as parsable (as in ginsh) input. - * Generally, superfluous parenthesis should be avoided as far as possible. */ -void basic::print(std::ostream & os, unsigned upper_precedence) const +/** Output to stream. + * @param c print context object that describes the output formatting + * @param level value that is used to identify the precedence or indentation + * level for placing parentheses and formatting */ +void basic::print(const print_context & c, unsigned level) const { - debugmsg("basic print",LOGLEVEL_PRINT); - os << "[" << class_name() << " object]"; -} + debugmsg("basic print", LOGLEVEL_PRINT); -/** Output to ostream in ugly raw format, so brave developers can have a look - * at the underlying structure. */ -void basic::printraw(std::ostream & os) const -{ - debugmsg("basic printraw",LOGLEVEL_PRINT); - os << "[" << class_name() << " object]"; -} + if (is_of_type(c, print_tree)) { -/** Output to ostream formatted in tree- (indented-) form, so developers can - * have a look at the underlying structure. */ -void basic::printtree(std::ostream & os, unsigned indent) const -{ - debugmsg("basic printtree",LOGLEVEL_PRINT); - os << std::string(indent,' ') << "type=" << class_name() - << ", hash=" << hashvalue - << " (0x" << std::hex << hashvalue << std::dec << ")" - << ", flags=" << flags - << ", nops=" << nops() << std::endl; - for (unsigned i=0; iprint(std::cerr); @@ -172,7 +152,13 @@ void basic::dbgprint(void) const * @see basic::printtree */ void basic::dbgprinttree(void) const { - this->printtree(std::cerr,0); + this->print(print_tree(std::cerr)); +} + +/** Return relative operator precedence (for parenthizing output). */ +unsigned basic::precedence(void) const +{ + return 70; } /** Create a new copy of this on the heap. One can think of this as simulating @@ -234,7 +220,8 @@ ex basic::operator[](int i) const bool basic::has(const ex & other) const { GINAC_ASSERT(other.bp!=0); - if (is_equal(*other.bp)) return true; + lst repl_lst; + if (match(*other.bp, repl_lst)) return true; if (nops()>0) { for (unsigned i=0; ildegree(s); n<=this->degree(s); n++) - x += this->coeff(s,n)*power(s,n); + if (is_ex_of_type(s, lst)) { + + // List of objects specified + if (s.nops() == 1) + return collect(s.op(0)); + + else if (distributed) { + + // Get lower/upper degree of all symbols in list + int num = s.nops(); + struct sym_info { + ex sym; + int ldeg, deg; + int cnt; // current degree, 'counter' + ex coeff; // coefficient for degree 'cnt' + }; + sym_info *si = new sym_info[num]; + ex c = *this; + for (int i=0; ildegree(si[i].sym); + si[i].deg = this->degree(si[i].sym); + c = si[i].coeff = c.coeff(si[i].sym, si[i].cnt); + } + + while (true) { + + // Calculate coeff*x1^c1*...*xn^cn + ex y = _ex1(); + for (int i=0; i=0; n--) + x = x.collect(s[n]); + } + + } else { + + // Only one object specified + for (int n=this->ldegree(s); n<=this->degree(s); ++n) + x += this->coeff(s,n)*power(s,n); + } - return x; + // correct for lost fractional arguments and return + return x + (*this - x).expand(); } /** Perform automatic non-interruptive symbolic evaluation on expression. */ @@ -297,26 +357,111 @@ ex basic::eval_indexed(const basic & i) const return i.hold(); } +/** Add two indexed expressions. They are guaranteed to be of class indexed + * (or a subclass) and their indices are compatible. This function is used + * internally by simplify_indexed(). + * + * @param self First indexed expression; it's base object is *this + * @param other Second indexed expression + * @return sum of self and other + * @see ex::simplify_indexed() */ +ex basic::add_indexed(const ex & self, const ex & other) const +{ + return self + other; +} + +/** Multiply an indexed expression with a scalar. This function is used + * internally by simplify_indexed(). + * + * @param self Indexed expression; it's base object is *this + * @param other Numeric value + * @return product of self and other + * @see ex::simplify_indexed() */ +ex basic::scalar_mul_indexed(const ex & self, const numeric & other) const +{ + return self * other; +} + /** Try to contract two indexed expressions that appear in the same product. * If a contraction exists, the function overwrites one or both of the * expressions and returns true. Otherwise it returns false. It is * guaranteed that both expressions are of class indexed (or a subclass) - * and that at least one dummy index has been found. + * and that at least one dummy index has been found. This functions is + * used internally by simplify_indexed(). * * @param self Pointer to first indexed expression; it's base object is *this * @param other Pointer to second indexed expression * @param v The complete vector of factors - * @return true if the contraction was successful, false otherwise */ + * @return true if the contraction was successful, false otherwise + * @see ex::simplify_indexed() */ bool basic::contract_with(exvector::iterator self, exvector::iterator other, exvector & v) const { // Do nothing return false; } -/** Substitute a set of symbols by arbitrary expressions. The ex returned +/** Check whether the expression matches a given pattern. For every wildcard + * object in the pattern, an expression of the form "wildcard == matching_expression" + * is added to repl_lst. */ +bool basic::match(const ex & pattern, lst & repl_lst) const +{ +//clog << "match " << *this << " with " << pattern << ", repl_lst = " << repl_lst << endl; + if (is_ex_exactly_of_type(pattern, wildcard)) { + + // Wildcard matches anything, but check whether we already have found + // a match for that wildcard first (if so, it the earlier match must + // be the same expression) + for (unsigned i=0; itinfo()) + return false; + + // Number of subexpressions must match + if (nops() != pattern.nops()) + return false; + + // No subexpressions? Then just compare the objects (there can't be + // wildcards in the pattern) + if (nops() == 0) + return is_equal(*pattern.bp); + + // Otherwise the subexpressions must match one-to-one + for (unsigned i=0; isubs(repl_lst, true); // avoid recursion when re-substituting the wildcards + } + } + return *this; } @@ -438,15 +583,15 @@ ex basic::expand(unsigned options) const // public -/** Substitute symbols in expression and return the result as a new expression. - * There are two valid types of replacement arguments: 1) a relational like - * symbol==ex and 2) a list of relationals lst(symbol1==ex1,symbol2==ex2,...), - * which is converted to subs(lst(symbol1,symbol2,...),lst(ex1,ex2,...)). - * In addition, an object of class idx can be used instead of a symbol. */ -ex basic::subs(const ex & e) const +/** Substitute objects in an expression (syntactic substitution) and return + * the result as a new expression. There are two valid types of + * replacement arguments: 1) a relational like object==ex and 2) a list of + * relationals lst(object1==ex1,object2==ex2,...), which is converted to + * subs(lst(object1,object2,...),lst(ex1,ex2,...)). */ +ex basic::subs(const ex & e, bool no_pattern) const { if (e.info(info_flags::relation_equal)) { - return subs(lst(e)); + return subs(lst(e), no_pattern); } if (!e.info(info_flags::list)) { throw(std::invalid_argument("basic::subs(ex): argument must be a list")); @@ -454,18 +599,14 @@ ex basic::subs(const ex & e) const lst ls; lst lr; for (unsigned i=0; iprintraw(std::cout); +// this->print(print_tree(std::cout)); // std::cout << " and "; -// other.printraw(std::cout); +// other.print(print_tree(std::cout)); // std::cout << std::endl; return -1; } if (typeid_this>typeid_other) { // std::cout << "hash collision, different types: " // << *this << " and " << other << std::endl; -// this->printraw(std::cout); +// this->print(print_tree(std::cout)); // std::cout << " and "; -// other.printraw(std::cout); +// other.print(print_tree(std::cout)); // std::cout << std::endl; return 1; } @@ -507,9 +648,9 @@ int basic::compare(const basic & other) const // if ((cmpval!=0) && (hash_this<0x80000000U)) { // std::cout << "hash collision, same type: " // << *this << " and " << other << std::endl; -// this->printraw(std::cout); +// this->print(print_tree(std::cout)); // std::cout << " and "; -// other.printraw(std::cout); +// other.print(print_tree(std::cout)); // std::cout << std::endl; // } // return cmpval; @@ -553,15 +694,6 @@ void basic::ensure_if_modifiable(void) const throw(std::runtime_error("cannot modify multiply referenced object")); } -////////// -// static member variables -////////// - -// protected - -unsigned basic::precedence = 70; -unsigned basic::delta_indent = 4; - ////////// // global variables //////////