X-Git-Url: https://ginac.de/ginac.git//ginac.git?a=blobdiff_plain;f=ginac%2Foperators.h;h=47d1b745a3602aba91fda96b891cb337fc5ca5f2;hb=85ce9664ddba79c28a6945b1e5b4e2b71f77cb51;hp=30702ff18f9000da47f586e8818be8dc0224fb58;hpb=bd2d7351b89743eb68ce7d3bfa7ab62c331f9522;p=ginac.git diff --git a/ginac/operators.h b/ginac/operators.h index 30702ff1..47d1b745 100644 --- a/ginac/operators.h +++ b/ginac/operators.h @@ -3,7 +3,7 @@ * Interface to 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 @@ -25,9 +25,7 @@ #include -#ifndef NO_NAMESPACE_GINAC namespace GiNaC { -#endif // ndef NO_NAMESPACE_GINAC class ex; class numeric; @@ -38,7 +36,6 @@ ex operator+(const ex & lh, const ex & rh); ex operator-(const ex & lh, const ex & rh); ex operator*(const ex & lh, const ex & rh); ex operator/(const ex & lh, const ex & rh); -ex operator%(const ex & lh, const ex & rh); // non-commutative multiplication // binary arithmetic operators numeric with numeric numeric operator+(const numeric & lh, const numeric & rh); @@ -51,7 +48,6 @@ const ex & operator+=(ex & lh, const ex & rh); const ex & operator-=(ex & lh, const ex & rh); const ex & operator*=(ex & lh, const ex & rh); const ex & operator/=(ex & lh, const ex & rh); -const ex & operator%=(ex & lh, const ex & rh); // non-commutative multiplication // binary arithmetic assignment operators with numeric const numeric & operator+=(numeric & lh, const numeric & rh); @@ -82,8 +78,6 @@ relational operator>=(const ex & lh, const ex & rh); std::ostream & operator<<(std::ostream & os, const ex & e); std::istream & operator>>(std::istream & is, ex & e); -#ifndef NO_NAMESPACE_GINAC } // namespace GiNaC -#endif // ndef NO_NAMESPACE_GINAC #endif // ndef __GINAC_OPERATORS_H__