File: m_apm.h

package info (click to toggle)
pgadmin3 1.20.0~beta2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 73,704 kB
  • ctags: 18,591
  • sloc: cpp: 193,786; ansic: 18,736; sh: 5,154; pascal: 1,120; yacc: 927; makefile: 516; lex: 421; xml: 126; perl: 40
file content (767 lines) | stat: -rw-r--r-- 17,557 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
//////////////////////////////////////////////////////////////////////////
//
// pgScript - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
//////////////////////////////////////////////////////////////////////////



/*
 *  M_APM  -  m_apm.h
 *
 *  Copyright (C) 1999 - 2007   Michael C. Ring
 *
 *  Permission to use, copy, and distribute this software and its
 *  documentation for any purpose with or without fee is hereby granted,
 *  provided that the above copyright notice appear in all copies and
 *  that both that copyright notice and this permission notice appear
 *  in supporting documentation.
 *
 *  Permission to modify the software is granted. Permission to distribute
 *  the modified code is granted. Modifications are to be distributed by
 *  using the file 'license.txt' as a template to modify the file header.
 *  'license.txt' is available in the official MAPM distribution.
 *
 *  This software is provided "as is" without express or implied warranty.
 */

/*
 *      This is the header file that the user will include.
 *
 */

#undef sprintf
#undef strcat

#ifndef M__APM__INCLUDED
#define M__APM__INCLUDED

#ifdef __cplusplus
/* Comment this line out if you've compiled the library as C++. */
#define APM_CONVERT_FROM_C
#endif

