File: mapm_cpi.cpp

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 (161 lines) | stat: -rw-r--r-- 3,879 bytes parent folder | download | duplicates (5)
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

/*
 *  M_APM  -  mapm_cpi.c
 *
 *  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 file contains the PI related functions.
 *
 */

#include "pgAdmin3.h"
#include "pgscript/utilities/mapm-lib/m_apm_lc.h"

/****************************************************************************/
/*
 *	check if our local copy of PI is precise enough
 *	for our purpose. if not, calculate PI so it's
 *	as precise as desired, accurate to 'places' decimal
 *	places.
 */
void	M_check_PI_places(int places)
{
	int     dplaces;

	dplaces = places + 2;

	if (dplaces > MM_lc_PI_digits)
	{
		MM_lc_PI_digits = dplaces + 2;

		/* compute PI using the AGM  (see right below) */

		M_calculate_PI_AGM(MM_lc_PI, (dplaces + 5));

		m_apm_multiply(MM_lc_HALF_PI, MM_0_5, MM_lc_PI);
		m_apm_multiply(MM_lc_2_PI, MM_Two, MM_lc_PI);
	}
}
/****************************************************************************/
/*
 *      Calculate PI using the AGM (Arithmetic-Geometric Mean)
 *
 *      Init :  A0  = 1
 *              B0  = 1 / sqrt(2)
 *              Sum = 1
 *
 *      Iterate: n = 1...
 *
 *
 *      A   =  0.5 * [ A    +  B   ]
 *       n              n-1     n-1
 *
 *
 *      B   =  sqrt [ A    *  B   ]
 *       n             n-1     n-1
 *
 *
 *
 *      C   =  0.5 * [ A    -  B   ]
 *       n              n-1     n-1
 *
 *
 *                      2      n+1
 *     Sum  =  Sum  -  C   *  2
 *                      n
 *
 *
 *      At the end when C  is 'small enough' :
 *                       n
 *
 *                    2
 *      PI  =  4  *  A    /  Sum
 *                    n+1
 *
 *          -OR-
 *
 *                       2
 *      PI  = ( A  +  B )   /  Sum
 *               n     n
 *
 */
void	M_calculate_PI_AGM(M_APM outv, int places)
{
	M_APM   tmp1, tmp2, a0, b0, c0, a1, b1, sum, pow_2;
	int     dplaces, nn;

	tmp1  = M_get_stack_var();
	tmp2  = M_get_stack_var();
	a0    = M_get_stack_var();
	b0    = M_get_stack_var();
	c0    = M_get_stack_var();
	a1    = M_get_stack_var();
	b1    = M_get_stack_var();
	sum   = M_get_stack_var();
	pow_2 = M_get_stack_var();

	dplaces = places + 16;

	m_apm_copy(a0, MM_One);
	m_apm_copy(sum, MM_One);
	m_apm_copy(pow_2, MM_Four);
	m_apm_sqrt(b0, dplaces, MM_0_5);        /* sqrt(0.5) */

	while (TRUE)
	{
		m_apm_add(tmp1, a0, b0);
		m_apm_multiply(a1, MM_0_5, tmp1);

		m_apm_multiply(tmp1, a0, b0);
		m_apm_sqrt(b1, dplaces, tmp1);

		m_apm_subtract(tmp1, a0, b0);
		m_apm_multiply(c0, MM_0_5, tmp1);

		/*
		 *   the net 'PI' calculated from this iteration will
		 *   be accurate to ~4 X the value of (c0)'s exponent.
		 *   this was determined experimentally.
		 */

		nn = -4 * c0->m_apm_exponent;

		m_apm_multiply(tmp1, c0, c0);
		m_apm_multiply(tmp2, tmp1, pow_2);
		m_apm_subtract(tmp1, sum, tmp2);
		m_apm_round(sum, dplaces, tmp1);

		if (nn >= dplaces)
			break;

		m_apm_copy(a0, a1);
		m_apm_copy(b0, b1);

		m_apm_multiply(tmp1, pow_2, MM_Two);
		m_apm_copy(pow_2, tmp1);
	}

	m_apm_add(tmp1, a1, b1);
	m_apm_multiply(tmp2, tmp1, tmp1);
	m_apm_divide(tmp1, dplaces, tmp2, sum);
	m_apm_round(outv, places, tmp1);

	M_restore_stack(9);
}
/****************************************************************************/