]> www.ginac.de Git - ginac.git/blob - ginac/utils.cpp
- added documentation to ex_to_series() and series_to_poly()
[ginac.git] / ginac / utils.cpp
1 /** @file utils.cpp
2  *
3  *  Implementation of several small and furry utilities. */
4
5 /*
6  *  GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 #include "utils.h"
24
25 namespace GiNaC {
26
27 unsigned log2(unsigned n)
28 {
29     unsigned k;
30     for (k = 0; n > 1; n >>= 1) ++k;
31     return k;
32 }
33
34 int compare_pointers(void const * a, void const * b)
35 {
36     if (a<b) {
37         return -1;
38     } else if (a>b) {
39         return 1;
40     }
41     return 0;
42 }
43
44 // comment skeletton for header files
45
46
47 // member functions
48
49     // default constructor, destructor, copy constructor assignment operator and helpers
50     // none
51
52     // other constructors
53     // none
54
55     // functions overriding virtual functions from bases classes
56     // none
57     
58     // new virtual functions which can be overridden by derived classes
59     // none
60
61     // non-virtual functions in this class
62     // none
63
64 // member variables
65 // none
66     
67
68
69 // comment skeletton for implementation files
70
71
72 //////////
73 // default constructor, destructor, copy constructor assignment operator and helpers
74 //////////
75
76 // public
77 // protected
78
79 //////////
80 // other constructors
81 //////////
82
83 // public
84 // none
85
86 //////////
87 // functions overriding virtual functions from bases classes
88 //////////
89
90 // public
91 // protected
92 // none
93
94 //////////
95 // new virtual functions which can be overridden by derived classes
96 //////////
97
98 // public
99 // protected
100 // none
101
102 //////////
103 // non-virtual functions in this class
104 //////////
105
106 // public
107 // protected
108 // none
109
110 //////////
111 // static member variables
112 //////////
113
114 // protected
115 // private
116 // none
117
118 } // namespace GiNaC