From: Richard Kreckel Date: Tue, 18 Dec 2001 19:03:48 +0000 (+0000) Subject: * Added some long-pending docu. X-Git-Tag: release_1-0-2~5 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=742c72895d610550b021a1427a17437260f30d55;ds=sidebyside * Added some long-pending docu. --- diff --git a/check/time_antipode.cpp b/check/time_antipode.cpp index 43d4da49..f1bba8b1 100644 --- a/check/time_antipode.cpp +++ b/check/time_antipode.cpp @@ -12,7 +12,7 @@ * This program is based on work by * Isabella Bierenbaum and * Dirk Kreimer . - * For details, please ask for the diploma theses of Isabella Bierenbaum. + * For details, please see . */ /* diff --git a/ginac/ex.h b/ginac/ex.h index 0bbe1299..e819d13f 100644 --- a/ginac/ex.h +++ b/ginac/ex.h @@ -344,6 +344,11 @@ bool ex::is_equal(const ex & other) const // utility functions + +/** Compare two objects of class quickly without doing a deep tree traversal. + * @return "true" if they are equal + * "false" if equality cannot be established quickly (e1 and e2 may + * still be equal, in this case. */ inline bool are_ex_trivially_equal(const ex &e1, const ex &e2) { return e1.bp == e2.bp;