#ifdef APM_CONVERT_FROM_C
extern "C" {
#endif

	typedef unsigned char UCHAR;

	typedef struct
	{
		UCHAR	*m_apm_data;
		long	m_apm_id;
		int     m_apm_refcount;       /* <- used only by C++ MAPM class */
		int	m_apm_malloclength;
		int	m_apm_datalength;
		int	m_apm_exponent;
		int	m_apm_sign;
	} M_APM_struct;

	typedef M_APM_struct *M_APM;


#define MAPM_LIB_VERSION \
    "MAPM Library Version 4.9.5  Copyright (C) 1999-2007, Michael C. Ring"
#define MAPM_LIB_SHORT_VERSION "4.9.5"


	/*
	 *	convienient predefined constants
	 */

	extern	M_APM	MM_Zero;
	extern	M_APM	MM_One;
	extern	M_APM	MM_Two;
	extern	M_APM	MM_Three;
	extern	M_APM	MM_Four;
	extern	M_APM	MM_Five;
	extern	M_APM	MM_Ten;

	extern	M_APM	MM_PI;
	extern	M_APM	MM_HALF_PI;
	extern	M_APM	MM_2_PI;
	extern	M_APM	MM_E;

	extern	M_APM	MM_LOG_E_BASE_10;
	extern	M_APM	MM_LOG_10_BASE_E;
	extern	M_APM	MM_LOG_2_BASE_E;
	extern	M_APM	MM_LOG_3_BASE_E;


	/*
	 *	function prototypes
	 */

	extern	M_APM	m_apm_init(void);
	extern	void	m_apm_free(M_APM);
	extern	void	m_apm_free_all_mem(void);
	extern	void	m_apm_trim_mem_usage(void);
	extern	char	*m_apm_lib_version(char *);
	extern	char	*m_apm_lib_short_version(char *);

	extern	void	m_apm_set_string(M_APM, const char *);
	extern	void	m_apm_set_double(M_APM, double);
	extern	void	m_apm_set_long(M_APM, long);

	extern	void	m_apm_to_string(char *, int, M_APM);
	extern  void	m_apm_to_fixpt_string(char *, int, M_APM);
	extern  void	m_apm_to_fixpt_stringex(char *, int, M_APM, char, char, int);
	extern  char	*m_apm_to_fixpt_stringexp(int, M_APM, char, char, int);
	extern  void    m_apm_to_integer_string(char *, M_APM);

	extern	void	m_apm_absolute_value(M_APM, M_APM);
	extern	void	m_apm_negate(M_APM, M_APM);
	extern	void	m_apm_copy(M_APM, M_APM);
	extern	void	m_apm_round(M_APM, int, M_APM);
	extern	int	m_apm_compare(M_APM, M_APM);
	extern	int	m_apm_sign(M_APM);
	extern	int	m_apm_exponent(M_APM);
	extern	int	m_apm_significant_digits(M_APM);
	extern	int	m_apm_is_integer(M_APM);
	extern	int	m_apm_is_even(M_APM);
	extern	int	m_apm_is_odd(M_APM);

	extern	void	m_apm_gcd(M_APM, M_APM, M_APM);
	extern	void	m_apm_lcm(M_APM, M_APM, M_APM);

	extern	void	m_apm_add(M_APM, M_APM, M_APM);
	extern	void	m_apm_subtract(M_APM, M_APM, M_APM);
	extern	void	m_apm_multiply(M_APM, M_APM, M_APM);
	extern	void	m_apm_divide(M_APM, int, M_APM, M_APM);
	extern	void	m_apm_integer_divide(M_APM, M_APM, M_APM);
	extern	void	m_apm_integer_div_rem(M_APM, M_APM, M_APM, M_APM);
	extern	void	m_apm_reciprocal(M_APM, int, M_APM);
	extern	void	m_apm_factorial(M_APM, M_APM);
	extern	void	m_apm_floor(M_APM, M_APM);
	extern	void	m_apm_ceil(M_APM, M_APM);
	extern	void	m_apm_get_random(M_APM);
	extern	void	m_apm_set_random_seed(char *);

	extern	void	m_apm_sqrt(M_APM, int, M_APM);
	extern	void	m_apm_cbrt(M_APM, int, M_APM);
	extern	void	m_apm_log(M_APM, int, M_APM);
	extern	void	m_apm_log10(M_APM, int, M_APM);
	extern	void	m_apm_exp(M_APM, int, M_APM);
	extern	void	m_apm_pow(M_APM, int, M_APM, M_APM);
	extern  void	m_apm_integer_pow(M_APM, int, M_APM, int);
	extern  void	m_apm_integer_pow_nr(M_APM, M_APM, int);

	extern	void	m_apm_sin_cos(M_APM, M_APM, int, M_APM);
	extern	void	m_apm_sin(M_APM, int, M_APM);
	extern	void	m_apm_cos(M_APM, int, M_APM);
	extern	void	m_apm_tan(M_APM, int, M_APM);
	extern	void	m_apm_arcsin(M_APM, int, M_APM);
	extern	void	m_apm_arccos(M_APM, int, M_APM);
	extern	void	m_apm_arctan(M_APM, int, M_APM);
	extern	void	m_apm_arctan2(M_APM, int, M_APM, M_APM);

	extern  void    m_apm_sinh(M_APM, int, M_APM);
	extern  void    m_apm_cosh(M_APM, int, M_APM);
	extern  void    m_apm_tanh(M_APM, int, M_APM);
	extern  void    m_apm_arcsinh(M_APM, int, M_APM);
	extern  void    m_apm_arccosh(M_APM, int, M_APM);
	extern  void    m_apm_arctanh(M_APM, int, M_APM);

	extern  void    m_apm_cpp_precision(int);   /* only for C++ wrapper */

	/* more intuitive alternate names for the ARC functions ... */

#define m_apm_asin m_apm_arcsin
#define m_apm_acos m_apm_arccos
#define m_apm_atan m_apm_arctan
#define m_apm_atan2 m_apm_arctan2

#define m_apm_asinh m_apm_arcsinh
#define m_apm_acosh m_apm_arccosh
#define m_apm_atanh m_apm_arctanh

#ifdef APM_CONVERT_FROM_C
}      /* End extern "C" bracket */
#endif

#ifdef __cplusplus   /*<- Hides the class below from C compilers */

