X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fex.h;h=783c89ee2fc204cdaed11f95d1477e1009180db0;hp=3070b7ada020d68c917907b77434315b8992c12e;hb=e20fd5e760136cf343f4d2d73d0f3dfc6573ac49;hpb=98fa99a4c097b9baee1ce09124a24bced4b1abbb diff --git a/ginac/ex.h b/ginac/ex.h index 3070b7ad..783c89ee 100644 --- a/ginac/ex.h +++ b/ginac/ex.h @@ -3,7 +3,7 @@ * Interface to GiNaC's light-weight expression handles. */ /* - * GiNaC Copyright (C) 1999-2006 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 @@ -52,13 +52,6 @@ private: /** For construction of flyweights, etc. */ static library_init library_initializer; -/** Rotate bits of unsigned value by one bit to the left. - * This can be necesary if the user wants to define its own hashes. */ -inline unsigned rotate_left(unsigned n) -{ - return (n & 0x80000000U) ? (n << 1 | 0x00000001U) : (n << 1); -} - class scalar_products; class const_iterator; class const_preorder_iterator;