From 0d2f8d5079fc5f120ba376f57efe3981d83d3270 Mon Sep 17 00:00:00 2001 From: Robert Persson Date: Sun, 7 Jul 2013 01:26:00 +0200 Subject: Optimized integrate function in module poly Rewrote the integrate function since the old one was quite hacky. The new one is about 7 times faster in release and 3 times faster in debug --- lib/pure/poly.nim | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) (limited to 'lib') diff --git a/lib/pure/poly.nim b/lib/pure/poly.nim index d5f59cfa1..609e58bdc 100644 --- a/lib/pure/poly.nim +++ b/lib/pure/poly.nim @@ -11,9 +11,6 @@ import math import strutils import numeric - -import times #todo: remove - type TPoly* = object cofs:seq[float] @@ -141,11 +138,22 @@ proc integral*(p:TPoly):TPoly= proc integrate*(p:TPoly;xmin,xmax:float):float= ## Computes the definite integral of `p` between `xmin` and `xmax` - # TODO: this can be done faster using a modified horners method, - # see 'diff' function above. - var igr=p.integral - result=igr.eval(xmax)-igr.eval(xmin) + ## quickly using a modified version of Horners method + var + n=p.degree + s1=p[n]/float(n+1) + s2=s1 + fac:float + dec n + while n>=0: + fac=p[n]/float(n+1) + s1 = s1*xmin+fac + s2 = s2*xmax+fac + dec n + + result=s2*xmax-s1*xmin + proc initPoly*(cofs:varargs[float]):TPoly= ## Initializes a polynomial with given coefficients. ## The most significant coefficient is first, so to create x^2-2x+3: @@ -258,7 +266,7 @@ proc `/` *(p,q:TPoly):TPoly= proc `mod` *(p,q:TPoly):TPoly= ## Computes the polynomial modulo operation, - ## that is the remainder op `p`/`q` + ## that is the remainder of `p`/`q` var dummy:TPoly p.divMod(q,dummy,result) @@ -363,5 +371,3 @@ proc roots*(p:TPoly,tol=1.0e-9,zerotol=1.0e-6,mergetol=1.0e-12,maxiter=1000):seq addRoot(p,result,range.xmin,x,tol,zerotol,mergetol,maxiter) range.xmin=x addRoot(p,result,range.xmin,range.xmax,tol,zerotol,mergetol,maxiter) - - \ No newline at end of file -- cgit 1.4.1-2-gfad0 ue='grep'>log msg
path: root/compiler/seminst.nim
blob: a5149a842c57fd162f7eb977d7a138fe46746627 (plain) (blame)
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