X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fexpair.cpp;h=09c6f6dd2c6569814ebc2a73f332d99be1fb634b;hp=9d8375d85a94d2faa38773b22f73b7e37b622fa9;hb=9d92d4b442fc4c1a95685884be4ba0494cd02bbe;hpb=dbd9c306a74f1cb258c0d15a346b973b39deaad2;ds=sidebyside diff --git a/ginac/expair.cpp b/ginac/expair.cpp index 9d8375d8..09c6f6dd 100644 --- a/ginac/expair.cpp +++ b/ginac/expair.cpp @@ -3,7 +3,7 @@ * Implementation of expression pairs (building blocks of expairseq). */ /* - * GiNaC Copyright (C) 1999-2003 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2008 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 @@ -17,12 +17,13 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include #include "expair.h" +#include "operators.h" namespace GiNaC { @@ -34,4 +35,14 @@ void expair::print(std::ostream & os) const coeff.print(c, c.delta_indent); } +const expair expair::conjugate() const +{ + ex newrest = rest.conjugate(); + ex newcoeff = coeff.conjugate(); + if (are_ex_trivially_equal(newrest,rest) && are_ex_trivially_equal(newcoeff,coeff)) { + return *this; + } + return expair(newrest, newcoeff); +} + } // namespace GiNaC