X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?a=blobdiff_plain;f=ginac%2Foperators.cpp;h=4e5781a692d03da8fedb28799e966dfdc3fe7b23;hb=6d383491ac7fdc612ebc15778a2db01dbc5660d6;hp=f0d2eb8da57bb18ddec0d30dbd73705c82019ae6;hpb=bd2d7351b89743eb68ce7d3bfa7ab62c331f9522;p=ginac.git diff --git a/ginac/operators.cpp b/ginac/operators.cpp index f0d2eb8d..4e5781a6 100644 --- a/ginac/operators.cpp +++ b/ginac/operators.cpp @@ -3,7 +3,7 @@ * Implementation of GiNaC's overloaded operators. */ /* - * GiNaC Copyright (C) 1999-2000 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2001 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,52 +20,45 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include -#include - #include "operators.h" -#include "basic.h" -#include "ex.h" #include "numeric.h" #include "power.h" #include "relational.h" #include "debugmsg.h" #include "utils.h" -#ifndef NO_NAMESPACE_GINAC namespace GiNaC { -#endif // ndef NO_NAMESPACE_GINAC // binary arithmetic operators ex with ex ex operator+(const ex & lh, const ex & rh) { - debugmsg("operator+(ex,ex)",LOGLEVEL_OPERATOR); - return lh.exadd(rh); + debugmsg("operator+(ex,ex)",LOGLEVEL_OPERATOR); + return lh.exadd(rh); } ex operator-(const ex & lh, const ex & rh) { - debugmsg("operator-(ex,ex)",LOGLEVEL_OPERATOR); - return lh.exadd(rh.exmul(_ex_1())); + debugmsg("operator-(ex,ex)",LOGLEVEL_OPERATOR); + return lh.exadd(rh.exmul(_ex_1())); } ex operator*(const ex & lh, const ex & rh) { - debugmsg("operator*(ex,ex)",LOGLEVEL_OPERATOR); - return lh.exmul(rh); + debugmsg("operator*(ex,ex)",LOGLEVEL_OPERATOR); + return lh.exmul(rh); } ex operator/(const ex & lh, const ex & rh) { - debugmsg("operator/(ex,ex)",LOGLEVEL_OPERATOR); - return lh.exmul(power(rh,_ex_1())); + debugmsg("operator/(ex,ex)",LOGLEVEL_OPERATOR); + return lh.exmul(power(rh,_ex_1())); } ex operator%(const ex & lh, const ex & rh) { - debugmsg("operator%(ex,ex)",LOGLEVEL_OPERATOR); - return lh.exncmul(rh); + debugmsg("operator%(ex,ex)",LOGLEVEL_OPERATOR); + return lh.exncmul(rh); } @@ -73,26 +66,26 @@ ex operator%(const ex & lh, const ex & rh) numeric operator+(const numeric & lh, const numeric & rh) { - debugmsg("operator+(numeric,numeric)",LOGLEVEL_OPERATOR); - return lh.add(rh); + debugmsg("operator+(numeric,numeric)",LOGLEVEL_OPERATOR); + return lh.add(rh); } numeric operator-(const numeric & lh, const numeric & rh) { - debugmsg("operator-(numeric,numeric)",LOGLEVEL_OPERATOR); - return lh.sub(rh); + debugmsg("operator-(numeric,numeric)",LOGLEVEL_OPERATOR); + return lh.sub(rh); } numeric operator*(const numeric & lh, const numeric & rh) { - debugmsg("operator*(numeric,numeric)",LOGLEVEL_OPERATOR); - return lh.mul(rh); + debugmsg("operator*(numeric,numeric)",LOGLEVEL_OPERATOR); + return lh.mul(rh); } numeric operator/(const numeric & lh, const numeric & rh) { - debugmsg("operator/(numeric,ex)",LOGLEVEL_OPERATOR); - return lh.div(rh); + debugmsg("operator/(numeric,ex)",LOGLEVEL_OPERATOR); + return lh.div(rh); } @@ -100,32 +93,32 @@ numeric operator/(const numeric & lh, const numeric & rh) const ex & operator+=(ex & lh, const ex & rh) { - debugmsg("operator+=(ex,ex)",LOGLEVEL_OPERATOR); - return (lh=lh+rh); + debugmsg("operator+=(ex,ex)",LOGLEVEL_OPERATOR); + return (lh=lh.exadd(rh)); } const ex & operator-=(ex & lh, const ex & rh) { - debugmsg("operator-=(ex,ex)",LOGLEVEL_OPERATOR); - return (lh=lh-rh); + debugmsg("operator-=(ex,ex)",LOGLEVEL_OPERATOR); + return (lh=lh.exadd(rh.exmul(_ex_1()))); } const ex & operator*=(ex & lh, const ex & rh) { - debugmsg("operator*=(ex,ex)",LOGLEVEL_OPERATOR); - return (lh=lh*rh); + debugmsg("operator*=(ex,ex)",LOGLEVEL_OPERATOR); + return (lh=lh.exmul(rh)); } const ex & operator/=(ex & lh, const ex & rh) { - debugmsg("operator/=(ex,ex)",LOGLEVEL_OPERATOR); - return (lh=lh/rh); + debugmsg("operator/=(ex,ex)",LOGLEVEL_OPERATOR); + return (lh=lh.exmul(power(rh,_ex_1()))); } const ex & operator%=(ex & lh, const ex & rh) { - debugmsg("operator%=(ex,ex)",LOGLEVEL_OPERATOR); - return (lh=lh%rh); + debugmsg("operator%=(ex,ex)",LOGLEVEL_OPERATOR); + return (lh=lh%rh); } @@ -133,141 +126,139 @@ const ex & operator%=(ex & lh, const ex & rh) const numeric & operator+=(numeric & lh, const numeric & rh) { - debugmsg("operator+=(numeric,numeric)",LOGLEVEL_OPERATOR); - return (lh=lh.add(rh)); + debugmsg("operator+=(numeric,numeric)",LOGLEVEL_OPERATOR); + return (lh=lh.add(rh)); } const numeric & operator-=(numeric & lh, const numeric & rh) { - debugmsg("operator-=(numeric,numeric)",LOGLEVEL_OPERATOR); - return (lh=lh.sub(rh)); + debugmsg("operator-=(numeric,numeric)",LOGLEVEL_OPERATOR); + return (lh=lh.sub(rh)); } const numeric & operator*=(numeric & lh, const numeric & rh) { - debugmsg("operator*=(numeric,numeric)",LOGLEVEL_OPERATOR); - return (lh=lh.mul(rh)); + debugmsg("operator*=(numeric,numeric)",LOGLEVEL_OPERATOR); + return (lh=lh.mul(rh)); } const numeric & operator/=(numeric & lh, const numeric & rh) { - debugmsg("operator/=(numeric,numeric)",LOGLEVEL_OPERATOR); - return (lh=lh.div(rh)); + debugmsg("operator/=(numeric,numeric)",LOGLEVEL_OPERATOR); + return (lh=lh.div(rh)); } // unary operators ex operator+(const ex & lh) { - debugmsg("operator+(ex)",LOGLEVEL_OPERATOR); - return lh; + debugmsg("operator+(ex)",LOGLEVEL_OPERATOR); + return lh; } ex operator-(const ex & lh) { - debugmsg("operator-(ex)",LOGLEVEL_OPERATOR); - return lh.exmul(_ex_1()); + debugmsg("operator-(ex)",LOGLEVEL_OPERATOR); + return lh.exmul(_ex_1()); } numeric operator+(const numeric & lh) { - debugmsg("operator+(numeric)",LOGLEVEL_OPERATOR); - return lh; + debugmsg("operator+(numeric)",LOGLEVEL_OPERATOR); + return lh; } numeric operator-(const numeric & lh) { - debugmsg("operator-(numeric)",LOGLEVEL_OPERATOR); - return _num_1()*lh; + debugmsg("operator-(numeric)",LOGLEVEL_OPERATOR); + return _num_1().mul(lh); } /** Numeric prefix increment. Adds 1 and returns incremented number. */ numeric& operator++(numeric & rh) { - debugmsg("operator++(numeric)",LOGLEVEL_OPERATOR); - rh = rh+_num1(); - return rh; + debugmsg("operator++(numeric)",LOGLEVEL_OPERATOR); + rh = rh.add(_num1()); + return rh; } /** Numeric prefix decrement. Subtracts 1 and returns decremented number. */ numeric& operator--(numeric & rh) { - debugmsg("operator--(numeric)",LOGLEVEL_OPERATOR); - rh = rh-_num1(); - return rh; + debugmsg("operator--(numeric)",LOGLEVEL_OPERATOR); + rh = rh.add(_num_1()); + return rh; } /** Numeric postfix increment. Returns the number and leaves the original * incremented by 1. */ numeric operator++(numeric & lh, int) { - debugmsg("operator++(numeric,int)",LOGLEVEL_OPERATOR); - numeric tmp = lh; - lh = lh+_num1(); - return tmp; + debugmsg("operator++(numeric,int)",LOGLEVEL_OPERATOR); + numeric tmp(lh); + lh = lh.add(_num1()); + return tmp; } /** Numeric Postfix decrement. Returns the number and leaves the original * decremented by 1. */ numeric operator--(numeric & lh, int) { - debugmsg("operator--(numeric,int)",LOGLEVEL_OPERATOR); - numeric tmp = lh; - lh = lh-_num1(); - return tmp; + debugmsg("operator--(numeric,int)",LOGLEVEL_OPERATOR); + numeric tmp(lh); + lh = lh.add(_num_1()); + return tmp; } // binary relational operators ex with ex relational operator==(const ex & lh, const ex & rh) { - debugmsg("operator==(ex,ex)",LOGLEVEL_OPERATOR); - return relational(lh,rh,relational::equal); + debugmsg("operator==(ex,ex)",LOGLEVEL_OPERATOR); + return relational(lh,rh,relational::equal); } relational operator!=(const ex & lh, const ex & rh) { - debugmsg("operator!=(ex,ex)",LOGLEVEL_OPERATOR); - return relational(lh,rh,relational::not_equal); + debugmsg("operator!=(ex,ex)",LOGLEVEL_OPERATOR); + return relational(lh,rh,relational::not_equal); } relational operator<(const ex & lh, const ex & rh) { - debugmsg("operator<(ex,ex)",LOGLEVEL_OPERATOR); - return relational(lh,rh,relational::less); + debugmsg("operator<(ex,ex)",LOGLEVEL_OPERATOR); + return relational(lh,rh,relational::less); } relational operator<=(const ex & lh, const ex & rh) { - debugmsg("operator<=(ex,ex)",LOGLEVEL_OPERATOR); - return relational(lh,rh,relational::less_or_equal); + debugmsg("operator<=(ex,ex)",LOGLEVEL_OPERATOR); + return relational(lh,rh,relational::less_or_equal); } relational operator>(const ex & lh, const ex & rh) { - debugmsg("operator>(ex,ex)",LOGLEVEL_OPERATOR); - return relational(lh,rh,relational::greater); + debugmsg("operator>(ex,ex)",LOGLEVEL_OPERATOR); + return relational(lh,rh,relational::greater); } relational operator>=(const ex & lh, const ex & rh) { - debugmsg("operator>=(ex,ex)",LOGLEVEL_OPERATOR); - return relational(lh,rh,relational::greater_or_equal); + debugmsg("operator>=(ex,ex)",LOGLEVEL_OPERATOR); + return relational(lh,rh,relational::greater_or_equal); } // input/output stream operators std::ostream & operator<<(std::ostream & os, const ex & e) { - e.print(os); - return os; + e.print(os); + return os; } std::istream & operator>>(std::istream & is, ex & e) { - throw (std::logic_error("expression input from streams not implemented")); + throw (std::logic_error("expression input from streams not implemented")); } -#ifndef NO_NAMESPACE_GINAC } // namespace GiNaC -#endif // ndef NO_NAMESPACE_GINAC