@@ -13,6 +13,7 @@ Importance sampling is used to reduce variance.
1313
1414## References
1515
16+ ```tex
1617@article{lepage1978new,
1718title={A new algorithm for adaptive multidimensional integration},
1819author={Lepage, G Peter},
@@ -23,6 +24,7 @@ pages={192--203},
2324year={1978},
2425publisher={Elsevier}
2526}
27+ ```
2628"""
2729struct CubaVegas <: AbstractCubaAlgorithm
2830 flags:: Int
@@ -42,6 +44,7 @@ Importance sampling and subdivision are thus used to reduce variance.
4244
4345## References
4446
47+ ```tex
4548@article{hahn2005cuba,
4649title={Cuba—a library for multidimensional numerical integration},
4750author={Hahn, Thomas},
@@ -52,6 +55,7 @@ pages={78--95},
5255year={2005},
5356publisher={Elsevier}
5457}
58+ ```
5559"""
5660struct CubaSUAVE{R} <: AbstractCubaAlgorithm where {R <: Real }
5761 flags:: Int
@@ -70,6 +74,7 @@ Stratified sampling is used to reduce variance.
7074
7175## References
7276
77+ ```tex
7378@article{friedman1981nested,
7479title={A nested partitioning procedure for numerical multiple integration},
7580author={Friedman, Jerome H and Wright, Margaret H},
@@ -80,6 +85,7 @@ pages={76--92},
8085year={1981},
8186publisher={ACM New York, NY, USA}
8287}
88+ ```
8389"""
8490struct CubaDivonne{R1, R2, R3, R4} < :
8591 AbstractCubaAlgorithm where {R1 <: Real , R2 <: Real , R3 <: Real , R4 <: Real }
@@ -105,6 +111,7 @@ Multidimensional h-adaptive integration from Cuba.jl.
105111
106112## References
107113
114+ ```tex
108115@article{berntsen1991adaptive,
109116title={An adaptive algorithm for the approximate calculation of multiple integrals},
110117author={Berntsen, Jarle and Espelid, Terje O and Genz, Alan},
@@ -115,6 +122,7 @@ pages={437--451},
115122year={1991},
116123publisher={ACM New York, NY, USA}
117124}
125+ ```
118126"""
119127struct CubaCuhre <: AbstractCubaAlgorithm
120128 flags:: Int
@@ -165,6 +173,7 @@ Defaults to `Cubature.INDIVIDUAL`, other options are
165173
166174## References
167175
176+ ```tex
168177@article{genz1980remarks,
169178title={Remarks on algorithm 006: An adaptive algorithm for numerical integration over an N-dimensional rectangular region},
170179author={Genz, Alan C and Malik, Aftab Ahmad},
@@ -175,6 +184,7 @@ pages={295--302},
175184year={1980},
176185publisher={Elsevier}
177186}
187+ ```
178188"""
179189struct CubatureJLh <: AbstractCubatureJLAlgorithm
180190 error_norm:: Int32
0 commit comments