X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fexpair.cpp;h=a7e4fab2f5055f8c3092dc72dbc0bc4271bc4fc8;hp=9d8375d85a94d2faa38773b22f73b7e37b622fa9;hb=8cffcdf13d817a47f217f1a1043317d95969e070;hpb=dbd9c306a74f1cb258c0d15a346b973b39deaad2 diff --git a/ginac/expair.cpp b/ginac/expair.cpp index 9d8375d8..a7e4fab2 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-2019 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" + +#include 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