1 | // |
---|
2 | // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo |
---|
3 | // |
---|
4 | // The contents of this file are covered under the licence agreement in the |
---|
5 | // file "LICENCE" distributed with Cforall. |
---|
6 | // |
---|
7 | // algorithm.c -- |
---|
8 | // |
---|
9 | // Author : Peter A. Buhr |
---|
10 | // Created On : Thu Jan 28 17:10:29 2016 |
---|
11 | // Last Modified By : Peter A. Buhr |
---|
12 | // Last Modified On : Wed Jul 6 14:28:57 2016 |
---|
13 | // Update Count : 169 |
---|
14 | // |
---|
15 | |
---|
16 | #include "stdlib" |
---|
17 | |
---|
18 | //--------------------------------------- |
---|
19 | |
---|
20 | extern "C" { |
---|
21 | #define _XOPEN_SOURCE 600 // posix_memalign, *rand48 |
---|
22 | #include <stdlib.h> // malloc, free, calloc, realloc, memalign, posix_memalign, bsearch |
---|
23 | #include <string.h> // memset |
---|
24 | #include <malloc.h> // malloc_usable_size |
---|
25 | #include <math.h> // fabsf, fabs, fabsl |
---|
26 | #include <complex.h> // _Complex_I |
---|
27 | } // extern "C" |
---|
28 | |
---|
29 | forall( dtype T | sized(T) ) T * malloc( void ) { |
---|
30 | //printf( "malloc1\n" ); |
---|
31 | return (T *)(void*)malloc( (size_t)sizeof(T) ); |
---|
32 | } // malloc |
---|
33 | forall( dtype T | sized(T) ) T * malloc( char fill ) { |
---|
34 | //printf( "malloc3\n" ); |
---|
35 | T * ptr = (T *)(void*)malloc( (size_t)sizeof(T) ); |
---|
36 | return memset( ptr, (int)fill, sizeof(T) ); |
---|
37 | } // malloc |
---|
38 | |
---|
39 | forall( dtype T | sized(T) ) T * calloc( size_t nmemb ) { |
---|
40 | //printf( "calloc\n" ); |
---|
41 | return (T *)calloc( nmemb, sizeof(T) ); |
---|
42 | } // calloc |
---|
43 | |
---|
44 | forall( dtype T | sized(T) ) T * realloc( T * ptr, size_t size ) { |
---|
45 | //printf( "realloc1\n" ); |
---|
46 | return (T *)(void *)realloc( (void *)ptr, size ); |
---|
47 | } // realloc |
---|
48 | forall( dtype T | sized(T) ) T * realloc( T * ptr, size_t size, unsigned char fill ) { |
---|
49 | //printf( "realloc2\n" ); |
---|
50 | char * nptr = (T *)(void *)realloc( (void *)ptr, size ); |
---|
51 | size_t unused = malloc_usable_size( nptr ); |
---|
52 | memset( nptr + size - unused, (int)fill, unused ); // initialize any new storage |
---|
53 | return nptr; |
---|
54 | } // realloc |
---|
55 | |
---|
56 | forall( dtype T | sized(T) ) T * malloc( T * ptr, size_t size ) { |
---|
57 | //printf( "malloc4\n" ); |
---|
58 | return (T *)realloc( ptr, size ); |
---|
59 | } // malloc |
---|
60 | forall( dtype T | sized(T) ) T * malloc( T * ptr, size_t size, unsigned char fill ) { |
---|
61 | //printf( "malloc5\n" ); |
---|
62 | return (T *)realloc( ptr, size, fill ); |
---|
63 | } // malloc |
---|
64 | |
---|
65 | forall( dtype T | sized(T) ) T * aligned_alloc( size_t alignment ) { |
---|
66 | //printf( "aligned_alloc\n" ); |
---|
67 | return (T *)memalign( alignment, sizeof(T) ); |
---|
68 | } // aligned_alloc |
---|
69 | |
---|
70 | forall( dtype T | sized(T) ) T * memalign( size_t alignment ) { |
---|
71 | //printf( "memalign\n" ); |
---|
72 | return (T *)memalign( alignment, sizeof(T) ); |
---|
73 | } // memalign |
---|
74 | |
---|
75 | forall( dtype T | sized(T) ) int posix_memalign( T ** ptr, size_t alignment ) { |
---|
76 | //printf( "posix_memalign\n" ); |
---|
77 | return posix_memalign( (void **)ptr, alignment, sizeof(T) ); |
---|
78 | } // posix_memalign |
---|
79 | |
---|
80 | forall( dtype T, ttype Params | sized(T) | { void ?{}(T *, Params); } ) |
---|
81 | T * new( Params p ) { |
---|
82 | return ((T*)malloc()){ p }; |
---|
83 | } |
---|
84 | |
---|
85 | forall( dtype T | { void ^?{}(T *); } ) |
---|
86 | void delete( T * ptr ) { |
---|
87 | if ( ptr ) { |
---|
88 | ^ptr{}; |
---|
89 | free( ptr ); |
---|
90 | } |
---|
91 | } |
---|
92 | |
---|
93 | //--------------------------------------- |
---|
94 | |
---|
95 | int ato( const char * ptr ) { |
---|
96 | int i; |
---|
97 | if ( sscanf( ptr, "%d", &i ) == EOF ) {} |
---|
98 | return i; |
---|
99 | } |
---|
100 | unsigned int ato( const char * ptr ) { |
---|
101 | unsigned int ui; |
---|
102 | if ( sscanf( ptr, "%u", &ui ) == EOF ) {} |
---|
103 | return ui; |
---|
104 | } |
---|
105 | long int ato( const char * ptr ) { |
---|
106 | long int li; |
---|
107 | if ( sscanf( ptr, "%ld", &li ) == EOF ) {} |
---|
108 | return li; |
---|
109 | } |
---|
110 | unsigned long int ato( const char * ptr ) { |
---|
111 | unsigned long int uli; |
---|
112 | if ( sscanf( ptr, "%lu", &uli ) == EOF ) {} |
---|
113 | return uli; |
---|
114 | } |
---|
115 | long long int ato( const char * ptr ) { |
---|
116 | long long int lli; |
---|
117 | if ( sscanf( ptr, "%lld", &lli ) == EOF ) {} |
---|
118 | return lli; |
---|
119 | } |
---|
120 | unsigned long long int ato( const char * ptr ) { |
---|
121 | unsigned long long int ulli; |
---|
122 | if ( sscanf( ptr, "%llu", &ulli ) == EOF ) {} |
---|
123 | return ulli; |
---|
124 | } |
---|
125 | |
---|
126 | float ato( const char * ptr ) { |
---|
127 | float f; |
---|
128 | if ( sscanf( ptr, "%f", &f ) == EOF ) {} |
---|
129 | return f; |
---|
130 | } |
---|
131 | double ato( const char * ptr ) { |
---|
132 | double d; |
---|
133 | if ( sscanf( ptr, "%lf", &d ) == EOF ) {} |
---|
134 | return d; |
---|
135 | } |
---|
136 | long double ato( const char * ptr ) { |
---|
137 | long double ld; |
---|
138 | if ( sscanf( ptr, "%Lf", &ld ) == EOF ) {} |
---|
139 | return ld; |
---|
140 | } |
---|
141 | |
---|
142 | float _Complex ato( const char * ptr ) { |
---|
143 | float re, im; |
---|
144 | if ( sscanf( ptr, "%g%gi", &re, &im ) == EOF ) {} |
---|
145 | return re + im * _Complex_I; |
---|
146 | } |
---|
147 | double _Complex ato( const char * ptr ) { |
---|
148 | double re, im; |
---|
149 | if ( sscanf( ptr, "%lf%lfi", &re, &im ) == EOF ) {} |
---|
150 | return re + im * _Complex_I; |
---|
151 | } |
---|
152 | long double _Complex ato( const char * ptr ) { |
---|
153 | long double re, im; |
---|
154 | if ( sscanf( ptr, "%Lf%Lfi", &re, &im ) == EOF ) {} |
---|
155 | return re + im * _Complex_I; |
---|
156 | } |
---|
157 | |
---|
158 | int strto( const char * sptr, char ** eptr, int base ) { |
---|
159 | return (int)strtol( sptr, eptr, base ); |
---|
160 | } |
---|
161 | unsigned int strto( const char * sptr, char ** eptr, int base ) { |
---|
162 | return (unsigned int)strtoul( sptr, eptr, base ); |
---|
163 | } |
---|
164 | long int strto( const char * sptr, char ** eptr, int base ) { |
---|
165 | return strtol( sptr, eptr, base ); |
---|
166 | } |
---|
167 | unsigned long int strto( const char * sptr, char ** eptr, int base ) { |
---|
168 | return strtoul( sptr, eptr, base ); |
---|
169 | } |
---|
170 | long long int strto( const char * sptr, char ** eptr, int base ) { |
---|
171 | return strtoll( sptr, eptr, base ); |
---|
172 | } |
---|
173 | unsigned long long int strto( const char * sptr, char ** eptr, int base ) { |
---|
174 | return strtoull( sptr, eptr, base ); |
---|
175 | } |
---|
176 | |
---|
177 | float strto( const char * sptr, char ** eptr ) { |
---|
178 | return strtof( sptr, eptr ); |
---|
179 | } |
---|
180 | double strto( const char * sptr, char ** eptr ) { |
---|
181 | return strtod( sptr, eptr ); |
---|
182 | } |
---|
183 | long double strto( const char * sptr, char ** eptr ) { |
---|
184 | return strtold( sptr, eptr ); |
---|
185 | } |
---|
186 | |
---|
187 | float _Complex strto( const char * sptr, char ** eptr ) { |
---|
188 | float re, im; |
---|
189 | re = strtof( sptr, eptr ); |
---|
190 | if ( sptr == *eptr ) return 0.0; |
---|
191 | im = strtof( sptr, eptr ); |
---|
192 | if ( sptr == *eptr ) return 0.0; |
---|
193 | return re + im * _Complex_I; |
---|
194 | } |
---|
195 | double _Complex strto( const char * sptr, char ** eptr ) { |
---|
196 | double re, im; |
---|
197 | re = strtod( sptr, eptr ); |
---|
198 | if ( sptr == *eptr ) return 0.0; |
---|
199 | im = strtod( sptr, eptr ); |
---|
200 | if ( sptr == *eptr ) return 0.0; |
---|
201 | return re + im * _Complex_I; |
---|
202 | } |
---|
203 | long double _Complex strto( const char * sptr, char ** eptr ) { |
---|
204 | long double re, im; |
---|
205 | re = strtold( sptr, eptr ); |
---|
206 | if ( sptr == *eptr ) return 0.0; |
---|
207 | im = strtold( sptr, eptr ); |
---|
208 | if ( sptr == *eptr ) return 0.0; |
---|
209 | return re + im * _Complex_I; |
---|
210 | } |
---|
211 | |
---|
212 | //--------------------------------------- |
---|
213 | |
---|
214 | forall( otype T | { int ?<?( T, T ); } ) |
---|
215 | T * bsearch( T key, const T * arr, size_t dimension ) { |
---|
216 | int comp( const void * t1, const void * t2 ) { return *(T *)t1 < *(T *)t2 ? -1 : *(T *)t2 < *(T *)t1 ? 1 : 0; } |
---|
217 | return (T *)bsearch( &key, arr, dimension, sizeof(T), comp ); |
---|
218 | } // bsearch |
---|
219 | |
---|
220 | forall( otype T | { int ?<?( T, T ); } ) |
---|
221 | void qsort( const T * arr, size_t dimension ) { |
---|
222 | int comp( const void * t1, const void * t2 ) { return *(T *)t1 < *(T *)t2 ? -1 : *(T *)t2 < *(T *)t1 ? 1 : 0; } |
---|
223 | qsort( arr, dimension, sizeof(T), comp ); |
---|
224 | } // qsort |
---|
225 | |
---|
226 | //--------------------------------------- |
---|
227 | |
---|
228 | forall( otype T | { T ?/?( T, T ); T ?%?( T, T ); } ) |
---|
229 | [ T, T ] div( T t1, T t2 ) { return [ t1 / t2, t1 % t2 ]; } |
---|
230 | |
---|
231 | //--------------------------------------- |
---|
232 | |
---|
233 | char abs( char v ) { return abs( (int)v ); } |
---|
234 | long int abs( long int v ) { return labs( v ); } |
---|
235 | long long int abs( long long int v ) { return llabs( v ); } |
---|
236 | float abs( float x ) { return fabsf( x ); } |
---|
237 | double abs( double x ) { return fabs( x ); } |
---|
238 | long double abs( long double x ) { return fabsl( x ); } |
---|
239 | float abs( float _Complex x ) { return cabsf( x ); } |
---|
240 | double abs( double _Complex x ) { return cabs( x ); } |
---|
241 | long double abs( long double _Complex x ) { return cabsl( x ); } |
---|
242 | |
---|
243 | //--------------------------------------- |
---|
244 | |
---|
245 | void rand48seed( long int s ) { srand48( s ); } |
---|
246 | char rand48() { return mrand48(); } |
---|
247 | int rand48() { return mrand48(); } |
---|
248 | unsigned int rand48() { return lrand48(); } |
---|
249 | long int rand48() { return mrand48(); } |
---|
250 | unsigned long int rand48() { return lrand48(); } |
---|
251 | float rand48() { return (float)drand48(); } // otherwise float uses lrand48 |
---|
252 | double rand48() { return drand48(); } |
---|
253 | float _Complex rand48() { return (float)drand48() + (float _Complex)(drand48() * _Complex_I); } |
---|
254 | double _Complex rand48() { return drand48() + (double _Complex)(drand48() * _Complex_I); } |
---|
255 | long double _Complex rand48() { return (long double)drand48() + (long double _Complex)(drand48() * _Complex_I); } |
---|
256 | |
---|
257 | //--------------------------------------- |
---|
258 | |
---|
259 | forall( otype T | { int ?<?( T, T ); } ) |
---|
260 | T min( T t1, T t2 ) { |
---|
261 | return t1 < t2 ? t1 : t2; |
---|
262 | } // min |
---|
263 | |
---|
264 | forall( otype T | { int ?>?( T, T ); } ) |
---|
265 | T max( T t1, T t2 ) { |
---|
266 | return t1 > t2 ? t1 : t2; |
---|
267 | } // max |
---|
268 | |
---|
269 | forall( otype T | { T min( T, T ); T max( T, T ); } ) |
---|
270 | T clamp( T value, T min_val, T max_val ) { |
---|
271 | return max( min_val, min( value, max_val ) ); |
---|
272 | } // clamp |
---|
273 | |
---|
274 | forall( otype T ) |
---|
275 | void swap( T * t1, T * t2 ) { |
---|
276 | T temp = *t1; |
---|
277 | *t1 = *t2; |
---|
278 | *t2 = temp; |
---|
279 | } // swap |
---|
280 | |
---|
281 | // Local Variables: // |
---|
282 | // tab-width: 4 // |
---|
283 | // End: // |
---|