sparsevb 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1645) hide show
  1. sparsevb-0.1.1/MANIFEST.in +5 -0
  2. sparsevb-0.1.1/PKG-INFO +101 -0
  3. sparsevb-0.1.1/README.md +73 -0
  4. sparsevb-0.1.1/include/README +4 -0
  5. sparsevb-0.1.1/include/RcppArmadillo/Alt_R_RNG.h +4 -0
  6. sparsevb-0.1.1/include/RcppArmadillo/Light +47 -0
  7. sparsevb-0.1.1/include/RcppArmadillo/Lighter +47 -0
  8. sparsevb-0.1.1/include/RcppArmadillo/Lightest +47 -0
  9. sparsevb-0.1.1/include/RcppArmadillo/RcppArmadillo +47 -0
  10. sparsevb-0.1.1/include/RcppArmadillo/config/RcppArmadilloConfig.h +149 -0
  11. sparsevb-0.1.1/include/RcppArmadillo/config/RcppArmadilloConfigGenerated.h +40 -0
  12. sparsevb-0.1.1/include/RcppArmadillo/config/RcppArmadilloConfigGenerated.h.in +40 -0
  13. sparsevb-0.1.1/include/RcppArmadillo/interface/RcppArmadilloAs.h +673 -0
  14. sparsevb-0.1.1/include/RcppArmadillo/interface/RcppArmadilloForward.h +159 -0
  15. sparsevb-0.1.1/include/RcppArmadillo/interface/RcppArmadilloSugar.h +61 -0
  16. sparsevb-0.1.1/include/RcppArmadillo/interface/RcppArmadilloWrap.h +301 -0
  17. sparsevb-0.1.1/include/RcppArmadillo/internal/Col_meat.h +47 -0
  18. sparsevb-0.1.1/include/RcppArmadillo/internal/Col_proto.h +33 -0
  19. sparsevb-0.1.1/include/RcppArmadillo/internal/Mat_meat.h +141 -0
  20. sparsevb-0.1.1/include/RcppArmadillo/internal/Mat_proto.h +33 -0
  21. sparsevb-0.1.1/include/RcppArmadillo/internal/Row_meat.h +47 -0
  22. sparsevb-0.1.1/include/RcppArmadillo/internal/Row_proto.h +33 -0
  23. sparsevb-0.1.1/include/RcppArmadillo/rng/Alt_R_RNG.h +150 -0
  24. sparsevb-0.1.1/include/RcppArmadillo/version/arma.h +82 -0
  25. sparsevb-0.1.1/include/RcppArmadillo.h +42 -0
  26. sparsevb-0.1.1/include/RcppArmadilloExtensions/fixprob.h +53 -0
  27. sparsevb-0.1.1/include/RcppArmadilloExtensions/rmultinom.h +72 -0
  28. sparsevb-0.1.1/include/RcppArmadilloExtensions/sample.h +235 -0
  29. sparsevb-0.1.1/include/RcppEnsmallen.h +27 -0
  30. sparsevb-0.1.1/include/armadillo +62 -0
  31. sparsevb-0.1.1/include/current/armadillo +896 -0
  32. sparsevb-0.1.1/include/current/armadillo_bits/BaseCube_bones.hpp +86 -0
  33. sparsevb-0.1.1/include/current/armadillo_bits/BaseCube_meat.hpp +498 -0
  34. sparsevb-0.1.1/include/current/armadillo_bits/Base_bones.hpp +167 -0
  35. sparsevb-0.1.1/include/current/armadillo_bits/Base_meat.hpp +1031 -0
  36. sparsevb-0.1.1/include/current/armadillo_bits/Col_bones.hpp +295 -0
  37. sparsevb-0.1.1/include/current/armadillo_bits/Col_meat.hpp +1889 -0
  38. sparsevb-0.1.1/include/current/armadillo_bits/CubeToMatOp_bones.hpp +47 -0
  39. sparsevb-0.1.1/include/current/armadillo_bits/CubeToMatOp_meat.hpp +54 -0
  40. sparsevb-0.1.1/include/current/armadillo_bits/Cube_bones.hpp +567 -0
  41. sparsevb-0.1.1/include/current/armadillo_bits/Cube_meat.hpp +5973 -0
  42. sparsevb-0.1.1/include/current/armadillo_bits/GenCube_bones.hpp +56 -0
  43. sparsevb-0.1.1/include/current/armadillo_bits/GenCube_meat.hpp +188 -0
  44. sparsevb-0.1.1/include/current/armadillo_bits/Gen_bones.hpp +62 -0
  45. sparsevb-0.1.1/include/current/armadillo_bits/Gen_meat.hpp +232 -0
  46. sparsevb-0.1.1/include/current/armadillo_bits/GlueCube_bones.hpp +40 -0
  47. sparsevb-0.1.1/include/current/armadillo_bits/GlueCube_meat.hpp +44 -0
  48. sparsevb-0.1.1/include/current/armadillo_bits/Glue_bones.hpp +67 -0
  49. sparsevb-0.1.1/include/current/armadillo_bits/Glue_meat.hpp +69 -0
  50. sparsevb-0.1.1/include/current/armadillo_bits/MapMat_bones.hpp +247 -0
  51. sparsevb-0.1.1/include/current/armadillo_bits/MapMat_meat.hpp +1765 -0
  52. sparsevb-0.1.1/include/current/armadillo_bits/Mat_bones.hpp +986 -0
  53. sparsevb-0.1.1/include/current/armadillo_bits/Mat_meat.hpp +10897 -0
  54. sparsevb-0.1.1/include/current/armadillo_bits/OpCube_bones.hpp +45 -0
  55. sparsevb-0.1.1/include/current/armadillo_bits/OpCube_meat.hpp +87 -0
  56. sparsevb-0.1.1/include/current/armadillo_bits/Op_bones.hpp +70 -0
  57. sparsevb-0.1.1/include/current/armadillo_bits/Op_meat.hpp +92 -0
  58. sparsevb-0.1.1/include/current/armadillo_bits/Proxy.hpp +2537 -0
  59. sparsevb-0.1.1/include/current/armadillo_bits/ProxyCube.hpp +488 -0
  60. sparsevb-0.1.1/include/current/armadillo_bits/Row_bones.hpp +298 -0
  61. sparsevb-0.1.1/include/current/armadillo_bits/Row_meat.hpp +1896 -0
  62. sparsevb-0.1.1/include/current/armadillo_bits/SizeCube_bones.hpp +50 -0
  63. sparsevb-0.1.1/include/current/armadillo_bits/SizeCube_meat.hpp +155 -0
  64. sparsevb-0.1.1/include/current/armadillo_bits/SizeMat_bones.hpp +49 -0
  65. sparsevb-0.1.1/include/current/armadillo_bits/SizeMat_meat.hpp +146 -0
  66. sparsevb-0.1.1/include/current/armadillo_bits/SpBase_bones.hpp +118 -0
  67. sparsevb-0.1.1/include/current/armadillo_bits/SpBase_meat.hpp +893 -0
  68. sparsevb-0.1.1/include/current/armadillo_bits/SpCol_bones.hpp +86 -0
  69. sparsevb-0.1.1/include/current/armadillo_bits/SpCol_meat.hpp +454 -0
  70. sparsevb-0.1.1/include/current/armadillo_bits/SpGlue_bones.hpp +47 -0
  71. sparsevb-0.1.1/include/current/armadillo_bits/SpGlue_meat.hpp +66 -0
  72. sparsevb-0.1.1/include/current/armadillo_bits/SpMat_bones.hpp +752 -0
  73. sparsevb-0.1.1/include/current/armadillo_bits/SpMat_iterators_meat.hpp +964 -0
  74. sparsevb-0.1.1/include/current/armadillo_bits/SpMat_meat.hpp +6921 -0
  75. sparsevb-0.1.1/include/current/armadillo_bits/SpOp_bones.hpp +49 -0
  76. sparsevb-0.1.1/include/current/armadillo_bits/SpOp_meat.hpp +76 -0
  77. sparsevb-0.1.1/include/current/armadillo_bits/SpProxy.hpp +739 -0
  78. sparsevb-0.1.1/include/current/armadillo_bits/SpRow_bones.hpp +89 -0
  79. sparsevb-0.1.1/include/current/armadillo_bits/SpRow_meat.hpp +457 -0
  80. sparsevb-0.1.1/include/current/armadillo_bits/SpSubview_bones.hpp +422 -0
  81. sparsevb-0.1.1/include/current/armadillo_bits/SpSubview_col_list_bones.hpp +96 -0
  82. sparsevb-0.1.1/include/current/armadillo_bits/SpSubview_col_list_meat.hpp +717 -0
  83. sparsevb-0.1.1/include/current/armadillo_bits/SpSubview_iterators_meat.hpp +1154 -0
  84. sparsevb-0.1.1/include/current/armadillo_bits/SpSubview_meat.hpp +2034 -0
  85. sparsevb-0.1.1/include/current/armadillo_bits/SpToDGlue_bones.hpp +46 -0
  86. sparsevb-0.1.1/include/current/armadillo_bits/SpToDGlue_meat.hpp +44 -0
  87. sparsevb-0.1.1/include/current/armadillo_bits/SpToDOp_bones.hpp +51 -0
  88. sparsevb-0.1.1/include/current/armadillo_bits/SpToDOp_meat.hpp +66 -0
  89. sparsevb-0.1.1/include/current/armadillo_bits/SpValProxy_bones.hpp +86 -0
  90. sparsevb-0.1.1/include/current/armadillo_bits/SpValProxy_meat.hpp +337 -0
  91. sparsevb-0.1.1/include/current/armadillo_bits/access.hpp +43 -0
  92. sparsevb-0.1.1/include/current/armadillo_bits/arma_cmath.hpp +532 -0
  93. sparsevb-0.1.1/include/current/armadillo_bits/arma_config.hpp +259 -0
  94. sparsevb-0.1.1/include/current/armadillo_bits/arma_forward.hpp +495 -0
  95. sparsevb-0.1.1/include/current/armadillo_bits/arma_ostream_bones.hpp +72 -0
  96. sparsevb-0.1.1/include/current/armadillo_bits/arma_ostream_meat.hpp +1276 -0
  97. sparsevb-0.1.1/include/current/armadillo_bits/arma_rel_comparators.hpp +170 -0
  98. sparsevb-0.1.1/include/current/armadillo_bits/arma_rng.hpp +1135 -0
  99. sparsevb-0.1.1/include/current/armadillo_bits/arma_rng_cxx03.hpp +183 -0
  100. sparsevb-0.1.1/include/current/armadillo_bits/arma_static_check.hpp +30 -0
  101. sparsevb-0.1.1/include/current/armadillo_bits/arma_str.hpp +437 -0
  102. sparsevb-0.1.1/include/current/armadillo_bits/arma_version.hpp +61 -0
  103. sparsevb-0.1.1/include/current/armadillo_bits/arrayops_bones.hpp +227 -0
  104. sparsevb-0.1.1/include/current/armadillo_bits/arrayops_meat.hpp +1117 -0
  105. sparsevb-0.1.1/include/current/armadillo_bits/auxlib_bones.hpp +468 -0
  106. sparsevb-0.1.1/include/current/armadillo_bits/auxlib_meat.hpp +7502 -0
  107. sparsevb-0.1.1/include/current/armadillo_bits/band_helper.hpp +379 -0
  108. sparsevb-0.1.1/include/current/armadillo_bits/compiler_check.hpp +88 -0
  109. sparsevb-0.1.1/include/current/armadillo_bits/compiler_setup.hpp +438 -0
  110. sparsevb-0.1.1/include/current/armadillo_bits/compiler_setup_post.hpp +24 -0
  111. sparsevb-0.1.1/include/current/armadillo_bits/cond_rel.hpp +150 -0
  112. sparsevb-0.1.1/include/current/armadillo_bits/config.hpp +382 -0
  113. sparsevb-0.1.1/include/current/armadillo_bits/config.hpp.cmake +382 -0
  114. sparsevb-0.1.1/include/current/armadillo_bits/constants.hpp +265 -0
  115. sparsevb-0.1.1/include/current/armadillo_bits/constants_old.hpp +89 -0
  116. sparsevb-0.1.1/include/current/armadillo_bits/csv_name.hpp +138 -0
  117. sparsevb-0.1.1/include/current/armadillo_bits/debug.hpp +1506 -0
  118. sparsevb-0.1.1/include/current/armadillo_bits/def_arpack.hpp +109 -0
  119. sparsevb-0.1.1/include/current/armadillo_bits/def_atlas.hpp +79 -0
  120. sparsevb-0.1.1/include/current/armadillo_bits/def_blas.hpp +161 -0
  121. sparsevb-0.1.1/include/current/armadillo_bits/def_fftw3.hpp +56 -0
  122. sparsevb-0.1.1/include/current/armadillo_bits/def_lapack.hpp +1312 -0
  123. sparsevb-0.1.1/include/current/armadillo_bits/def_superlu.hpp +78 -0
  124. sparsevb-0.1.1/include/current/armadillo_bits/diagmat_proxy.hpp +358 -0
  125. sparsevb-0.1.1/include/current/armadillo_bits/diagview_bones.hpp +120 -0
  126. sparsevb-0.1.1/include/current/armadillo_bits/diagview_meat.hpp +1046 -0
  127. sparsevb-0.1.1/include/current/armadillo_bits/diskio_bones.hpp +227 -0
  128. sparsevb-0.1.1/include/current/armadillo_bits/diskio_meat.hpp +5475 -0
  129. sparsevb-0.1.1/include/current/armadillo_bits/distr_param.hpp +111 -0
  130. sparsevb-0.1.1/include/current/armadillo_bits/eGlueCube_bones.hpp +54 -0
  131. sparsevb-0.1.1/include/current/armadillo_bits/eGlueCube_meat.hpp +153 -0
  132. sparsevb-0.1.1/include/current/armadillo_bits/eGlue_bones.hpp +59 -0
  133. sparsevb-0.1.1/include/current/armadillo_bits/eGlue_meat.hpp +147 -0
  134. sparsevb-0.1.1/include/current/armadillo_bits/eOpCube_bones.hpp +61 -0
  135. sparsevb-0.1.1/include/current/armadillo_bits/eOpCube_meat.hpp +173 -0
  136. sparsevb-0.1.1/include/current/armadillo_bits/eOp_bones.hpp +64 -0
  137. sparsevb-0.1.1/include/current/armadillo_bits/eOp_meat.hpp +164 -0
  138. sparsevb-0.1.1/include/current/armadillo_bits/eglue_core_bones.hpp +77 -0
  139. sparsevb-0.1.1/include/current/armadillo_bits/eglue_core_meat.hpp +1250 -0
  140. sparsevb-0.1.1/include/current/armadillo_bits/eop_aux.hpp +144 -0
  141. sparsevb-0.1.1/include/current/armadillo_bits/eop_core_bones.hpp +114 -0
  142. sparsevb-0.1.1/include/current/armadillo_bits/eop_core_meat.hpp +1160 -0
  143. sparsevb-0.1.1/include/current/armadillo_bits/fft_engine_fftw3.hpp +165 -0
  144. sparsevb-0.1.1/include/current/armadillo_bits/fft_engine_kissfft.hpp +388 -0
  145. sparsevb-0.1.1/include/current/armadillo_bits/field_bones.hpp +361 -0
  146. sparsevb-0.1.1/include/current/armadillo_bits/field_meat.hpp +3132 -0
  147. sparsevb-0.1.1/include/current/armadillo_bits/fill.hpp +141 -0
  148. sparsevb-0.1.1/include/current/armadillo_bits/fn_accu.hpp +80 -0
  149. sparsevb-0.1.1/include/current/armadillo_bits/fn_all.hpp +95 -0
  150. sparsevb-0.1.1/include/current/armadillo_bits/fn_any.hpp +95 -0
  151. sparsevb-0.1.1/include/current/armadillo_bits/fn_approx_equal.hpp +471 -0
  152. sparsevb-0.1.1/include/current/armadillo_bits/fn_as_scalar.hpp +448 -0
  153. sparsevb-0.1.1/include/current/armadillo_bits/fn_balance.hpp +135 -0
  154. sparsevb-0.1.1/include/current/armadillo_bits/fn_chi2rnd.hpp +192 -0
  155. sparsevb-0.1.1/include/current/armadillo_bits/fn_chol.hpp +149 -0
  156. sparsevb-0.1.1/include/current/armadillo_bits/fn_circshift.hpp +279 -0
  157. sparsevb-0.1.1/include/current/armadillo_bits/fn_clamp.hpp +117 -0
  158. sparsevb-0.1.1/include/current/armadillo_bits/fn_cond_rcond.hpp +91 -0
  159. sparsevb-0.1.1/include/current/armadillo_bits/fn_conv.hpp +74 -0
  160. sparsevb-0.1.1/include/current/armadillo_bits/fn_conv_to.hpp +945 -0
  161. sparsevb-0.1.1/include/current/armadillo_bits/fn_cor.hpp +54 -0
  162. sparsevb-0.1.1/include/current/armadillo_bits/fn_cov.hpp +54 -0
  163. sparsevb-0.1.1/include/current/armadillo_bits/fn_cross.hpp +43 -0
  164. sparsevb-0.1.1/include/current/armadillo_bits/fn_cumprod.hpp +89 -0
  165. sparsevb-0.1.1/include/current/armadillo_bits/fn_cumsum.hpp +89 -0
  166. sparsevb-0.1.1/include/current/armadillo_bits/fn_det.hpp +82 -0
  167. sparsevb-0.1.1/include/current/armadillo_bits/fn_diagmat.hpp +93 -0
  168. sparsevb-0.1.1/include/current/armadillo_bits/fn_diags_spdiags.hpp +134 -0
  169. sparsevb-0.1.1/include/current/armadillo_bits/fn_diagvec.hpp +64 -0
  170. sparsevb-0.1.1/include/current/armadillo_bits/fn_diff.hpp +91 -0
  171. sparsevb-0.1.1/include/current/armadillo_bits/fn_dot.hpp +360 -0
  172. sparsevb-0.1.1/include/current/armadillo_bits/fn_eig_gen.hpp +162 -0
  173. sparsevb-0.1.1/include/current/armadillo_bits/fn_eig_pair.hpp +144 -0
  174. sparsevb-0.1.1/include/current/armadillo_bits/fn_eig_sym.hpp +176 -0
  175. sparsevb-0.1.1/include/current/armadillo_bits/fn_eigs_gen.hpp +425 -0
  176. sparsevb-0.1.1/include/current/armadillo_bits/fn_eigs_sym.hpp +290 -0
  177. sparsevb-0.1.1/include/current/armadillo_bits/fn_elem.hpp +1255 -0
  178. sparsevb-0.1.1/include/current/armadillo_bits/fn_expmat.hpp +103 -0
  179. sparsevb-0.1.1/include/current/armadillo_bits/fn_eye.hpp +114 -0
  180. sparsevb-0.1.1/include/current/armadillo_bits/fn_fft.hpp +136 -0
  181. sparsevb-0.1.1/include/current/armadillo_bits/fn_fft2.hpp +136 -0
  182. sparsevb-0.1.1/include/current/armadillo_bits/fn_find.hpp +549 -0
  183. sparsevb-0.1.1/include/current/armadillo_bits/fn_find_unique.hpp +69 -0
  184. sparsevb-0.1.1/include/current/armadillo_bits/fn_flip.hpp +76 -0
  185. sparsevb-0.1.1/include/current/armadillo_bits/fn_hess.hpp +174 -0
  186. sparsevb-0.1.1/include/current/armadillo_bits/fn_hist.hpp +76 -0
  187. sparsevb-0.1.1/include/current/armadillo_bits/fn_histc.hpp +58 -0
  188. sparsevb-0.1.1/include/current/armadillo_bits/fn_index_max.hpp +164 -0
  189. sparsevb-0.1.1/include/current/armadillo_bits/fn_index_min.hpp +164 -0
  190. sparsevb-0.1.1/include/current/armadillo_bits/fn_inplace_strans.hpp +95 -0
  191. sparsevb-0.1.1/include/current/armadillo_bits/fn_inplace_trans.hpp +131 -0
  192. sparsevb-0.1.1/include/current/armadillo_bits/fn_interp1.hpp +351 -0
  193. sparsevb-0.1.1/include/current/armadillo_bits/fn_interp2.hpp +264 -0
  194. sparsevb-0.1.1/include/current/armadillo_bits/fn_intersect.hpp +65 -0
  195. sparsevb-0.1.1/include/current/armadillo_bits/fn_inv.hpp +138 -0
  196. sparsevb-0.1.1/include/current/armadillo_bits/fn_inv_sympd.hpp +138 -0
  197. sparsevb-0.1.1/include/current/armadillo_bits/fn_join.hpp +502 -0
  198. sparsevb-0.1.1/include/current/armadillo_bits/fn_kmeans.hpp +59 -0
  199. sparsevb-0.1.1/include/current/armadillo_bits/fn_kron.hpp +104 -0
  200. sparsevb-0.1.1/include/current/armadillo_bits/fn_log_det.hpp +157 -0
  201. sparsevb-0.1.1/include/current/armadillo_bits/fn_log_normpdf.hpp +205 -0
  202. sparsevb-0.1.1/include/current/armadillo_bits/fn_logmat.hpp +127 -0
  203. sparsevb-0.1.1/include/current/armadillo_bits/fn_lu.hpp +88 -0
  204. sparsevb-0.1.1/include/current/armadillo_bits/fn_max.hpp +277 -0
  205. sparsevb-0.1.1/include/current/armadillo_bits/fn_mean.hpp +145 -0
  206. sparsevb-0.1.1/include/current/armadillo_bits/fn_median.hpp +73 -0
  207. sparsevb-0.1.1/include/current/armadillo_bits/fn_min.hpp +277 -0
  208. sparsevb-0.1.1/include/current/armadillo_bits/fn_misc.hpp +609 -0
  209. sparsevb-0.1.1/include/current/armadillo_bits/fn_mvnrnd.hpp +110 -0
  210. sparsevb-0.1.1/include/current/armadillo_bits/fn_n_unique.hpp +132 -0
  211. sparsevb-0.1.1/include/current/armadillo_bits/fn_nonzeros.hpp +49 -0
  212. sparsevb-0.1.1/include/current/armadillo_bits/fn_norm.hpp +342 -0
  213. sparsevb-0.1.1/include/current/armadillo_bits/fn_normalise.hpp +116 -0
  214. sparsevb-0.1.1/include/current/armadillo_bits/fn_normcdf.hpp +201 -0
  215. sparsevb-0.1.1/include/current/armadillo_bits/fn_normpdf.hpp +205 -0
  216. sparsevb-0.1.1/include/current/armadillo_bits/fn_numel.hpp +95 -0
  217. sparsevb-0.1.1/include/current/armadillo_bits/fn_omit.hpp +104 -0
  218. sparsevb-0.1.1/include/current/armadillo_bits/fn_ones.hpp +161 -0
  219. sparsevb-0.1.1/include/current/armadillo_bits/fn_orth_null.hpp +98 -0
  220. sparsevb-0.1.1/include/current/armadillo_bits/fn_pinv.hpp +110 -0
  221. sparsevb-0.1.1/include/current/armadillo_bits/fn_polyfit.hpp +67 -0
  222. sparsevb-0.1.1/include/current/armadillo_bits/fn_polyval.hpp +42 -0
  223. sparsevb-0.1.1/include/current/armadillo_bits/fn_powext.hpp +179 -0
  224. sparsevb-0.1.1/include/current/armadillo_bits/fn_powmat.hpp +108 -0
  225. sparsevb-0.1.1/include/current/armadillo_bits/fn_princomp.hpp +180 -0
  226. sparsevb-0.1.1/include/current/armadillo_bits/fn_prod.hpp +74 -0
  227. sparsevb-0.1.1/include/current/armadillo_bits/fn_qr.hpp +145 -0
  228. sparsevb-0.1.1/include/current/armadillo_bits/fn_quantile.hpp +58 -0
  229. sparsevb-0.1.1/include/current/armadillo_bits/fn_qz.hpp +66 -0
  230. sparsevb-0.1.1/include/current/armadillo_bits/fn_rande.hpp +241 -0
  231. sparsevb-0.1.1/include/current/armadillo_bits/fn_randg.hpp +241 -0
  232. sparsevb-0.1.1/include/current/armadillo_bits/fn_randi.hpp +270 -0
  233. sparsevb-0.1.1/include/current/armadillo_bits/fn_randn.hpp +357 -0
  234. sparsevb-0.1.1/include/current/armadillo_bits/fn_randperm.hpp +162 -0
  235. sparsevb-0.1.1/include/current/armadillo_bits/fn_randu.hpp +357 -0
  236. sparsevb-0.1.1/include/current/armadillo_bits/fn_range.hpp +62 -0
  237. sparsevb-0.1.1/include/current/armadillo_bits/fn_rank.hpp +57 -0
  238. sparsevb-0.1.1/include/current/armadillo_bits/fn_regspace.hpp +265 -0
  239. sparsevb-0.1.1/include/current/armadillo_bits/fn_repelem.hpp +55 -0
  240. sparsevb-0.1.1/include/current/armadillo_bits/fn_repmat.hpp +94 -0
  241. sparsevb-0.1.1/include/current/armadillo_bits/fn_reshape.hpp +187 -0
  242. sparsevb-0.1.1/include/current/armadillo_bits/fn_resize.hpp +154 -0
  243. sparsevb-0.1.1/include/current/armadillo_bits/fn_reverse.hpp +100 -0
  244. sparsevb-0.1.1/include/current/armadillo_bits/fn_roots.hpp +67 -0
  245. sparsevb-0.1.1/include/current/armadillo_bits/fn_schur.hpp +114 -0
  246. sparsevb-0.1.1/include/current/armadillo_bits/fn_shuffle.hpp +88 -0
  247. sparsevb-0.1.1/include/current/armadillo_bits/fn_size.hpp +327 -0
  248. sparsevb-0.1.1/include/current/armadillo_bits/fn_solve.hpp +224 -0
  249. sparsevb-0.1.1/include/current/armadillo_bits/fn_sort.hpp +151 -0
  250. sparsevb-0.1.1/include/current/armadillo_bits/fn_sort_index.hpp +114 -0
  251. sparsevb-0.1.1/include/current/armadillo_bits/fn_speye.hpp +93 -0
  252. sparsevb-0.1.1/include/current/armadillo_bits/fn_spones.hpp +47 -0
  253. sparsevb-0.1.1/include/current/armadillo_bits/fn_sprandn.hpp +127 -0
  254. sparsevb-0.1.1/include/current/armadillo_bits/fn_sprandu.hpp +127 -0
  255. sparsevb-0.1.1/include/current/armadillo_bits/fn_spsolve.hpp +192 -0
  256. sparsevb-0.1.1/include/current/armadillo_bits/fn_sqrtmat.hpp +125 -0
  257. sparsevb-0.1.1/include/current/armadillo_bits/fn_stddev.hpp +143 -0
  258. sparsevb-0.1.1/include/current/armadillo_bits/fn_strans.hpp +110 -0
  259. sparsevb-0.1.1/include/current/armadillo_bits/fn_sum.hpp +147 -0
  260. sparsevb-0.1.1/include/current/armadillo_bits/fn_svd.hpp +246 -0
  261. sparsevb-0.1.1/include/current/armadillo_bits/fn_svds.hpp +352 -0
  262. sparsevb-0.1.1/include/current/armadillo_bits/fn_sylvester.hpp +142 -0
  263. sparsevb-0.1.1/include/current/armadillo_bits/fn_symmat.hpp +135 -0
  264. sparsevb-0.1.1/include/current/armadillo_bits/fn_toeplitz.hpp +63 -0
  265. sparsevb-0.1.1/include/current/armadillo_bits/fn_trace.hpp +663 -0
  266. sparsevb-0.1.1/include/current/armadillo_bits/fn_trans.hpp +99 -0
  267. sparsevb-0.1.1/include/current/armadillo_bits/fn_trapz.hpp +59 -0
  268. sparsevb-0.1.1/include/current/armadillo_bits/fn_trig.hpp +493 -0
  269. sparsevb-0.1.1/include/current/armadillo_bits/fn_trimat.hpp +143 -0
  270. sparsevb-0.1.1/include/current/armadillo_bits/fn_trimat_ind.hpp +139 -0
  271. sparsevb-0.1.1/include/current/armadillo_bits/fn_trunc_exp.hpp +93 -0
  272. sparsevb-0.1.1/include/current/armadillo_bits/fn_trunc_log.hpp +100 -0
  273. sparsevb-0.1.1/include/current/armadillo_bits/fn_unique.hpp +57 -0
  274. sparsevb-0.1.1/include/current/armadillo_bits/fn_var.hpp +143 -0
  275. sparsevb-0.1.1/include/current/armadillo_bits/fn_vecnorm.hpp +385 -0
  276. sparsevb-0.1.1/include/current/armadillo_bits/fn_vectorise.hpp +114 -0
  277. sparsevb-0.1.1/include/current/armadillo_bits/fn_wishrnd.hpp +204 -0
  278. sparsevb-0.1.1/include/current/armadillo_bits/fn_zeros.hpp +192 -0
  279. sparsevb-0.1.1/include/current/armadillo_bits/glue_affmul_bones.hpp +53 -0
  280. sparsevb-0.1.1/include/current/armadillo_bits/glue_affmul_meat.hpp +490 -0
  281. sparsevb-0.1.1/include/current/armadillo_bits/glue_atan2_bones.hpp +44 -0
  282. sparsevb-0.1.1/include/current/armadillo_bits/glue_atan2_meat.hpp +228 -0
  283. sparsevb-0.1.1/include/current/armadillo_bits/glue_conv_bones.hpp +53 -0
  284. sparsevb-0.1.1/include/current/armadillo_bits/glue_conv_meat.hpp +423 -0
  285. sparsevb-0.1.1/include/current/armadillo_bits/glue_cor_bones.hpp +41 -0
  286. sparsevb-0.1.1/include/current/armadillo_bits/glue_cor_meat.hpp +71 -0
  287. sparsevb-0.1.1/include/current/armadillo_bits/glue_cov_bones.hpp +41 -0
  288. sparsevb-0.1.1/include/current/armadillo_bits/glue_cov_meat.hpp +69 -0
  289. sparsevb-0.1.1/include/current/armadillo_bits/glue_cross_bones.hpp +40 -0
  290. sparsevb-0.1.1/include/current/armadillo_bits/glue_cross_meat.hpp +81 -0
  291. sparsevb-0.1.1/include/current/armadillo_bits/glue_hist_bones.hpp +50 -0
  292. sparsevb-0.1.1/include/current/armadillo_bits/glue_hist_meat.hpp +253 -0
  293. sparsevb-0.1.1/include/current/armadillo_bits/glue_histc_bones.hpp +50 -0
  294. sparsevb-0.1.1/include/current/armadillo_bits/glue_histc_meat.hpp +167 -0
  295. sparsevb-0.1.1/include/current/armadillo_bits/glue_hypot_bones.hpp +44 -0
  296. sparsevb-0.1.1/include/current/armadillo_bits/glue_hypot_meat.hpp +172 -0
  297. sparsevb-0.1.1/include/current/armadillo_bits/glue_intersect_bones.hpp +44 -0
  298. sparsevb-0.1.1/include/current/armadillo_bits/glue_intersect_meat.hpp +148 -0
  299. sparsevb-0.1.1/include/current/armadillo_bits/glue_join_bones.hpp +90 -0
  300. sparsevb-0.1.1/include/current/armadillo_bits/glue_join_meat.hpp +405 -0
  301. sparsevb-0.1.1/include/current/armadillo_bits/glue_kron_bones.hpp +46 -0
  302. sparsevb-0.1.1/include/current/armadillo_bits/glue_kron_meat.hpp +152 -0
  303. sparsevb-0.1.1/include/current/armadillo_bits/glue_max_bones.hpp +45 -0
  304. sparsevb-0.1.1/include/current/armadillo_bits/glue_max_meat.hpp +183 -0
  305. sparsevb-0.1.1/include/current/armadillo_bits/glue_min_bones.hpp +45 -0
  306. sparsevb-0.1.1/include/current/armadillo_bits/glue_min_meat.hpp +183 -0
  307. sparsevb-0.1.1/include/current/armadillo_bits/glue_mixed_bones.hpp +88 -0
  308. sparsevb-0.1.1/include/current/armadillo_bits/glue_mixed_meat.hpp +560 -0
  309. sparsevb-0.1.1/include/current/armadillo_bits/glue_mvnrnd_bones.hpp +54 -0
  310. sparsevb-0.1.1/include/current/armadillo_bits/glue_mvnrnd_meat.hpp +175 -0
  311. sparsevb-0.1.1/include/current/armadillo_bits/glue_polyfit_bones.hpp +49 -0
  312. sparsevb-0.1.1/include/current/armadillo_bits/glue_polyfit_meat.hpp +184 -0
  313. sparsevb-0.1.1/include/current/armadillo_bits/glue_polyval_bones.hpp +44 -0
  314. sparsevb-0.1.1/include/current/armadillo_bits/glue_polyval_meat.hpp +97 -0
  315. sparsevb-0.1.1/include/current/armadillo_bits/glue_powext_bones.hpp +66 -0
  316. sparsevb-0.1.1/include/current/armadillo_bits/glue_powext_meat.hpp +674 -0
  317. sparsevb-0.1.1/include/current/armadillo_bits/glue_quantile_bones.hpp +60 -0
  318. sparsevb-0.1.1/include/current/armadillo_bits/glue_quantile_meat.hpp +274 -0
  319. sparsevb-0.1.1/include/current/armadillo_bits/glue_relational_bones.hpp +120 -0
  320. sparsevb-0.1.1/include/current/armadillo_bits/glue_relational_meat.hpp +419 -0
  321. sparsevb-0.1.1/include/current/armadillo_bits/glue_solve_bones.hpp +170 -0
  322. sparsevb-0.1.1/include/current/armadillo_bits/glue_solve_meat.hpp +617 -0
  323. sparsevb-0.1.1/include/current/armadillo_bits/glue_times_bones.hpp +167 -0
  324. sparsevb-0.1.1/include/current/armadillo_bits/glue_times_meat.hpp +1049 -0
  325. sparsevb-0.1.1/include/current/armadillo_bits/glue_times_misc_bones.hpp +82 -0
  326. sparsevb-0.1.1/include/current/armadillo_bits/glue_times_misc_meat.hpp +646 -0
  327. sparsevb-0.1.1/include/current/armadillo_bits/glue_toeplitz_bones.hpp +33 -0
  328. sparsevb-0.1.1/include/current/armadillo_bits/glue_toeplitz_meat.hpp +73 -0
  329. sparsevb-0.1.1/include/current/armadillo_bits/glue_trapz_bones.hpp +56 -0
  330. sparsevb-0.1.1/include/current/armadillo_bits/glue_trapz_meat.hpp +205 -0
  331. sparsevb-0.1.1/include/current/armadillo_bits/gmm_diag_bones.hpp +179 -0
  332. sparsevb-0.1.1/include/current/armadillo_bits/gmm_diag_meat.hpp +2655 -0
  333. sparsevb-0.1.1/include/current/armadillo_bits/gmm_full_bones.hpp +167 -0
  334. sparsevb-0.1.1/include/current/armadillo_bits/gmm_full_meat.hpp +2739 -0
  335. sparsevb-0.1.1/include/current/armadillo_bits/gmm_misc_bones.hpp +119 -0
  336. sparsevb-0.1.1/include/current/armadillo_bits/gmm_misc_meat.hpp +193 -0
  337. sparsevb-0.1.1/include/current/armadillo_bits/hdf5_misc.hpp +798 -0
  338. sparsevb-0.1.1/include/current/armadillo_bits/hdf5_name.hpp +93 -0
  339. sparsevb-0.1.1/include/current/armadillo_bits/include_hdf5.hpp +45 -0
  340. sparsevb-0.1.1/include/current/armadillo_bits/include_superlu.hpp +400 -0
  341. sparsevb-0.1.1/include/current/armadillo_bits/injector_bones.hpp +84 -0
  342. sparsevb-0.1.1/include/current/armadillo_bits/injector_meat.hpp +379 -0
  343. sparsevb-0.1.1/include/current/armadillo_bits/memory.hpp +208 -0
  344. sparsevb-0.1.1/include/current/armadillo_bits/mp_misc.hpp +86 -0
  345. sparsevb-0.1.1/include/current/armadillo_bits/mtGlueCube_bones.hpp +41 -0
  346. sparsevb-0.1.1/include/current/armadillo_bits/mtGlueCube_meat.hpp +56 -0
  347. sparsevb-0.1.1/include/current/armadillo_bits/mtGlue_bones.hpp +48 -0
  348. sparsevb-0.1.1/include/current/armadillo_bits/mtGlue_meat.hpp +69 -0
  349. sparsevb-0.1.1/include/current/armadillo_bits/mtOpCube_bones.hpp +56 -0
  350. sparsevb-0.1.1/include/current/armadillo_bits/mtOpCube_meat.hpp +105 -0
  351. sparsevb-0.1.1/include/current/armadillo_bits/mtOp_bones.hpp +61 -0
  352. sparsevb-0.1.1/include/current/armadillo_bits/mtOp_meat.hpp +117 -0
  353. sparsevb-0.1.1/include/current/armadillo_bits/mtSpGlue_bones.hpp +46 -0
  354. sparsevb-0.1.1/include/current/armadillo_bits/mtSpGlue_meat.hpp +55 -0
  355. sparsevb-0.1.1/include/current/armadillo_bits/mtSpOp_bones.hpp +58 -0
  356. sparsevb-0.1.1/include/current/armadillo_bits/mtSpOp_meat.hpp +102 -0
  357. sparsevb-0.1.1/include/current/armadillo_bits/mtSpReduceOp_bones.hpp +60 -0
  358. sparsevb-0.1.1/include/current/armadillo_bits/mtSpReduceOp_meat.hpp +55 -0
  359. sparsevb-0.1.1/include/current/armadillo_bits/mul_gemm.hpp +590 -0
  360. sparsevb-0.1.1/include/current/armadillo_bits/mul_gemm_mixed.hpp +287 -0
  361. sparsevb-0.1.1/include/current/armadillo_bits/mul_gemv.hpp +569 -0
  362. sparsevb-0.1.1/include/current/armadillo_bits/mul_herk.hpp +503 -0
  363. sparsevb-0.1.1/include/current/armadillo_bits/mul_syrk.hpp +493 -0
  364. sparsevb-0.1.1/include/current/armadillo_bits/newarp_DenseGenMatProd_bones.hpp +43 -0
  365. sparsevb-0.1.1/include/current/armadillo_bits/newarp_DenseGenMatProd_meat.hpp +51 -0
  366. sparsevb-0.1.1/include/current/armadillo_bits/newarp_DoubleShiftQR_bones.hpp +76 -0
  367. sparsevb-0.1.1/include/current/armadillo_bits/newarp_DoubleShiftQR_meat.hpp +399 -0
  368. sparsevb-0.1.1/include/current/armadillo_bits/newarp_EigsSelect.hpp +52 -0
  369. sparsevb-0.1.1/include/current/armadillo_bits/newarp_GenEigsSolver_bones.hpp +109 -0
  370. sparsevb-0.1.1/include/current/armadillo_bits/newarp_GenEigsSolver_meat.hpp +492 -0
  371. sparsevb-0.1.1/include/current/armadillo_bits/newarp_SortEigenvalue.hpp +203 -0
  372. sparsevb-0.1.1/include/current/armadillo_bits/newarp_SparseGenMatProd_bones.hpp +44 -0
  373. sparsevb-0.1.1/include/current/armadillo_bits/newarp_SparseGenMatProd_meat.hpp +63 -0
  374. sparsevb-0.1.1/include/current/armadillo_bits/newarp_SparseGenRealShiftSolve_bones.hpp +51 -0
  375. sparsevb-0.1.1/include/current/armadillo_bits/newarp_SparseGenRealShiftSolve_meat.hpp +138 -0
  376. sparsevb-0.1.1/include/current/armadillo_bits/newarp_SymEigsShiftSolver_bones.hpp +43 -0
  377. sparsevb-0.1.1/include/current/armadillo_bits/newarp_SymEigsShiftSolver_meat.hpp +50 -0
  378. sparsevb-0.1.1/include/current/armadillo_bits/newarp_SymEigsSolver_bones.hpp +107 -0
  379. sparsevb-0.1.1/include/current/armadillo_bits/newarp_SymEigsSolver_meat.hpp +508 -0
  380. sparsevb-0.1.1/include/current/armadillo_bits/newarp_TridiagEigen_bones.hpp +58 -0
  381. sparsevb-0.1.1/include/current/armadillo_bits/newarp_TridiagEigen_meat.hpp +132 -0
  382. sparsevb-0.1.1/include/current/armadillo_bits/newarp_UpperHessenbergEigen_bones.hpp +59 -0
  383. sparsevb-0.1.1/include/current/armadillo_bits/newarp_UpperHessenbergEigen_meat.hpp +168 -0
  384. sparsevb-0.1.1/include/current/armadillo_bits/newarp_UpperHessenbergQR_bones.hpp +86 -0
  385. sparsevb-0.1.1/include/current/armadillo_bits/newarp_UpperHessenbergQR_meat.hpp +310 -0
  386. sparsevb-0.1.1/include/current/armadillo_bits/newarp_cx_attrib.hpp +37 -0
  387. sparsevb-0.1.1/include/current/armadillo_bits/op_accu_bones.hpp +108 -0
  388. sparsevb-0.1.1/include/current/armadillo_bits/op_accu_meat.hpp +1013 -0
  389. sparsevb-0.1.1/include/current/armadillo_bits/op_all_bones.hpp +80 -0
  390. sparsevb-0.1.1/include/current/armadillo_bits/op_all_meat.hpp +445 -0
  391. sparsevb-0.1.1/include/current/armadillo_bits/op_any_bones.hpp +80 -0
  392. sparsevb-0.1.1/include/current/armadillo_bits/op_any_meat.hpp +409 -0
  393. sparsevb-0.1.1/include/current/armadillo_bits/op_chi2rnd_bones.hpp +50 -0
  394. sparsevb-0.1.1/include/current/armadillo_bits/op_chi2rnd_meat.hpp +179 -0
  395. sparsevb-0.1.1/include/current/armadillo_bits/op_chol_bones.hpp +36 -0
  396. sparsevb-0.1.1/include/current/armadillo_bits/op_chol_meat.hpp +74 -0
  397. sparsevb-0.1.1/include/current/armadillo_bits/op_circshift_bones.hpp +43 -0
  398. sparsevb-0.1.1/include/current/armadillo_bits/op_circshift_meat.hpp +206 -0
  399. sparsevb-0.1.1/include/current/armadillo_bits/op_clamp_bones.hpp +72 -0
  400. sparsevb-0.1.1/include/current/armadillo_bits/op_clamp_meat.hpp +606 -0
  401. sparsevb-0.1.1/include/current/armadillo_bits/op_col_as_mat_bones.hpp +31 -0
  402. sparsevb-0.1.1/include/current/armadillo_bits/op_col_as_mat_meat.hpp +53 -0
  403. sparsevb-0.1.1/include/current/armadillo_bits/op_cond_bones.hpp +34 -0
  404. sparsevb-0.1.1/include/current/armadillo_bits/op_cond_meat.hpp +182 -0
  405. sparsevb-0.1.1/include/current/armadillo_bits/op_cor_bones.hpp +34 -0
  406. sparsevb-0.1.1/include/current/armadillo_bits/op_cor_meat.hpp +126 -0
  407. sparsevb-0.1.1/include/current/armadillo_bits/op_cov_bones.hpp +34 -0
  408. sparsevb-0.1.1/include/current/armadillo_bits/op_cov_meat.hpp +104 -0
  409. sparsevb-0.1.1/include/current/armadillo_bits/op_cumprod_bones.hpp +51 -0
  410. sparsevb-0.1.1/include/current/armadillo_bits/op_cumprod_meat.hpp +211 -0
  411. sparsevb-0.1.1/include/current/armadillo_bits/op_cumsum_bones.hpp +51 -0
  412. sparsevb-0.1.1/include/current/armadillo_bits/op_cumsum_meat.hpp +211 -0
  413. sparsevb-0.1.1/include/current/armadillo_bits/op_cx_scalar_bones.hpp +156 -0
  414. sparsevb-0.1.1/include/current/armadillo_bits/op_cx_scalar_meat.hpp +564 -0
  415. sparsevb-0.1.1/include/current/armadillo_bits/op_det_bones.hpp +52 -0
  416. sparsevb-0.1.1/include/current/armadillo_bits/op_det_meat.hpp +178 -0
  417. sparsevb-0.1.1/include/current/armadillo_bits/op_diagmat_bones.hpp +57 -0
  418. sparsevb-0.1.1/include/current/armadillo_bits/op_diagmat_meat.hpp +767 -0
  419. sparsevb-0.1.1/include/current/armadillo_bits/op_diagvec_bones.hpp +54 -0
  420. sparsevb-0.1.1/include/current/armadillo_bits/op_diagvec_meat.hpp +536 -0
  421. sparsevb-0.1.1/include/current/armadillo_bits/op_diff_bones.hpp +51 -0
  422. sparsevb-0.1.1/include/current/armadillo_bits/op_diff_meat.hpp +262 -0
  423. sparsevb-0.1.1/include/current/armadillo_bits/op_dot_bones.hpp +129 -0
  424. sparsevb-0.1.1/include/current/armadillo_bits/op_dot_meat.hpp +703 -0
  425. sparsevb-0.1.1/include/current/armadillo_bits/op_dotext_bones.hpp +47 -0
  426. sparsevb-0.1.1/include/current/armadillo_bits/op_dotext_meat.hpp +214 -0
  427. sparsevb-0.1.1/include/current/armadillo_bits/op_elem_bones.hpp +108 -0
  428. sparsevb-0.1.1/include/current/armadillo_bits/op_elem_meat.hpp +625 -0
  429. sparsevb-0.1.1/include/current/armadillo_bits/op_expmat_bones.hpp +49 -0
  430. sparsevb-0.1.1/include/current/armadillo_bits/op_expmat_meat.hpp +261 -0
  431. sparsevb-0.1.1/include/current/armadillo_bits/op_fft_bones.hpp +55 -0
  432. sparsevb-0.1.1/include/current/armadillo_bits/op_fft_meat.hpp +323 -0
  433. sparsevb-0.1.1/include/current/armadillo_bits/op_find_bones.hpp +129 -0
  434. sparsevb-0.1.1/include/current/armadillo_bits/op_find_meat.hpp +708 -0
  435. sparsevb-0.1.1/include/current/armadillo_bits/op_find_unique_bones.hpp +74 -0
  436. sparsevb-0.1.1/include/current/armadillo_bits/op_find_unique_meat.hpp +130 -0
  437. sparsevb-0.1.1/include/current/armadillo_bits/op_flip_bones.hpp +60 -0
  438. sparsevb-0.1.1/include/current/armadillo_bits/op_flip_meat.hpp +277 -0
  439. sparsevb-0.1.1/include/current/armadillo_bits/op_hist_bones.hpp +37 -0
  440. sparsevb-0.1.1/include/current/armadillo_bits/op_hist_meat.hpp +125 -0
  441. sparsevb-0.1.1/include/current/armadillo_bits/op_htrans_bones.hpp +109 -0
  442. sparsevb-0.1.1/include/current/armadillo_bits/op_htrans_meat.hpp +452 -0
  443. sparsevb-0.1.1/include/current/armadillo_bits/op_index_max_bones.hpp +55 -0
  444. sparsevb-0.1.1/include/current/armadillo_bits/op_index_max_meat.hpp +433 -0
  445. sparsevb-0.1.1/include/current/armadillo_bits/op_index_min_bones.hpp +55 -0
  446. sparsevb-0.1.1/include/current/armadillo_bits/op_index_min_meat.hpp +433 -0
  447. sparsevb-0.1.1/include/current/armadillo_bits/op_inv_gen_bones.hpp +137 -0
  448. sparsevb-0.1.1/include/current/armadillo_bits/op_inv_gen_meat.hpp +404 -0
  449. sparsevb-0.1.1/include/current/armadillo_bits/op_inv_spd_bones.hpp +70 -0
  450. sparsevb-0.1.1/include/current/armadillo_bits/op_inv_spd_meat.hpp +344 -0
  451. sparsevb-0.1.1/include/current/armadillo_bits/op_log_det_bones.hpp +48 -0
  452. sparsevb-0.1.1/include/current/armadillo_bits/op_log_det_meat.hpp +239 -0
  453. sparsevb-0.1.1/include/current/armadillo_bits/op_logmat_bones.hpp +76 -0
  454. sparsevb-0.1.1/include/current/armadillo_bits/op_logmat_meat.hpp +572 -0
  455. sparsevb-0.1.1/include/current/armadillo_bits/op_max_bones.hpp +113 -0
  456. sparsevb-0.1.1/include/current/armadillo_bits/op_max_meat.hpp +1338 -0
  457. sparsevb-0.1.1/include/current/armadillo_bits/op_mean_bones.hpp +84 -0
  458. sparsevb-0.1.1/include/current/armadillo_bits/op_mean_meat.hpp +564 -0
  459. sparsevb-0.1.1/include/current/armadillo_bits/op_median_bones.hpp +78 -0
  460. sparsevb-0.1.1/include/current/armadillo_bits/op_median_meat.hpp +357 -0
  461. sparsevb-0.1.1/include/current/armadillo_bits/op_min_bones.hpp +113 -0
  462. sparsevb-0.1.1/include/current/armadillo_bits/op_min_meat.hpp +1338 -0
  463. sparsevb-0.1.1/include/current/armadillo_bits/op_nonzeros_bones.hpp +42 -0
  464. sparsevb-0.1.1/include/current/armadillo_bits/op_nonzeros_meat.hpp +119 -0
  465. sparsevb-0.1.1/include/current/armadillo_bits/op_norm2est_bones.hpp +62 -0
  466. sparsevb-0.1.1/include/current/armadillo_bits/op_norm2est_meat.hpp +252 -0
  467. sparsevb-0.1.1/include/current/armadillo_bits/op_norm_bones.hpp +57 -0
  468. sparsevb-0.1.1/include/current/armadillo_bits/op_norm_meat.hpp +1046 -0
  469. sparsevb-0.1.1/include/current/armadillo_bits/op_normalise_bones.hpp +43 -0
  470. sparsevb-0.1.1/include/current/armadillo_bits/op_normalise_meat.hpp +148 -0
  471. sparsevb-0.1.1/include/current/armadillo_bits/op_omit_bones.hpp +46 -0
  472. sparsevb-0.1.1/include/current/armadillo_bits/op_omit_meat.hpp +230 -0
  473. sparsevb-0.1.1/include/current/armadillo_bits/op_orth_null_bones.hpp +49 -0
  474. sparsevb-0.1.1/include/current/armadillo_bits/op_orth_null_meat.hpp +203 -0
  475. sparsevb-0.1.1/include/current/armadillo_bits/op_pinv_bones.hpp +51 -0
  476. sparsevb-0.1.1/include/current/armadillo_bits/op_pinv_meat.hpp +357 -0
  477. sparsevb-0.1.1/include/current/armadillo_bits/op_powmat_bones.hpp +52 -0
  478. sparsevb-0.1.1/include/current/armadillo_bits/op_powmat_meat.hpp +284 -0
  479. sparsevb-0.1.1/include/current/armadillo_bits/op_princomp_bones.hpp +73 -0
  480. sparsevb-0.1.1/include/current/armadillo_bits/op_princomp_meat.hpp +319 -0
  481. sparsevb-0.1.1/include/current/armadillo_bits/op_prod_bones.hpp +40 -0
  482. sparsevb-0.1.1/include/current/armadillo_bits/op_prod_meat.hpp +217 -0
  483. sparsevb-0.1.1/include/current/armadillo_bits/op_range_bones.hpp +38 -0
  484. sparsevb-0.1.1/include/current/armadillo_bits/op_range_meat.hpp +96 -0
  485. sparsevb-0.1.1/include/current/armadillo_bits/op_rank_bones.hpp +39 -0
  486. sparsevb-0.1.1/include/current/armadillo_bits/op_rank_meat.hpp +196 -0
  487. sparsevb-0.1.1/include/current/armadillo_bits/op_rcond_bones.hpp +30 -0
  488. sparsevb-0.1.1/include/current/armadillo_bits/op_rcond_meat.hpp +104 -0
  489. sparsevb-0.1.1/include/current/armadillo_bits/op_relational_bones.hpp +144 -0
  490. sparsevb-0.1.1/include/current/armadillo_bits/op_relational_meat.hpp +510 -0
  491. sparsevb-0.1.1/include/current/armadillo_bits/op_repelem_bones.hpp +35 -0
  492. sparsevb-0.1.1/include/current/armadillo_bits/op_repelem_meat.hpp +103 -0
  493. sparsevb-0.1.1/include/current/armadillo_bits/op_repmat_bones.hpp +46 -0
  494. sparsevb-0.1.1/include/current/armadillo_bits/op_repmat_meat.hpp +205 -0
  495. sparsevb-0.1.1/include/current/armadillo_bits/op_reshape_bones.hpp +49 -0
  496. sparsevb-0.1.1/include/current/armadillo_bits/op_reshape_meat.hpp +302 -0
  497. sparsevb-0.1.1/include/current/armadillo_bits/op_resize_bones.hpp +45 -0
  498. sparsevb-0.1.1/include/current/armadillo_bits/op_resize_meat.hpp +192 -0
  499. sparsevb-0.1.1/include/current/armadillo_bits/op_reverse_bones.hpp +48 -0
  500. sparsevb-0.1.1/include/current/armadillo_bits/op_reverse_meat.hpp +176 -0
  501. sparsevb-0.1.1/include/current/armadillo_bits/op_roots_bones.hpp +39 -0
  502. sparsevb-0.1.1/include/current/armadillo_bits/op_roots_meat.hpp +140 -0
  503. sparsevb-0.1.1/include/current/armadillo_bits/op_row_as_mat_bones.hpp +31 -0
  504. sparsevb-0.1.1/include/current/armadillo_bits/op_row_as_mat_meat.hpp +63 -0
  505. sparsevb-0.1.1/include/current/armadillo_bits/op_shuffle_bones.hpp +43 -0
  506. sparsevb-0.1.1/include/current/armadillo_bits/op_shuffle_meat.hpp +243 -0
  507. sparsevb-0.1.1/include/current/armadillo_bits/op_sort_bones.hpp +54 -0
  508. sparsevb-0.1.1/include/current/armadillo_bits/op_sort_index_bones.hpp +121 -0
  509. sparsevb-0.1.1/include/current/armadillo_bits/op_sort_index_meat.hpp +142 -0
  510. sparsevb-0.1.1/include/current/armadillo_bits/op_sort_meat.hpp +333 -0
  511. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_as_dense_bones.hpp +31 -0
  512. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_as_dense_meat.hpp +36 -0
  513. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_diagvec_bones.hpp +33 -0
  514. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_diagvec_meat.hpp +62 -0
  515. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_max_bones.hpp +58 -0
  516. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_max_meat.hpp +683 -0
  517. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_mean_bones.hpp +60 -0
  518. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_mean_meat.hpp +371 -0
  519. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_min_bones.hpp +58 -0
  520. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_min_meat.hpp +719 -0
  521. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_minus_bones.hpp +60 -0
  522. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_minus_meat.hpp +183 -0
  523. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_nonzeros_bones.hpp +34 -0
  524. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_nonzeros_meat.hpp +82 -0
  525. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_plus_bones.hpp +42 -0
  526. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_plus_meat.hpp +102 -0
  527. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_stddev_bones.hpp +39 -0
  528. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_stddev_meat.hpp +162 -0
  529. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_sum_bones.hpp +34 -0
  530. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_sum_meat.hpp +148 -0
  531. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_var_bones.hpp +60 -0
  532. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_var_meat.hpp +414 -0
  533. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_vecnorm_bones.hpp +48 -0
  534. sparsevb-0.1.1/include/current/armadillo_bits/op_sp_vecnorm_meat.hpp +201 -0
  535. sparsevb-0.1.1/include/current/armadillo_bits/op_sqrtmat_bones.hpp +72 -0
  536. sparsevb-0.1.1/include/current/armadillo_bits/op_sqrtmat_meat.hpp +549 -0
  537. sparsevb-0.1.1/include/current/armadillo_bits/op_stddev_bones.hpp +42 -0
  538. sparsevb-0.1.1/include/current/armadillo_bits/op_stddev_meat.hpp +155 -0
  539. sparsevb-0.1.1/include/current/armadillo_bits/op_strans_bones.hpp +87 -0
  540. sparsevb-0.1.1/include/current/armadillo_bits/op_strans_meat.hpp +506 -0
  541. sparsevb-0.1.1/include/current/armadillo_bits/op_sum_bones.hpp +75 -0
  542. sparsevb-0.1.1/include/current/armadillo_bits/op_sum_meat.hpp +650 -0
  543. sparsevb-0.1.1/include/current/armadillo_bits/op_symmat_bones.hpp +60 -0
  544. sparsevb-0.1.1/include/current/armadillo_bits/op_symmat_meat.hpp +278 -0
  545. sparsevb-0.1.1/include/current/armadillo_bits/op_toeplitz_bones.hpp +42 -0
  546. sparsevb-0.1.1/include/current/armadillo_bits/op_toeplitz_meat.hpp +110 -0
  547. sparsevb-0.1.1/include/current/armadillo_bits/op_trimat_bones.hpp +73 -0
  548. sparsevb-0.1.1/include/current/armadillo_bits/op_trimat_meat.hpp +408 -0
  549. sparsevb-0.1.1/include/current/armadillo_bits/op_unique_bones.hpp +77 -0
  550. sparsevb-0.1.1/include/current/armadillo_bits/op_unique_meat.hpp +174 -0
  551. sparsevb-0.1.1/include/current/armadillo_bits/op_var_bones.hpp +62 -0
  552. sparsevb-0.1.1/include/current/armadillo_bits/op_var_meat.hpp +341 -0
  553. sparsevb-0.1.1/include/current/armadillo_bits/op_vecnorm_bones.hpp +51 -0
  554. sparsevb-0.1.1/include/current/armadillo_bits/op_vecnorm_meat.hpp +254 -0
  555. sparsevb-0.1.1/include/current/armadillo_bits/op_vectorise_bones.hpp +77 -0
  556. sparsevb-0.1.1/include/current/armadillo_bits/op_vectorise_meat.hpp +514 -0
  557. sparsevb-0.1.1/include/current/armadillo_bits/op_wishrnd_bones.hpp +59 -0
  558. sparsevb-0.1.1/include/current/armadillo_bits/op_wishrnd_meat.hpp +281 -0
  559. sparsevb-0.1.1/include/current/armadillo_bits/operator_cube_div.hpp +197 -0
  560. sparsevb-0.1.1/include/current/armadillo_bits/operator_cube_minus.hpp +213 -0
  561. sparsevb-0.1.1/include/current/armadillo_bits/operator_cube_plus.hpp +213 -0
  562. sparsevb-0.1.1/include/current/armadillo_bits/operator_cube_relational.hpp +301 -0
  563. sparsevb-0.1.1/include/current/armadillo_bits/operator_cube_schur.hpp +131 -0
  564. sparsevb-0.1.1/include/current/armadillo_bits/operator_cube_times.hpp +124 -0
  565. sparsevb-0.1.1/include/current/armadillo_bits/operator_div.hpp +382 -0
  566. sparsevb-0.1.1/include/current/armadillo_bits/operator_minus.hpp +505 -0
  567. sparsevb-0.1.1/include/current/armadillo_bits/operator_ostream.hpp +186 -0
  568. sparsevb-0.1.1/include/current/armadillo_bits/operator_plus.hpp +437 -0
  569. sparsevb-0.1.1/include/current/armadillo_bits/operator_relational.hpp +705 -0
  570. sparsevb-0.1.1/include/current/armadillo_bits/operator_schur.hpp +366 -0
  571. sparsevb-0.1.1/include/current/armadillo_bits/operator_times.hpp +482 -0
  572. sparsevb-0.1.1/include/current/armadillo_bits/podarray_bones.hpp +90 -0
  573. sparsevb-0.1.1/include/current/armadillo_bits/podarray_meat.hpp +309 -0
  574. sparsevb-0.1.1/include/current/armadillo_bits/promote_type.hpp +350 -0
  575. sparsevb-0.1.1/include/current/armadillo_bits/restrictors.hpp +277 -0
  576. sparsevb-0.1.1/include/current/armadillo_bits/running_stat_bones.hpp +119 -0
  577. sparsevb-0.1.1/include/current/armadillo_bits/running_stat_meat.hpp +463 -0
  578. sparsevb-0.1.1/include/current/armadillo_bits/running_stat_vec_bones.hpp +157 -0
  579. sparsevb-0.1.1/include/current/armadillo_bits/running_stat_vec_meat.hpp +636 -0
  580. sparsevb-0.1.1/include/current/armadillo_bits/sp_auxlib_bones.hpp +263 -0
  581. sparsevb-0.1.1/include/current/armadillo_bits/sp_auxlib_meat.hpp +2782 -0
  582. sparsevb-0.1.1/include/current/armadillo_bits/span.hpp +87 -0
  583. sparsevb-0.1.1/include/current/armadillo_bits/spdiagview_bones.hpp +113 -0
  584. sparsevb-0.1.1/include/current/armadillo_bits/spdiagview_meat.hpp +1079 -0
  585. sparsevb-0.1.1/include/current/armadillo_bits/spglue_join_bones.hpp +80 -0
  586. sparsevb-0.1.1/include/current/armadillo_bits/spglue_join_meat.hpp +384 -0
  587. sparsevb-0.1.1/include/current/armadillo_bits/spglue_kron_bones.hpp +46 -0
  588. sparsevb-0.1.1/include/current/armadillo_bits/spglue_kron_meat.hpp +174 -0
  589. sparsevb-0.1.1/include/current/armadillo_bits/spglue_max_bones.hpp +54 -0
  590. sparsevb-0.1.1/include/current/armadillo_bits/spglue_max_meat.hpp +222 -0
  591. sparsevb-0.1.1/include/current/armadillo_bits/spglue_merge_bones.hpp +41 -0
  592. sparsevb-0.1.1/include/current/armadillo_bits/spglue_merge_meat.hpp +554 -0
  593. sparsevb-0.1.1/include/current/armadillo_bits/spglue_min_bones.hpp +54 -0
  594. sparsevb-0.1.1/include/current/armadillo_bits/spglue_min_meat.hpp +222 -0
  595. sparsevb-0.1.1/include/current/armadillo_bits/spglue_minus_bones.hpp +58 -0
  596. sparsevb-0.1.1/include/current/armadillo_bits/spglue_minus_meat.hpp +355 -0
  597. sparsevb-0.1.1/include/current/armadillo_bits/spglue_plus_bones.hpp +54 -0
  598. sparsevb-0.1.1/include/current/armadillo_bits/spglue_plus_meat.hpp +310 -0
  599. sparsevb-0.1.1/include/current/armadillo_bits/spglue_relational_bones.hpp +72 -0
  600. sparsevb-0.1.1/include/current/armadillo_bits/spglue_relational_meat.hpp +545 -0
  601. sparsevb-0.1.1/include/current/armadillo_bits/spglue_schur_bones.hpp +63 -0
  602. sparsevb-0.1.1/include/current/armadillo_bits/spglue_schur_meat.hpp +410 -0
  603. sparsevb-0.1.1/include/current/armadillo_bits/spglue_times_bones.hpp +68 -0
  604. sparsevb-0.1.1/include/current/armadillo_bits/spglue_times_meat.hpp +401 -0
  605. sparsevb-0.1.1/include/current/armadillo_bits/spop_accu_bones.hpp +60 -0
  606. sparsevb-0.1.1/include/current/armadillo_bits/spop_accu_meat.hpp +492 -0
  607. sparsevb-0.1.1/include/current/armadillo_bits/spop_circshift_bones.hpp +33 -0
  608. sparsevb-0.1.1/include/current/armadillo_bits/spop_circshift_meat.hpp +93 -0
  609. sparsevb-0.1.1/include/current/armadillo_bits/spop_diagmat_bones.hpp +60 -0
  610. sparsevb-0.1.1/include/current/armadillo_bits/spop_diagmat_meat.hpp +456 -0
  611. sparsevb-0.1.1/include/current/armadillo_bits/spop_htrans_bones.hpp +50 -0
  612. sparsevb-0.1.1/include/current/armadillo_bits/spop_htrans_meat.hpp +98 -0
  613. sparsevb-0.1.1/include/current/armadillo_bits/spop_misc_bones.hpp +230 -0
  614. sparsevb-0.1.1/include/current/armadillo_bits/spop_misc_meat.hpp +567 -0
  615. sparsevb-0.1.1/include/current/armadillo_bits/spop_norm_bones.hpp +38 -0
  616. sparsevb-0.1.1/include/current/armadillo_bits/spop_norm_meat.hpp +154 -0
  617. sparsevb-0.1.1/include/current/armadillo_bits/spop_normalise_bones.hpp +35 -0
  618. sparsevb-0.1.1/include/current/armadillo_bits/spop_normalise_meat.hpp +133 -0
  619. sparsevb-0.1.1/include/current/armadillo_bits/spop_omit_bones.hpp +33 -0
  620. sparsevb-0.1.1/include/current/armadillo_bits/spop_omit_meat.hpp +119 -0
  621. sparsevb-0.1.1/include/current/armadillo_bits/spop_relational_bones.hpp +114 -0
  622. sparsevb-0.1.1/include/current/armadillo_bits/spop_relational_meat.hpp +521 -0
  623. sparsevb-0.1.1/include/current/armadillo_bits/spop_repmat_bones.hpp +42 -0
  624. sparsevb-0.1.1/include/current/armadillo_bits/spop_repmat_meat.hpp +180 -0
  625. sparsevb-0.1.1/include/current/armadillo_bits/spop_reverse_bones.hpp +38 -0
  626. sparsevb-0.1.1/include/current/armadillo_bits/spop_reverse_meat.hpp +185 -0
  627. sparsevb-0.1.1/include/current/armadillo_bits/spop_strans_bones.hpp +53 -0
  628. sparsevb-0.1.1/include/current/armadillo_bits/spop_strans_meat.hpp +181 -0
  629. sparsevb-0.1.1/include/current/armadillo_bits/spop_symmat_bones.hpp +42 -0
  630. sparsevb-0.1.1/include/current/armadillo_bits/spop_symmat_meat.hpp +87 -0
  631. sparsevb-0.1.1/include/current/armadillo_bits/spop_trimat_bones.hpp +63 -0
  632. sparsevb-0.1.1/include/current/armadillo_bits/spop_trimat_meat.hpp +384 -0
  633. sparsevb-0.1.1/include/current/armadillo_bits/spop_vectorise_bones.hpp +52 -0
  634. sparsevb-0.1.1/include/current/armadillo_bits/spop_vectorise_meat.hpp +126 -0
  635. sparsevb-0.1.1/include/current/armadillo_bits/spsolve_factoriser_bones.hpp +57 -0
  636. sparsevb-0.1.1/include/current/armadillo_bits/spsolve_factoriser_meat.hpp +289 -0
  637. sparsevb-0.1.1/include/current/armadillo_bits/strip.hpp +231 -0
  638. sparsevb-0.1.1/include/current/armadillo_bits/subview_bones.hpp +692 -0
  639. sparsevb-0.1.1/include/current/armadillo_bits/subview_cube_bones.hpp +248 -0
  640. sparsevb-0.1.1/include/current/armadillo_bits/subview_cube_each_bones.hpp +162 -0
  641. sparsevb-0.1.1/include/current/armadillo_bits/subview_cube_each_meat.hpp +1035 -0
  642. sparsevb-0.1.1/include/current/armadillo_bits/subview_cube_meat.hpp +2722 -0
  643. sparsevb-0.1.1/include/current/armadillo_bits/subview_cube_slices_bones.hpp +92 -0
  644. sparsevb-0.1.1/include/current/armadillo_bits/subview_cube_slices_meat.hpp +555 -0
  645. sparsevb-0.1.1/include/current/armadillo_bits/subview_each_bones.hpp +167 -0
  646. sparsevb-0.1.1/include/current/armadillo_bits/subview_each_meat.hpp +1404 -0
  647. sparsevb-0.1.1/include/current/armadillo_bits/subview_elem1_bones.hpp +112 -0
  648. sparsevb-0.1.1/include/current/armadillo_bits/subview_elem1_meat.hpp +945 -0
  649. sparsevb-0.1.1/include/current/armadillo_bits/subview_elem2_bones.hpp +117 -0
  650. sparsevb-0.1.1/include/current/armadillo_bits/subview_elem2_meat.hpp +1120 -0
  651. sparsevb-0.1.1/include/current/armadillo_bits/subview_field_bones.hpp +95 -0
  652. sparsevb-0.1.1/include/current/armadillo_bits/subview_field_meat.hpp +557 -0
  653. sparsevb-0.1.1/include/current/armadillo_bits/subview_meat.hpp +5180 -0
  654. sparsevb-0.1.1/include/current/armadillo_bits/sym_helper.hpp +486 -0
  655. sparsevb-0.1.1/include/current/armadillo_bits/traits.hpp +1480 -0
  656. sparsevb-0.1.1/include/current/armadillo_bits/translate_arpack.hpp +114 -0
  657. sparsevb-0.1.1/include/current/armadillo_bits/translate_atlas.hpp +282 -0
  658. sparsevb-0.1.1/include/current/armadillo_bits/translate_blas.hpp +271 -0
  659. sparsevb-0.1.1/include/current/armadillo_bits/translate_fftw3.hpp +106 -0
  660. sparsevb-0.1.1/include/current/armadillo_bits/translate_lapack.hpp +1513 -0
  661. sparsevb-0.1.1/include/current/armadillo_bits/translate_superlu.hpp +348 -0
  662. sparsevb-0.1.1/include/current/armadillo_bits/trimat_helper.hpp +165 -0
  663. sparsevb-0.1.1/include/current/armadillo_bits/typedef_elem.hpp +224 -0
  664. sparsevb-0.1.1/include/current/armadillo_bits/typedef_elem_check.hpp +48 -0
  665. sparsevb-0.1.1/include/current/armadillo_bits/typedef_mat.hpp +171 -0
  666. sparsevb-0.1.1/include/current/armadillo_bits/typedef_mat_fixed.hpp +326 -0
  667. sparsevb-0.1.1/include/current/armadillo_bits/unwrap.hpp +2558 -0
  668. sparsevb-0.1.1/include/current/armadillo_bits/unwrap_cube.hpp +133 -0
  669. sparsevb-0.1.1/include/current/armadillo_bits/unwrap_spmat.hpp +216 -0
  670. sparsevb-0.1.1/include/current/armadillo_bits/upgrade_val.hpp +252 -0
  671. sparsevb-0.1.1/include/current/armadillo_bits/wall_clock_bones.hpp +49 -0
  672. sparsevb-0.1.1/include/current/armadillo_bits/wall_clock_meat.hpp +128 -0
  673. sparsevb-0.1.1/include/current/armadillo_bits/xtrans_mat_bones.hpp +54 -0
  674. sparsevb-0.1.1/include/current/armadillo_bits/xtrans_mat_meat.hpp +87 -0
  675. sparsevb-0.1.1/include/current/armadillo_bits/xvec_htrans_bones.hpp +52 -0
  676. sparsevb-0.1.1/include/current/armadillo_bits/xvec_htrans_meat.hpp +90 -0
  677. sparsevb-0.1.1/include/ensmallen.hpp +163 -0
  678. sparsevb-0.1.1/include/ensmallen_bits/ada_belief/ada_belief.hpp +186 -0
  679. sparsevb-0.1.1/include/ensmallen_bits/ada_belief/ada_belief_impl.hpp +44 -0
  680. sparsevb-0.1.1/include/ensmallen_bits/ada_belief/ada_belief_update.hpp +166 -0
  681. sparsevb-0.1.1/include/ensmallen_bits/ada_bound/ada_bound.hpp +209 -0
  682. sparsevb-0.1.1/include/ensmallen_bits/ada_bound/ada_bound_impl.hpp +47 -0
  683. sparsevb-0.1.1/include/ensmallen_bits/ada_bound/ada_bound_update.hpp +220 -0
  684. sparsevb-0.1.1/include/ensmallen_bits/ada_bound/ams_bound_update.hpp +223 -0
  685. sparsevb-0.1.1/include/ensmallen_bits/ada_delta/ada_delta.hpp +182 -0
  686. sparsevb-0.1.1/include/ensmallen_bits/ada_delta/ada_delta_impl.hpp +44 -0
  687. sparsevb-0.1.1/include/ensmallen_bits/ada_delta/ada_delta_update.hpp +151 -0
  688. sparsevb-0.1.1/include/ensmallen_bits/ada_grad/ada_grad.hpp +173 -0
  689. sparsevb-0.1.1/include/ensmallen_bits/ada_grad/ada_grad_impl.hpp +41 -0
  690. sparsevb-0.1.1/include/ensmallen_bits/ada_grad/ada_grad_update.hpp +125 -0
  691. sparsevb-0.1.1/include/ensmallen_bits/ada_sqrt/ada_sqrt.hpp +168 -0
  692. sparsevb-0.1.1/include/ensmallen_bits/ada_sqrt/ada_sqrt_impl.hpp +38 -0
  693. sparsevb-0.1.1/include/ensmallen_bits/ada_sqrt/ada_sqrt_update.hpp +126 -0
  694. sparsevb-0.1.1/include/ensmallen_bits/adam/adam.hpp +221 -0
  695. sparsevb-0.1.1/include/ensmallen_bits/adam/adam_impl.hpp +48 -0
  696. sparsevb-0.1.1/include/ensmallen_bits/adam/adam_update.hpp +176 -0
  697. sparsevb-0.1.1/include/ensmallen_bits/adam/adamax_update.hpp +167 -0
  698. sparsevb-0.1.1/include/ensmallen_bits/adam/amsgrad_update.hpp +173 -0
  699. sparsevb-0.1.1/include/ensmallen_bits/adam/nadam_update.hpp +194 -0
  700. sparsevb-0.1.1/include/ensmallen_bits/adam/nadamax_update.hpp +191 -0
  701. sparsevb-0.1.1/include/ensmallen_bits/adam/optimisticadam_update.hpp +176 -0
  702. sparsevb-0.1.1/include/ensmallen_bits/agemoea/agemoea.hpp +487 -0
  703. sparsevb-0.1.1/include/ensmallen_bits/agemoea/agemoea_impl.hpp +848 -0
  704. sparsevb-0.1.1/include/ensmallen_bits/aug_lagrangian/aug_lagrangian.hpp +265 -0
  705. sparsevb-0.1.1/include/ensmallen_bits/aug_lagrangian/aug_lagrangian_function.hpp +104 -0
  706. sparsevb-0.1.1/include/ensmallen_bits/aug_lagrangian/aug_lagrangian_function_impl.hpp +102 -0
  707. sparsevb-0.1.1/include/ensmallen_bits/aug_lagrangian/aug_lagrangian_impl.hpp +244 -0
  708. sparsevb-0.1.1/include/ensmallen_bits/bigbatch_sgd/adaptive_stepsize.hpp +247 -0
  709. sparsevb-0.1.1/include/ensmallen_bits/bigbatch_sgd/backtracking_line_search.hpp +130 -0
  710. sparsevb-0.1.1/include/ensmallen_bits/bigbatch_sgd/bigbatch_sgd.hpp +225 -0
  711. sparsevb-0.1.1/include/ensmallen_bits/bigbatch_sgd/bigbatch_sgd_impl.hpp +288 -0
  712. sparsevb-0.1.1/include/ensmallen_bits/callbacks/callbacks.hpp +984 -0
  713. sparsevb-0.1.1/include/ensmallen_bits/callbacks/early_stop_at_min_loss.hpp +128 -0
  714. sparsevb-0.1.1/include/ensmallen_bits/callbacks/grad_clip_by_norm.hpp +61 -0
  715. sparsevb-0.1.1/include/ensmallen_bits/callbacks/grad_clip_by_value.hpp +61 -0
  716. sparsevb-0.1.1/include/ensmallen_bits/callbacks/print_loss.hpp +58 -0
  717. sparsevb-0.1.1/include/ensmallen_bits/callbacks/progress_bar.hpp +269 -0
  718. sparsevb-0.1.1/include/ensmallen_bits/callbacks/query_front.hpp +89 -0
  719. sparsevb-0.1.1/include/ensmallen_bits/callbacks/report.hpp +621 -0
  720. sparsevb-0.1.1/include/ensmallen_bits/callbacks/store_best_coordinates.hpp +76 -0
  721. sparsevb-0.1.1/include/ensmallen_bits/callbacks/timer_stop.hpp +108 -0
  722. sparsevb-0.1.1/include/ensmallen_bits/callbacks/traits.hpp +545 -0
  723. sparsevb-0.1.1/include/ensmallen_bits/cd/cd.hpp +181 -0
  724. sparsevb-0.1.1/include/ensmallen_bits/cd/cd_impl.hpp +137 -0
  725. sparsevb-0.1.1/include/ensmallen_bits/cd/descent_policies/cyclic_descent.hpp +60 -0
  726. sparsevb-0.1.1/include/ensmallen_bits/cd/descent_policies/greedy_descent.hpp +78 -0
  727. sparsevb-0.1.1/include/ensmallen_bits/cd/descent_policies/random_descent.hpp +65 -0
  728. sparsevb-0.1.1/include/ensmallen_bits/cmaes/active_cmaes.hpp +190 -0
  729. sparsevb-0.1.1/include/ensmallen_bits/cmaes/active_cmaes_impl.hpp +351 -0
  730. sparsevb-0.1.1/include/ensmallen_bits/cmaes/cmaes.hpp +188 -0
  731. sparsevb-0.1.1/include/ensmallen_bits/cmaes/cmaes_impl.hpp +363 -0
  732. sparsevb-0.1.1/include/ensmallen_bits/cmaes/full_selection.hpp +60 -0
  733. sparsevb-0.1.1/include/ensmallen_bits/cmaes/pop_cmaes.hpp +181 -0
  734. sparsevb-0.1.1/include/ensmallen_bits/cmaes/pop_cmaes_impl.hpp +163 -0
  735. sparsevb-0.1.1/include/ensmallen_bits/cmaes/random_selection.hpp +83 -0
  736. sparsevb-0.1.1/include/ensmallen_bits/cmaes/transformation_policies/boundary_box_constraint.hpp +162 -0
  737. sparsevb-0.1.1/include/ensmallen_bits/cmaes/transformation_policies/empty_transformation.hpp +47 -0
  738. sparsevb-0.1.1/include/ensmallen_bits/cne/cne.hpp +210 -0
  739. sparsevb-0.1.1/include/ensmallen_bits/cne/cne_impl.hpp +264 -0
  740. sparsevb-0.1.1/include/ensmallen_bits/config.hpp +63 -0
  741. sparsevb-0.1.1/include/ensmallen_bits/de/de.hpp +150 -0
  742. sparsevb-0.1.1/include/ensmallen_bits/de/de_impl.hpp +183 -0
  743. sparsevb-0.1.1/include/ensmallen_bits/demon_adam/demon_adam.hpp +207 -0
  744. sparsevb-0.1.1/include/ensmallen_bits/demon_adam/demon_adam_update.hpp +174 -0
  745. sparsevb-0.1.1/include/ensmallen_bits/demon_sgd/demon_sgd.hpp +178 -0
  746. sparsevb-0.1.1/include/ensmallen_bits/demon_sgd/demon_sgd_update.hpp +145 -0
  747. sparsevb-0.1.1/include/ensmallen_bits/ens_version.hpp +58 -0
  748. sparsevb-0.1.1/include/ensmallen_bits/eve/eve.hpp +224 -0
  749. sparsevb-0.1.1/include/ensmallen_bits/eve/eve_impl.hpp +232 -0
  750. sparsevb-0.1.1/include/ensmallen_bits/fasta/fasta.hpp +220 -0
  751. sparsevb-0.1.1/include/ensmallen_bits/fasta/fasta_impl.hpp +546 -0
  752. sparsevb-0.1.1/include/ensmallen_bits/fbs/fbs.hpp +153 -0
  753. sparsevb-0.1.1/include/ensmallen_bits/fbs/fbs_impl.hpp +141 -0
  754. sparsevb-0.1.1/include/ensmallen_bits/fbs/l1_constraint.hpp +81 -0
  755. sparsevb-0.1.1/include/ensmallen_bits/fbs/l1_constraint_impl.hpp +201 -0
  756. sparsevb-0.1.1/include/ensmallen_bits/fbs/l1_penalty.hpp +63 -0
  757. sparsevb-0.1.1/include/ensmallen_bits/fbs/l1_penalty_impl.hpp +63 -0
  758. sparsevb-0.1.1/include/ensmallen_bits/fista/fista.hpp +214 -0
  759. sparsevb-0.1.1/include/ensmallen_bits/fista/fista_impl.hpp +445 -0
  760. sparsevb-0.1.1/include/ensmallen_bits/ftml/ftml.hpp +187 -0
  761. sparsevb-0.1.1/include/ensmallen_bits/ftml/ftml_impl.hpp +43 -0
  762. sparsevb-0.1.1/include/ensmallen_bits/ftml/ftml_update.hpp +172 -0
  763. sparsevb-0.1.1/include/ensmallen_bits/function/add_evaluate.hpp +233 -0
  764. sparsevb-0.1.1/include/ensmallen_bits/function/add_evaluate_with_gradient.hpp +282 -0
  765. sparsevb-0.1.1/include/ensmallen_bits/function/add_gradient.hpp +231 -0
  766. sparsevb-0.1.1/include/ensmallen_bits/function/add_separable_evaluate.hpp +251 -0
  767. sparsevb-0.1.1/include/ensmallen_bits/function/add_separable_evaluate_with_gradient.hpp +308 -0
  768. sparsevb-0.1.1/include/ensmallen_bits/function/add_separable_gradient.hpp +254 -0
  769. sparsevb-0.1.1/include/ensmallen_bits/function/arma_traits.hpp +192 -0
  770. sparsevb-0.1.1/include/ensmallen_bits/function/sfinae_utility.hpp +317 -0
  771. sparsevb-0.1.1/include/ensmallen_bits/function/static_checks.hpp +496 -0
  772. sparsevb-0.1.1/include/ensmallen_bits/function/traits.hpp +453 -0
  773. sparsevb-0.1.1/include/ensmallen_bits/function.hpp +113 -0
  774. sparsevb-0.1.1/include/ensmallen_bits/fw/atoms.hpp +220 -0
  775. sparsevb-0.1.1/include/ensmallen_bits/fw/constr_lpball.hpp +169 -0
  776. sparsevb-0.1.1/include/ensmallen_bits/fw/constr_structure_group.hpp +244 -0
  777. sparsevb-0.1.1/include/ensmallen_bits/fw/frank_wolfe.hpp +197 -0
  778. sparsevb-0.1.1/include/ensmallen_bits/fw/frank_wolfe_impl.hpp +124 -0
  779. sparsevb-0.1.1/include/ensmallen_bits/fw/func_sq.hpp +80 -0
  780. sparsevb-0.1.1/include/ensmallen_bits/fw/line_search/line_search.hpp +91 -0
  781. sparsevb-0.1.1/include/ensmallen_bits/fw/line_search/line_search_impl.hpp +114 -0
  782. sparsevb-0.1.1/include/ensmallen_bits/fw/proximal/proximal.hpp +60 -0
  783. sparsevb-0.1.1/include/ensmallen_bits/fw/proximal/proximal_impl.hpp +99 -0
  784. sparsevb-0.1.1/include/ensmallen_bits/fw/update_classic.hpp +59 -0
  785. sparsevb-0.1.1/include/ensmallen_bits/fw/update_full_correction.hpp +97 -0
  786. sparsevb-0.1.1/include/ensmallen_bits/fw/update_linesearch.hpp +101 -0
  787. sparsevb-0.1.1/include/ensmallen_bits/fw/update_span.hpp +89 -0
  788. sparsevb-0.1.1/include/ensmallen_bits/gradient_descent/gradient_descent.hpp +178 -0
  789. sparsevb-0.1.1/include/ensmallen_bits/gradient_descent/gradient_descent_impl.hpp +162 -0
  790. sparsevb-0.1.1/include/ensmallen_bits/grid_search/grid_search.hpp +73 -0
  791. sparsevb-0.1.1/include/ensmallen_bits/grid_search/grid_search_impl.hpp +97 -0
  792. sparsevb-0.1.1/include/ensmallen_bits/iqn/iqn.hpp +148 -0
  793. sparsevb-0.1.1/include/ensmallen_bits/iqn/iqn_impl.hpp +218 -0
  794. sparsevb-0.1.1/include/ensmallen_bits/katyusha/katyusha.hpp +199 -0
  795. sparsevb-0.1.1/include/ensmallen_bits/katyusha/katyusha_impl.hpp +270 -0
  796. sparsevb-0.1.1/include/ensmallen_bits/lbfgs/lbfgs.hpp +261 -0
  797. sparsevb-0.1.1/include/ensmallen_bits/lbfgs/lbfgs_impl.hpp +527 -0
  798. sparsevb-0.1.1/include/ensmallen_bits/log.hpp +87 -0
  799. sparsevb-0.1.1/include/ensmallen_bits/lookahead/lookahead.hpp +259 -0
  800. sparsevb-0.1.1/include/ensmallen_bits/lookahead/lookahead_impl.hpp +233 -0
  801. sparsevb-0.1.1/include/ensmallen_bits/moead/decomposition_policies/pbi_decomposition.hpp +82 -0
  802. sparsevb-0.1.1/include/ensmallen_bits/moead/decomposition_policies/tchebycheff_decomposition.hpp +66 -0
  803. sparsevb-0.1.1/include/ensmallen_bits/moead/decomposition_policies/weighted_decomposition.hpp +62 -0
  804. sparsevb-0.1.1/include/ensmallen_bits/moead/moead.hpp +359 -0
  805. sparsevb-0.1.1/include/ensmallen_bits/moead/moead_impl.hpp +488 -0
  806. sparsevb-0.1.1/include/ensmallen_bits/moead/weight_init_policies/bbs_init.hpp +76 -0
  807. sparsevb-0.1.1/include/ensmallen_bits/moead/weight_init_policies/dirichlet_init.hpp +60 -0
  808. sparsevb-0.1.1/include/ensmallen_bits/moead/weight_init_policies/uniform_init.hpp +208 -0
  809. sparsevb-0.1.1/include/ensmallen_bits/nsga2/nsga2.hpp +384 -0
  810. sparsevb-0.1.1/include/ensmallen_bits/nsga2/nsga2_impl.hpp +526 -0
  811. sparsevb-0.1.1/include/ensmallen_bits/padam/padam.hpp +196 -0
  812. sparsevb-0.1.1/include/ensmallen_bits/padam/padam_update.hpp +186 -0
  813. sparsevb-0.1.1/include/ensmallen_bits/parallel_sgd/decay_policies/constant_step.hpp +52 -0
  814. sparsevb-0.1.1/include/ensmallen_bits/parallel_sgd/decay_policies/exponential_backoff.hpp +88 -0
  815. sparsevb-0.1.1/include/ensmallen_bits/parallel_sgd/parallel_sgd.hpp +160 -0
  816. sparsevb-0.1.1/include/ensmallen_bits/parallel_sgd/parallel_sgd_impl.hpp +203 -0
  817. sparsevb-0.1.1/include/ensmallen_bits/problems/ackley_function.hpp +144 -0
  818. sparsevb-0.1.1/include/ensmallen_bits/problems/ackley_function_impl.hpp +89 -0
  819. sparsevb-0.1.1/include/ensmallen_bits/problems/aug_lagrangian_test_functions.hpp +158 -0
  820. sparsevb-0.1.1/include/ensmallen_bits/problems/aug_lagrangian_test_functions_impl.hpp +367 -0
  821. sparsevb-0.1.1/include/ensmallen_bits/problems/beale_function.hpp +121 -0
  822. sparsevb-0.1.1/include/ensmallen_bits/problems/beale_function_impl.hpp +90 -0
  823. sparsevb-0.1.1/include/ensmallen_bits/problems/booth_function.hpp +121 -0
  824. sparsevb-0.1.1/include/ensmallen_bits/problems/booth_function_impl.hpp +79 -0
  825. sparsevb-0.1.1/include/ensmallen_bits/problems/bukin_function.hpp +135 -0
  826. sparsevb-0.1.1/include/ensmallen_bits/problems/bukin_function_impl.hpp +83 -0
  827. sparsevb-0.1.1/include/ensmallen_bits/problems/colville_function.hpp +122 -0
  828. sparsevb-0.1.1/include/ensmallen_bits/problems/colville_function_impl.hpp +91 -0
  829. sparsevb-0.1.1/include/ensmallen_bits/problems/cross_in_tray_function.hpp +95 -0
  830. sparsevb-0.1.1/include/ensmallen_bits/problems/cross_in_tray_function_impl.hpp +56 -0
  831. sparsevb-0.1.1/include/ensmallen_bits/problems/drop_wave_function.hpp +121 -0
  832. sparsevb-0.1.1/include/ensmallen_bits/problems/drop_wave_function_impl.hpp +91 -0
  833. sparsevb-0.1.1/include/ensmallen_bits/problems/dtlz/dtlz1_function.hpp +216 -0
  834. sparsevb-0.1.1/include/ensmallen_bits/problems/dtlz/dtlz2_function.hpp +216 -0
  835. sparsevb-0.1.1/include/ensmallen_bits/problems/dtlz/dtlz3_function.hpp +219 -0
  836. sparsevb-0.1.1/include/ensmallen_bits/problems/dtlz/dtlz4_function.hpp +219 -0
  837. sparsevb-0.1.1/include/ensmallen_bits/problems/dtlz/dtlz5_function.hpp +209 -0
  838. sparsevb-0.1.1/include/ensmallen_bits/problems/dtlz/dtlz6_function.hpp +209 -0
  839. sparsevb-0.1.1/include/ensmallen_bits/problems/dtlz/dtlz7_function.hpp +213 -0
  840. sparsevb-0.1.1/include/ensmallen_bits/problems/easom_function.hpp +121 -0
  841. sparsevb-0.1.1/include/ensmallen_bits/problems/easom_function_impl.hpp +93 -0
  842. sparsevb-0.1.1/include/ensmallen_bits/problems/eggholder_function.hpp +122 -0
  843. sparsevb-0.1.1/include/ensmallen_bits/problems/eggholder_function_impl.hpp +91 -0
  844. sparsevb-0.1.1/include/ensmallen_bits/problems/fonseca_fleming_function.hpp +102 -0
  845. sparsevb-0.1.1/include/ensmallen_bits/problems/fw_test_function.hpp +60 -0
  846. sparsevb-0.1.1/include/ensmallen_bits/problems/generalized_rosenbrock_function.hpp +146 -0
  847. sparsevb-0.1.1/include/ensmallen_bits/problems/generalized_rosenbrock_function_impl.hpp +132 -0
  848. sparsevb-0.1.1/include/ensmallen_bits/problems/goldstein_price_function.hpp +130 -0
  849. sparsevb-0.1.1/include/ensmallen_bits/problems/goldstein_price_function_impl.hpp +103 -0
  850. sparsevb-0.1.1/include/ensmallen_bits/problems/gradient_descent_test_function.hpp +58 -0
  851. sparsevb-0.1.1/include/ensmallen_bits/problems/gradient_descent_test_function_impl.hpp +38 -0
  852. sparsevb-0.1.1/include/ensmallen_bits/problems/himmelblau_function.hpp +119 -0
  853. sparsevb-0.1.1/include/ensmallen_bits/problems/himmelblau_function_impl.hpp +82 -0
  854. sparsevb-0.1.1/include/ensmallen_bits/problems/holder_table_function.hpp +90 -0
  855. sparsevb-0.1.1/include/ensmallen_bits/problems/holder_table_function_impl.hpp +54 -0
  856. sparsevb-0.1.1/include/ensmallen_bits/problems/levy_function_n13.hpp +117 -0
  857. sparsevb-0.1.1/include/ensmallen_bits/problems/levy_function_n13_impl.hpp +94 -0
  858. sparsevb-0.1.1/include/ensmallen_bits/problems/logistic_regression_function.hpp +232 -0
  859. sparsevb-0.1.1/include/ensmallen_bits/problems/logistic_regression_function_impl.hpp +376 -0
  860. sparsevb-0.1.1/include/ensmallen_bits/problems/maf/maf1_function.hpp +185 -0
  861. sparsevb-0.1.1/include/ensmallen_bits/problems/maf/maf2_function.hpp +201 -0
  862. sparsevb-0.1.1/include/ensmallen_bits/problems/maf/maf3_function.hpp +196 -0
  863. sparsevb-0.1.1/include/ensmallen_bits/problems/maf/maf4_function.hpp +206 -0
  864. sparsevb-0.1.1/include/ensmallen_bits/problems/maf/maf5_function.hpp +220 -0
  865. sparsevb-0.1.1/include/ensmallen_bits/problems/maf/maf6_function.hpp +228 -0
  866. sparsevb-0.1.1/include/ensmallen_bits/problems/matyas_function.hpp +121 -0
  867. sparsevb-0.1.1/include/ensmallen_bits/problems/matyas_function_impl.hpp +79 -0
  868. sparsevb-0.1.1/include/ensmallen_bits/problems/mc_cormick_function.hpp +121 -0
  869. sparsevb-0.1.1/include/ensmallen_bits/problems/mc_cormick_function_impl.hpp +79 -0
  870. sparsevb-0.1.1/include/ensmallen_bits/problems/problems.hpp +65 -0
  871. sparsevb-0.1.1/include/ensmallen_bits/problems/quadratic_function.hpp +108 -0
  872. sparsevb-0.1.1/include/ensmallen_bits/problems/quadratic_function_impl.hpp +61 -0
  873. sparsevb-0.1.1/include/ensmallen_bits/problems/rastrigin_function.hpp +140 -0
  874. sparsevb-0.1.1/include/ensmallen_bits/problems/rastrigin_function_impl.hpp +94 -0
  875. sparsevb-0.1.1/include/ensmallen_bits/problems/rosenbrock_function.hpp +131 -0
  876. sparsevb-0.1.1/include/ensmallen_bits/problems/rosenbrock_function_impl.hpp +93 -0
  877. sparsevb-0.1.1/include/ensmallen_bits/problems/rosenbrock_wood_function.hpp +124 -0
  878. sparsevb-0.1.1/include/ensmallen_bits/problems/rosenbrock_wood_function_impl.hpp +76 -0
  879. sparsevb-0.1.1/include/ensmallen_bits/problems/schaffer_function_n1.hpp +100 -0
  880. sparsevb-0.1.1/include/ensmallen_bits/problems/schaffer_function_n2.hpp +122 -0
  881. sparsevb-0.1.1/include/ensmallen_bits/problems/schaffer_function_n2_impl.hpp +94 -0
  882. sparsevb-0.1.1/include/ensmallen_bits/problems/schaffer_function_n4.hpp +83 -0
  883. sparsevb-0.1.1/include/ensmallen_bits/problems/schaffer_function_n4_impl.hpp +57 -0
  884. sparsevb-0.1.1/include/ensmallen_bits/problems/schwefel_function.hpp +142 -0
  885. sparsevb-0.1.1/include/ensmallen_bits/problems/schwefel_function_impl.hpp +88 -0
  886. sparsevb-0.1.1/include/ensmallen_bits/problems/sgd_test_function.hpp +76 -0
  887. sparsevb-0.1.1/include/ensmallen_bits/problems/sgd_test_function_impl.hpp +101 -0
  888. sparsevb-0.1.1/include/ensmallen_bits/problems/softmax_regression_function.hpp +209 -0
  889. sparsevb-0.1.1/include/ensmallen_bits/problems/softmax_regression_function_impl.hpp +357 -0
  890. sparsevb-0.1.1/include/ensmallen_bits/problems/sparse_test_function.hpp +93 -0
  891. sparsevb-0.1.1/include/ensmallen_bits/problems/sparse_test_function_impl.hpp +88 -0
  892. sparsevb-0.1.1/include/ensmallen_bits/problems/sphere_function.hpp +141 -0
  893. sparsevb-0.1.1/include/ensmallen_bits/problems/sphere_function_impl.hpp +92 -0
  894. sparsevb-0.1.1/include/ensmallen_bits/problems/styblinski_tang_function.hpp +145 -0
  895. sparsevb-0.1.1/include/ensmallen_bits/problems/styblinski_tang_function_impl.hpp +94 -0
  896. sparsevb-0.1.1/include/ensmallen_bits/problems/three_hump_camel_function.hpp +127 -0
  897. sparsevb-0.1.1/include/ensmallen_bits/problems/three_hump_camel_function_impl.hpp +81 -0
  898. sparsevb-0.1.1/include/ensmallen_bits/problems/wood_function.hpp +128 -0
  899. sparsevb-0.1.1/include/ensmallen_bits/problems/wood_function_impl.hpp +93 -0
  900. sparsevb-0.1.1/include/ensmallen_bits/problems/zdt/zdt1_function.hpp +159 -0
  901. sparsevb-0.1.1/include/ensmallen_bits/problems/zdt/zdt2_function.hpp +159 -0
  902. sparsevb-0.1.1/include/ensmallen_bits/problems/zdt/zdt3_function.hpp +189 -0
  903. sparsevb-0.1.1/include/ensmallen_bits/problems/zdt/zdt4_function.hpp +162 -0
  904. sparsevb-0.1.1/include/ensmallen_bits/problems/zdt/zdt6_function.hpp +164 -0
  905. sparsevb-0.1.1/include/ensmallen_bits/pso/init_policies/default_init.hpp +126 -0
  906. sparsevb-0.1.1/include/ensmallen_bits/pso/pso.hpp +275 -0
  907. sparsevb-0.1.1/include/ensmallen_bits/pso/pso_impl.hpp +249 -0
  908. sparsevb-0.1.1/include/ensmallen_bits/pso/update_policies/lbest_update.hpp +189 -0
  909. sparsevb-0.1.1/include/ensmallen_bits/qhadam/qhadam.hpp +199 -0
  910. sparsevb-0.1.1/include/ensmallen_bits/qhadam/qhadam_impl.hpp +46 -0
  911. sparsevb-0.1.1/include/ensmallen_bits/qhadam/qhadam_update.hpp +196 -0
  912. sparsevb-0.1.1/include/ensmallen_bits/rmsprop/rmsprop.hpp +190 -0
  913. sparsevb-0.1.1/include/ensmallen_bits/rmsprop/rmsprop_update.hpp +139 -0
  914. sparsevb-0.1.1/include/ensmallen_bits/sa/exponential_schedule.hpp +67 -0
  915. sparsevb-0.1.1/include/ensmallen_bits/sa/sa.hpp +220 -0
  916. sparsevb-0.1.1/include/ensmallen_bits/sa/sa_impl.hpp +237 -0
  917. sparsevb-0.1.1/include/ensmallen_bits/sarah/sarah.hpp +203 -0
  918. sparsevb-0.1.1/include/ensmallen_bits/sarah/sarah_impl.hpp +248 -0
  919. sparsevb-0.1.1/include/ensmallen_bits/sarah/sarah_plus_update.hpp +73 -0
  920. sparsevb-0.1.1/include/ensmallen_bits/sarah/sarah_update.hpp +54 -0
  921. sparsevb-0.1.1/include/ensmallen_bits/sdp/lin_alg.hpp +156 -0
  922. sparsevb-0.1.1/include/ensmallen_bits/sdp/lrsdp.hpp +128 -0
  923. sparsevb-0.1.1/include/ensmallen_bits/sdp/lrsdp_function.hpp +195 -0
  924. sparsevb-0.1.1/include/ensmallen_bits/sdp/lrsdp_function_impl.hpp +331 -0
  925. sparsevb-0.1.1/include/ensmallen_bits/sdp/lrsdp_impl.hpp +66 -0
  926. sparsevb-0.1.1/include/ensmallen_bits/sdp/primal_dual.hpp +136 -0
  927. sparsevb-0.1.1/include/ensmallen_bits/sdp/primal_dual_impl.hpp +521 -0
  928. sparsevb-0.1.1/include/ensmallen_bits/sdp/sdp.hpp +166 -0
  929. sparsevb-0.1.1/include/ensmallen_bits/sdp/sdp_impl.hpp +125 -0
  930. sparsevb-0.1.1/include/ensmallen_bits/sgd/decay_policies/no_decay.hpp +84 -0
  931. sparsevb-0.1.1/include/ensmallen_bits/sgd/sgd.hpp +259 -0
  932. sparsevb-0.1.1/include/ensmallen_bits/sgd/sgd_impl.hpp +243 -0
  933. sparsevb-0.1.1/include/ensmallen_bits/sgd/update_policies/gradient_clipping.hpp +132 -0
  934. sparsevb-0.1.1/include/ensmallen_bits/sgd/update_policies/momentum_update.hpp +138 -0
  935. sparsevb-0.1.1/include/ensmallen_bits/sgd/update_policies/nesterov_momentum_update.hpp +115 -0
  936. sparsevb-0.1.1/include/ensmallen_bits/sgd/update_policies/quasi_hyperbolic_update.hpp +128 -0
  937. sparsevb-0.1.1/include/ensmallen_bits/sgd/update_policies/vanilla_update.hpp +75 -0
  938. sparsevb-0.1.1/include/ensmallen_bits/sgdr/cyclical_decay.hpp +184 -0
  939. sparsevb-0.1.1/include/ensmallen_bits/sgdr/sgdr.hpp +186 -0
  940. sparsevb-0.1.1/include/ensmallen_bits/sgdr/sgdr_impl.hpp +81 -0
  941. sparsevb-0.1.1/include/ensmallen_bits/sgdr/snapshot_ensembles.hpp +226 -0
  942. sparsevb-0.1.1/include/ensmallen_bits/sgdr/snapshot_sgdr.hpp +247 -0
  943. sparsevb-0.1.1/include/ensmallen_bits/sgdr/snapshot_sgdr_impl.hpp +121 -0
  944. sparsevb-0.1.1/include/ensmallen_bits/smorms3/smorms3.hpp +171 -0
  945. sparsevb-0.1.1/include/ensmallen_bits/smorms3/smorms3_impl.hpp +41 -0
  946. sparsevb-0.1.1/include/ensmallen_bits/smorms3/smorms3_update.hpp +132 -0
  947. sparsevb-0.1.1/include/ensmallen_bits/spalera_sgd/spalera_sgd.hpp +262 -0
  948. sparsevb-0.1.1/include/ensmallen_bits/spalera_sgd/spalera_sgd_impl.hpp +256 -0
  949. sparsevb-0.1.1/include/ensmallen_bits/spalera_sgd/spalera_stepsize.hpp +280 -0
  950. sparsevb-0.1.1/include/ensmallen_bits/spsa/spsa.hpp +139 -0
  951. sparsevb-0.1.1/include/ensmallen_bits/spsa/spsa_impl.hpp +136 -0
  952. sparsevb-0.1.1/include/ensmallen_bits/svrg/barzilai_borwein_decay.hpp +138 -0
  953. sparsevb-0.1.1/include/ensmallen_bits/svrg/svrg.hpp +276 -0
  954. sparsevb-0.1.1/include/ensmallen_bits/svrg/svrg_impl.hpp +272 -0
  955. sparsevb-0.1.1/include/ensmallen_bits/svrg/svrg_update.hpp +73 -0
  956. sparsevb-0.1.1/include/ensmallen_bits/swats/swats.hpp +187 -0
  957. sparsevb-0.1.1/include/ensmallen_bits/swats/swats_impl.hpp +44 -0
  958. sparsevb-0.1.1/include/ensmallen_bits/swats/swats_update.hpp +230 -0
  959. sparsevb-0.1.1/include/ensmallen_bits/utility/any.hpp +128 -0
  960. sparsevb-0.1.1/include/ensmallen_bits/utility/detect_callbacks.hpp +41 -0
  961. sparsevb-0.1.1/include/ensmallen_bits/utility/function_traits.hpp +245 -0
  962. sparsevb-0.1.1/include/ensmallen_bits/utility/indicators/epsilon.hpp +93 -0
  963. sparsevb-0.1.1/include/ensmallen_bits/utility/indicators/igd.hpp +101 -0
  964. sparsevb-0.1.1/include/ensmallen_bits/utility/indicators/igd_plus.hpp +95 -0
  965. sparsevb-0.1.1/include/ensmallen_bits/utility/proxies.hpp +164 -0
  966. sparsevb-0.1.1/include/ensmallen_bits/utility/using.hpp +174 -0
  967. sparsevb-0.1.1/include/ensmallen_bits/wn_grad/wn_grad.hpp +161 -0
  968. sparsevb-0.1.1/include/ensmallen_bits/wn_grad/wn_grad_impl.hpp +41 -0
  969. sparsevb-0.1.1/include/ensmallen_bits/wn_grad/wn_grad_update.hpp +109 -0
  970. sparsevb-0.1.1/include/ensmallen_bits/yogi/yogi.hpp +189 -0
  971. sparsevb-0.1.1/include/ensmallen_bits/yogi/yogi_impl.hpp +44 -0
  972. sparsevb-0.1.1/include/ensmallen_bits/yogi/yogi_update.hpp +158 -0
  973. sparsevb-0.1.1/include/legacy/armadillo +874 -0
  974. sparsevb-0.1.1/include/legacy/armadillo_bits/BaseCube_bones.hpp +86 -0
  975. sparsevb-0.1.1/include/legacy/armadillo_bits/BaseCube_meat.hpp +498 -0
  976. sparsevb-0.1.1/include/legacy/armadillo_bits/Base_bones.hpp +167 -0
  977. sparsevb-0.1.1/include/legacy/armadillo_bits/Base_meat.hpp +1031 -0
  978. sparsevb-0.1.1/include/legacy/armadillo_bits/Col_bones.hpp +290 -0
  979. sparsevb-0.1.1/include/legacy/armadillo_bits/Col_meat.hpp +1891 -0
  980. sparsevb-0.1.1/include/legacy/armadillo_bits/CubeToMatOp_bones.hpp +49 -0
  981. sparsevb-0.1.1/include/legacy/armadillo_bits/CubeToMatOp_meat.hpp +54 -0
  982. sparsevb-0.1.1/include/legacy/armadillo_bits/Cube_bones.hpp +566 -0
  983. sparsevb-0.1.1/include/legacy/armadillo_bits/Cube_meat.hpp +5973 -0
  984. sparsevb-0.1.1/include/legacy/armadillo_bits/GenCube_bones.hpp +58 -0
  985. sparsevb-0.1.1/include/legacy/armadillo_bits/GenCube_meat.hpp +188 -0
  986. sparsevb-0.1.1/include/legacy/armadillo_bits/Gen_bones.hpp +64 -0
  987. sparsevb-0.1.1/include/legacy/armadillo_bits/Gen_meat.hpp +232 -0
  988. sparsevb-0.1.1/include/legacy/armadillo_bits/GlueCube_bones.hpp +42 -0
  989. sparsevb-0.1.1/include/legacy/armadillo_bits/GlueCube_meat.hpp +44 -0
  990. sparsevb-0.1.1/include/legacy/armadillo_bits/Glue_bones.hpp +69 -0
  991. sparsevb-0.1.1/include/legacy/armadillo_bits/Glue_meat.hpp +69 -0
  992. sparsevb-0.1.1/include/legacy/armadillo_bits/MapMat_bones.hpp +247 -0
  993. sparsevb-0.1.1/include/legacy/armadillo_bits/MapMat_meat.hpp +1765 -0
  994. sparsevb-0.1.1/include/legacy/armadillo_bits/Mat_bones.hpp +960 -0
  995. sparsevb-0.1.1/include/legacy/armadillo_bits/Mat_meat.hpp +10432 -0
  996. sparsevb-0.1.1/include/legacy/armadillo_bits/OpCube_bones.hpp +47 -0
  997. sparsevb-0.1.1/include/legacy/armadillo_bits/OpCube_meat.hpp +87 -0
  998. sparsevb-0.1.1/include/legacy/armadillo_bits/Op_bones.hpp +72 -0
  999. sparsevb-0.1.1/include/legacy/armadillo_bits/Op_meat.hpp +92 -0
  1000. sparsevb-0.1.1/include/legacy/armadillo_bits/Proxy.hpp +2537 -0
  1001. sparsevb-0.1.1/include/legacy/armadillo_bits/ProxyCube.hpp +488 -0
  1002. sparsevb-0.1.1/include/legacy/armadillo_bits/Row_bones.hpp +290 -0
  1003. sparsevb-0.1.1/include/legacy/armadillo_bits/Row_meat.hpp +1891 -0
  1004. sparsevb-0.1.1/include/legacy/armadillo_bits/SizeCube_bones.hpp +52 -0
  1005. sparsevb-0.1.1/include/legacy/armadillo_bits/SizeCube_meat.hpp +155 -0
  1006. sparsevb-0.1.1/include/legacy/armadillo_bits/SizeMat_bones.hpp +51 -0
  1007. sparsevb-0.1.1/include/legacy/armadillo_bits/SizeMat_meat.hpp +146 -0
  1008. sparsevb-0.1.1/include/legacy/armadillo_bits/SpBase_bones.hpp +118 -0
  1009. sparsevb-0.1.1/include/legacy/armadillo_bits/SpBase_meat.hpp +893 -0
  1010. sparsevb-0.1.1/include/legacy/armadillo_bits/SpCol_bones.hpp +86 -0
  1011. sparsevb-0.1.1/include/legacy/armadillo_bits/SpCol_meat.hpp +454 -0
  1012. sparsevb-0.1.1/include/legacy/armadillo_bits/SpGlue_bones.hpp +49 -0
  1013. sparsevb-0.1.1/include/legacy/armadillo_bits/SpGlue_meat.hpp +66 -0
  1014. sparsevb-0.1.1/include/legacy/armadillo_bits/SpMat_bones.hpp +748 -0
  1015. sparsevb-0.1.1/include/legacy/armadillo_bits/SpMat_iterators_meat.hpp +964 -0
  1016. sparsevb-0.1.1/include/legacy/armadillo_bits/SpMat_meat.hpp +6921 -0
  1017. sparsevb-0.1.1/include/legacy/armadillo_bits/SpOp_bones.hpp +51 -0
  1018. sparsevb-0.1.1/include/legacy/armadillo_bits/SpOp_meat.hpp +76 -0
  1019. sparsevb-0.1.1/include/legacy/armadillo_bits/SpProxy.hpp +739 -0
  1020. sparsevb-0.1.1/include/legacy/armadillo_bits/SpRow_bones.hpp +89 -0
  1021. sparsevb-0.1.1/include/legacy/armadillo_bits/SpRow_meat.hpp +457 -0
  1022. sparsevb-0.1.1/include/legacy/armadillo_bits/SpSubview_bones.hpp +422 -0
  1023. sparsevb-0.1.1/include/legacy/armadillo_bits/SpSubview_col_list_bones.hpp +96 -0
  1024. sparsevb-0.1.1/include/legacy/armadillo_bits/SpSubview_col_list_meat.hpp +717 -0
  1025. sparsevb-0.1.1/include/legacy/armadillo_bits/SpSubview_iterators_meat.hpp +1154 -0
  1026. sparsevb-0.1.1/include/legacy/armadillo_bits/SpSubview_meat.hpp +2034 -0
  1027. sparsevb-0.1.1/include/legacy/armadillo_bits/SpToDGlue_bones.hpp +48 -0
  1028. sparsevb-0.1.1/include/legacy/armadillo_bits/SpToDGlue_meat.hpp +44 -0
  1029. sparsevb-0.1.1/include/legacy/armadillo_bits/SpToDOp_bones.hpp +53 -0
  1030. sparsevb-0.1.1/include/legacy/armadillo_bits/SpToDOp_meat.hpp +66 -0
  1031. sparsevb-0.1.1/include/legacy/armadillo_bits/SpValProxy_bones.hpp +86 -0
  1032. sparsevb-0.1.1/include/legacy/armadillo_bits/SpValProxy_meat.hpp +337 -0
  1033. sparsevb-0.1.1/include/legacy/armadillo_bits/access.hpp +45 -0
  1034. sparsevb-0.1.1/include/legacy/armadillo_bits/arma_cmath.hpp +420 -0
  1035. sparsevb-0.1.1/include/legacy/armadillo_bits/arma_config.hpp +252 -0
  1036. sparsevb-0.1.1/include/legacy/armadillo_bits/arma_forward.hpp +492 -0
  1037. sparsevb-0.1.1/include/legacy/armadillo_bits/arma_ostream_bones.hpp +79 -0
  1038. sparsevb-0.1.1/include/legacy/armadillo_bits/arma_ostream_meat.hpp +1274 -0
  1039. sparsevb-0.1.1/include/legacy/armadillo_bits/arma_rel_comparators.hpp +170 -0
  1040. sparsevb-0.1.1/include/legacy/armadillo_bits/arma_rng.hpp +1034 -0
  1041. sparsevb-0.1.1/include/legacy/armadillo_bits/arma_rng_cxx03.hpp +185 -0
  1042. sparsevb-0.1.1/include/legacy/armadillo_bits/arma_static_check.hpp +30 -0
  1043. sparsevb-0.1.1/include/legacy/armadillo_bits/arma_str.hpp +437 -0
  1044. sparsevb-0.1.1/include/legacy/armadillo_bits/arma_version.hpp +61 -0
  1045. sparsevb-0.1.1/include/legacy/armadillo_bits/arrayops_bones.hpp +229 -0
  1046. sparsevb-0.1.1/include/legacy/armadillo_bits/arrayops_meat.hpp +1117 -0
  1047. sparsevb-0.1.1/include/legacy/armadillo_bits/auxlib_bones.hpp +500 -0
  1048. sparsevb-0.1.1/include/legacy/armadillo_bits/auxlib_meat.hpp +7785 -0
  1049. sparsevb-0.1.1/include/legacy/armadillo_bits/band_helper.hpp +379 -0
  1050. sparsevb-0.1.1/include/legacy/armadillo_bits/compiler_check.hpp +93 -0
  1051. sparsevb-0.1.1/include/legacy/armadillo_bits/compiler_setup.hpp +486 -0
  1052. sparsevb-0.1.1/include/legacy/armadillo_bits/compiler_setup_post.hpp +24 -0
  1053. sparsevb-0.1.1/include/legacy/armadillo_bits/cond_rel_bones.hpp +42 -0
  1054. sparsevb-0.1.1/include/legacy/armadillo_bits/cond_rel_meat.hpp +134 -0
  1055. sparsevb-0.1.1/include/legacy/armadillo_bits/config.hpp +405 -0
  1056. sparsevb-0.1.1/include/legacy/armadillo_bits/constants.hpp +263 -0
  1057. sparsevb-0.1.1/include/legacy/armadillo_bits/constants_old.hpp +93 -0
  1058. sparsevb-0.1.1/include/legacy/armadillo_bits/csv_name.hpp +138 -0
  1059. sparsevb-0.1.1/include/legacy/armadillo_bits/debug.hpp +1464 -0
  1060. sparsevb-0.1.1/include/legacy/armadillo_bits/def_arpack.hpp +109 -0
  1061. sparsevb-0.1.1/include/legacy/armadillo_bits/def_atlas.hpp +79 -0
  1062. sparsevb-0.1.1/include/legacy/armadillo_bits/def_blas.hpp +161 -0
  1063. sparsevb-0.1.1/include/legacy/armadillo_bits/def_fftw3.hpp +56 -0
  1064. sparsevb-0.1.1/include/legacy/armadillo_bits/def_lapack.hpp +1312 -0
  1065. sparsevb-0.1.1/include/legacy/armadillo_bits/def_superlu.hpp +78 -0
  1066. sparsevb-0.1.1/include/legacy/armadillo_bits/diagmat_proxy.hpp +375 -0
  1067. sparsevb-0.1.1/include/legacy/armadillo_bits/diagview_bones.hpp +120 -0
  1068. sparsevb-0.1.1/include/legacy/armadillo_bits/diagview_meat.hpp +1046 -0
  1069. sparsevb-0.1.1/include/legacy/armadillo_bits/diskio_bones.hpp +229 -0
  1070. sparsevb-0.1.1/include/legacy/armadillo_bits/diskio_meat.hpp +5430 -0
  1071. sparsevb-0.1.1/include/legacy/armadillo_bits/distr_param.hpp +91 -0
  1072. sparsevb-0.1.1/include/legacy/armadillo_bits/eGlueCube_bones.hpp +56 -0
  1073. sparsevb-0.1.1/include/legacy/armadillo_bits/eGlueCube_meat.hpp +153 -0
  1074. sparsevb-0.1.1/include/legacy/armadillo_bits/eGlue_bones.hpp +61 -0
  1075. sparsevb-0.1.1/include/legacy/armadillo_bits/eGlue_meat.hpp +147 -0
  1076. sparsevb-0.1.1/include/legacy/armadillo_bits/eOpCube_bones.hpp +63 -0
  1077. sparsevb-0.1.1/include/legacy/armadillo_bits/eOpCube_meat.hpp +173 -0
  1078. sparsevb-0.1.1/include/legacy/armadillo_bits/eOp_bones.hpp +66 -0
  1079. sparsevb-0.1.1/include/legacy/armadillo_bits/eOp_meat.hpp +164 -0
  1080. sparsevb-0.1.1/include/legacy/armadillo_bits/eglue_core_bones.hpp +86 -0
  1081. sparsevb-0.1.1/include/legacy/armadillo_bits/eglue_core_meat.hpp +1250 -0
  1082. sparsevb-0.1.1/include/legacy/armadillo_bits/eop_aux.hpp +195 -0
  1083. sparsevb-0.1.1/include/legacy/armadillo_bits/eop_core_bones.hpp +117 -0
  1084. sparsevb-0.1.1/include/legacy/armadillo_bits/eop_core_meat.hpp +1163 -0
  1085. sparsevb-0.1.1/include/legacy/armadillo_bits/fft_engine_fftw3.hpp +167 -0
  1086. sparsevb-0.1.1/include/legacy/armadillo_bits/fft_engine_kissfft.hpp +392 -0
  1087. sparsevb-0.1.1/include/legacy/armadillo_bits/field_bones.hpp +361 -0
  1088. sparsevb-0.1.1/include/legacy/armadillo_bits/field_meat.hpp +3132 -0
  1089. sparsevb-0.1.1/include/legacy/armadillo_bits/fill.hpp +116 -0
  1090. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_accu.hpp +1692 -0
  1091. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_all.hpp +95 -0
  1092. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_any.hpp +95 -0
  1093. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_approx_equal.hpp +471 -0
  1094. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_as_scalar.hpp +448 -0
  1095. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_balance.hpp +135 -0
  1096. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_chi2rnd.hpp +182 -0
  1097. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_chol.hpp +149 -0
  1098. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_clamp.hpp +117 -0
  1099. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_cond_rcond.hpp +63 -0
  1100. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_conv.hpp +74 -0
  1101. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_conv_to.hpp +959 -0
  1102. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_cor.hpp +54 -0
  1103. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_cov.hpp +54 -0
  1104. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_cross.hpp +43 -0
  1105. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_cumprod.hpp +89 -0
  1106. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_cumsum.hpp +89 -0
  1107. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_det.hpp +82 -0
  1108. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_diagmat.hpp +93 -0
  1109. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_diags_spdiags.hpp +134 -0
  1110. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_diagvec.hpp +64 -0
  1111. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_diff.hpp +91 -0
  1112. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_dot.hpp +360 -0
  1113. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_eig_gen.hpp +170 -0
  1114. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_eig_pair.hpp +144 -0
  1115. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_eig_sym.hpp +161 -0
  1116. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_eigs_gen.hpp +425 -0
  1117. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_eigs_sym.hpp +290 -0
  1118. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_elem.hpp +1200 -0
  1119. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_eps.hpp +106 -0
  1120. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_expmat.hpp +103 -0
  1121. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_eye.hpp +114 -0
  1122. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_fft.hpp +136 -0
  1123. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_fft2.hpp +136 -0
  1124. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_find.hpp +549 -0
  1125. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_find_unique.hpp +69 -0
  1126. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_flip.hpp +76 -0
  1127. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_hess.hpp +174 -0
  1128. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_hist.hpp +76 -0
  1129. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_histc.hpp +58 -0
  1130. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_index_max.hpp +164 -0
  1131. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_index_min.hpp +164 -0
  1132. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_inplace_strans.hpp +95 -0
  1133. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_inplace_trans.hpp +131 -0
  1134. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_interp1.hpp +351 -0
  1135. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_interp2.hpp +264 -0
  1136. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_intersect.hpp +65 -0
  1137. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_inv.hpp +138 -0
  1138. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_inv_sympd.hpp +138 -0
  1139. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_join.hpp +502 -0
  1140. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_kmeans.hpp +59 -0
  1141. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_kron.hpp +104 -0
  1142. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_log_det.hpp +157 -0
  1143. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_log_normpdf.hpp +205 -0
  1144. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_logmat.hpp +127 -0
  1145. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_lu.hpp +88 -0
  1146. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_max.hpp +277 -0
  1147. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_mean.hpp +145 -0
  1148. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_median.hpp +73 -0
  1149. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_min.hpp +277 -0
  1150. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_misc.hpp +597 -0
  1151. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_mvnrnd.hpp +110 -0
  1152. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_n_unique.hpp +132 -0
  1153. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_nonzeros.hpp +49 -0
  1154. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_norm.hpp +342 -0
  1155. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_normalise.hpp +116 -0
  1156. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_normcdf.hpp +201 -0
  1157. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_normpdf.hpp +205 -0
  1158. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_numel.hpp +95 -0
  1159. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_omit.hpp +104 -0
  1160. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_ones.hpp +161 -0
  1161. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_orth_null.hpp +98 -0
  1162. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_pinv.hpp +110 -0
  1163. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_polyfit.hpp +67 -0
  1164. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_polyval.hpp +42 -0
  1165. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_powext.hpp +179 -0
  1166. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_powmat.hpp +108 -0
  1167. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_princomp.hpp +180 -0
  1168. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_prod.hpp +81 -0
  1169. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_qr.hpp +145 -0
  1170. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_quantile.hpp +58 -0
  1171. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_qz.hpp +66 -0
  1172. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_randg.hpp +241 -0
  1173. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_randi.hpp +270 -0
  1174. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_randn.hpp +357 -0
  1175. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_randperm.hpp +162 -0
  1176. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_randu.hpp +357 -0
  1177. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_range.hpp +62 -0
  1178. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_rank.hpp +57 -0
  1179. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_regspace.hpp +265 -0
  1180. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_repelem.hpp +55 -0
  1181. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_repmat.hpp +55 -0
  1182. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_reshape.hpp +187 -0
  1183. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_resize.hpp +154 -0
  1184. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_reverse.hpp +100 -0
  1185. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_roots.hpp +67 -0
  1186. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_schur.hpp +114 -0
  1187. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_shift.hpp +156 -0
  1188. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_shuffle.hpp +88 -0
  1189. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_size.hpp +327 -0
  1190. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_solve.hpp +224 -0
  1191. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_sort.hpp +151 -0
  1192. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_sort_index.hpp +114 -0
  1193. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_speye.hpp +93 -0
  1194. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_spones.hpp +47 -0
  1195. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_sprandn.hpp +127 -0
  1196. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_sprandu.hpp +127 -0
  1197. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_spsolve.hpp +192 -0
  1198. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_sqrtmat.hpp +125 -0
  1199. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_stddev.hpp +143 -0
  1200. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_strans.hpp +110 -0
  1201. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_sum.hpp +147 -0
  1202. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_svd.hpp +206 -0
  1203. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_svds.hpp +352 -0
  1204. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_sylvester.hpp +142 -0
  1205. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_symmat.hpp +135 -0
  1206. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_toeplitz.hpp +63 -0
  1207. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_trace.hpp +663 -0
  1208. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_trans.hpp +99 -0
  1209. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_trapz.hpp +59 -0
  1210. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_trig.hpp +493 -0
  1211. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_trimat.hpp +143 -0
  1212. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_trimat_ind.hpp +139 -0
  1213. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_trunc_exp.hpp +93 -0
  1214. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_trunc_log.hpp +100 -0
  1215. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_unique.hpp +57 -0
  1216. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_var.hpp +143 -0
  1217. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_vecnorm.hpp +385 -0
  1218. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_vectorise.hpp +114 -0
  1219. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_wishrnd.hpp +204 -0
  1220. sparsevb-0.1.1/include/legacy/armadillo_bits/fn_zeros.hpp +192 -0
  1221. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_affmul_bones.hpp +55 -0
  1222. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_affmul_meat.hpp +490 -0
  1223. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_atan2_bones.hpp +47 -0
  1224. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_atan2_meat.hpp +228 -0
  1225. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_conv_bones.hpp +57 -0
  1226. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_conv_meat.hpp +385 -0
  1227. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_cor_bones.hpp +43 -0
  1228. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_cor_meat.hpp +71 -0
  1229. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_cov_bones.hpp +43 -0
  1230. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_cov_meat.hpp +69 -0
  1231. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_cross_bones.hpp +42 -0
  1232. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_cross_meat.hpp +81 -0
  1233. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_hist_bones.hpp +54 -0
  1234. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_hist_meat.hpp +253 -0
  1235. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_histc_bones.hpp +54 -0
  1236. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_histc_meat.hpp +167 -0
  1237. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_hypot_bones.hpp +47 -0
  1238. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_hypot_meat.hpp +172 -0
  1239. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_intersect_bones.hpp +46 -0
  1240. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_intersect_meat.hpp +148 -0
  1241. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_join_bones.hpp +90 -0
  1242. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_join_meat.hpp +379 -0
  1243. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_kron_bones.hpp +46 -0
  1244. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_kron_meat.hpp +147 -0
  1245. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_max_bones.hpp +47 -0
  1246. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_max_meat.hpp +183 -0
  1247. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_min_bones.hpp +47 -0
  1248. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_min_meat.hpp +183 -0
  1249. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_mixed_bones.hpp +98 -0
  1250. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_mixed_meat.hpp +560 -0
  1251. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_mvnrnd_bones.hpp +58 -0
  1252. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_mvnrnd_meat.hpp +175 -0
  1253. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_polyfit_bones.hpp +47 -0
  1254. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_polyfit_meat.hpp +133 -0
  1255. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_polyval_bones.hpp +45 -0
  1256. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_polyval_meat.hpp +83 -0
  1257. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_powext_bones.hpp +70 -0
  1258. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_powext_meat.hpp +674 -0
  1259. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_quantile_bones.hpp +58 -0
  1260. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_quantile_meat.hpp +230 -0
  1261. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_relational_bones.hpp +136 -0
  1262. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_relational_meat.hpp +419 -0
  1263. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_solve_bones.hpp +178 -0
  1264. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_solve_meat.hpp +617 -0
  1265. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_times_bones.hpp +168 -0
  1266. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_times_meat.hpp +1015 -0
  1267. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_times_misc_bones.hpp +88 -0
  1268. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_times_misc_meat.hpp +646 -0
  1269. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_toeplitz_bones.hpp +35 -0
  1270. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_toeplitz_meat.hpp +73 -0
  1271. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_trapz_bones.hpp +56 -0
  1272. sparsevb-0.1.1/include/legacy/armadillo_bits/glue_trapz_meat.hpp +168 -0
  1273. sparsevb-0.1.1/include/legacy/armadillo_bits/gmm_diag_bones.hpp +179 -0
  1274. sparsevb-0.1.1/include/legacy/armadillo_bits/gmm_diag_meat.hpp +2655 -0
  1275. sparsevb-0.1.1/include/legacy/armadillo_bits/gmm_full_bones.hpp +167 -0
  1276. sparsevb-0.1.1/include/legacy/armadillo_bits/gmm_full_meat.hpp +2739 -0
  1277. sparsevb-0.1.1/include/legacy/armadillo_bits/gmm_misc_bones.hpp +119 -0
  1278. sparsevb-0.1.1/include/legacy/armadillo_bits/gmm_misc_meat.hpp +193 -0
  1279. sparsevb-0.1.1/include/legacy/armadillo_bits/hdf5_misc.hpp +772 -0
  1280. sparsevb-0.1.1/include/legacy/armadillo_bits/hdf5_name.hpp +93 -0
  1281. sparsevb-0.1.1/include/legacy/armadillo_bits/include_hdf5.hpp +45 -0
  1282. sparsevb-0.1.1/include/legacy/armadillo_bits/include_superlu.hpp +400 -0
  1283. sparsevb-0.1.1/include/legacy/armadillo_bits/injector_bones.hpp +84 -0
  1284. sparsevb-0.1.1/include/legacy/armadillo_bits/injector_meat.hpp +379 -0
  1285. sparsevb-0.1.1/include/legacy/armadillo_bits/memory.hpp +210 -0
  1286. sparsevb-0.1.1/include/legacy/armadillo_bits/mp_misc.hpp +91 -0
  1287. sparsevb-0.1.1/include/legacy/armadillo_bits/mtGlueCube_bones.hpp +43 -0
  1288. sparsevb-0.1.1/include/legacy/armadillo_bits/mtGlueCube_meat.hpp +56 -0
  1289. sparsevb-0.1.1/include/legacy/armadillo_bits/mtGlue_bones.hpp +50 -0
  1290. sparsevb-0.1.1/include/legacy/armadillo_bits/mtGlue_meat.hpp +69 -0
  1291. sparsevb-0.1.1/include/legacy/armadillo_bits/mtOpCube_bones.hpp +58 -0
  1292. sparsevb-0.1.1/include/legacy/armadillo_bits/mtOpCube_meat.hpp +105 -0
  1293. sparsevb-0.1.1/include/legacy/armadillo_bits/mtOp_bones.hpp +63 -0
  1294. sparsevb-0.1.1/include/legacy/armadillo_bits/mtOp_meat.hpp +117 -0
  1295. sparsevb-0.1.1/include/legacy/armadillo_bits/mtSpGlue_bones.hpp +48 -0
  1296. sparsevb-0.1.1/include/legacy/armadillo_bits/mtSpGlue_meat.hpp +55 -0
  1297. sparsevb-0.1.1/include/legacy/armadillo_bits/mtSpOp_bones.hpp +60 -0
  1298. sparsevb-0.1.1/include/legacy/armadillo_bits/mtSpOp_meat.hpp +102 -0
  1299. sparsevb-0.1.1/include/legacy/armadillo_bits/mtSpReduceOp_bones.hpp +62 -0
  1300. sparsevb-0.1.1/include/legacy/armadillo_bits/mtSpReduceOp_meat.hpp +55 -0
  1301. sparsevb-0.1.1/include/legacy/armadillo_bits/mul_gemm.hpp +435 -0
  1302. sparsevb-0.1.1/include/legacy/armadillo_bits/mul_gemm_mixed.hpp +291 -0
  1303. sparsevb-0.1.1/include/legacy/armadillo_bits/mul_gemv.hpp +495 -0
  1304. sparsevb-0.1.1/include/legacy/armadillo_bits/mul_herk.hpp +492 -0
  1305. sparsevb-0.1.1/include/legacy/armadillo_bits/mul_syrk.hpp +501 -0
  1306. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_DenseGenMatProd_bones.hpp +43 -0
  1307. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_DenseGenMatProd_meat.hpp +51 -0
  1308. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_DoubleShiftQR_bones.hpp +76 -0
  1309. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_DoubleShiftQR_meat.hpp +399 -0
  1310. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_EigsSelect.hpp +52 -0
  1311. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_GenEigsSolver_bones.hpp +109 -0
  1312. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_GenEigsSolver_meat.hpp +492 -0
  1313. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_SortEigenvalue.hpp +203 -0
  1314. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_SparseGenMatProd_bones.hpp +44 -0
  1315. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_SparseGenMatProd_meat.hpp +63 -0
  1316. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_SparseGenRealShiftSolve_bones.hpp +51 -0
  1317. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_SparseGenRealShiftSolve_meat.hpp +138 -0
  1318. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_SymEigsShiftSolver_bones.hpp +43 -0
  1319. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_SymEigsShiftSolver_meat.hpp +50 -0
  1320. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_SymEigsSolver_bones.hpp +107 -0
  1321. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_SymEigsSolver_meat.hpp +508 -0
  1322. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_TridiagEigen_bones.hpp +58 -0
  1323. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_TridiagEigen_meat.hpp +132 -0
  1324. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_UpperHessenbergEigen_bones.hpp +59 -0
  1325. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_UpperHessenbergEigen_meat.hpp +168 -0
  1326. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_UpperHessenbergQR_bones.hpp +86 -0
  1327. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_UpperHessenbergQR_meat.hpp +310 -0
  1328. sparsevb-0.1.1/include/legacy/armadillo_bits/newarp_cx_attrib.hpp +37 -0
  1329. sparsevb-0.1.1/include/legacy/armadillo_bits/op_all_bones.hpp +83 -0
  1330. sparsevb-0.1.1/include/legacy/armadillo_bits/op_all_meat.hpp +445 -0
  1331. sparsevb-0.1.1/include/legacy/armadillo_bits/op_any_bones.hpp +83 -0
  1332. sparsevb-0.1.1/include/legacy/armadillo_bits/op_any_meat.hpp +409 -0
  1333. sparsevb-0.1.1/include/legacy/armadillo_bits/op_chi2rnd_bones.hpp +54 -0
  1334. sparsevb-0.1.1/include/legacy/armadillo_bits/op_chi2rnd_meat.hpp +176 -0
  1335. sparsevb-0.1.1/include/legacy/armadillo_bits/op_chol_bones.hpp +38 -0
  1336. sparsevb-0.1.1/include/legacy/armadillo_bits/op_chol_meat.hpp +74 -0
  1337. sparsevb-0.1.1/include/legacy/armadillo_bits/op_clamp_bones.hpp +74 -0
  1338. sparsevb-0.1.1/include/legacy/armadillo_bits/op_clamp_meat.hpp +577 -0
  1339. sparsevb-0.1.1/include/legacy/armadillo_bits/op_col_as_mat_bones.hpp +33 -0
  1340. sparsevb-0.1.1/include/legacy/armadillo_bits/op_col_as_mat_meat.hpp +53 -0
  1341. sparsevb-0.1.1/include/legacy/armadillo_bits/op_cond_bones.hpp +36 -0
  1342. sparsevb-0.1.1/include/legacy/armadillo_bits/op_cond_meat.hpp +167 -0
  1343. sparsevb-0.1.1/include/legacy/armadillo_bits/op_cor_bones.hpp +36 -0
  1344. sparsevb-0.1.1/include/legacy/armadillo_bits/op_cor_meat.hpp +126 -0
  1345. sparsevb-0.1.1/include/legacy/armadillo_bits/op_cov_bones.hpp +36 -0
  1346. sparsevb-0.1.1/include/legacy/armadillo_bits/op_cov_meat.hpp +104 -0
  1347. sparsevb-0.1.1/include/legacy/armadillo_bits/op_cumprod_bones.hpp +49 -0
  1348. sparsevb-0.1.1/include/legacy/armadillo_bits/op_cumprod_meat.hpp +174 -0
  1349. sparsevb-0.1.1/include/legacy/armadillo_bits/op_cumsum_bones.hpp +49 -0
  1350. sparsevb-0.1.1/include/legacy/armadillo_bits/op_cumsum_meat.hpp +174 -0
  1351. sparsevb-0.1.1/include/legacy/armadillo_bits/op_cx_scalar_bones.hpp +168 -0
  1352. sparsevb-0.1.1/include/legacy/armadillo_bits/op_cx_scalar_meat.hpp +564 -0
  1353. sparsevb-0.1.1/include/legacy/armadillo_bits/op_det_bones.hpp +54 -0
  1354. sparsevb-0.1.1/include/legacy/armadillo_bits/op_det_meat.hpp +178 -0
  1355. sparsevb-0.1.1/include/legacy/armadillo_bits/op_diagmat_bones.hpp +61 -0
  1356. sparsevb-0.1.1/include/legacy/armadillo_bits/op_diagmat_meat.hpp +767 -0
  1357. sparsevb-0.1.1/include/legacy/armadillo_bits/op_diagvec_bones.hpp +58 -0
  1358. sparsevb-0.1.1/include/legacy/armadillo_bits/op_diagvec_meat.hpp +536 -0
  1359. sparsevb-0.1.1/include/legacy/armadillo_bits/op_diff_bones.hpp +49 -0
  1360. sparsevb-0.1.1/include/legacy/armadillo_bits/op_diff_meat.hpp +224 -0
  1361. sparsevb-0.1.1/include/legacy/armadillo_bits/op_dot_bones.hpp +121 -0
  1362. sparsevb-0.1.1/include/legacy/armadillo_bits/op_dot_meat.hpp +615 -0
  1363. sparsevb-0.1.1/include/legacy/armadillo_bits/op_dotext_bones.hpp +50 -0
  1364. sparsevb-0.1.1/include/legacy/armadillo_bits/op_dotext_meat.hpp +214 -0
  1365. sparsevb-0.1.1/include/legacy/armadillo_bits/op_expmat_bones.hpp +53 -0
  1366. sparsevb-0.1.1/include/legacy/armadillo_bits/op_expmat_meat.hpp +261 -0
  1367. sparsevb-0.1.1/include/legacy/armadillo_bits/op_fft_bones.hpp +61 -0
  1368. sparsevb-0.1.1/include/legacy/armadillo_bits/op_fft_meat.hpp +325 -0
  1369. sparsevb-0.1.1/include/legacy/armadillo_bits/op_find_bones.hpp +141 -0
  1370. sparsevb-0.1.1/include/legacy/armadillo_bits/op_find_meat.hpp +708 -0
  1371. sparsevb-0.1.1/include/legacy/armadillo_bits/op_find_unique_bones.hpp +76 -0
  1372. sparsevb-0.1.1/include/legacy/armadillo_bits/op_find_unique_meat.hpp +130 -0
  1373. sparsevb-0.1.1/include/legacy/armadillo_bits/op_flip_bones.hpp +59 -0
  1374. sparsevb-0.1.1/include/legacy/armadillo_bits/op_flip_meat.hpp +341 -0
  1375. sparsevb-0.1.1/include/legacy/armadillo_bits/op_hist_bones.hpp +39 -0
  1376. sparsevb-0.1.1/include/legacy/armadillo_bits/op_hist_meat.hpp +125 -0
  1377. sparsevb-0.1.1/include/legacy/armadillo_bits/op_htrans_bones.hpp +107 -0
  1378. sparsevb-0.1.1/include/legacy/armadillo_bits/op_htrans_meat.hpp +415 -0
  1379. sparsevb-0.1.1/include/legacy/armadillo_bits/op_index_max_bones.hpp +57 -0
  1380. sparsevb-0.1.1/include/legacy/armadillo_bits/op_index_max_meat.hpp +433 -0
  1381. sparsevb-0.1.1/include/legacy/armadillo_bits/op_index_min_bones.hpp +57 -0
  1382. sparsevb-0.1.1/include/legacy/armadillo_bits/op_index_min_meat.hpp +433 -0
  1383. sparsevb-0.1.1/include/legacy/armadillo_bits/op_inv_gen_bones.hpp +143 -0
  1384. sparsevb-0.1.1/include/legacy/armadillo_bits/op_inv_gen_meat.hpp +404 -0
  1385. sparsevb-0.1.1/include/legacy/armadillo_bits/op_inv_spd_bones.hpp +76 -0
  1386. sparsevb-0.1.1/include/legacy/armadillo_bits/op_inv_spd_meat.hpp +363 -0
  1387. sparsevb-0.1.1/include/legacy/armadillo_bits/op_log_det_bones.hpp +52 -0
  1388. sparsevb-0.1.1/include/legacy/armadillo_bits/op_log_det_meat.hpp +239 -0
  1389. sparsevb-0.1.1/include/legacy/armadillo_bits/op_logmat_bones.hpp +82 -0
  1390. sparsevb-0.1.1/include/legacy/armadillo_bits/op_logmat_meat.hpp +572 -0
  1391. sparsevb-0.1.1/include/legacy/armadillo_bits/op_max_bones.hpp +112 -0
  1392. sparsevb-0.1.1/include/legacy/armadillo_bits/op_max_meat.hpp +1320 -0
  1393. sparsevb-0.1.1/include/legacy/armadillo_bits/op_mean_bones.hpp +76 -0
  1394. sparsevb-0.1.1/include/legacy/armadillo_bits/op_mean_meat.hpp +440 -0
  1395. sparsevb-0.1.1/include/legacy/armadillo_bits/op_median_bones.hpp +77 -0
  1396. sparsevb-0.1.1/include/legacy/armadillo_bits/op_median_meat.hpp +338 -0
  1397. sparsevb-0.1.1/include/legacy/armadillo_bits/op_min_bones.hpp +112 -0
  1398. sparsevb-0.1.1/include/legacy/armadillo_bits/op_min_meat.hpp +1320 -0
  1399. sparsevb-0.1.1/include/legacy/armadillo_bits/op_misc_bones.hpp +92 -0
  1400. sparsevb-0.1.1/include/legacy/armadillo_bits/op_misc_meat.hpp +448 -0
  1401. sparsevb-0.1.1/include/legacy/armadillo_bits/op_nonzeros_bones.hpp +41 -0
  1402. sparsevb-0.1.1/include/legacy/armadillo_bits/op_nonzeros_meat.hpp +103 -0
  1403. sparsevb-0.1.1/include/legacy/armadillo_bits/op_norm2est_bones.hpp +60 -0
  1404. sparsevb-0.1.1/include/legacy/armadillo_bits/op_norm2est_meat.hpp +248 -0
  1405. sparsevb-0.1.1/include/legacy/armadillo_bits/op_norm_bones.hpp +52 -0
  1406. sparsevb-0.1.1/include/legacy/armadillo_bits/op_norm_meat.hpp +918 -0
  1407. sparsevb-0.1.1/include/legacy/armadillo_bits/op_normalise_bones.hpp +47 -0
  1408. sparsevb-0.1.1/include/legacy/armadillo_bits/op_normalise_meat.hpp +148 -0
  1409. sparsevb-0.1.1/include/legacy/armadillo_bits/op_omit_bones.hpp +50 -0
  1410. sparsevb-0.1.1/include/legacy/armadillo_bits/op_omit_meat.hpp +230 -0
  1411. sparsevb-0.1.1/include/legacy/armadillo_bits/op_orth_null_bones.hpp +53 -0
  1412. sparsevb-0.1.1/include/legacy/armadillo_bits/op_orth_null_meat.hpp +181 -0
  1413. sparsevb-0.1.1/include/legacy/armadillo_bits/op_pinv_bones.hpp +55 -0
  1414. sparsevb-0.1.1/include/legacy/armadillo_bits/op_pinv_meat.hpp +310 -0
  1415. sparsevb-0.1.1/include/legacy/armadillo_bits/op_powmat_bones.hpp +56 -0
  1416. sparsevb-0.1.1/include/legacy/armadillo_bits/op_powmat_meat.hpp +284 -0
  1417. sparsevb-0.1.1/include/legacy/armadillo_bits/op_princomp_bones.hpp +75 -0
  1418. sparsevb-0.1.1/include/legacy/armadillo_bits/op_princomp_meat.hpp +319 -0
  1419. sparsevb-0.1.1/include/legacy/armadillo_bits/op_prod_bones.hpp +42 -0
  1420. sparsevb-0.1.1/include/legacy/armadillo_bits/op_prod_meat.hpp +217 -0
  1421. sparsevb-0.1.1/include/legacy/armadillo_bits/op_range_bones.hpp +40 -0
  1422. sparsevb-0.1.1/include/legacy/armadillo_bits/op_range_meat.hpp +96 -0
  1423. sparsevb-0.1.1/include/legacy/armadillo_bits/op_rank_bones.hpp +41 -0
  1424. sparsevb-0.1.1/include/legacy/armadillo_bits/op_rank_meat.hpp +183 -0
  1425. sparsevb-0.1.1/include/legacy/armadillo_bits/op_rcond_bones.hpp +32 -0
  1426. sparsevb-0.1.1/include/legacy/armadillo_bits/op_rcond_meat.hpp +104 -0
  1427. sparsevb-0.1.1/include/legacy/armadillo_bits/op_relational_bones.hpp +164 -0
  1428. sparsevb-0.1.1/include/legacy/armadillo_bits/op_relational_meat.hpp +510 -0
  1429. sparsevb-0.1.1/include/legacy/armadillo_bits/op_repelem_bones.hpp +37 -0
  1430. sparsevb-0.1.1/include/legacy/armadillo_bits/op_repelem_meat.hpp +103 -0
  1431. sparsevb-0.1.1/include/legacy/armadillo_bits/op_repmat_bones.hpp +37 -0
  1432. sparsevb-0.1.1/include/legacy/armadillo_bits/op_repmat_meat.hpp +124 -0
  1433. sparsevb-0.1.1/include/legacy/armadillo_bits/op_reshape_bones.hpp +49 -0
  1434. sparsevb-0.1.1/include/legacy/armadillo_bits/op_reshape_meat.hpp +276 -0
  1435. sparsevb-0.1.1/include/legacy/armadillo_bits/op_resize_bones.hpp +47 -0
  1436. sparsevb-0.1.1/include/legacy/armadillo_bits/op_resize_meat.hpp +192 -0
  1437. sparsevb-0.1.1/include/legacy/armadillo_bits/op_reverse_bones.hpp +46 -0
  1438. sparsevb-0.1.1/include/legacy/armadillo_bits/op_reverse_meat.hpp +128 -0
  1439. sparsevb-0.1.1/include/legacy/armadillo_bits/op_roots_bones.hpp +41 -0
  1440. sparsevb-0.1.1/include/legacy/armadillo_bits/op_roots_meat.hpp +140 -0
  1441. sparsevb-0.1.1/include/legacy/armadillo_bits/op_row_as_mat_bones.hpp +33 -0
  1442. sparsevb-0.1.1/include/legacy/armadillo_bits/op_row_as_mat_meat.hpp +63 -0
  1443. sparsevb-0.1.1/include/legacy/armadillo_bits/op_shift_bones.hpp +45 -0
  1444. sparsevb-0.1.1/include/legacy/armadillo_bits/op_shift_meat.hpp +183 -0
  1445. sparsevb-0.1.1/include/legacy/armadillo_bits/op_shuffle_bones.hpp +47 -0
  1446. sparsevb-0.1.1/include/legacy/armadillo_bits/op_shuffle_meat.hpp +243 -0
  1447. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sort_bones.hpp +55 -0
  1448. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sort_index_bones.hpp +123 -0
  1449. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sort_index_meat.hpp +142 -0
  1450. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sort_meat.hpp +314 -0
  1451. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_as_dense_bones.hpp +33 -0
  1452. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_as_dense_meat.hpp +36 -0
  1453. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_diagvec_bones.hpp +35 -0
  1454. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_diagvec_meat.hpp +62 -0
  1455. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_max_bones.hpp +60 -0
  1456. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_max_meat.hpp +683 -0
  1457. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_mean_bones.hpp +62 -0
  1458. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_mean_meat.hpp +371 -0
  1459. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_min_bones.hpp +60 -0
  1460. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_min_meat.hpp +719 -0
  1461. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_minus_bones.hpp +64 -0
  1462. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_minus_meat.hpp +183 -0
  1463. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_nonzeros_bones.hpp +36 -0
  1464. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_nonzeros_meat.hpp +82 -0
  1465. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_plus_bones.hpp +44 -0
  1466. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_plus_meat.hpp +102 -0
  1467. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_stddev_bones.hpp +41 -0
  1468. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_stddev_meat.hpp +162 -0
  1469. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_sum_bones.hpp +36 -0
  1470. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_sum_meat.hpp +148 -0
  1471. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_var_bones.hpp +62 -0
  1472. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_var_meat.hpp +414 -0
  1473. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_vecnorm_bones.hpp +52 -0
  1474. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sp_vecnorm_meat.hpp +201 -0
  1475. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sqrtmat_bones.hpp +78 -0
  1476. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sqrtmat_meat.hpp +549 -0
  1477. sparsevb-0.1.1/include/legacy/armadillo_bits/op_stddev_bones.hpp +41 -0
  1478. sparsevb-0.1.1/include/legacy/armadillo_bits/op_stddev_meat.hpp +135 -0
  1479. sparsevb-0.1.1/include/legacy/armadillo_bits/op_strans_bones.hpp +85 -0
  1480. sparsevb-0.1.1/include/legacy/armadillo_bits/op_strans_meat.hpp +471 -0
  1481. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sum_bones.hpp +65 -0
  1482. sparsevb-0.1.1/include/legacy/armadillo_bits/op_sum_meat.hpp +550 -0
  1483. sparsevb-0.1.1/include/legacy/armadillo_bits/op_symmat_bones.hpp +68 -0
  1484. sparsevb-0.1.1/include/legacy/armadillo_bits/op_symmat_meat.hpp +278 -0
  1485. sparsevb-0.1.1/include/legacy/armadillo_bits/op_toeplitz_bones.hpp +46 -0
  1486. sparsevb-0.1.1/include/legacy/armadillo_bits/op_toeplitz_meat.hpp +110 -0
  1487. sparsevb-0.1.1/include/legacy/armadillo_bits/op_trimat_bones.hpp +76 -0
  1488. sparsevb-0.1.1/include/legacy/armadillo_bits/op_trimat_meat.hpp +383 -0
  1489. sparsevb-0.1.1/include/legacy/armadillo_bits/op_unique_bones.hpp +79 -0
  1490. sparsevb-0.1.1/include/legacy/armadillo_bits/op_unique_meat.hpp +174 -0
  1491. sparsevb-0.1.1/include/legacy/armadillo_bits/op_var_bones.hpp +61 -0
  1492. sparsevb-0.1.1/include/legacy/armadillo_bits/op_var_meat.hpp +297 -0
  1493. sparsevb-0.1.1/include/legacy/armadillo_bits/op_vecnorm_bones.hpp +55 -0
  1494. sparsevb-0.1.1/include/legacy/armadillo_bits/op_vecnorm_meat.hpp +254 -0
  1495. sparsevb-0.1.1/include/legacy/armadillo_bits/op_vectorise_bones.hpp +81 -0
  1496. sparsevb-0.1.1/include/legacy/armadillo_bits/op_vectorise_meat.hpp +452 -0
  1497. sparsevb-0.1.1/include/legacy/armadillo_bits/op_wishrnd_bones.hpp +63 -0
  1498. sparsevb-0.1.1/include/legacy/armadillo_bits/op_wishrnd_meat.hpp +281 -0
  1499. sparsevb-0.1.1/include/legacy/armadillo_bits/operator_cube_div.hpp +197 -0
  1500. sparsevb-0.1.1/include/legacy/armadillo_bits/operator_cube_minus.hpp +213 -0
  1501. sparsevb-0.1.1/include/legacy/armadillo_bits/operator_cube_plus.hpp +213 -0
  1502. sparsevb-0.1.1/include/legacy/armadillo_bits/operator_cube_relational.hpp +301 -0
  1503. sparsevb-0.1.1/include/legacy/armadillo_bits/operator_cube_schur.hpp +131 -0
  1504. sparsevb-0.1.1/include/legacy/armadillo_bits/operator_cube_times.hpp +124 -0
  1505. sparsevb-0.1.1/include/legacy/armadillo_bits/operator_div.hpp +382 -0
  1506. sparsevb-0.1.1/include/legacy/armadillo_bits/operator_minus.hpp +505 -0
  1507. sparsevb-0.1.1/include/legacy/armadillo_bits/operator_ostream.hpp +186 -0
  1508. sparsevb-0.1.1/include/legacy/armadillo_bits/operator_plus.hpp +437 -0
  1509. sparsevb-0.1.1/include/legacy/armadillo_bits/operator_relational.hpp +705 -0
  1510. sparsevb-0.1.1/include/legacy/armadillo_bits/operator_schur.hpp +366 -0
  1511. sparsevb-0.1.1/include/legacy/armadillo_bits/operator_times.hpp +482 -0
  1512. sparsevb-0.1.1/include/legacy/armadillo_bits/podarray_bones.hpp +90 -0
  1513. sparsevb-0.1.1/include/legacy/armadillo_bits/podarray_meat.hpp +309 -0
  1514. sparsevb-0.1.1/include/legacy/armadillo_bits/promote_type.hpp +216 -0
  1515. sparsevb-0.1.1/include/legacy/armadillo_bits/restrictors.hpp +229 -0
  1516. sparsevb-0.1.1/include/legacy/armadillo_bits/running_stat_bones.hpp +121 -0
  1517. sparsevb-0.1.1/include/legacy/armadillo_bits/running_stat_meat.hpp +463 -0
  1518. sparsevb-0.1.1/include/legacy/armadillo_bits/running_stat_vec_bones.hpp +157 -0
  1519. sparsevb-0.1.1/include/legacy/armadillo_bits/running_stat_vec_meat.hpp +636 -0
  1520. sparsevb-0.1.1/include/legacy/armadillo_bits/sp_auxlib_bones.hpp +283 -0
  1521. sparsevb-0.1.1/include/legacy/armadillo_bits/sp_auxlib_meat.hpp +2782 -0
  1522. sparsevb-0.1.1/include/legacy/armadillo_bits/span.hpp +90 -0
  1523. sparsevb-0.1.1/include/legacy/armadillo_bits/spdiagview_bones.hpp +113 -0
  1524. sparsevb-0.1.1/include/legacy/armadillo_bits/spdiagview_meat.hpp +1079 -0
  1525. sparsevb-0.1.1/include/legacy/armadillo_bits/spglue_join_bones.hpp +78 -0
  1526. sparsevb-0.1.1/include/legacy/armadillo_bits/spglue_join_meat.hpp +350 -0
  1527. sparsevb-0.1.1/include/legacy/armadillo_bits/spglue_kron_bones.hpp +45 -0
  1528. sparsevb-0.1.1/include/legacy/armadillo_bits/spglue_kron_meat.hpp +159 -0
  1529. sparsevb-0.1.1/include/legacy/armadillo_bits/spglue_max_bones.hpp +56 -0
  1530. sparsevb-0.1.1/include/legacy/armadillo_bits/spglue_max_meat.hpp +222 -0
  1531. sparsevb-0.1.1/include/legacy/armadillo_bits/spglue_merge_bones.hpp +43 -0
  1532. sparsevb-0.1.1/include/legacy/armadillo_bits/spglue_merge_meat.hpp +554 -0
  1533. sparsevb-0.1.1/include/legacy/armadillo_bits/spglue_min_bones.hpp +56 -0
  1534. sparsevb-0.1.1/include/legacy/armadillo_bits/spglue_min_meat.hpp +222 -0
  1535. sparsevb-0.1.1/include/legacy/armadillo_bits/spglue_minus_bones.hpp +59 -0
  1536. sparsevb-0.1.1/include/legacy/armadillo_bits/spglue_minus_meat.hpp +340 -0
  1537. sparsevb-0.1.1/include/legacy/armadillo_bits/spglue_plus_bones.hpp +55 -0
  1538. sparsevb-0.1.1/include/legacy/armadillo_bits/spglue_plus_meat.hpp +295 -0
  1539. sparsevb-0.1.1/include/legacy/armadillo_bits/spglue_relational_bones.hpp +80 -0
  1540. sparsevb-0.1.1/include/legacy/armadillo_bits/spglue_relational_meat.hpp +545 -0
  1541. sparsevb-0.1.1/include/legacy/armadillo_bits/spglue_schur_bones.hpp +66 -0
  1542. sparsevb-0.1.1/include/legacy/armadillo_bits/spglue_schur_meat.hpp +395 -0
  1543. sparsevb-0.1.1/include/legacy/armadillo_bits/spglue_times_bones.hpp +66 -0
  1544. sparsevb-0.1.1/include/legacy/armadillo_bits/spglue_times_meat.hpp +369 -0
  1545. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_diagmat_bones.hpp +64 -0
  1546. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_diagmat_meat.hpp +456 -0
  1547. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_htrans_bones.hpp +46 -0
  1548. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_htrans_meat.hpp +61 -0
  1549. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_misc_bones.hpp +276 -0
  1550. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_misc_meat.hpp +567 -0
  1551. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_norm_bones.hpp +39 -0
  1552. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_norm_meat.hpp +135 -0
  1553. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_normalise_bones.hpp +37 -0
  1554. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_normalise_meat.hpp +133 -0
  1555. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_omit_bones.hpp +35 -0
  1556. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_omit_meat.hpp +119 -0
  1557. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_relational_bones.hpp +134 -0
  1558. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_relational_meat.hpp +521 -0
  1559. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_repmat_bones.hpp +41 -0
  1560. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_repmat_meat.hpp +166 -0
  1561. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_reverse_bones.hpp +40 -0
  1562. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_reverse_meat.hpp +185 -0
  1563. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_shift_bones.hpp +35 -0
  1564. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_shift_meat.hpp +93 -0
  1565. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_strans_bones.hpp +49 -0
  1566. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_strans_meat.hpp +152 -0
  1567. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_symmat_bones.hpp +46 -0
  1568. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_symmat_meat.hpp +87 -0
  1569. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_trimat_bones.hpp +66 -0
  1570. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_trimat_meat.hpp +366 -0
  1571. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_vectorise_bones.hpp +58 -0
  1572. sparsevb-0.1.1/include/legacy/armadillo_bits/spop_vectorise_meat.hpp +126 -0
  1573. sparsevb-0.1.1/include/legacy/armadillo_bits/spsolve_factoriser_bones.hpp +57 -0
  1574. sparsevb-0.1.1/include/legacy/armadillo_bits/spsolve_factoriser_meat.hpp +289 -0
  1575. sparsevb-0.1.1/include/legacy/armadillo_bits/strip.hpp +231 -0
  1576. sparsevb-0.1.1/include/legacy/armadillo_bits/subview_bones.hpp +676 -0
  1577. sparsevb-0.1.1/include/legacy/armadillo_bits/subview_cube_bones.hpp +248 -0
  1578. sparsevb-0.1.1/include/legacy/armadillo_bits/subview_cube_each_bones.hpp +162 -0
  1579. sparsevb-0.1.1/include/legacy/armadillo_bits/subview_cube_each_meat.hpp +1035 -0
  1580. sparsevb-0.1.1/include/legacy/armadillo_bits/subview_cube_meat.hpp +2722 -0
  1581. sparsevb-0.1.1/include/legacy/armadillo_bits/subview_cube_slices_bones.hpp +92 -0
  1582. sparsevb-0.1.1/include/legacy/armadillo_bits/subview_cube_slices_meat.hpp +555 -0
  1583. sparsevb-0.1.1/include/legacy/armadillo_bits/subview_each_bones.hpp +167 -0
  1584. sparsevb-0.1.1/include/legacy/armadillo_bits/subview_each_meat.hpp +1404 -0
  1585. sparsevb-0.1.1/include/legacy/armadillo_bits/subview_elem1_bones.hpp +112 -0
  1586. sparsevb-0.1.1/include/legacy/armadillo_bits/subview_elem1_meat.hpp +945 -0
  1587. sparsevb-0.1.1/include/legacy/armadillo_bits/subview_elem2_bones.hpp +117 -0
  1588. sparsevb-0.1.1/include/legacy/armadillo_bits/subview_elem2_meat.hpp +1120 -0
  1589. sparsevb-0.1.1/include/legacy/armadillo_bits/subview_field_bones.hpp +95 -0
  1590. sparsevb-0.1.1/include/legacy/armadillo_bits/subview_field_meat.hpp +557 -0
  1591. sparsevb-0.1.1/include/legacy/armadillo_bits/subview_meat.hpp +4998 -0
  1592. sparsevb-0.1.1/include/legacy/armadillo_bits/sym_helper.hpp +486 -0
  1593. sparsevb-0.1.1/include/legacy/armadillo_bits/traits.hpp +1371 -0
  1594. sparsevb-0.1.1/include/legacy/armadillo_bits/translate_arpack.hpp +114 -0
  1595. sparsevb-0.1.1/include/legacy/armadillo_bits/translate_atlas.hpp +282 -0
  1596. sparsevb-0.1.1/include/legacy/armadillo_bits/translate_blas.hpp +271 -0
  1597. sparsevb-0.1.1/include/legacy/armadillo_bits/translate_fftw3.hpp +106 -0
  1598. sparsevb-0.1.1/include/legacy/armadillo_bits/translate_lapack.hpp +1513 -0
  1599. sparsevb-0.1.1/include/legacy/armadillo_bits/translate_superlu.hpp +348 -0
  1600. sparsevb-0.1.1/include/legacy/armadillo_bits/trimat_helper.hpp +165 -0
  1601. sparsevb-0.1.1/include/legacy/armadillo_bits/typedef_elem.hpp +172 -0
  1602. sparsevb-0.1.1/include/legacy/armadillo_bits/typedef_elem_check.hpp +48 -0
  1603. sparsevb-0.1.1/include/legacy/armadillo_bits/typedef_mat.hpp +144 -0
  1604. sparsevb-0.1.1/include/legacy/armadillo_bits/typedef_mat_fixed.hpp +326 -0
  1605. sparsevb-0.1.1/include/legacy/armadillo_bits/unwrap.hpp +2554 -0
  1606. sparsevb-0.1.1/include/legacy/armadillo_bits/unwrap_cube.hpp +133 -0
  1607. sparsevb-0.1.1/include/legacy/armadillo_bits/unwrap_spmat.hpp +216 -0
  1608. sparsevb-0.1.1/include/legacy/armadillo_bits/upgrade_val.hpp +161 -0
  1609. sparsevb-0.1.1/include/legacy/armadillo_bits/wall_clock_bones.hpp +43 -0
  1610. sparsevb-0.1.1/include/legacy/armadillo_bits/wall_clock_meat.hpp +70 -0
  1611. sparsevb-0.1.1/include/legacy/armadillo_bits/xtrans_mat_bones.hpp +56 -0
  1612. sparsevb-0.1.1/include/legacy/armadillo_bits/xtrans_mat_meat.hpp +87 -0
  1613. sparsevb-0.1.1/include/legacy/armadillo_bits/xvec_htrans_bones.hpp +54 -0
  1614. sparsevb-0.1.1/include/legacy/armadillo_bits/xvec_htrans_meat.hpp +90 -0
  1615. sparsevb-0.1.1/pyproject.toml +45 -0
  1616. sparsevb-0.1.1/requirements.txt +3 -0
  1617. sparsevb-0.1.1/setup.cfg +4 -0
  1618. sparsevb-0.1.1/setup.py +37 -0
  1619. sparsevb-0.1.1/sparsevb/__init__.py +7 -0
  1620. sparsevb-0.1.1/sparsevb/cpp_src/fit_linear.cpp +91 -0
  1621. sparsevb-0.1.1/sparsevb/cpp_src/fit_linear.h +27 -0
  1622. sparsevb-0.1.1/sparsevb/cpp_src/fit_logit.cpp +158 -0
  1623. sparsevb-0.1.1/sparsevb/cpp_src/fit_logit.h +28 -0
  1624. sparsevb-0.1.1/sparsevb/cpp_src/laplace_obj_fn.cpp +23 -0
  1625. sparsevb-0.1.1/sparsevb/cpp_src/laplace_obj_fn.h +25 -0
  1626. sparsevb-0.1.1/sparsevb/cpp_src/misc_fn.cpp +31 -0
  1627. sparsevb-0.1.1/sparsevb/cpp_src/misc_fn.h +16 -0
  1628. sparsevb-0.1.1/sparsevb/fit_linear_standalone.cpp +47 -0
  1629. sparsevb-0.1.1/sparsevb/fit_linear_standalone.h +8 -0
  1630. sparsevb-0.1.1/sparsevb/include/Rcpp/Rcpp_mock.h +63 -0
  1631. sparsevb-0.1.1/sparsevb/include/Rcpp.h +1 -0
  1632. sparsevb-0.1.1/sparsevb/include/RcppArmadillo.h +1 -0
  1633. sparsevb-0.1.1/sparsevb/include/RcppEnsmallen.h +1 -0
  1634. sparsevb-0.1.1/sparsevb/svb_fit.cpp +16358 -0
  1635. sparsevb-0.1.1/sparsevb/svb_fit.pyx +138 -0
  1636. sparsevb-0.1.1/sparsevb/svb_wrappers.cpp +75 -0
  1637. sparsevb-0.1.1/sparsevb/svb_wrappers.h +9 -0
  1638. sparsevb-0.1.1/sparsevb.egg-info/PKG-INFO +101 -0
  1639. sparsevb-0.1.1/sparsevb.egg-info/SOURCES.txt +1643 -0
  1640. sparsevb-0.1.1/sparsevb.egg-info/dependency_links.txt +1 -0
  1641. sparsevb-0.1.1/sparsevb.egg-info/requires.txt +3 -0
  1642. sparsevb-0.1.1/sparsevb.egg-info/top_level.txt +1 -0
  1643. sparsevb-0.1.1/tests/test_svb_fit.py +48 -0
  1644. sparsevb-0.1.1/tests/test_svb_fit_advanced.py +72 -0
  1645. sparsevb-0.1.1/tests/test_svb_fit_r_comparison.py +91 -0