/*
    This class lets you use M_APM's a bit more intuitively with
    C++'s operator and function overloading, constructors, etc.

    Added 3/24/2000 by Orion Sky Lawlor, olawlor@acm.org
*/

extern
#ifdef APM_CONVERT_FROM_C
"C"
#endif
int MM_cpp_min_precision;


class MAPM
{
protected:

	/*
	The M_APM structure here is implemented as a reference-
	counted, copy-on-write data structure-- this makes copies
	very fast, but that's why it's so ugly.  A MAPM object is
	basically just a wrapper around a (possibly shared)
	M_APM_struct myVal.
	*/


	M_APM myVal;  /* My M_APM structure */
	void create(void)
	{
		myVal = makeNew();
	}
	void destroy(void)
	{
		unref(myVal);
		myVal = NULL;
	}
	void copyFrom(M_APM Nval)
	{
		M_APM oldVal = myVal;
		myVal = Nval;
		ref(myVal);
		unref(oldVal);
	}
	static M_APM makeNew(void)
	{
		M_APM val = m_apm_init();
		/* refcount initialized to 1 by 'm_apm_init' */
		return val;
	}
	static void ref(M_APM val)
	{
		val->m_apm_refcount++;
	}
	static void unref(M_APM val)
	{
		val->m_apm_refcount--;
		if (val->m_apm_refcount == 0)
			m_apm_free(val);
	}

	/* This routine is called to get a private (mutable)
	   copy of our current value. */
	M_APM val(void)
	{
		if (myVal->m_apm_refcount == 1)
			/* Return my private myVal */
			return myVal;

		/* Otherwise, our copy of myVal is shared--
		   we need to make a new private copy.
		        */
		M_APM oldVal = myVal;
		myVal = makeNew();
		m_apm_copy(myVal, oldVal);
		unref(oldVal);
		return myVal;
	}

	/*BAD: C M_APM routines doesn't use "const" where they should--
	  hence we have to cast to a non-const type here (FIX THIS!).

	  (in due time.... MCR)
	*/
	M_APM cval(void) const
	{
		return (M_APM)myVal;
	}
	/* This is the default number of digits to use for
	   1-ary functions like sin, cos, tan, etc.
	   It's the larger of my digits and cpp_min_precision.
	    */
	int myDigits(void) const
	{
		int maxd = m_apm_significant_digits(cval());
		if (maxd < MM_cpp_min_precision) maxd = MM_cpp_min_precision;
		return maxd;
	}
	/* This is the default number of digits to use for
	   2-ary functions like divide, atan2, etc.
	   It's the larger of my digits, his digits, and cpp_min_precision.
	    */
	int digits(const MAPM &otherVal) const
	{
		int maxd = myDigits();
		int his = m_apm_significant_digits(otherVal.cval());
		if (maxd < his) maxd = his;
		return maxd;
	}
public:
	/* Constructors: */
	MAPM(void) /* Default constructor (takes no value) */
	{
		create();
	}
	MAPM(const MAPM &m) /* Copy constructor */
	{
		myVal = (M_APM)m.cval();
		ref(myVal);
	}
	MAPM(M_APM m) /* M_APM constructor (refcount starts at one) */
	{
		myVal = (M_APM)m;
		ref(myVal);
	}
	MAPM(const char *s) /* Constructor from string */
	{
		create();
		m_apm_set_string(val(), (char *)s);
	}
	MAPM(double d) /* Constructor from double-precision float */
	{
		create();
		m_apm_set_double(val(), d);
	}
	MAPM(int l) /* Constructor from int */
	{
		create();
		m_apm_set_long(val(), l);
	}
	MAPM(long l) /* Constructor from long int */
	{
		create();
		m_apm_set_long(val(), l);
	}
	/* Destructor */
	~MAPM()
	{
		destroy();
	}

