@@ -13,6 +13,7 @@ Importance sampling is used to reduce variance.
13
13
14
14
## References
15
15
16
+ ```tex
16
17
@article{lepage1978new,
17
18
title={A new algorithm for adaptive multidimensional integration},
18
19
author={Lepage, G Peter},
@@ -23,6 +24,7 @@ pages={192--203},
23
24
year={1978},
24
25
publisher={Elsevier}
25
26
}
27
+ ```
26
28
"""
27
29
struct CubaVegas <: AbstractCubaAlgorithm
28
30
flags:: Int
@@ -42,6 +44,7 @@ Importance sampling and subdivision are thus used to reduce variance.
42
44
43
45
## References
44
46
47
+ ```tex
45
48
@article{hahn2005cuba,
46
49
title={Cuba—a library for multidimensional numerical integration},
47
50
author={Hahn, Thomas},
@@ -52,6 +55,7 @@ pages={78--95},
52
55
year={2005},
53
56
publisher={Elsevier}
54
57
}
58
+ ```
55
59
"""
56
60
struct CubaSUAVE{R} <: AbstractCubaAlgorithm where {R <: Real }
57
61
flags:: Int
@@ -70,6 +74,7 @@ Stratified sampling is used to reduce variance.
70
74
71
75
## References
72
76
77
+ ```tex
73
78
@article{friedman1981nested,
74
79
title={A nested partitioning procedure for numerical multiple integration},
75
80
author={Friedman, Jerome H and Wright, Margaret H},
@@ -80,6 +85,7 @@ pages={76--92},
80
85
year={1981},
81
86
publisher={ACM New York, NY, USA}
82
87
}
88
+ ```
83
89
"""
84
90
struct CubaDivonne{R1, R2, R3, R4} < :
85
91
AbstractCubaAlgorithm where {R1 <: Real , R2 <: Real , R3 <: Real , R4 <: Real }
@@ -105,6 +111,7 @@ Multidimensional h-adaptive integration from Cuba.jl.
105
111
106
112
## References
107
113
114
+ ```tex
108
115
@article{berntsen1991adaptive,
109
116
title={An adaptive algorithm for the approximate calculation of multiple integrals},
110
117
author={Berntsen, Jarle and Espelid, Terje O and Genz, Alan},
@@ -115,6 +122,7 @@ pages={437--451},
115
122
year={1991},
116
123
publisher={ACM New York, NY, USA}
117
124
}
125
+ ```
118
126
"""
119
127
struct CubaCuhre <: AbstractCubaAlgorithm
120
128
flags:: Int
@@ -165,6 +173,7 @@ Defaults to `Cubature.INDIVIDUAL`, other options are
165
173
166
174
## References
167
175
176
+ ```tex
168
177
@article{genz1980remarks,
169
178
title={Remarks on algorithm 006: An adaptive algorithm for numerical integration over an N-dimensional rectangular region},
170
179
author={Genz, Alan C and Malik, Aftab Ahmad},
@@ -175,6 +184,7 @@ pages={295--302},
175
184
year={1980},
176
185
publisher={Elsevier}
177
186
}
187
+ ```
178
188
"""
179
189
struct CubatureJLh <: AbstractCubatureJLAlgorithm
180
190
error_norm:: Int32
0 commit comments