@@ -0,0 +1,5 @@
1
+ recursive-include sparsevb *.pyx *.cpp *.h
2
+ recursive-include include *
3
+ include setup.py
4
+ include requirements.txt
5
+ include README.md
@@ -0,0 +1,101 @@
1
+ Metadata-Version: 2.4
2
+ Name: sparsevb
3
+ Version: 0.1.1
4
+ Summary: Spike-and-Slab Variational Bayes for Linear and Logistic Regression
5
+ Author-email: Gabriel Clara <gabriel.j.clara@gmail.com>
6
+ License-Expression: GPL-3.0-or-later
7
+ Project-URL: Repository, https://gitlab.com/gclara/varpack
8
+ Keywords: variational-bayes,spike-and-slab,sparse-regression,bayesian,variable-selection
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Intended Audience :: Science/Research
11
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Programming Language :: Cython
20
+ Classifier: Programming Language :: C++
21
+ Classifier: Operating System :: POSIX :: Linux
22
+ Classifier: Operating System :: MacOS
23
+ Requires-Python: >=3.8
24
+ Description-Content-Type: text/markdown
25
+ Requires-Dist: numpy>=1.20.0
26
+ Requires-Dist: scipy>=1.6.0
27
+ Requires-Dist: scikit-learn>=1.0.0
28
+
29
+ # sparsevb
30
+
31
+ A Python package for Spike-and-Slab Variational Bayes for Linear and Logistic Regression.
32
+
33
+ ## Description
34
+
35
+ This package provides variational Bayesian algorithms to perform scalable variable selection for sparse, high-dimensional linear and logistic regression models. The algorithms are implemented in C++ for performance and exposed to Python using Cython.
36
+
37
+ It is a direct port of the R `sparsevb` package, using the same underlying C++ logic but with a Pythonic API.
38
+
39
+ ## Installation
40
+
41
+ To install the package from source:
42
+
43
+ ```bash
44
+ pip install .
45
+ ```
46
+
47
+ ## Usage
48
+
49
+ Here is a basic example of how to use the package:
50
+
51
+ ```python
52
+ import numpy as np
53
+ from sparsevb import svb_fit_linear, svb_fit_logit
54
+
55
+ # Generate some synthetic data
56
+ np.random.seed(42)
57
+ n_samples, n_features = 200, 20
58
+ X = np.random.randn(n_samples, n_features)
59
+ beta_true = np.zeros(n_features)
60
+ beta_true[:3] = [1.5, -2.0, 3.0]
61
+ intercept_true = 5.0
62
+ y = X.dot(beta_true) + intercept_true + 0.1 * np.random.randn(n_samples)
63
+
64
+ # Fit a sparse linear regression model
65
+ res = svb_fit_linear(X, y, intercept=True)
66
+ print("Estimated coefficients (mu * gamma):", res['mu'] * res['gamma'])
67
+ print("Estimated intercept:", res['intercept'])
68
+ print("Estimated noise variance (noise_sd):", res['noise_sd'])
69
+
70
+ # For logistic regression (binary classification)
71
+ logits = X.dot(beta_true) + intercept_true
72
+ probs = 1 / (1 + np.exp(-logits))
73
+ y_binary = (np.random.rand(n_samples) < probs).astype(float)
74
+
75
+ res_logit = svb_fit_logit(X, y_binary, intercept=True)
76
+ print("Estimated logistic coefficients:", res_logit['mu'] * res_logit['gamma'])
77
+ print("Estimated logistic intercept:", res_logit['intercept'])
78
+ ```
79
+
80
+ ## Features
81
+
82
+ - **Prioritized Initialization**: Uses Ridge and Lasso (via `scikit-learn`) to provide robust starting points.
83
+ - **Intercept Handling**: Built-in support for model intercepts.
84
+ - **Noise Estimation**: Automatic estimation of residual noise for linear models.
85
+ - **Same Core Logic**: Uses the exact same C++ algorithms as the original R package for reliable results.
86
+
87
+ ## Dependencies
88
+
89
+ - Python >= 3.8
90
+ - NumPy >= 1.20.0
91
+ - SciPy >= 1.6.0
92
+ - scikit-learn >= 1.0.0
93
+ - Cython >= 0.29.0
94
+
95
+ ## License
96
+
97
+ This project is licensed under the GNU General Public License v3.0.
98
+
99
+ ## References
100
+
101
+ - Kolyan Ray and Botond Szabo (2020). "Scalable Spike-and-Slab Variational Bayes for Linear and Logistic Regression." [DOI:10.1080/01621459.2020.1847121](https://doi.org/10.1080/01621459.2020.1847121)
@@ -0,0 +1,73 @@
1
+ # sparsevb
2
+
3
+ A Python package for Spike-and-Slab Variational Bayes for Linear and Logistic Regression.
4
+
5
+ ## Description
6
+
7
+ This package provides variational Bayesian algorithms to perform scalable variable selection for sparse, high-dimensional linear and logistic regression models. The algorithms are implemented in C++ for performance and exposed to Python using Cython.
8
+
9
+ It is a direct port of the R `sparsevb` package, using the same underlying C++ logic but with a Pythonic API.
10
+
11
+ ## Installation
12
+
13
+ To install the package from source:
14
+
15
+ ```bash
16
+ pip install .
17
+ ```
18
+
19
+ ## Usage
20
+
21
+ Here is a basic example of how to use the package:
22
+
23
+ ```python
24
+ import numpy as np
25
+ from sparsevb import svb_fit_linear, svb_fit_logit
26
+
27
+ # Generate some synthetic data
28
+ np.random.seed(42)
29
+ n_samples, n_features = 200, 20
30
+ X = np.random.randn(n_samples, n_features)
31
+ beta_true = np.zeros(n_features)
32
+ beta_true[:3] = [1.5, -2.0, 3.0]
33
+ intercept_true = 5.0
34
+ y = X.dot(beta_true) + intercept_true + 0.1 * np.random.randn(n_samples)
35
+
36
+ # Fit a sparse linear regression model
37
+ res = svb_fit_linear(X, y, intercept=True)
38
+ print("Estimated coefficients (mu * gamma):", res['mu'] * res['gamma'])
39
+ print("Estimated intercept:", res['intercept'])
40
+ print("Estimated noise variance (noise_sd):", res['noise_sd'])
41
+
42
+ # For logistic regression (binary classification)
43
+ logits = X.dot(beta_true) + intercept_true
44
+ probs = 1 / (1 + np.exp(-logits))
45
+ y_binary = (np.random.rand(n_samples) < probs).astype(float)
46
+
47
+ res_logit = svb_fit_logit(X, y_binary, intercept=True)
48
+ print("Estimated logistic coefficients:", res_logit['mu'] * res_logit['gamma'])
49
+ print("Estimated logistic intercept:", res_logit['intercept'])
50
+ ```
51
+
52
+ ## Features
53
+
54
+ - **Prioritized Initialization**: Uses Ridge and Lasso (via `scikit-learn`) to provide robust starting points.
55
+ - **Intercept Handling**: Built-in support for model intercepts.
56
+ - **Noise Estimation**: Automatic estimation of residual noise for linear models.
57
+ - **Same Core Logic**: Uses the exact same C++ algorithms as the original R package for reliable results.
58
+
59
+ ## Dependencies
60
+
61
+ - Python >= 3.8
62
+ - NumPy >= 1.20.0
63
+ - SciPy >= 1.6.0
64
+ - scikit-learn >= 1.0.0
65
+ - Cython >= 0.29.0
66
+
67
+ ## License
68
+
69
+ This project is licensed under the GNU General Public License v3.0.
70
+
71
+ ## References
72
+
73
+ - Kolyan Ray and Botond Szabo (2020). "Scalable Spike-and-Slab Variational Bayes for Linear and Logistic Regression." [DOI:10.1080/01621459.2020.1847121](https://doi.org/10.1080/01621459.2020.1847121)
@@ -0,0 +1,4 @@
1
+ Procedure for updating the ensmallen library:
2
+
3
+ - Download ensmallen from upstream
4
+ - Copy and replace the ensmallen.hpp and ensmallen_bits found in this directory
@@ -0,0 +1,4 @@
1
+
2
+ // This file support the legacy location and includes from the new location
3
+
4
+ #include "RcppArmadillo/rng/Alt_R_RNG.h"
@@ -0,0 +1,47 @@
1
+ // Emacs, please make this -*- mode: C++; -*-
2
+
3
+ // RcppArmadillo: Rcpp/Armadillo glue
4
+ //
5
+ // Copyright (C) 2010 - 2022 Dirk Eddelbuettel, Romain Francois and Douglas Bates
6
+ //
7
+ // This file is part of RcppArmadillo.
8
+ //
9
+ // RcppArmadillo is free software: you can redistribute it and/or modify it
10
+ // under the terms of the GNU General Public License as published by
11
+ // the Free Software Foundation, either version 2 of the License, or
12
+ // (at your option) any later version.
13
+ //
14
+ // RcppArmadillo is distributed in the hope that it will be useful, but
15
+ // WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ // GNU General Public License for more details.
18
+ //
19
+ // You should have received a copy of the GNU General Public License
20
+ // along with RcppArmadillo. If not, see <http://www.gnu.org/licenses/>.
21
+
22
+ #ifndef RcppArmadillo__RcppArmadillo
23
+ #define RcppArmadillo__RcppArmadillo
24
+
25
+ #if defined(Rcpp_hpp) && !defined(COMPILING_RCPPARMADILLO)
26
+ #error "The file 'Rcpp.h' should not be included. Please correct to include only 'RcppArmadillo.h'."
27
+ #endif
28
+
29
+ // We are undoing a design decision from early on by allowing vectors be returned
30
+ // as standard 'one-dimension' objects -- as opposed to the matrix form we imposed
31
+ #define RCPP_ARMADILLO_RETURN_ANYVEC_AS_VECTOR
32
+
33
+ // Deal with Armadillo 14.6.3 (fallback) versus 15.0.* (or later, preference) selection
34
+ #include <RcppArmadillo/version/arma.h>
35
+
36
+ // Set up actual #include <armadillo> after first #include <RcppArmadilloConfig> and more config
37
+ #include <RcppArmadillo/interface/RcppArmadilloForward.h>
38
+
39
+ // Automatically include Rcpp as well -- but only the 'light' mode sans modules
40
+ #include <Rcpp/Light>
41
+
42
+ // Remaining RcppArmadillo code
43
+ #include <RcppArmadillo/interface/RcppArmadilloWrap.h>
44
+ #include <RcppArmadillo/interface/RcppArmadilloAs.h>
45
+ #include <RcppArmadillo/interface/RcppArmadilloSugar.h>
46
+
47
+ #endif
@@ -0,0 +1,47 @@
1
+ // Emacs, please make this -*- mode: C++; -*-
2
+
3
+ // RcppArmadillo: Rcpp/Armadillo glue
4
+ //
5
+ // Copyright (C) 2010 - 2022 Dirk Eddelbuettel, Romain Francois and Douglas Bates
6
+ //
7
+ // This file is part of RcppArmadillo.
8
+ //
9
+ // RcppArmadillo is free software: you can redistribute it and/or modify it
10
+ // under the terms of the GNU General Public License as published by
11
+ // the Free Software Foundation, either version 2 of the License, or
12
+ // (at your option) any later version.
13
+ //
14
+ // RcppArmadillo is distributed in the hope that it will be useful, but
15
+ // WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ // GNU General Public License for more details.
18
+ //
19
+ // You should have received a copy of the GNU General Public License
20
+ // along with RcppArmadillo. If not, see <http://www.gnu.org/licenses/>.
21
+
22
+ #ifndef RcppArmadillo__RcppArmadillo
23
+ #define RcppArmadillo__RcppArmadillo
24
+
25
+ #if defined(Rcpp_hpp) && !defined(COMPILING_RCPPARMADILLO)
26
+ #error "The file 'Rcpp.h' should not be included. Please correct to include only 'RcppArmadillo.h'."
27
+ #endif
28
+
29
+ // We are undoing a design decision from early on by allowing vectors be returned
30
+ // as standard 'one-dimension' objects -- as opposed to the matrix form we imposed
31
+ #define RCPP_ARMADILLO_RETURN_ANYVEC_AS_VECTOR
32
+
33
+ // Deal with Armadillo 14.6.3 (fallback) versus 15.0.* (or later, preference) selection
34
+ #include <RcppArmadillo/version/arma.h>
35
+
36
+ // Set up actual #include <armadillo> after first #include <RcppArmadilloConfig> and more config
37
+ #include <RcppArmadillo/interface/RcppArmadilloForward.h>
38
+
39
+ // Automatically include Rcpp as well -- but only the 'lighter' mode sans modules and rtti
40
+ #include <Rcpp/Lighter>
41
+
42
+ // Remaining RcppArmadillo code
43
+ #include <RcppArmadillo/interface/RcppArmadilloWrap.h>
44
+ #include <RcppArmadillo/interface/RcppArmadilloAs.h>
45
+ #include <RcppArmadillo/interface/RcppArmadilloSugar.h>
46
+
47
+ #endif
@@ -0,0 +1,47 @@
1
+ // Emacs, please make this -*- mode: C++; -*-
2
+
3
+ // RcppArmadillo: Rcpp/Armadillo glue
4
+ //
5
+ // Copyright (C) 2010 - 2022 Dirk Eddelbuettel, Romain Francois and Douglas Bates
6
+ //
7
+ // This file is part of RcppArmadillo.
8
+ //
9
+ // RcppArmadillo is free software: you can redistribute it and/or modify it
10
+ // under the terms of the GNU General Public License as published by
11
+ // the Free Software Foundation, either version 2 of the License, or
12
+ // (at your option) any later version.
13
+ //
14
+ // RcppArmadillo is distributed in the hope that it will be useful, but
15
+ // WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ // GNU General Public License for more details.
18
+ //
19
+ // You should have received a copy of the GNU General Public License
20
+ // along with RcppArmadillo. If not, see <http://www.gnu.org/licenses/>.
21
+
22
+ #ifndef RcppArmadillo__RcppArmadillo
23
+ #define RcppArmadillo__RcppArmadillo
24
+
25
+ #if defined(Rcpp_hpp) && !defined(COMPILING_RCPPARMADILLO)
26
+ #error "The file 'Rcpp.h' should not be included. Please correct to include only 'RcppArmadillo.h'."
27
+ #endif
28
+
29
+ // We are undoing a design decision from early on by allowing vectors be returned
30
+ // as standard 'one-dimension' objects -- as opposed to the matrix form we imposed
31
+ #define RCPP_ARMADILLO_RETURN_ANYVEC_AS_VECTOR
32
+
33
+ // Deal with Armadillo 14.6.3 (fallback) versus 15.0.* (or later, preference) selection
34
+ #include <RcppArmadillo/version/arma.h>
35
+
36
+ // Set up actual #include <armadillo> after first #include <RcppArmadilloConfig> and more config
37
+ #include <RcppArmadillo/interface/RcppArmadilloForward.h>
38
+
39
+ // Automatically include Rcpp as well -- but only the 'lightest' mode sans modules, rtti, sugar
40
+ #include <Rcpp/Lightest>
41
+
42
+ // Remaining RcppArmadillo code
43
+ #include <RcppArmadillo/interface/RcppArmadilloWrap.h>
44
+ #include <RcppArmadillo/interface/RcppArmadilloAs.h>
45
+ #include <RcppArmadillo/interface/RcppArmadilloSugar.h>
46
+
47
+ #endif
@@ -0,0 +1,47 @@
1
+ // Emacs, please make this -*- mode: C++; -*-
2
+
3
+ // RcppArmadillo: Rcpp/Armadillo glue
4
+ //
5
+ // Copyright (C) 2010 - 2022 Dirk Eddelbuettel, Romain Francois and Douglas Bates
6
+ //
7
+ // This file is part of RcppArmadillo.
8
+ //
9
+ // RcppArmadillo is free software: you can redistribute it and/or modify it
10
+ // under the terms of the GNU General Public License as published by
11
+ // the Free Software Foundation, either version 2 of the License, or
12
+ // (at your option) any later version.
13
+ //
14
+ // RcppArmadillo is distributed in the hope that it will be useful, but
15
+ // WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ // GNU General Public License for more details.
18
+ //
19
+ // You should have received a copy of the GNU General Public License
20
+ // along with RcppArmadillo. If not, see <http://www.gnu.org/licenses/>.
21
+
22
+ #ifndef RcppArmadillo__RcppArmadillo
23
+ #define RcppArmadillo__RcppArmadillo
24
+
25
+ #if defined(Rcpp_hpp) && !defined(COMPILING_RCPPARMADILLO)
26
+ #error "The file 'Rcpp.h' should not be included. Please correct to include only 'RcppArmadillo.h'."
27
+ #endif
28
+
29
+ // We are undoing a design decision from early on by allowing vectors be returned
30
+ // as standard 'one-dimension' objects -- as opposed to the matrix form we imposed
31
+ #define RCPP_ARMADILLO_RETURN_ANYVEC_AS_VECTOR
32
+
33
+ // Deal with Armadillo 14.6.3 (fallback) versus 15.0.* (or later, preference) selection
34
+ #include <RcppArmadillo/version/arma.h>
35
+
36
+ // Set up actual #include <armadillo> after first #include <RcppArmadilloConfig> and more config
37
+ #include <RcppArmadillo/interface/RcppArmadilloForward.h>
38
+
39
+ // Automatically include Rcpp as well -- full version
40
+ #include <Rcpp/Rcpp>
41
+
42
+ // Remaining RcppArmadillo code
43
+ #include <RcppArmadillo/interface/RcppArmadilloWrap.h>
44
+ #include <RcppArmadillo/interface/RcppArmadilloAs.h>
45
+ #include <RcppArmadillo/interface/RcppArmadilloSugar.h>
46
+
47
+ #endif
@@ -0,0 +1,149 @@
1
+
2
+ // RcppArmadilloConfig.h: Rcpp/Armadillo glue
3
+ //
4
+ // Copyright (C) 2010 - 2025 Dirk Eddelbuettel, Romain Francois and Douglas Bates
5
+ // Copyright (C) 2016 - 2025 George G. Vega Yon
6
+ // Copyright (C) 2017 - 2025 Serguei Sokol
7
+ //
8
+ // This file is part of RcppArmadillo.
9
+ //
10
+ // RcppArmadillo is free software: you can redistribute it and/or modify it
11
+ // under the terms of the GNU General Public License as published by
12
+ // the Free Software Foundation, either version 2 of the License, or
13
+ // (at your option) any later version.
14
+ //
15
+ // RcppArmadillo is distributed in the hope that it will be useful, but
16
+ // WITHOUT ANY WARRANTY; without even the implied warranty of
17
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18
+ // GNU General Public License for more details.
19
+ //
20
+ // You should have received a copy of the GNU General Public License
21
+ // along with RcppArmadillo. If not, see <http://www.gnu.org/licenses/>.
22
+
23
+ #ifndef RcppArmadillo__RcppArmadilloConfig__h
24
+ #define RcppArmadillo__RcppArmadilloConfig__h
25
+
26
+ #if !defined(ARMA_USE_LAPACK)
27
+ #define ARMA_USE_LAPACK
28
+ #endif
29
+
30
+ #if !defined(ARMA_USE_BLAS)
31
+ #define ARMA_USE_BLAS
32
+ #endif
33
+
34
+ #define ARMA_HAVE_STD_ISFINITE
35
+ #define ARMA_HAVE_STD_ISINF
36
+ #define ARMA_HAVE_STD_ISNAN
37
+ #define ARMA_HAVE_STD_SNPRINTF
38
+
39
+
40
+ /* TODO: we might need to undef this on other platforms as well */
41
+ #if defined(__GNUC__) && defined(_WIN64) || defined(__FreeBSD__)
42
+ #undef ARMA_HAVE_STD_SNPRINTF
43
+ #endif
44
+
45
+ /*
46
+ suncc does not have std::isfinite (which is not standard)
47
+ so we tell armadillo not to use it, and comment out a few
48
+ others while we are at it
49
+ */
50
+ #if defined(__SUNPRO_CC)
51
+ #undef ARMA_HAVE_STD_ISFINITE
52
+ #undef ARMA_HAVE_STD_SNPRINTF
53
+ #undef ARMA_HAVE_LOG1P
54
+ #undef ARMA_HAVE_STD_ISINF
55
+ #undef ARMA_HAVE_STD_ISNAN
56
+ #endif
57
+
58
+ // Let's be careful for now and undef this as not all compilers support this
59
+ //#if defined(ARMA_USE_CXX11)
60
+ //#undef ARMA_USE_CXX11
61
+ //#endif
62
+
63
+ // If C++11 has been selected at the R package level, use it for Armadillo too
64
+ // This is actually not needed, if the proper switch is set via -std=... then
65
+ // Armadillo will know (cf compilation with -DARMA_EXTRA_DEBUG set)
66
+ // #if defined(USE_CXX1X)
67
+ // #define ARMA_USE_CXX11
68
+ // #endif
69
+
70
+ // We can use R as the RNG provider, see RcppArmadilloForward.h which
71
+ // enables inclusion of the appropriate headers. Alternatively, the
72
+ // C++11 RNG can be used by commenting out the current default and
73
+ // selecting the C++11 RNG instead. Lastly, one could (but should not)
74
+ // fall back to the C++98 RNG (often from the C library) by defining neither.
75
+
76
+ // Rcpp has its own stream object which cooperates more nicely with R's i/o
77
+ // And as of Armadillo 2.4.3, we can use this stream object as well
78
+ //
79
+ // As of Armadillo 8.100.1, this has been renamed to ARMA_COUT_STREAM and
80
+ // ARMA_CERR_STREAM was added
81
+ //
82
+ #if !defined(ARMA_COUT_STREAM)
83
+ #define ARMA_COUT_STREAM Rcpp::Rcout
84
+ #endif
85
+ #if !defined(ARMA_CERR_STREAM)
86
+ #define ARMA_CERR_STREAM Rcpp::Rcerr
87
+ #endif
88
+
89
+
90
+ // R now defines NDEBUG which suppresses a number of useful Armadillo tests
91
+ // Users can still defined it later, and/or define ARMA_NO_DEBUG
92
+ // Updated 2022-Nov to only undefined if opt-in define has been set
93
+ #if defined(RCPPARMADILLO_UNDEFINE_NDEBUG) && defined(NDEBUG)
94
+ #undef NDEBUG
95
+ #endif
96
+
97
+ // On Windows do not read autoconf-updated header
98
+ #if defined(WIN32) || defined(_WIN32)
99
+ // R can be built with its own Rlapack library, or use an external
100
+ // one. Only the latter has zgesdd, a complex-valued SVD using divide-and-conquer
101
+ // on Windows we do not assume ZGESDD
102
+ //
103
+ // Update 2025-Nov: R now generally has good enough LAPACK/BLAS, and newer Arma
104
+ // versions whine so protecting this now for use with Armadillo older than 15.*
105
+ #if defined(ARMA_SELECTED_LEGACY_VERSION)
106
+ #define ARMA_CRIPPLED_LAPACK 1
107
+ #endif
108
+ // on Windows we can now assume OpenMP with Rtools / gcc 4.9.3
109
+ // note that performance is said to still be poor
110
+ // cf https://cran.r-project.org/doc/manuals/r-devel/R-admin.html#The-MinGW_002dw64-toolchain
111
+ #define ARMA_USE_OPENMP
112
+ #else
113
+ // on the other OSs we test via LAPACK_LIBS (in configure) which
114
+ // updates this include file
115
+ #include <RcppArmadillo/config/RcppArmadilloConfigGenerated.h>
116
+ #endif
117
+
118
+ // Many client packages do not set the OpenMP compiler flag in their src/Makevars
119
+ // (ie add $(SHLIB_OPENMP_CXXFLAGS) to the PKG_CXXFLAGS line as we do) so to tone
120
+ // down the line noise we ask Armadillo not to print the warning
121
+ #if defined(ARMA_USE_OPENMP)
122
+ //#if !defined(_OPENMP)
123
+ // #pragma message("NOTE: To enable OpenMP-based speedups, add -fopenmp to the compiler flags. See Writing R Extension (Sec 1.2.1) and R Inst. + Admin. (Sec 6.3.3) for details.")
124
+ //#endif
125
+ #define ARMA_DONT_PRINT_OPENMP_WARNING 1
126
+ #endif
127
+
128
+
129
+ // Under C++11 and C++14, Armadillo now defaults to using int64_t for
130
+ // integers. This prevents us from passing integer vectors to R as
131
+ // only used int32_t -- so we select the shorter representation here.
132
+ // Unless int64_t is explicitly required during compilation.
133
+ #if !defined(ARMA_64BIT_WORD)
134
+ #define ARMA_32BIT_WORD 1
135
+ #endif
136
+
137
+ // To return arma::vec or arma::rowvec as R vector (i.e. dimensionless),
138
+ // one of the following macro can be defined before including
139
+ // RcppArmadillo.h. "ANYVEC" applys for both col- and row-vec.
140
+ //#define RCPP_ARMADILLO_RETURN_COLVEC_AS_VECTOR
141
+ //#define RCPP_ARMADILLO_RETURN_ROWVEC_AS_VECTOR
142
+ //#define RCPP_ARMADILLO_RETURN_ANYVEC_AS_VECTOR
143
+
144
+ // To preserve all dims of arma::field when passing objects to or from R
145
+ // the following macro can be defined before including RcppArmadillo.h.
146
+ // see https://github.com/RcppCore/RcppArmadillo/pull/352
147
+ // #define RCPP_ARMADILLO_FIX_Field
148
+
149
+ #endif
@@ -0,0 +1,40 @@
1
+
2
+ // RcppArmadilloConfigGenerated.h: Autoconf-updated file for LAPACK and OpenMP choices
3
+ //
4
+ // Copyright (C) 2013 - 2025 Dirk Eddelbuettel
5
+ // 2025 James J. Balamuta
6
+ //
7
+ // This file is part of RcppArmadillo.
8
+ //
9
+ // RcppArmadillo is free software: you can redistribute it and/or modify it
10
+ // under the terms of the GNU General Public License as published by
11
+ // the Free Software Foundation, either version 2 of the License, or
12
+ // (at your option) any later version.
13
+ //
14
+ // RcppArmadillo is distributed in the hope that it will be useful, but
15
+ // WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ // GNU General Public License for more details.
18
+ //
19
+ // You should have received a copy of the GNU General Public License
20
+ // along with RcppArmadillo. If not, see <http://www.gnu.org/licenses/>.
21
+
22
+ #ifndef RcppArmadillo__RcppArmadilloConfigGenerated__h
23
+ #define RcppArmadillo__RcppArmadilloConfigGenerated__h
24
+
25
+ // macOS special case as discussed in https://github.com/RcppCore/RcppArmadillo/issues/493
26
+ #if !defined(ARMA_USE_OPENMP)
27
+ #if defined(__APPLE__) && defined(_OPENMP)
28
+ // User has OpenMP available, but check if they want it disabled
29
+ #ifndef RCPPARMADILLO_MACOS_DISABLE_OPENMP
30
+ #define ARMA_USE_OPENMP 1
31
+ #else
32
+ #define ARMA_DONT_USE_OPENMP 1
33
+ #endif
34
+ #else
35
+ // from configure test for OpenMP based on how R is configured
36
+ #define ARMA_USE_OPENMP 1
37
+ #endif
38
+ #endif
39
+
40
+ #endif
@@ -0,0 +1,40 @@
1
+
2
+ // RcppArmadilloConfigGenerated.h: Autoconf-updated file for LAPACK and OpenMP choices
3
+ //
4
+ // Copyright (C) 2013 - 2025 Dirk Eddelbuettel
5
+ // 2025 James J. Balamuta
6
+ //
7
+ // This file is part of RcppArmadillo.
8
+ //
9
+ // RcppArmadillo is free software: you can redistribute it and/or modify it
10
+ // under the terms of the GNU General Public License as published by
11
+ // the Free Software Foundation, either version 2 of the License, or
12
+ // (at your option) any later version.
13
+ //
14
+ // RcppArmadillo is distributed in the hope that it will be useful, but
15
+ // WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ // GNU General Public License for more details.
18
+ //
19
+ // You should have received a copy of the GNU General Public License
20
+ // along with RcppArmadillo. If not, see <http://www.gnu.org/licenses/>.
21
+
22
+ #ifndef RcppArmadillo__RcppArmadilloConfigGenerated__h
23
+ #define RcppArmadillo__RcppArmadilloConfigGenerated__h
24
+
25
+ // macOS special case as discussed in https://github.com/RcppCore/RcppArmadillo/issues/493
26
+ #if !defined(ARMA_USE_OPENMP)
27
+ #if defined(__APPLE__) && defined(_OPENMP)
28
+ // User has OpenMP available, but check if they want it disabled
29
+ #ifndef RCPPARMADILLO_MACOS_DISABLE_OPENMP
30
+ #define ARMA_USE_OPENMP 1
31
+ #else
32
+ #define ARMA_DONT_USE_OPENMP 1
33
+ #endif
34
+ #else
35
+ // from configure test for OpenMP based on how R is configured
36
+ @ARMA_HAVE_OPENMP@
37
+ #endif
38
+ #endif
39
+
40
+ #endif