	/* Extracting string descriptions: */
	void toString(char *dest, int decimalPlaces) const
	{
		m_apm_to_string(dest, decimalPlaces, cval());
	}
	void toFixPtString(char *dest, int decimalPlaces) const
	{
		m_apm_to_fixpt_string(dest, decimalPlaces, cval());
	}
	void toFixPtStringEx(char *dest, int dp, char a, char b, int c) const
	{
		m_apm_to_fixpt_stringex(dest, dp, cval(), a, b, c);
	}
	char *toFixPtStringExp(int dp, char a, char b, int c) const
	{
		return(m_apm_to_fixpt_stringexp(dp, cval(), a, b, c));
	}
	void toIntegerString(char *dest) const
	{
		m_apm_to_integer_string(dest, cval());
	}

	/* Basic operators: */
	MAPM &operator=(const MAPM &m) /* Assigment operator */
	{
		copyFrom((M_APM)m.cval());
		return *this;
	}
	MAPM &operator=(const char *s) /* Assigment operator */
	{
		m_apm_set_string(val(), (char *)s);
		return *this;
	}
	MAPM &operator=(double d) /* Assigment operator */
	{
		m_apm_set_double(val(), d);
		return *this;
	}
	MAPM &operator=(int l) /* Assigment operator */
	{
		m_apm_set_long(val(), l);
		return *this;
	}
	MAPM &operator=(long l) /* Assigment operator */
	{
		m_apm_set_long(val(), l);
		return *this;
	}
	MAPM operator++() /* Prefix increment operator */
	{
		return *this = *this + MM_One;
	}
	MAPM operator--() /* Prefix decrement operator */
	{
		return *this = *this - MM_One;
	}
	const MAPM operator++(int)  /* Postfix increment operator */
	{
		MAPM old = *this;
		++(*this);          /* Call prefix increment */
		return old;
	}
	const MAPM operator--(int)  /* Postfix decrement operator */
	{
		MAPM old = *this;
		--(*this);          /* Call prefix decrement */
		return old;
	}

	/* Comparison operators */
	int operator==(const MAPM &m) const /* Equality operator */
	{
		return m_apm_compare(cval(), m.cval()) == 0;
	}
	int operator!=(const MAPM &m) const /* Inequality operator */
	{
		return m_apm_compare(cval(), m.cval()) != 0;
	}
	int operator<(const MAPM &m) const
	{
		return m_apm_compare(cval(), m.cval()) < 0;
	}
	int operator<=(const MAPM &m) const
	{
		return m_apm_compare(cval(), m.cval()) <= 0;
	}
	int operator>(const MAPM &m) const
	{
		return m_apm_compare(cval(), m.cval()) > 0;
	}
	int operator>=(const MAPM &m) const
	{
		return m_apm_compare(cval(), m.cval()) >= 0;
	}

	/* Basic arithmetic operators */
	friend MAPM operator+(const MAPM &a, const MAPM &b);
	friend MAPM operator-(const MAPM &a, const MAPM &b);
	friend MAPM operator*(const MAPM &a, const MAPM &b)
	{
		MAPM ret;
		m_apm_multiply(ret.val(), a.cval(), b.cval());
		return ret;
	}
	friend MAPM operator%(const MAPM &a, const MAPM &b)
	{
		MAPM quot, ret;
		m_apm_integer_div_rem(quot.val(), ret.val(),
		                      a.cval(), b.cval());
		return ret;
	}

	/* Default division keeps larger of cpp_min_precision, numerator
	   digits of precision, or denominator digits of precision. */
	friend MAPM operator/(const MAPM &a, const MAPM &b)
	{
		return a.divide(b, a.digits(b));
	}

	MAPM divide(const MAPM &m, int toDigits) const
	{
		MAPM ret;
		m_apm_divide(ret.val(), toDigits, cval(),
		             m.cval());
		return ret;
	}
	MAPM divide(const MAPM &m) const
	{
		return divide(m, digits(m));
	}

