X-Git-Url: https://ginac.de/ginac.git//ginac.git?a=blobdiff_plain;f=ginac%2Fbasic.cpp;h=a2e10f715531d286c0d3fef0a0a13a4e5cc8d18a;hb=caabe6ff752d0343caff4340725352e7fbd6dc56;hp=c4e17cd5eaccbd64cc0833e7c8b5c09464d3cfe6;hpb=50dc516836ac5e91f4f60a60b9a307b375247e7c;p=ginac.git diff --git a/ginac/basic.cpp b/ginac/basic.cpp index c4e17cd5..a2e10f71 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" @@ -109,67 +113,52 @@ 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); std::cerr << std::endl; } -/** Little wrapper arount printtree to be called within a debugger. +/** Little wrapper around printtree to be called within a debugger. * * @see basic::dbgprint * @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 @@ -224,50 +213,140 @@ ex basic::operator[](int i) const return op(i); } -/** Search ocurrences. An object 'has' an expression if it is the expression +/** Search ocurrences. An object 'has' an expression if it is the expression * itself or one of the children 'has' it. As a consequence (according to * the definition of children) given e=x+y+z, e.has(x) is true but e.has(x+y) - * is false. */ + * is false. The expression can also contain wildcards. */ bool basic::has(const ex & other) const { GINAC_ASSERT(other.bp!=0); - if (is_equal(*other.bp)) return true; - if (nops()>0) { - for (unsigned i=0; isetflag(status_flags::dynallocated); + copy->clearflag(status_flags::hash_calculated); + ex e(*copy); + 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. */ @@ -284,6 +363,15 @@ ex basic::evalf(int level) const return *this; } +/** Evaluate sums, products and integer powers of matrices. */ +ex basic::evalm(void) const +{ + if (nops() == 0) + return *this; + else + return map(GiNaC::evalm); +} + /** Perform automatic symbolic evaluations on indexed expression that * contains this object as the base expression. */ ex basic::eval_indexed(const basic & i) const @@ -337,15 +425,81 @@ bool basic::contract_with(exvector::iterator self, exvector::iterator other, exv return false; } +/** 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 +{ +/* + Sweet sweet shapes, sweet sweet shapes, + That's the key thing, right right. + Feed feed face, feed feed shapes, + But who is the king tonight? + Who is the king tonight? + Pattern is the thing, the key thing-a-ling, + But who is the king of pattern? + But who is the king, the king thing-a-ling, + Who is the king of Pattern? + Bog is the king, the king thing-a-ling, + Bog is the king of Pattern. + Ba bu-bu-bu-bu bu-bu-bu-bu-bu-bu bu-bu + Bog is the king of Pattern. +*/ + + 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 infinite recursion when re-substituting the wildcards + } } return *this; @@ -474,10 +628,10 @@ ex basic::expand(unsigned options) const * 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) const +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")); @@ -487,12 +641,12 @@ ex basic::subs(const ex & e) const 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; } @@ -534,9 +688,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; @@ -578,17 +732,9 @@ void basic::ensure_if_modifiable(void) const { if (this->refcount>1) throw(std::runtime_error("cannot modify multiply referenced object")); + clearflag(status_flags::hash_calculated); } -////////// -// static member variables -////////// - -// protected - -unsigned basic::precedence = 70; -unsigned basic::delta_indent = 4; - ////////// // global variables //////////