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 : Sun Dec 24 13:00:15 2017
|
---|
13 | // Update Count : 344
|
---|
14 | //
|
---|
15 |
|
---|
16 | #include "stdlib"
|
---|
17 |
|
---|
18 | //---------------------------------------
|
---|
19 |
|
---|
20 | #define _XOPEN_SOURCE 600 // posix_memalign, *rand48
|
---|
21 | #include <string.h> // memcpy, memset
|
---|
22 | #include <malloc.h> // malloc_usable_size
|
---|
23 | #include <math.h> // fabsf, fabs, fabsl
|
---|
24 | #include <complex.h> // _Complex_I
|
---|
25 | #include <assert.h>
|
---|
26 |
|
---|
27 | // resize, non-array types
|
---|
28 | forall( dtype T | sized(T) ) T * alloc( T ptr[], size_t dim, char fill ) {
|
---|
29 | size_t olen = malloc_usable_size( ptr ); // current allocation
|
---|
30 | char * nptr = (void *)realloc( (void *)ptr, dim * (size_t)sizeof(T) ); // C realloc
|
---|
31 | size_t nlen = malloc_usable_size( nptr ); // new allocation
|
---|
32 | if ( nlen > olen ) { // larger ?
|
---|
33 | memset( nptr + olen, (int)fill, nlen - olen ); // initialize added storage
|
---|
34 | } //
|
---|
35 | return (T *)nptr;
|
---|
36 | } // alloc
|
---|
37 |
|
---|
38 | // allocation/deallocation and constructor/destructor, non-array types
|
---|
39 | forall( dtype T | sized(T), ttype Params | { void ?{}( T &, Params ); } )
|
---|
40 | T * new( Params p ) {
|
---|
41 | return &(*malloc()){ p }; // run constructor
|
---|
42 | } // new
|
---|
43 |
|
---|
44 | forall( dtype T | sized(T) | { void ^?{}( T & ); } )
|
---|
45 | void delete( T * ptr ) {
|
---|
46 | if ( ptr ) { // ignore null
|
---|
47 | ^(*ptr){}; // run destructor
|
---|
48 | free( ptr );
|
---|
49 | } // if
|
---|
50 | } // delete
|
---|
51 |
|
---|
52 | forall( dtype T, ttype Params | sized(T) | { void ^?{}( T & ); void delete( Params ); } )
|
---|
53 | void delete( T * ptr, Params rest ) {
|
---|
54 | if ( ptr ) { // ignore null
|
---|
55 | ^(*ptr){}; // run destructor
|
---|
56 | free( ptr );
|
---|
57 | } // if
|
---|
58 | delete( rest );
|
---|
59 | } // delete
|
---|
60 |
|
---|
61 |
|
---|
62 | // allocation/deallocation and constructor/destructor, array types
|
---|
63 | forall( dtype T | sized(T), ttype Params | { void ?{}( T &, Params ); } )
|
---|
64 | T * anew( size_t dim, Params p ) {
|
---|
65 | T *arr = alloc( dim );
|
---|
66 | for ( unsigned int i = 0; i < dim; i += 1 ) {
|
---|
67 | (arr[i]){ p }; // run constructor
|
---|
68 | } // for
|
---|
69 | return arr;
|
---|
70 | } // anew
|
---|
71 |
|
---|
72 | forall( dtype T | sized(T) | { void ^?{}( T & ); } )
|
---|
73 | void adelete( size_t dim, T arr[] ) {
|
---|
74 | if ( arr ) { // ignore null
|
---|
75 | for ( int i = dim - 1; i >= 0; i -= 1 ) { // reverse allocation order, must be unsigned
|
---|
76 | ^(arr[i]){}; // run destructor
|
---|
77 | } // for
|
---|
78 | free( arr );
|
---|
79 | } // if
|
---|
80 | } // adelete
|
---|
81 |
|
---|
82 | forall( dtype T | sized(T) | { void ^?{}( T & ); }, ttype Params | { void adelete( Params ); } )
|
---|
83 | void adelete( size_t dim, T arr[], Params rest ) {
|
---|
84 | if ( arr ) { // ignore null
|
---|
85 | for ( int i = dim - 1; i >= 0; i -= 1 ) { // reverse allocation order, must be unsigned
|
---|
86 | ^(arr[i]){}; // run destructor
|
---|
87 | } // for
|
---|
88 | free( arr );
|
---|
89 | } // if
|
---|
90 | adelete( rest );
|
---|
91 | } // adelete
|
---|
92 |
|
---|
93 | //---------------------------------------
|
---|
94 |
|
---|
95 | float _Complex strto( const char * sptr, char ** eptr ) {
|
---|
96 | float re, im;
|
---|
97 | char * eeptr;
|
---|
98 | re = strtof( sptr, &eeptr );
|
---|
99 | if ( sptr == *eeptr ) { if ( eptr != 0 ) *eptr = eeptr; return 0.0f + 0.0f * _Complex_I; }
|
---|
100 | im = strtof( eeptr, &eeptr );
|
---|
101 | if ( sptr == *eeptr ) { if ( eptr != 0 ) *eptr = eeptr; return 0.0f + 0.0f * _Complex_I; }
|
---|
102 | if ( *eeptr != 'i' ) { if ( eptr != 0 ) *eptr = eeptr; return 0.0f + 0.0f * _Complex_I; }
|
---|
103 | return re + im * _Complex_I;
|
---|
104 | } // strto
|
---|
105 |
|
---|
106 | double _Complex strto( const char * sptr, char ** eptr ) {
|
---|
107 | double re, im;
|
---|
108 | char * eeptr;
|
---|
109 | re = strtod( sptr, &eeptr );
|
---|
110 | if ( sptr == *eeptr ) { if ( eptr != 0 ) *eptr = eeptr; return 0.0 + 0.0 * _Complex_I; }
|
---|
111 | im = strtod( eeptr, &eeptr );
|
---|
112 | if ( sptr == *eeptr ) { if ( eptr != 0 ) *eptr = eeptr; return 0.0 + 0.0 * _Complex_I; }
|
---|
113 | if ( *eeptr != 'i' ) { if ( eptr != 0 ) *eptr = eeptr; return 0.0 + 0.0 * _Complex_I; }
|
---|
114 | return re + im * _Complex_I;
|
---|
115 | } // strto
|
---|
116 |
|
---|
117 | long double _Complex strto( const char * sptr, char ** eptr ) {
|
---|
118 | long double re, im;
|
---|
119 | char * eeptr;
|
---|
120 | re = strtold( sptr, &eeptr );
|
---|
121 | if ( sptr == *eeptr ) { if ( eptr != 0 ) *eptr = eeptr; return 0.0L + 0.0L * _Complex_I; }
|
---|
122 | im = strtold( eeptr, &eeptr );
|
---|
123 | if ( sptr == *eeptr ) { if ( eptr != 0 ) *eptr = eeptr; return 0.0L + 0.0L * _Complex_I; }
|
---|
124 | if ( *eeptr != 'i' ) { if ( eptr != 0 ) *eptr = eeptr; return 0.0L + 0.0L * _Complex_I; }
|
---|
125 | return re + im * _Complex_I;
|
---|
126 | } // strto
|
---|
127 |
|
---|
128 | //---------------------------------------
|
---|
129 |
|
---|
130 | forall( otype T | { int ?<?( T, T ); } )
|
---|
131 | T * bsearch( T key, const T * arr, size_t dim ) {
|
---|
132 | int comp( const void * t1, const void * t2 ) { return *(T *)t1 < *(T *)t2 ? -1 : *(T *)t2 < *(T *)t1 ? 1 : 0; }
|
---|
133 | return (T *)bsearch( &key, arr, dim, sizeof(T), comp );
|
---|
134 | } // bsearch
|
---|
135 |
|
---|
136 | forall( otype T | { int ?<?( T, T ); } )
|
---|
137 | unsigned int bsearch( T key, const T * arr, size_t dim ) {
|
---|
138 | T * result = bsearch( key, arr, dim );
|
---|
139 | return result ? result - arr : dim; // pointer subtraction includes sizeof(T)
|
---|
140 | } // bsearch
|
---|
141 |
|
---|
142 | forall( otype T | { int ?<?( T, T ); } )
|
---|
143 | void qsort( const T * arr, size_t dim ) {
|
---|
144 | int comp( const void * t1, const void * t2 ) { return *(T *)t1 < *(T *)t2 ? -1 : *(T *)t2 < *(T *)t1 ? 1 : 0; }
|
---|
145 | qsort( arr, dim, sizeof(T), comp );
|
---|
146 | } // qsort
|
---|
147 |
|
---|
148 | //---------------------------------------
|
---|
149 |
|
---|
150 | [ int, int ] div( int num, int denom ) { div_t qr = div( num, denom ); return [ qr.quot, qr.rem ]; }
|
---|
151 | [ long int, long int ] div( long int num, long int denom ) { ldiv_t qr = ldiv( num, denom ); return [ qr.quot, qr.rem ]; }
|
---|
152 | [ long long int, long long int ] div( long long int num, long long int denom ) { lldiv_t qr = lldiv( num, denom ); return [ qr.quot, qr.rem ]; }
|
---|
153 | forall( otype T | { T ?/?( T, T ); T ?%?( T, T ); } )
|
---|
154 | [ T, T ] div( T num, T denom ) { return [ num / denom, num % denom ]; }
|
---|
155 |
|
---|
156 | //---------------------------------------
|
---|
157 |
|
---|
158 | void random_seed( long int s ) { srand48( s ); srandom( s ); } // call srandom to harmonize with C-lib random
|
---|
159 | char random( void ) { return (unsigned long int)random(); }
|
---|
160 | char random( char u ) { return random( (unsigned long int)u ); }
|
---|
161 | char random( char l, char u ) { return random( (unsigned long int)l, (unsigned long int)u ); }
|
---|
162 | int random( void ) { return (long int)random(); }
|
---|
163 | int random( int u ) { return random( (long int)u ); }
|
---|
164 | int random( int l, int u ) { return random( (long int)l, (long int)u ); }
|
---|
165 | unsigned int random( void ) { return (unsigned long int)random(); }
|
---|
166 | unsigned int random( unsigned int u ) { return random( (unsigned long int)u ); }
|
---|
167 | unsigned int random( unsigned int l, unsigned int u ) { return random( (unsigned long int)l, (unsigned long int)u ); }
|
---|
168 | //extern "C" { long int random() { return mrand48(); } }
|
---|
169 | long int random( long int u ) { if ( u < 0 ) return random( u, 0 ); else return random( 0, u ); }
|
---|
170 | long int random( long int l, long int u ) { assert( l < u ); return lrand48() % (u - l) + l; }
|
---|
171 | unsigned long int random( void ) { return lrand48(); }
|
---|
172 | unsigned long int random( unsigned long int u ) { return lrand48() % u; }
|
---|
173 | unsigned long int random( unsigned long int l, unsigned long int u ) { assert( l < u ); return lrand48() % (u - l) + l; }
|
---|
174 | float random( void ) { return (float)drand48(); } // cast otherwise float uses lrand48
|
---|
175 | double random( void ) { return drand48(); }
|
---|
176 | float _Complex random( void ) { return (float)drand48() + (float _Complex)(drand48() * _Complex_I); }
|
---|
177 | double _Complex random( void ) { return drand48() + (double _Complex)(drand48() * _Complex_I); }
|
---|
178 | long double _Complex random( void ) { return (long double)drand48() + (long double _Complex)(drand48() * _Complex_I); }
|
---|
179 |
|
---|
180 |
|
---|
181 | // Local Variables: //
|
---|
182 | // tab-width: 4 //
|
---|
183 | // End: //
|
---|