	/* Assignment arithmetic operators */
	MAPM &operator+=(const MAPM &m)
	{
		*this = *this + m;
		return *this;
	}
	MAPM &operator-=(const MAPM &m)
	{
		*this = *this - m;
		return *this;
	}
	MAPM &operator*=(const MAPM &m)
	{
		*this = *this * m;
		return *this;
	}
	MAPM &operator/=(const MAPM &m)
	{
		*this = *this / m;
		return *this;
	}
	MAPM &operator%=(const MAPM &m)
	{
		*this = *this % m;
		return *this;
	}

	/* Extracting/setting simple information: */
	int sign(void) const
	{
		return m_apm_sign(cval());
	}
	int exponent(void) const
	{
		return m_apm_exponent(cval());
	}
	int significant_digits(void) const
	{
		return m_apm_significant_digits(cval());
	}
	int is_integer(void) const
	{
		return m_apm_is_integer(cval());
	}
	int is_even(void) const
	{
		return m_apm_is_even(cval());
	}
	int is_odd(void) const
	{
		return m_apm_is_odd(cval());
	}

	/* Functions: */
	MAPM abs(void) const
	{
		MAPM ret;
		m_apm_absolute_value(ret.val(), cval());
		return ret;
	}
	MAPM neg(void) const
	{
		MAPM ret;
		m_apm_negate(ret.val(), cval());
		return ret;
	}
	MAPM round(int toDigits) const
	{
		MAPM ret;
		m_apm_round(ret.val(), toDigits, cval());
		return ret;
	}
	MAPM operator-(void) const
	{
		return neg();
	}

