forked from johannesgerer/jburkardt-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sparse_grid_mixed.html
716 lines (660 loc) · 21.7 KB
/
sparse_grid_mixed.html
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
<html>
<head>
<title>
SPARSE_GRID_MIXED - Sparse Grids using Mixed Factors
</title>
</head>
<body bgcolor="#EEEEEE" link="#CC0000" alink="#FF3300" vlink="#000055">
<h1 align = "center">
SPARSE_GRID_MIXED <br> Sparse Grids using Mixed Factors
</h1>
<hr>
<p>
<b>SPARSE_GRID_MIXED</b>
is a C++ library which
can be used to construct a sparse grid whose factors are
possibly distinct 1D quadrature rules.
</p>
<p>
<b>SPARSE_GRID_MIXED</b> calls many routines from the <b>SANDIA_RULES</b>
library. Source code or compiled copies of <i>both</i> libraries must
be available when a program wishes to use the <b>SPARSE_GRID_MIXED</b> library.
</p>
<p>
The 1D quadrature rules are designed to approximate an integral
of the form:
<blockquote><b>
Integral ( A < X < B ) F(X) W(X) dX
</b></blockquote>
where <b>W(X)</b> is a weight function, by the quadrature sum:
<blockquote><b>
Sum ( 1 <= I <= ORDER) F(X(I)) * W(I)
</b></blockquote>
where the set of <b>X</b> values are known as <i>abscissas</i> and
the set of <b>W</b> values are known as <i>weights</i>.
</p>
<p>
Note that the letter <b>W</b>, unfortunately, is used to denote both the
weight function in the original integral, and the vector of weight
values in the quadrature sum.
</p>
<p>
<table border=1>
<tr>
<th>Index</th>
<th>Name</th>
<th>Abbreviation</th>
<th>Default Growth Rule</th>
<th>Interval</th>
<th>Weight function</th>
</tr>
<tr>
<td>1</td>
<td>Clenshaw-Curtis Exponential Growth</td>
<td>CC</td>
<td>Exponential</td>
<td>[-1,+1]</td>
<td>1</td>
</tr>
<tr>
<td>2</td>
<td>Fejer Type 2, Exponential Growth</td>
<td>F2</td>
<td>Exponential</td>
<td>[-1,+1]</td>
<td>1</td>
</tr>
<tr>
<td>3</td>
<td>Gauss Patterson, Exponential Growth</td>
<td>GP</td>
<td>Exponential</td>
<td>[-1,+1]</td>
<td>1</td>
</tr>
<tr>
<td>4</td>
<td>Gauss-Legendre</td>
<td>GL</td>
<td>Linear</td>
<td>[-1,+1]</td>
<td>1</td>
</tr>
<tr>
<td>5</td>
<td>Gauss-Hermite</td>
<td>GH</td>
<td>Linear</td>
<td>(-oo,+oo)</td>
<td>e<sup>-x*x</sup></td>
</tr>
<tr>
<td>6</td>
<td>Generalized Gauss-Hermite</td>
<td>GGH</td>
<td>Linear</td>
<td>(-oo,+oo)</td>
<td>|x|<sup>alpha</sup> e<sup>-x*x</sup></td>
</tr>
<tr>
<td>7</td>
<td>Gauss-Laguerre</td>
<td>LG</td>
<td>Linear</td>
<td>[0,+oo)</td>
<td>e<sup>-x</sup></td>
</tr>
<tr>
<td>8</td>
<td>Generalized Gauss-Laguerre</td>
<td>GLG</td>
<td>Linear</td>
<td>[0,+oo)</td>
<td>x<sup>alpha</sup> e<sup>-x</sup></td>
</tr>
<tr>
<td>9</td>
<td>Gauss-Jacobi</td>
<td>GJ</td>
<td>Linear</td>
<td>[-1,+1]</td>
<td>(1-x)<sup>alpha</sup> (1+x)<sup>beta</sup></td>
</tr>
<tr>
<td>10</td>
<td>Golub-Welsch</td>
<td>GW</td>
<td>?</td>
<td>?</td>
<td>?</td>
</tr>
<tr>
<td>11</td>
<td>Clenshaw-Curtis, Slow Exponential Growth</td>
<td>CC_SE</td>
<td>Slow exponential</td>
<td>[-1,+1]</td>
<td>1</td>
</tr>
<tr>
<td>12</td>
<td>Fejer Type 2, Slow Exponential Growth</td>
<td>F2_SE</td>
<td>Slow exponential</td>
<td>[-1,+1]</td>
<td>1</td>
</tr>
<tr>
<td>13</td>
<td>Gauss Patterson, Slow Exponential Growth</td>
<td>GP_SE</td>
<td>Slow exponential</td>
<td>[-1,+1]</td>
<td>1</td>
</tr>
<tr>
<td>14</td>
<td>Clenshaw-Curtis, Moderate Exponential Growth</td>
<td>CC_ME</td>
<td>Moderate exponential</td>
<td>[-1,+1]</td>
<td>1</td>
</tr>
<tr>
<td>15</td>
<td>Fejer Type 2, Moderate Exponential Growth</td>
<td>F2_ME</td>
<td>Moderate exponential</td>
<td>[-1,+1]</td>
<td>1</td>
</tr>
<tr>
<td>16</td>
<td>Gauss Patterson, Moderate Exponential Growth</td>
<td>GP_ME</td>
<td>Moderate exponential</td>
<td>[-1,+1]</td>
<td>1</td>
</tr>
<tr>
<td>17</td>
<td>Clenshaw-Curtis Nested, linear growth</td>
<td>CCN</td>
<td>Linear (2*L+1)</td>
<td>[-1,+1]</td>
<td>1</td>
</tr>
</table>
</p>
<p>
A sparse grid is a quadrature rule for a multidimensional integral.
It is formed by taking a certain linear combination of lower-order
product rules. The product rules, in turn, are formed as direct products
of 1D quadrature rules. It is common to form a sparse grid in which the
1D component quadrature rules are the same. This package, however,
is intended to produce sparse grids based on sums of product rules for
which the rule chosen for each spatial dimension may be freely chosen
from the set listed above.
</p>
<p>
These sparse grids are still indexed by a number known as <b>level</b>,
and assembled as a sum of low order product rules. As the value of
<b>level</b> increases, the point growth becomes more complicated.
This is because the 1D rules have somewhat varying point growth patterns
to begin with, and the varying levels of nestedness have a dramatic
effect on the sparsity of the total grid.
</p>
<p>
Since a sparse grid is made up of a combination of product grids,
it is frequently the case that many of the product grids include the
same point. For efficiency, it is usually desirable to merge or
consolidate such duplicate points when expressing the resulting
sparse grid rule. It is possible to "logically" determine when
a duplicate point will be generated; however, this logic changes
depending on the specific 1-dimensional rules being used, and the
tests can become quite elaborate. Moreover, for rules which include
real parameters, the determination of duplication can require
a numerical tolerance.
</p>
<p>
In order to simplify the matter of the detection of duplicate points,
the codes presented begin by generating the entire "naive" set of
points. Then a user-specified tolerance <b>TOL</b> is used to determine when
two points are equal. If the maximum difference between any two components
is less than or equal to <b>TOL</b>, the points are declared to be equal.
</p>
<p>
A reasonable value for <b>TOL</b> might be the square root of the machine
precision. Setting <b>TOL</b> to zero means that only points which are
identical to the last significant digit are taken to be duplicates. Setting
<b>TOL</b> to a negative value means that no duplicate points will be eliminated -
in other words, this choice produces the full or "naive" grid.
</p>
<h3 align = "center">
Web Link:
</h3>
<p>
A version of the sparse grid library is available in
<a href = "http://tasmanian.ornl.gov/">
http://tasmanian.ornl.gov</a>,
the TASMANIAN library, available from Oak Ridge National Laboratory.
</p>
<h3 align = "center">
Licensing:
</h3>
<p>
The code described and made available on this web page is distributed
under the
<a href = "gnu_lgpl.txt">GNU LGPL</a> license.
</p>
<h3 align = "center">
Languages:
</h3>
<p>
<b>SPARSE_GRID_MIXED</b> is available in
<a href = "../../cpp_src/sparse_grid_mixed/sparse_grid_mixed.html">a C++ version</a> and
<a href = "../../f_src/sparse_grid_mixed/sparse_grid_mixed.html">a FORTRAN90 version</a> and
<a href = "../../m_src/sparse_grid_mixed/sparse_grid_mixed.html">a MATLAB version</a>.
</p>
<h3 align = "center">
Related Data and Programs:
</h3>
<p>
<a href = "../../cpp_src/nint_exactness_mixed/nint_exactness_mixed.html">
NINT_EXACTNESS_MIXED</a>,
a C++ program which
measures the polynomial exactness of a multidimensional quadrature rule
based on a mixture of 1D quadrature rule factors.
</p>
<p>
<a href = "../../cpp_src/quadrule/quadrule.html">
QUADRULE</a>,
a C++ library which
defines quadrature rules for various intervals and weight functions.
</p>
<p>
<a href = "../../cpp_src/sandia_rules/sandia_rules.html">
SANDIA_RULES</a>,
a C++ library which
produces 1D quadrature rules of
Chebyshev, Clenshaw Curtis, Fejer 2, Gegenbauer, generalized Hermite,
generalized Laguerre, Hermite, Jacobi, Laguerre, Legendre and Patterson types.
</p>
<p>
<a href = "../../cpp_src/sandia_sparse/sandia_sparse.html">
SANDIA_SPARSE</a>,
a C++ library which
computes the points and weights of a Smolyak sparse
grid, based on a variety of 1-dimensional quadrature rules.
</p>
<p>
<a href = "../../cpp_src/sgmg/sgmg.html">
SGMG</a>,
a C++ library which
is the successor to SPARSE_GRID_MIXED. It includes the ability to specify
a specific growth rule in each dimension.
</p>
<p>
<a href = "../../cpp_src/sgmga/sgmga.html">
SGMGA</a>,
a C++ library which
creates sparse grids based on a mixture of 1D quadrature rules,
allowing anisotropic weights for each dimension.
</p>
<p>
<a href = "../../c_src/smolpack/smolpack.html">
SMOLPACK</a>,
a C library which
implements Novak and Ritter's method for estimating the integral
of a function over a multidimensional hypercube using sparse grids,
by Knut Petras.
</p>
<p>
<a href = "../../cpp_src/sparse_grid_gl/sparse_grid_gl.html">
SPARSE_GRID_GL</a>,
a C++ library which
creates sparse grids based on Gauss-Legendre rules.
</p>
<p>
<a href = "../../cpp_src/sparse_grid_hermite/sparse_grid_hermite.html">
SPARSE_GRID_HERMITE</a>,
a C++ library which
creates sparse grids based on Gauss-Hermite rules.
</p>
<p>
<a href = "../../datasets/sparse_grid_mixed/sparse_grid_mixed.html">
SPARSE_GRID_MIXED</a>,
a dataset directory which
contains multidimensional Smolyak sparse grids
based on a mixed set of 1D factor rules.
</p>
<p>
<a href = "../../cpp_src/sparse_grid_mixed_dataset/sparse_grid_mixed_dataset.html">
SPARSE_GRID_MIXED_DATASET</a>,
a C++ program which
creates a sparse grid dataset based on a mixture of 1D rules.
</p>
<p>
<a href = "../../m_src/toms847/toms847.html">
TOMS847</a>,
a MATLAB program which
uses sparse grids to carry out multilinear hierarchical interpolation.
It is commonly known as SPINTERP, and is by Andreas Klimke.
</p>
<h3 align = "center">
Reference:
</h3>
<p>
<ol>
<li>
Milton Abramowitz, Irene Stegun,<br>
Handbook of Mathematical Functions,<br>
National Bureau of Standards, 1964,<br>
ISBN: 0-486-61272-4,<br>
LC: QA47.A34.
</li>
<li>
Charles Clenshaw, Alan Curtis,<br>
A Method for Numerical Integration on an Automatic Computer,<br>
Numerische Mathematik,<br>
Volume 2, Number 1, December 1960, pages 197-205.
</li>
<li>
Philip Davis, Philip Rabinowitz,<br>
Methods of Numerical Integration,<br>
Second Edition,<br>
Dover, 2007,<br>
ISBN: 0486453391,<br>
LC: QA299.3.D28.
</li>
<li>
Walter Gautschi,<br>
Numerical Quadrature in the Presence of a Singularity,<br>
SIAM Journal on Numerical Analysis,<br>
Volume 4, Number 3, September 1967, pages 357-362.
</li>
<li>
Thomas Gerstner, Michael Griebel,<br>
Numerical Integration Using Sparse Grids,<br>
Numerical Algorithms,<br>
Volume 18, Number 3-4, 1998, pages 209-232.
</li>
<li>
Gene Golub, John Welsch,<br>
Calculation of Gaussian Quadrature Rules,<br>
Mathematics of Computation,<br>
Volume 23, Number 106, April 1969, pages 221-230.
</li>
<li>
Prem Kythe, Michael Schaeferkotter,<br>
Handbook of Computational Methods for Integration,<br>
Chapman and Hall, 2004,<br>
ISBN: 1-58488-428-2,<br>
LC: QA299.3.K98.
</li>
<li>
Albert Nijenhuis, Herbert Wilf,<br>
Combinatorial Algorithms for Computers and Calculators,<br>
Second Edition,<br>
Academic Press, 1978,<br>
ISBN: 0-12-519260-6,<br>
LC: QA164.N54.
</li>
<li>
Fabio Nobile, Raul Tempone, Clayton Webster,<br>
A Sparse Grid Stochastic Collocation Method for Partial Differential
Equations with Random Input Data,<br>
SIAM Journal on Numerical Analysis,<br>
Volume 46, Number 5, 2008, pages 2309-2345.
</li>
<li>
Thomas Patterson,<br>
The Optimal Addition of Points to Quadrature Formulae,<br>
Mathematics of Computation,<br>
Volume 22, Number 104, October 1968, pages 847-856.
</li>
<li>
Sergey Smolyak,<br>
Quadrature and Interpolation Formulas for Tensor Products of
Certain Classes of Functions,<br>
Doklady Akademii Nauk SSSR,<br>
Volume 4, 1963, pages 240-243.
</li>
<li>
Arthur Stroud, Don Secrest,<br>
Gaussian Quadrature Formulas,<br>
Prentice Hall, 1966,<br>
LC: QA299.4G3S7.
</li>
<li>
Joerg Waldvogel,<br>
Fast Construction of the Fejer and Clenshaw-Curtis
Quadrature Rules,<br>
BIT Numerical Mathematics,<br>
Volume 43, Number 1, 2003, pages 1-18.
</li>
</ol>
</p>
<h3 align = "center">
Source Code:
</h3>
<p>
<ul>
<li>
<a href = "sparse_grid_mixed.cpp">sparse_grid_mixed.cpp</a>, the source code.
</li>
<li>
<a href = "sparse_grid_mixed.hpp">sparse_grid_mixed.hpp</a>, the include file.
</li>
<li>
<a href = "sparse_grid_mixed.sh">sparse_grid_mixed.sh</a>,
commands to compile the source code.
</li>
</ul>
</p>
<h3 align = "center">
Examples and Tests:
</h3>
<p>
<b>COMP_NEXT_PRB</b> tests COMP_NEXT.
<ul>
<li>
<a href = "comp_next_prb.cpp">comp_next_prb.cpp</a>,
a sample calling program.
</li>
<li>
<a href = "comp_next_prb.sh">comp_next_prb.sh</a>,
commands to compile and run the sample program.
</li>
<li>
<a href = "comp_next_prb_output.txt">
comp_next_prb_output.txt</a>,
the output file.
</li>
</ul>
</p>
<p>
<b>PRODUCT_MIXED_WEIGHT_PRB</b> tests PRODUCT_MIXED_WEIGHT.
<ul>
<li>
<a href = "product_mixed_weight_prb.cpp">product_mixed_weight_prb.cpp</a>,
a sample calling program.
</li>
<li>
<a href = "product_mixed_weight_prb.sh">product_mixed_weight_prb.sh</a>,
commands to compile and run the sample program.
</li>
<li>
<a href = "product_mixed_weight_prb_output.txt">
product_mixed_weight_prb_output.txt</a>,
the output file.
</li>
</ul>
</p>
<p>
<b>SPARSE_GRID_MIXED_INDEX_PRB</b> tests SPARSE_GRID_MIXED_INDEX.
<ul>
<li>
<a href = "sparse_grid_mixed_index_prb.cpp">sparse_grid_mixed_index_prb.cpp</a>,
tests SPARSE_GRID_MIXED_INDEX.
</li>
<li>
<a href = "sparse_grid_mixed_index_prb.sh">sparse_grid_mixed_index_prb.sh</a>,
commands to compile and run the sample program.
</li>
<li>
<a href = "sparse_grid_mixed_index_prb_output.txt">
sparse_grid_mixed_index_prb_output.txt</a>,
the output file.
</li>
</ul>
</p>
<p>
<b>SPARSE_GRID_MIXED_POINT_PRB</b> tests SPARSE_GRID_MIXED_POINT.
<ul>
<li>
<a href = "sparse_grid_mixed_point_prb.cpp">sparse_grid_mixed_point_prb.cpp</a>,
tests SPARSE_GRID_MIXED_POINT.
</li>
<li>
<a href = "sparse_grid_mixed_point_prb.sh">sparse_grid_mixed_point_prb.sh</a>,
commands to compile and run the sample program.
</li>
<li>
<a href = "sparse_grid_mixed_point_prb_output.txt">
sparse_grid_mixed_point_prb_output.txt</a>,
the output file.
</li>
</ul>
</p>
<p>
<b>SPARSE_GRID_MIXED_SIZE_PRB</b> tests SPARSE_GRID_MIXED_SIZE and
SPARSE_GRID_MIXED_SIZE_TOTAL.
<ul>
<li>
<a href = "sparse_grid_mixed_size_prb.cpp">sparse_grid_mixed_size_prb.cpp</a>,
the test program.
</li>
<li>
<a href = "sparse_grid_mixed_size_prb.sh">sparse_grid_mixed_size_prb.sh</a>,
commands to compile and run the sample program.
</li>
<li>
<a href = "sparse_grid_mixed_size_prb_output.txt">
sparse_grid_mixed_size_prb_output.txt</a>,
the output file.
</li>
</ul>
</p>
<p>
<b>SPARSE_GRID_MIXED_SIZE_TABLE</b> makes a point count table.
<ul>
<li>
<a href = "sparse_grid_mixed_size_table.cpp">sparse_grid_mixed_size_table.cpp</a>,
the test program.
</li>
<li>
<a href = "sparse_grid_mixed_size_table.sh">sparse_grid_mixed_size_table.sh</a>,
commands to compile and run the sample program.
</li>
<li>
<a href = "sparse_grid_mixed_size_table_output.txt">
sparse_grid_mixed_size_table_output.txt</a>,
the output file.
</li>
</ul>
</p>
<p>
<b>SPARSE_GRID_MIXED_UNIQUE_INDEX_PRB</b> tests SPARSE_GRID_MIXED_UNIQUE_INDEX.
<ul>
<li>
<a href = "sparse_grid_mixed_unique_index_prb.cpp">sparse_grid_mixed_unique_index_prb.cpp</a>,
the test program.
</li>
<li>
<a href = "sparse_grid_mixed_unique_index_prb.sh">sparse_grid_mixed_unique_index_prb.sh</a>,
commands to compile and run the sample program.
</li>
<li>
<a href = "sparse_grid_mixed_unique_index_prb_output.txt">
sparse_grid_mixed_unique_index_prb_output.txt</a>,
the output file.
</li>
</ul>
</p>
<p>
<b>SPARSE_GRID_MIXED_WEIGHT_PRB</b> tests SPARSE_GRID_MIXED_WEIGHT.
<ul>
<li>
<a href = "sparse_grid_mixed_weight_prb.cpp">sparse_grid_mixed_weight_prb.cpp</a>,
the test program.
</li>
<li>
<a href = "sparse_grid_mixed_weight_prb.sh">sparse_grid_mixed_weight_prb.sh</a>,
commands to compile and run the sample program.
</li>
<li>
<a href = "sparse_grid_mixed_weight_prb_output.txt">
sparse_grid_mixed_weight_prb_output.txt</a>,
the output file.
</li>
</ul>
</p>
<p>
<b>SPARSE_GRID_MIXED_WRITE_PRB</b> tests SPARSE_GRID_MIXED_WRITE.
<ul>
<li>
<a href = "sparse_grid_mixed_write_prb.cpp">sparse_grid_mixed_write_prb.cpp</a>,
the test program.
</li>
<li>
<a href = "sparse_grid_mixed_write_prb.sh">sparse_grid_mixed_write_prb.sh</a>,
commands to compile and run the sample program.
</li>
<li>
<a href = "sparse_grid_mixed_write_prb_output.txt">
sparse_grid_mixed_write_prb_output.txt</a>,
the output file.
</li>
</ul>
</p>
<h3 align = "center">
List of Routines:
</h3>
<p>
<ul>
<li>
<b>SPARSE_GRID_MIXED_INDEX</b> indexes a sparse grid made from mixed 1D rules.
</li>
<li>
<b>SPARSE_GRID_MIXED_POINT</b> computes the points of a sparse grid rule.
</li>
<li>
<b>SPARSE_GRID_MIXED_SIZE</b> sizes a sparse grid, discounting duplicate points.
</li>
<li>
<b>SPARSE_GRID_MIXED_SIZE_TOTAL</b> sizes a sparse grid, counting duplicates.
</li>
<li>
<b>SPARSE_GRID_MIXED_UNIQUE_INDEX</b> maps nonunique points to unique points.
</li>
<li>
<b>SPARSE_GRID_MIXED_WEIGHT:</b> sparse grid weights based on a mix of 1D rules.
</li>
<li>
<b>SPARSE_GRID_MIXED_WRITE</b> writes a sparse grid rule to five files.
</li>
</ul>
</p>
<p>
You can go up one level to <a href = "../cpp_src.html">
the C++ source codes</a>.
</p>
<hr>
<i>
Last revised on 23 February 2010.
</i>
<!-- John Burkardt -->
</body>
<!-- Initial HTML skeleton created by HTMLINDEX. -->
</html>