]> www.ginac.de Git - ginac.git/blobdiff - ginac/operators.cpp
* Eliminated overloaded operator% for noncommunistic objects for good.
[ginac.git] / ginac / operators.cpp
index 4e5781a692d03da8fedb28799e966dfdc3fe7b23..bd9a4425b4534cd85fff4c5d1d23e4d9aba29317 100644 (file)
@@ -55,12 +55,6 @@ ex operator/(const ex & lh, const ex & rh)
        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);
-}
-
 
 // binary arithmetic operators numeric with numeric
 
@@ -115,12 +109,6 @@ const ex & operator/=(ex & lh, const ex & rh)
        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);
-}
-
 
 // binary arithmetic assignment operators with numeric