	/* I got tired of typing the various declarations for a simple
	   1-ary real-to-real function on MAPM's; hence this define:
	   The digits-free versions return my digits of precision or
	   cpp_min_precision, whichever is bigger.
	*/

#define MAPM_1aryFunc(func) \
	MAPM func(int toDigits) const\
		{MAPM ret;m_apm_##func(ret.val(),toDigits,cval());return ret;}\
	MAPM func(void) const {return func(myDigits());}

	MAPM_1aryFunc(sqrt)
	MAPM_1aryFunc(cbrt)
	MAPM_1aryFunc(log)
	MAPM_1aryFunc(exp)
	MAPM_1aryFunc(log10)
	MAPM_1aryFunc(sin)
	MAPM_1aryFunc(asin)
	MAPM_1aryFunc(cos)
	MAPM_1aryFunc(acos)
	MAPM_1aryFunc(tan)
	MAPM_1aryFunc(atan)
	MAPM_1aryFunc(sinh)
	MAPM_1aryFunc(asinh)
	MAPM_1aryFunc(cosh)
	MAPM_1aryFunc(acosh)
	MAPM_1aryFunc(tanh)
	MAPM_1aryFunc(atanh)
#undef MAPM_1aryFunc

	void sincos(MAPM &sinR, MAPM &cosR, int toDigits)
	{
		m_apm_sin_cos(sinR.val(), cosR.val(), toDigits, cval());
	}
	void sincos(MAPM &sinR, MAPM &cosR)
	{
		sincos(sinR, cosR, myDigits());
	}
	MAPM pow(const MAPM &m, int toDigits) const
	{
		MAPM ret;
		m_apm_pow(ret.val(), toDigits, cval(),
		          m.cval());
		return ret;
	}
	MAPM pow(const MAPM &m) const
	{
		return pow(m, digits(m));
	}
	MAPM atan2(const MAPM &x, int toDigits) const
	{
		MAPM ret;
		m_apm_arctan2(ret.val(), toDigits, cval(),
		              x.cval());
		return ret;
	}
	MAPM atan2(const MAPM &x) const
	{
		return atan2(x, digits(x));
	}

	MAPM gcd(const MAPM &m) const
	{
		MAPM ret;
		m_apm_gcd(ret.val(), cval(), m.cval());
		return ret;
	}

	MAPM lcm(const MAPM &m) const
	{
		MAPM ret;
		m_apm_lcm(ret.val(), cval(), m.cval());
		return ret;
	}

	static MAPM random(void)
	{
		MAPM ret;
		m_apm_get_random(ret.val());
		return ret;
	}

	MAPM floor(void) const
	{
		MAPM ret;
		m_apm_floor(ret.val(), cval());
		return ret;
	}
	MAPM ceil(void) const
	{
		MAPM ret;
		m_apm_ceil(ret.val(), cval());
		return ret;
	}

	/* Functions defined only on integers: */
	MAPM factorial(void) const
	{
		MAPM ret;
		m_apm_factorial(ret.val(), cval());
		return ret;
	}
	MAPM ipow_nr(int p) const
	{
		MAPM ret;
		m_apm_integer_pow_nr(ret.val(),
		                     cval(), p);
		return ret;
	}
	MAPM ipow(int p, int toDigits) const
	{
		MAPM ret;
		m_apm_integer_pow(ret.val(),
		                  toDigits, cval(), p);
		return ret;
	}
	MAPM ipow(int p) const
	{
		return ipow(p, myDigits());
	}
	MAPM integer_divide(const MAPM &denom) const
	{
		MAPM ret;
		m_apm_integer_divide(ret.val(), cval(),
		                     denom.cval());
		return ret;
	}
	void integer_div_rem(const MAPM &denom, MAPM &quot, MAPM &rem) const
	{
		m_apm_integer_div_rem(quot.val(), rem.val(), cval(),
		                      denom.cval());
	}
	MAPM div(const MAPM &denom) const
	{
		return integer_divide(denom);
	}
	MAPM rem(const MAPM &denom) const
	{
		MAPM ret, ignored;
		integer_div_rem(denom, ignored, ret);
		return ret;
	}
};

/* math.h-style functions: */

inline MAPM fabs(const MAPM &m)
{
	return m.abs();
}
inline MAPM factorial(const MAPM &m)
{
	return m.factorial();
}
inline MAPM floor(const MAPM &m)
{
	return m.floor();
}
inline MAPM ceil(const MAPM &m)
{
	return m.ceil();
}
inline MAPM get_random(void)
{
	return MAPM::random();
}

/* I got tired of typing the various declarations for a simple
   1-ary real-to-real function on MAPM's; hence this define:
*/
#define MAPM_1aryFunc(func) \
	inline MAPM func(const MAPM &m) {return m.func();} \
	inline MAPM func(const MAPM &m,int toDigits) {return m.func(toDigits);}

/* Define a big block of simple functions: */
MAPM_1aryFunc(sqrt)
MAPM_1aryFunc(cbrt)
MAPM_1aryFunc(log)
MAPM_1aryFunc(exp)
MAPM_1aryFunc(log10)
MAPM_1aryFunc(sin)
MAPM_1aryFunc(asin)
MAPM_1aryFunc(cos)
MAPM_1aryFunc(acos)
MAPM_1aryFunc(tan)
MAPM_1aryFunc(atan)
MAPM_1aryFunc(sinh)
MAPM_1aryFunc(asinh)
MAPM_1aryFunc(cosh)
MAPM_1aryFunc(acosh)
MAPM_1aryFunc(tanh)
MAPM_1aryFunc(atanh)
#undef MAPM_1aryFunc

/* Computes x to the power y */
inline MAPM pow(const MAPM &x, const MAPM &y, int toDigits)
{
	return x.pow(y, toDigits);
}
inline MAPM pow(const MAPM &x, const MAPM &y)
{
	return x.pow(y);
}
inline MAPM atan2(const MAPM &y, const MAPM &x, int toDigits)
{
	return y.atan2(x, toDigits);
}
inline MAPM atan2(const MAPM &y, const MAPM &x)
{
	return y.atan2(x);
}
inline MAPM gcd(const MAPM &u, const MAPM &v)
{
	return u.gcd(v);
}
inline MAPM lcm(const MAPM &u, const MAPM &v)
{
	return u.lcm(v);
}
#endif
#endif