]> www.ginac.de Git - ginac.git/blobdiff - check/time_antipode.cpp
[BUGFIX] Fix crash in parser.
[ginac.git] / check / time_antipode.cpp
index ee543215fb5516a1949f0715a6151cc618fd5447..b5109ce8ecd1e117a583f33c3027035eb2daf2a0 100644 (file)
  *  This program is based on work by
  *      Isabella Bierenbaum <bierenbaum@thep.physik.uni-mainz.de> and
  *      Dirk Kreimer <dkreimer@bu.edu>.
- *  For details, please see <http://www.arXiv.org/abs/hep-th/0111192>.
+ *  For details, please see <https://www.arXiv.org/abs/hep-th/0111192>.
  */
 
 /*
- *  GiNaC Copyright (C) 1999-2020 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2024 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
@@ -308,7 +308,7 @@ bool node::operator<(const node &n) const
                return typeid(*vert).before(typeid(*n.vert));
        // Are the indices of the top-level nodes different?
        if (!(*vert==*n.vert))
-               return (vert<n.vert);
+               return (*vert<*n.vert);
        // Are the sets of children different, one by one?
        return (children<n.children);
 }