xtgeo 4.10.1__cp313-cp313-macosx_11_0_arm64.whl → 4.14.0__cp313-cp313-macosx_11_0_arm64.whl

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.

Potentially problematic release.


This version of xtgeo might be problematic. Click here for more details.

Files changed (578) hide show
  1. cxtgeo.py +0 -18
  2. cxtgeoPYTHON_wrap.c +0 -843
  3. xtgeo/__init__.py +2 -0
  4. xtgeo/_cxtgeo.cpython-313-darwin.so +0 -0
  5. xtgeo/_internal.cpython-313-darwin.so +0 -0
  6. xtgeo/common/version.py +16 -3
  7. xtgeo/cube/_cube_window_attributes.py +60 -127
  8. xtgeo/grid3d/_ecl_grid.py +6 -2
  9. xtgeo/grid3d/_ecl_inte_head.py +6 -2
  10. xtgeo/grid3d/_grdecl_format.py +43 -0
  11. xtgeo/grid3d/_grdecl_grid.py +24 -12
  12. xtgeo/grid3d/_grid_etc1.py +183 -69
  13. xtgeo/grid3d/_grid_export.py +4 -3
  14. xtgeo/grid3d/_grid_hybrid.py +13 -29
  15. xtgeo/grid3d/_grid_refine.py +1 -1
  16. xtgeo/grid3d/_grid_translate_coords.py +154 -0
  17. xtgeo/grid3d/_gridprop_export.py +34 -12
  18. xtgeo/grid3d/_gridprop_op1.py +74 -8
  19. xtgeo/grid3d/_gridprop_roxapi.py +87 -25
  20. xtgeo/grid3d/grid.py +198 -36
  21. xtgeo/grid3d/grid_property.py +5 -27
  22. xtgeo/include/eigen3/Eigen/Cholesky +45 -0
  23. xtgeo/include/eigen3/Eigen/CholmodSupport +48 -0
  24. xtgeo/include/eigen3/Eigen/Core +384 -0
  25. xtgeo/include/eigen3/Eigen/Dense +7 -0
  26. xtgeo/include/eigen3/Eigen/Eigen +2 -0
  27. xtgeo/include/eigen3/Eigen/Eigenvalues +60 -0
  28. xtgeo/include/eigen3/Eigen/Geometry +59 -0
  29. xtgeo/include/eigen3/Eigen/Householder +29 -0
  30. xtgeo/include/eigen3/Eigen/IterativeLinearSolvers +48 -0
  31. xtgeo/include/eigen3/Eigen/Jacobi +32 -0
  32. xtgeo/include/eigen3/Eigen/KLUSupport +41 -0
  33. xtgeo/include/eigen3/Eigen/LU +47 -0
  34. xtgeo/include/eigen3/Eigen/MetisSupport +35 -0
  35. xtgeo/include/eigen3/Eigen/OrderingMethods +70 -0
  36. xtgeo/include/eigen3/Eigen/PaStiXSupport +49 -0
  37. xtgeo/include/eigen3/Eigen/PardisoSupport +35 -0
  38. xtgeo/include/eigen3/Eigen/QR +50 -0
  39. xtgeo/include/eigen3/Eigen/QtAlignedMalloc +39 -0
  40. xtgeo/include/eigen3/Eigen/SPQRSupport +34 -0
  41. xtgeo/include/eigen3/Eigen/SVD +50 -0
  42. xtgeo/include/eigen3/Eigen/Sparse +34 -0
  43. xtgeo/include/eigen3/Eigen/SparseCholesky +37 -0
  44. xtgeo/include/eigen3/Eigen/SparseCore +69 -0
  45. xtgeo/include/eigen3/Eigen/SparseLU +50 -0
  46. xtgeo/include/eigen3/Eigen/SparseQR +36 -0
  47. xtgeo/include/eigen3/Eigen/StdDeque +27 -0
  48. xtgeo/include/eigen3/Eigen/StdList +26 -0
  49. xtgeo/include/eigen3/Eigen/StdVector +27 -0
  50. xtgeo/include/eigen3/Eigen/SuperLUSupport +64 -0
  51. xtgeo/include/eigen3/Eigen/UmfPackSupport +40 -0
  52. xtgeo/include/eigen3/Eigen/src/Cholesky/LDLT.h +688 -0
  53. xtgeo/include/eigen3/Eigen/src/Cholesky/LLT.h +558 -0
  54. xtgeo/include/eigen3/Eigen/src/Cholesky/LLT_LAPACKE.h +99 -0
  55. xtgeo/include/eigen3/Eigen/src/CholmodSupport/CholmodSupport.h +682 -0
  56. xtgeo/include/eigen3/Eigen/src/Core/ArithmeticSequence.h +413 -0
  57. xtgeo/include/eigen3/Eigen/src/Core/Array.h +417 -0
  58. xtgeo/include/eigen3/Eigen/src/Core/ArrayBase.h +226 -0
  59. xtgeo/include/eigen3/Eigen/src/Core/ArrayWrapper.h +209 -0
  60. xtgeo/include/eigen3/Eigen/src/Core/Assign.h +90 -0
  61. xtgeo/include/eigen3/Eigen/src/Core/AssignEvaluator.h +1010 -0
  62. xtgeo/include/eigen3/Eigen/src/Core/Assign_MKL.h +178 -0
  63. xtgeo/include/eigen3/Eigen/src/Core/BandMatrix.h +353 -0
  64. xtgeo/include/eigen3/Eigen/src/Core/Block.h +448 -0
  65. xtgeo/include/eigen3/Eigen/src/Core/BooleanRedux.h +162 -0
  66. xtgeo/include/eigen3/Eigen/src/Core/CommaInitializer.h +164 -0
  67. xtgeo/include/eigen3/Eigen/src/Core/ConditionEstimator.h +175 -0
  68. xtgeo/include/eigen3/Eigen/src/Core/CoreEvaluators.h +1741 -0
  69. xtgeo/include/eigen3/Eigen/src/Core/CoreIterators.h +132 -0
  70. xtgeo/include/eigen3/Eigen/src/Core/CwiseBinaryOp.h +183 -0
  71. xtgeo/include/eigen3/Eigen/src/Core/CwiseNullaryOp.h +1001 -0
  72. xtgeo/include/eigen3/Eigen/src/Core/CwiseTernaryOp.h +197 -0
  73. xtgeo/include/eigen3/Eigen/src/Core/CwiseUnaryOp.h +103 -0
  74. xtgeo/include/eigen3/Eigen/src/Core/CwiseUnaryView.h +132 -0
  75. xtgeo/include/eigen3/Eigen/src/Core/DenseBase.h +701 -0
  76. xtgeo/include/eigen3/Eigen/src/Core/DenseCoeffsBase.h +685 -0
  77. xtgeo/include/eigen3/Eigen/src/Core/DenseStorage.h +652 -0
  78. xtgeo/include/eigen3/Eigen/src/Core/Diagonal.h +258 -0
  79. xtgeo/include/eigen3/Eigen/src/Core/DiagonalMatrix.h +391 -0
  80. xtgeo/include/eigen3/Eigen/src/Core/DiagonalProduct.h +28 -0
  81. xtgeo/include/eigen3/Eigen/src/Core/Dot.h +318 -0
  82. xtgeo/include/eigen3/Eigen/src/Core/EigenBase.h +160 -0
  83. xtgeo/include/eigen3/Eigen/src/Core/ForceAlignedAccess.h +150 -0
  84. xtgeo/include/eigen3/Eigen/src/Core/Fuzzy.h +155 -0
  85. xtgeo/include/eigen3/Eigen/src/Core/GeneralProduct.h +465 -0
  86. xtgeo/include/eigen3/Eigen/src/Core/GenericPacketMath.h +1040 -0
  87. xtgeo/include/eigen3/Eigen/src/Core/GlobalFunctions.h +194 -0
  88. xtgeo/include/eigen3/Eigen/src/Core/IO.h +258 -0
  89. xtgeo/include/eigen3/Eigen/src/Core/IndexedView.h +237 -0
  90. xtgeo/include/eigen3/Eigen/src/Core/Inverse.h +117 -0
  91. xtgeo/include/eigen3/Eigen/src/Core/Map.h +171 -0
  92. xtgeo/include/eigen3/Eigen/src/Core/MapBase.h +310 -0
  93. xtgeo/include/eigen3/Eigen/src/Core/MathFunctions.h +2057 -0
  94. xtgeo/include/eigen3/Eigen/src/Core/MathFunctionsImpl.h +200 -0
  95. xtgeo/include/eigen3/Eigen/src/Core/Matrix.h +565 -0
  96. xtgeo/include/eigen3/Eigen/src/Core/MatrixBase.h +547 -0
  97. xtgeo/include/eigen3/Eigen/src/Core/NestByValue.h +85 -0
  98. xtgeo/include/eigen3/Eigen/src/Core/NoAlias.h +109 -0
  99. xtgeo/include/eigen3/Eigen/src/Core/NumTraits.h +335 -0
  100. xtgeo/include/eigen3/Eigen/src/Core/PartialReduxEvaluator.h +232 -0
  101. xtgeo/include/eigen3/Eigen/src/Core/PermutationMatrix.h +605 -0
  102. xtgeo/include/eigen3/Eigen/src/Core/PlainObjectBase.h +1128 -0
  103. xtgeo/include/eigen3/Eigen/src/Core/Product.h +191 -0
  104. xtgeo/include/eigen3/Eigen/src/Core/ProductEvaluators.h +1179 -0
  105. xtgeo/include/eigen3/Eigen/src/Core/Random.h +218 -0
  106. xtgeo/include/eigen3/Eigen/src/Core/Redux.h +515 -0
  107. xtgeo/include/eigen3/Eigen/src/Core/Ref.h +381 -0
  108. xtgeo/include/eigen3/Eigen/src/Core/Replicate.h +142 -0
  109. xtgeo/include/eigen3/Eigen/src/Core/Reshaped.h +454 -0
  110. xtgeo/include/eigen3/Eigen/src/Core/ReturnByValue.h +119 -0
  111. xtgeo/include/eigen3/Eigen/src/Core/Reverse.h +217 -0
  112. xtgeo/include/eigen3/Eigen/src/Core/Select.h +164 -0
  113. xtgeo/include/eigen3/Eigen/src/Core/SelfAdjointView.h +365 -0
  114. xtgeo/include/eigen3/Eigen/src/Core/SelfCwiseBinaryOp.h +47 -0
  115. xtgeo/include/eigen3/Eigen/src/Core/Solve.h +188 -0
  116. xtgeo/include/eigen3/Eigen/src/Core/SolveTriangular.h +235 -0
  117. xtgeo/include/eigen3/Eigen/src/Core/SolverBase.h +168 -0
  118. xtgeo/include/eigen3/Eigen/src/Core/StableNorm.h +251 -0
  119. xtgeo/include/eigen3/Eigen/src/Core/StlIterators.h +463 -0
  120. xtgeo/include/eigen3/Eigen/src/Core/Stride.h +116 -0
  121. xtgeo/include/eigen3/Eigen/src/Core/Swap.h +68 -0
  122. xtgeo/include/eigen3/Eigen/src/Core/Transpose.h +464 -0
  123. xtgeo/include/eigen3/Eigen/src/Core/Transpositions.h +386 -0
  124. xtgeo/include/eigen3/Eigen/src/Core/TriangularMatrix.h +1001 -0
  125. xtgeo/include/eigen3/Eigen/src/Core/VectorBlock.h +96 -0
  126. xtgeo/include/eigen3/Eigen/src/Core/VectorwiseOp.h +784 -0
  127. xtgeo/include/eigen3/Eigen/src/Core/Visitor.h +381 -0
  128. xtgeo/include/eigen3/Eigen/src/Core/arch/AVX/Complex.h +372 -0
  129. xtgeo/include/eigen3/Eigen/src/Core/arch/AVX/MathFunctions.h +228 -0
  130. xtgeo/include/eigen3/Eigen/src/Core/arch/AVX/PacketMath.h +1574 -0
  131. xtgeo/include/eigen3/Eigen/src/Core/arch/AVX/TypeCasting.h +115 -0
  132. xtgeo/include/eigen3/Eigen/src/Core/arch/AVX512/Complex.h +422 -0
  133. xtgeo/include/eigen3/Eigen/src/Core/arch/AVX512/MathFunctions.h +362 -0
  134. xtgeo/include/eigen3/Eigen/src/Core/arch/AVX512/PacketMath.h +2303 -0
  135. xtgeo/include/eigen3/Eigen/src/Core/arch/AVX512/TypeCasting.h +89 -0
  136. xtgeo/include/eigen3/Eigen/src/Core/arch/AltiVec/Complex.h +417 -0
  137. xtgeo/include/eigen3/Eigen/src/Core/arch/AltiVec/MathFunctions.h +90 -0
  138. xtgeo/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProduct.h +2937 -0
  139. xtgeo/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h +221 -0
  140. xtgeo/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h +629 -0
  141. xtgeo/include/eigen3/Eigen/src/Core/arch/AltiVec/PacketMath.h +2711 -0
  142. xtgeo/include/eigen3/Eigen/src/Core/arch/CUDA/Complex.h +258 -0
  143. xtgeo/include/eigen3/Eigen/src/Core/arch/Default/BFloat16.h +700 -0
  144. xtgeo/include/eigen3/Eigen/src/Core/arch/Default/ConjHelper.h +117 -0
  145. xtgeo/include/eigen3/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +1649 -0
  146. xtgeo/include/eigen3/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +110 -0
  147. xtgeo/include/eigen3/Eigen/src/Core/arch/Default/Half.h +942 -0
  148. xtgeo/include/eigen3/Eigen/src/Core/arch/Default/Settings.h +49 -0
  149. xtgeo/include/eigen3/Eigen/src/Core/arch/Default/TypeCasting.h +120 -0
  150. xtgeo/include/eigen3/Eigen/src/Core/arch/GPU/MathFunctions.h +103 -0
  151. xtgeo/include/eigen3/Eigen/src/Core/arch/GPU/PacketMath.h +1685 -0
  152. xtgeo/include/eigen3/Eigen/src/Core/arch/GPU/TypeCasting.h +80 -0
  153. xtgeo/include/eigen3/Eigen/src/Core/arch/HIP/hcc/math_constants.h +23 -0
  154. xtgeo/include/eigen3/Eigen/src/Core/arch/MSA/Complex.h +648 -0
  155. xtgeo/include/eigen3/Eigen/src/Core/arch/MSA/MathFunctions.h +387 -0
  156. xtgeo/include/eigen3/Eigen/src/Core/arch/MSA/PacketMath.h +1233 -0
  157. xtgeo/include/eigen3/Eigen/src/Core/arch/NEON/Complex.h +584 -0
  158. xtgeo/include/eigen3/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h +183 -0
  159. xtgeo/include/eigen3/Eigen/src/Core/arch/NEON/MathFunctions.h +75 -0
  160. xtgeo/include/eigen3/Eigen/src/Core/arch/NEON/PacketMath.h +4587 -0
  161. xtgeo/include/eigen3/Eigen/src/Core/arch/NEON/TypeCasting.h +1419 -0
  162. xtgeo/include/eigen3/Eigen/src/Core/arch/SSE/Complex.h +351 -0
  163. xtgeo/include/eigen3/Eigen/src/Core/arch/SSE/MathFunctions.h +199 -0
  164. xtgeo/include/eigen3/Eigen/src/Core/arch/SSE/PacketMath.h +1505 -0
  165. xtgeo/include/eigen3/Eigen/src/Core/arch/SSE/TypeCasting.h +142 -0
  166. xtgeo/include/eigen3/Eigen/src/Core/arch/SVE/MathFunctions.h +44 -0
  167. xtgeo/include/eigen3/Eigen/src/Core/arch/SVE/PacketMath.h +752 -0
  168. xtgeo/include/eigen3/Eigen/src/Core/arch/SVE/TypeCasting.h +49 -0
  169. xtgeo/include/eigen3/Eigen/src/Core/arch/SYCL/InteropHeaders.h +232 -0
  170. xtgeo/include/eigen3/Eigen/src/Core/arch/SYCL/MathFunctions.h +301 -0
  171. xtgeo/include/eigen3/Eigen/src/Core/arch/SYCL/PacketMath.h +670 -0
  172. xtgeo/include/eigen3/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h +694 -0
  173. xtgeo/include/eigen3/Eigen/src/Core/arch/SYCL/TypeCasting.h +85 -0
  174. xtgeo/include/eigen3/Eigen/src/Core/arch/ZVector/Complex.h +426 -0
  175. xtgeo/include/eigen3/Eigen/src/Core/arch/ZVector/MathFunctions.h +233 -0
  176. xtgeo/include/eigen3/Eigen/src/Core/arch/ZVector/PacketMath.h +1060 -0
  177. xtgeo/include/eigen3/Eigen/src/Core/functors/AssignmentFunctors.h +177 -0
  178. xtgeo/include/eigen3/Eigen/src/Core/functors/BinaryFunctors.h +541 -0
  179. xtgeo/include/eigen3/Eigen/src/Core/functors/NullaryFunctors.h +189 -0
  180. xtgeo/include/eigen3/Eigen/src/Core/functors/StlFunctors.h +166 -0
  181. xtgeo/include/eigen3/Eigen/src/Core/functors/TernaryFunctors.h +25 -0
  182. xtgeo/include/eigen3/Eigen/src/Core/functors/UnaryFunctors.h +1131 -0
  183. xtgeo/include/eigen3/Eigen/src/Core/products/GeneralBlockPanelKernel.h +2645 -0
  184. xtgeo/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix.h +517 -0
  185. xtgeo/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +317 -0
  186. xtgeo/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +145 -0
  187. xtgeo/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +124 -0
  188. xtgeo/include/eigen3/Eigen/src/Core/products/GeneralMatrixVector.h +518 -0
  189. xtgeo/include/eigen3/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +136 -0
  190. xtgeo/include/eigen3/Eigen/src/Core/products/Parallelizer.h +180 -0
  191. xtgeo/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +544 -0
  192. xtgeo/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +295 -0
  193. xtgeo/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector.h +262 -0
  194. xtgeo/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +118 -0
  195. xtgeo/include/eigen3/Eigen/src/Core/products/SelfadjointProduct.h +133 -0
  196. xtgeo/include/eigen3/Eigen/src/Core/products/SelfadjointRank2Update.h +94 -0
  197. xtgeo/include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix.h +472 -0
  198. xtgeo/include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +317 -0
  199. xtgeo/include/eigen3/Eigen/src/Core/products/TriangularMatrixVector.h +350 -0
  200. xtgeo/include/eigen3/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +255 -0
  201. xtgeo/include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix.h +337 -0
  202. xtgeo/include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +167 -0
  203. xtgeo/include/eigen3/Eigen/src/Core/products/TriangularSolverVector.h +148 -0
  204. xtgeo/include/eigen3/Eigen/src/Core/util/BlasUtil.h +583 -0
  205. xtgeo/include/eigen3/Eigen/src/Core/util/ConfigureVectorization.h +512 -0
  206. xtgeo/include/eigen3/Eigen/src/Core/util/Constants.h +563 -0
  207. xtgeo/include/eigen3/Eigen/src/Core/util/DisableStupidWarnings.h +106 -0
  208. xtgeo/include/eigen3/Eigen/src/Core/util/ForwardDeclarations.h +322 -0
  209. xtgeo/include/eigen3/Eigen/src/Core/util/IndexedViewHelper.h +186 -0
  210. xtgeo/include/eigen3/Eigen/src/Core/util/IntegralConstant.h +272 -0
  211. xtgeo/include/eigen3/Eigen/src/Core/util/MKL_support.h +137 -0
  212. xtgeo/include/eigen3/Eigen/src/Core/util/Macros.h +1464 -0
  213. xtgeo/include/eigen3/Eigen/src/Core/util/Memory.h +1163 -0
  214. xtgeo/include/eigen3/Eigen/src/Core/util/Meta.h +812 -0
  215. xtgeo/include/eigen3/Eigen/src/Core/util/NonMPL2.h +3 -0
  216. xtgeo/include/eigen3/Eigen/src/Core/util/ReenableStupidWarnings.h +31 -0
  217. xtgeo/include/eigen3/Eigen/src/Core/util/ReshapedHelper.h +51 -0
  218. xtgeo/include/eigen3/Eigen/src/Core/util/StaticAssert.h +221 -0
  219. xtgeo/include/eigen3/Eigen/src/Core/util/SymbolicIndex.h +293 -0
  220. xtgeo/include/eigen3/Eigen/src/Core/util/XprHelper.h +856 -0
  221. xtgeo/include/eigen3/Eigen/src/Eigenvalues/ComplexEigenSolver.h +346 -0
  222. xtgeo/include/eigen3/Eigen/src/Eigenvalues/ComplexSchur.h +462 -0
  223. xtgeo/include/eigen3/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +91 -0
  224. xtgeo/include/eigen3/Eigen/src/Eigenvalues/EigenSolver.h +622 -0
  225. xtgeo/include/eigen3/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +418 -0
  226. xtgeo/include/eigen3/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +226 -0
  227. xtgeo/include/eigen3/Eigen/src/Eigenvalues/HessenbergDecomposition.h +374 -0
  228. xtgeo/include/eigen3/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +158 -0
  229. xtgeo/include/eigen3/Eigen/src/Eigenvalues/RealQZ.h +657 -0
  230. xtgeo/include/eigen3/Eigen/src/Eigenvalues/RealSchur.h +558 -0
  231. xtgeo/include/eigen3/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +77 -0
  232. xtgeo/include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +904 -0
  233. xtgeo/include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +87 -0
  234. xtgeo/include/eigen3/Eigen/src/Eigenvalues/Tridiagonalization.h +561 -0
  235. xtgeo/include/eigen3/Eigen/src/Geometry/AlignedBox.h +486 -0
  236. xtgeo/include/eigen3/Eigen/src/Geometry/AngleAxis.h +247 -0
  237. xtgeo/include/eigen3/Eigen/src/Geometry/EulerAngles.h +114 -0
  238. xtgeo/include/eigen3/Eigen/src/Geometry/Homogeneous.h +501 -0
  239. xtgeo/include/eigen3/Eigen/src/Geometry/Hyperplane.h +282 -0
  240. xtgeo/include/eigen3/Eigen/src/Geometry/OrthoMethods.h +235 -0
  241. xtgeo/include/eigen3/Eigen/src/Geometry/ParametrizedLine.h +232 -0
  242. xtgeo/include/eigen3/Eigen/src/Geometry/Quaternion.h +870 -0
  243. xtgeo/include/eigen3/Eigen/src/Geometry/Rotation2D.h +199 -0
  244. xtgeo/include/eigen3/Eigen/src/Geometry/RotationBase.h +206 -0
  245. xtgeo/include/eigen3/Eigen/src/Geometry/Scaling.h +188 -0
  246. xtgeo/include/eigen3/Eigen/src/Geometry/Transform.h +1563 -0
  247. xtgeo/include/eigen3/Eigen/src/Geometry/Translation.h +202 -0
  248. xtgeo/include/eigen3/Eigen/src/Geometry/Umeyama.h +166 -0
  249. xtgeo/include/eigen3/Eigen/src/Geometry/arch/Geometry_SIMD.h +168 -0
  250. xtgeo/include/eigen3/Eigen/src/Householder/BlockHouseholder.h +110 -0
  251. xtgeo/include/eigen3/Eigen/src/Householder/Householder.h +176 -0
  252. xtgeo/include/eigen3/Eigen/src/Householder/HouseholderSequence.h +545 -0
  253. xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +226 -0
  254. xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +212 -0
  255. xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +229 -0
  256. xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +394 -0
  257. xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +453 -0
  258. xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +444 -0
  259. xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +198 -0
  260. xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +117 -0
  261. xtgeo/include/eigen3/Eigen/src/Jacobi/Jacobi.h +483 -0
  262. xtgeo/include/eigen3/Eigen/src/KLUSupport/KLUSupport.h +358 -0
  263. xtgeo/include/eigen3/Eigen/src/LU/Determinant.h +117 -0
  264. xtgeo/include/eigen3/Eigen/src/LU/FullPivLU.h +877 -0
  265. xtgeo/include/eigen3/Eigen/src/LU/InverseImpl.h +432 -0
  266. xtgeo/include/eigen3/Eigen/src/LU/PartialPivLU.h +624 -0
  267. xtgeo/include/eigen3/Eigen/src/LU/PartialPivLU_LAPACKE.h +83 -0
  268. xtgeo/include/eigen3/Eigen/src/LU/arch/InverseSize4.h +351 -0
  269. xtgeo/include/eigen3/Eigen/src/MetisSupport/MetisSupport.h +137 -0
  270. xtgeo/include/eigen3/Eigen/src/OrderingMethods/Amd.h +435 -0
  271. xtgeo/include/eigen3/Eigen/src/OrderingMethods/Eigen_Colamd.h +1863 -0
  272. xtgeo/include/eigen3/Eigen/src/OrderingMethods/Ordering.h +153 -0
  273. xtgeo/include/eigen3/Eigen/src/PaStiXSupport/PaStiXSupport.h +678 -0
  274. xtgeo/include/eigen3/Eigen/src/PardisoSupport/PardisoSupport.h +545 -0
  275. xtgeo/include/eigen3/Eigen/src/QR/ColPivHouseholderQR.h +674 -0
  276. xtgeo/include/eigen3/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +97 -0
  277. xtgeo/include/eigen3/Eigen/src/QR/CompleteOrthogonalDecomposition.h +635 -0
  278. xtgeo/include/eigen3/Eigen/src/QR/FullPivHouseholderQR.h +713 -0
  279. xtgeo/include/eigen3/Eigen/src/QR/HouseholderQR.h +434 -0
  280. xtgeo/include/eigen3/Eigen/src/QR/HouseholderQR_LAPACKE.h +68 -0
  281. xtgeo/include/eigen3/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +335 -0
  282. xtgeo/include/eigen3/Eigen/src/SVD/BDCSVD.h +1366 -0
  283. xtgeo/include/eigen3/Eigen/src/SVD/JacobiSVD.h +812 -0
  284. xtgeo/include/eigen3/Eigen/src/SVD/JacobiSVD_LAPACKE.h +91 -0
  285. xtgeo/include/eigen3/Eigen/src/SVD/SVDBase.h +376 -0
  286. xtgeo/include/eigen3/Eigen/src/SVD/UpperBidiagonalization.h +414 -0
  287. xtgeo/include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky.h +697 -0
  288. xtgeo/include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +174 -0
  289. xtgeo/include/eigen3/Eigen/src/SparseCore/AmbiVector.h +378 -0
  290. xtgeo/include/eigen3/Eigen/src/SparseCore/CompressedStorage.h +274 -0
  291. xtgeo/include/eigen3/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +352 -0
  292. xtgeo/include/eigen3/Eigen/src/SparseCore/MappedSparseMatrix.h +67 -0
  293. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseAssign.h +270 -0
  294. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseBlock.h +571 -0
  295. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseColEtree.h +206 -0
  296. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseCompressedBase.h +370 -0
  297. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +722 -0
  298. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +150 -0
  299. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseDenseProduct.h +342 -0
  300. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseDiagonalProduct.h +138 -0
  301. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseDot.h +98 -0
  302. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseFuzzy.h +29 -0
  303. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseMap.h +305 -0
  304. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseMatrix.h +1518 -0
  305. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseMatrixBase.h +398 -0
  306. xtgeo/include/eigen3/Eigen/src/SparseCore/SparsePermutation.h +178 -0
  307. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseProduct.h +181 -0
  308. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseRedux.h +49 -0
  309. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseRef.h +397 -0
  310. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseSelfAdjointView.h +659 -0
  311. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseSolverBase.h +124 -0
  312. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +198 -0
  313. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseTranspose.h +92 -0
  314. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseTriangularView.h +189 -0
  315. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseUtil.h +186 -0
  316. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseVector.h +478 -0
  317. xtgeo/include/eigen3/Eigen/src/SparseCore/SparseView.h +254 -0
  318. xtgeo/include/eigen3/Eigen/src/SparseCore/TriangularSolver.h +315 -0
  319. xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU.h +923 -0
  320. xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLUImpl.h +66 -0
  321. xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_Memory.h +226 -0
  322. xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_Structs.h +110 -0
  323. xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +375 -0
  324. xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_Utils.h +80 -0
  325. xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_column_bmod.h +181 -0
  326. xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_column_dfs.h +179 -0
  327. xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +107 -0
  328. xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +280 -0
  329. xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +126 -0
  330. xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +130 -0
  331. xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_panel_bmod.h +223 -0
  332. xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_panel_dfs.h +258 -0
  333. xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_pivotL.h +137 -0
  334. xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_pruneL.h +136 -0
  335. xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_relax_snode.h +83 -0
  336. xtgeo/include/eigen3/Eigen/src/SparseQR/SparseQR.h +758 -0
  337. xtgeo/include/eigen3/Eigen/src/StlSupport/StdDeque.h +116 -0
  338. xtgeo/include/eigen3/Eigen/src/StlSupport/StdList.h +106 -0
  339. xtgeo/include/eigen3/Eigen/src/StlSupport/StdVector.h +131 -0
  340. xtgeo/include/eigen3/Eigen/src/StlSupport/details.h +84 -0
  341. xtgeo/include/eigen3/Eigen/src/SuperLUSupport/SuperLUSupport.h +1025 -0
  342. xtgeo/include/eigen3/Eigen/src/UmfPackSupport/UmfPackSupport.h +642 -0
  343. xtgeo/include/eigen3/Eigen/src/misc/Image.h +82 -0
  344. xtgeo/include/eigen3/Eigen/src/misc/Kernel.h +79 -0
  345. xtgeo/include/eigen3/Eigen/src/misc/RealSvd2x2.h +55 -0
  346. xtgeo/include/eigen3/Eigen/src/misc/blas.h +440 -0
  347. xtgeo/include/eigen3/Eigen/src/misc/lapack.h +152 -0
  348. xtgeo/include/eigen3/Eigen/src/misc/lapacke.h +16292 -0
  349. xtgeo/include/eigen3/Eigen/src/misc/lapacke_mangling.h +17 -0
  350. xtgeo/include/eigen3/Eigen/src/plugins/ArrayCwiseBinaryOps.h +358 -0
  351. xtgeo/include/eigen3/Eigen/src/plugins/ArrayCwiseUnaryOps.h +696 -0
  352. xtgeo/include/eigen3/Eigen/src/plugins/BlockMethods.h +1442 -0
  353. xtgeo/include/eigen3/Eigen/src/plugins/CommonCwiseBinaryOps.h +115 -0
  354. xtgeo/include/eigen3/Eigen/src/plugins/CommonCwiseUnaryOps.h +177 -0
  355. xtgeo/include/eigen3/Eigen/src/plugins/IndexedViewMethods.h +262 -0
  356. xtgeo/include/eigen3/Eigen/src/plugins/MatrixCwiseBinaryOps.h +152 -0
  357. xtgeo/include/eigen3/Eigen/src/plugins/MatrixCwiseUnaryOps.h +95 -0
  358. xtgeo/include/eigen3/Eigen/src/plugins/ReshapedMethods.h +149 -0
  359. xtgeo/include/eigen3/signature_of_eigen3_matrix_library +1 -0
  360. xtgeo/include/eigen3/unsupported/Eigen/AdolcForward +159 -0
  361. xtgeo/include/eigen3/unsupported/Eigen/AlignedVector3 +234 -0
  362. xtgeo/include/eigen3/unsupported/Eigen/ArpackSupport +30 -0
  363. xtgeo/include/eigen3/unsupported/Eigen/AutoDiff +46 -0
  364. xtgeo/include/eigen3/unsupported/Eigen/BVH +95 -0
  365. xtgeo/include/eigen3/unsupported/Eigen/CXX11/Tensor +137 -0
  366. xtgeo/include/eigen3/unsupported/Eigen/CXX11/TensorSymmetry +42 -0
  367. xtgeo/include/eigen3/unsupported/Eigen/CXX11/ThreadPool +74 -0
  368. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/Tensor.h +554 -0
  369. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h +329 -0
  370. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h +247 -0
  371. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h +1176 -0
  372. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBlock.h +1559 -0
  373. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h +1093 -0
  374. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h +518 -0
  375. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h +377 -0
  376. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h +1023 -0
  377. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h +73 -0
  378. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h +6 -0
  379. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionGpu.h +1413 -0
  380. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h +575 -0
  381. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h +1650 -0
  382. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h +1679 -0
  383. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h +456 -0
  384. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h +1132 -0
  385. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h +544 -0
  386. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h +214 -0
  387. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h +347 -0
  388. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h +137 -0
  389. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h +6 -0
  390. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h +104 -0
  391. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceGpu.h +389 -0
  392. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h +1048 -0
  393. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h +409 -0
  394. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h +236 -0
  395. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h +490 -0
  396. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h +236 -0
  397. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h +983 -0
  398. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h +703 -0
  399. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h +388 -0
  400. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h +669 -0
  401. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h +379 -0
  402. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h +237 -0
  403. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h +191 -0
  404. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h +488 -0
  405. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h +302 -0
  406. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h +33 -0
  407. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaDefines.h +99 -0
  408. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaUndefines.h +44 -0
  409. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h +79 -0
  410. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h +603 -0
  411. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h +738 -0
  412. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h +247 -0
  413. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h +82 -0
  414. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h +263 -0
  415. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h +216 -0
  416. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h +98 -0
  417. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h +327 -0
  418. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h +311 -0
  419. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h +1102 -0
  420. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h +708 -0
  421. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h +291 -0
  422. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h +322 -0
  423. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h +998 -0
  424. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h +6 -0
  425. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionGpu.h +966 -0
  426. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h +582 -0
  427. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h +454 -0
  428. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h +465 -0
  429. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h +528 -0
  430. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorScanSycl.h +513 -0
  431. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h +471 -0
  432. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h +161 -0
  433. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h +346 -0
  434. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTrace.h +303 -0
  435. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h +264 -0
  436. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h +249 -0
  437. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h +629 -0
  438. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h +293 -0
  439. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h +236 -0
  440. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h +338 -0
  441. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h +669 -0
  442. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/Barrier.h +67 -0
  443. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h +249 -0
  444. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h +486 -0
  445. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h +236 -0
  446. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h +23 -0
  447. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h +40 -0
  448. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h +301 -0
  449. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h +48 -0
  450. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h +20 -0
  451. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Meta.h +537 -0
  452. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h +88 -0
  453. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/util/EmulateArray.h +261 -0
  454. xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h +158 -0
  455. xtgeo/include/eigen3/unsupported/Eigen/EulerAngles +43 -0
  456. xtgeo/include/eigen3/unsupported/Eigen/FFT +419 -0
  457. xtgeo/include/eigen3/unsupported/Eigen/IterativeSolvers +51 -0
  458. xtgeo/include/eigen3/unsupported/Eigen/KroneckerProduct +36 -0
  459. xtgeo/include/eigen3/unsupported/Eigen/LevenbergMarquardt +49 -0
  460. xtgeo/include/eigen3/unsupported/Eigen/MPRealSupport +213 -0
  461. xtgeo/include/eigen3/unsupported/Eigen/MatrixFunctions +504 -0
  462. xtgeo/include/eigen3/unsupported/Eigen/MoreVectorization +24 -0
  463. xtgeo/include/eigen3/unsupported/Eigen/NonLinearOptimization +140 -0
  464. xtgeo/include/eigen3/unsupported/Eigen/NumericalDiff +56 -0
  465. xtgeo/include/eigen3/unsupported/Eigen/OpenGLSupport +322 -0
  466. xtgeo/include/eigen3/unsupported/Eigen/Polynomials +137 -0
  467. xtgeo/include/eigen3/unsupported/Eigen/Skyline +39 -0
  468. xtgeo/include/eigen3/unsupported/Eigen/SparseExtra +54 -0
  469. xtgeo/include/eigen3/unsupported/Eigen/SpecialFunctions +103 -0
  470. xtgeo/include/eigen3/unsupported/Eigen/Splines +35 -0
  471. xtgeo/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h +108 -0
  472. xtgeo/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h +730 -0
  473. xtgeo/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h +220 -0
  474. xtgeo/include/eigen3/unsupported/Eigen/src/BVH/BVAlgorithms.h +293 -0
  475. xtgeo/include/eigen3/unsupported/Eigen/src/BVH/KdBVH.h +223 -0
  476. xtgeo/include/eigen3/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h +790 -0
  477. xtgeo/include/eigen3/unsupported/Eigen/src/EulerAngles/EulerAngles.h +355 -0
  478. xtgeo/include/eigen3/unsupported/Eigen/src/EulerAngles/EulerSystem.h +305 -0
  479. xtgeo/include/eigen3/unsupported/Eigen/src/FFT/ei_fftw_impl.h +261 -0
  480. xtgeo/include/eigen3/unsupported/Eigen/src/FFT/ei_kissfft_impl.h +449 -0
  481. xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h +187 -0
  482. xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/DGMRES.h +511 -0
  483. xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/GMRES.h +335 -0
  484. xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IDRS.h +436 -0
  485. xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h +90 -0
  486. xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IterationController.h +154 -0
  487. xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/MINRES.h +267 -0
  488. xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/Scaling.h +193 -0
  489. xtgeo/include/eigen3/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h +305 -0
  490. xtgeo/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h +84 -0
  491. xtgeo/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h +202 -0
  492. xtgeo/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h +160 -0
  493. xtgeo/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h +188 -0
  494. xtgeo/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h +396 -0
  495. xtgeo/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h +441 -0
  496. xtgeo/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h +569 -0
  497. xtgeo/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h +373 -0
  498. xtgeo/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h +705 -0
  499. xtgeo/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h +368 -0
  500. xtgeo/include/eigen3/unsupported/Eigen/src/MatrixFunctions/StemFunction.h +117 -0
  501. xtgeo/include/eigen3/unsupported/Eigen/src/MoreVectorization/MathFunctions.h +95 -0
  502. xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h +601 -0
  503. xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h +657 -0
  504. xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/chkder.h +66 -0
  505. xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/covar.h +70 -0
  506. xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/dogleg.h +107 -0
  507. xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h +79 -0
  508. xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/lmpar.h +298 -0
  509. xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h +91 -0
  510. xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h +30 -0
  511. xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1updt.h +99 -0
  512. xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h +49 -0
  513. xtgeo/include/eigen3/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h +130 -0
  514. xtgeo/include/eigen3/unsupported/Eigen/src/Polynomials/Companion.h +280 -0
  515. xtgeo/include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialSolver.h +428 -0
  516. xtgeo/include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialUtils.h +143 -0
  517. xtgeo/include/eigen3/unsupported/Eigen/src/Skyline/SkylineInplaceLU.h +352 -0
  518. xtgeo/include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrix.h +862 -0
  519. xtgeo/include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrixBase.h +212 -0
  520. xtgeo/include/eigen3/unsupported/Eigen/src/Skyline/SkylineProduct.h +295 -0
  521. xtgeo/include/eigen3/unsupported/Eigen/src/Skyline/SkylineStorage.h +259 -0
  522. xtgeo/include/eigen3/unsupported/Eigen/src/Skyline/SkylineUtil.h +89 -0
  523. xtgeo/include/eigen3/unsupported/Eigen/src/SparseExtra/BlockOfDynamicSparseMatrix.h +122 -0
  524. xtgeo/include/eigen3/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h +1079 -0
  525. xtgeo/include/eigen3/unsupported/Eigen/src/SparseExtra/DynamicSparseMatrix.h +404 -0
  526. xtgeo/include/eigen3/unsupported/Eigen/src/SparseExtra/MarketIO.h +282 -0
  527. xtgeo/include/eigen3/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h +247 -0
  528. xtgeo/include/eigen3/unsupported/Eigen/src/SparseExtra/RandomSetter.h +349 -0
  529. xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsArrayAPI.h +286 -0
  530. xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsBFloat16.h +68 -0
  531. xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsFunctors.h +357 -0
  532. xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsHalf.h +66 -0
  533. xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsImpl.h +1959 -0
  534. xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsPacketMath.h +118 -0
  535. xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/HipVectorCompatibility.h +67 -0
  536. xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h +167 -0
  537. xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsBFloat16.h +58 -0
  538. xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h +330 -0
  539. xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h +58 -0
  540. xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h +2045 -0
  541. xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h +79 -0
  542. xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX/BesselFunctions.h +46 -0
  543. xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX/SpecialFunctions.h +16 -0
  544. xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/BesselFunctions.h +46 -0
  545. xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/SpecialFunctions.h +16 -0
  546. xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/GPU/SpecialFunctions.h +369 -0
  547. xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/NEON/BesselFunctions.h +54 -0
  548. xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/NEON/SpecialFunctions.h +34 -0
  549. xtgeo/include/eigen3/unsupported/Eigen/src/Splines/Spline.h +507 -0
  550. xtgeo/include/eigen3/unsupported/Eigen/src/Splines/SplineFitting.h +431 -0
  551. xtgeo/include/eigen3/unsupported/Eigen/src/Splines/SplineFwd.h +93 -0
  552. xtgeo/interfaces/rms/__init__.py +18 -0
  553. xtgeo/interfaces/rms/_regular_surface.py +460 -0
  554. xtgeo/interfaces/rms/_rms_base.py +100 -0
  555. xtgeo/interfaces/rms/_rmsapi_package.py +69 -0
  556. xtgeo/interfaces/rms/rmsapi_utils.py +438 -0
  557. xtgeo/io/_file.py +10 -1
  558. xtgeo/lib/cmake/fmt/fmt-targets.cmake +1 -1
  559. xtgeo/lib/libfmt.a +0 -0
  560. xtgeo/lib/pkgconfig/fmt.pc +2 -2
  561. xtgeo/metadata/metadata.py +66 -62
  562. xtgeo/share/eigen3/cmake/Eigen3Config.cmake +37 -0
  563. xtgeo/share/eigen3/cmake/Eigen3ConfigVersion.cmake +65 -0
  564. xtgeo/share/eigen3/cmake/Eigen3Targets.cmake +106 -0
  565. xtgeo/share/eigen3/cmake/UseEigen3.cmake +6 -0
  566. xtgeo/share/pkgconfig/eigen3.pc +9 -0
  567. xtgeo/surface/__init__.py +2 -0
  568. xtgeo/surface/_regsurf_oper.py +1 -94
  569. xtgeo/surface/regular_surface.py +166 -90
  570. xtgeo/well/_blockedwell_roxapi.py +24 -4
  571. xtgeo/xyz/_xyz_io.py +7 -5
  572. xtgeo/xyz/points.py +1 -0
  573. {xtgeo-4.10.1.dist-info → xtgeo-4.14.0.dist-info}/METADATA +4 -4
  574. xtgeo-4.14.0.dist-info/RECORD +677 -0
  575. {xtgeo-4.10.1.dist-info → xtgeo-4.14.0.dist-info}/WHEEL +1 -1
  576. xtgeo/surface/_regsurf_roxapi.py +0 -241
  577. xtgeo-4.10.1.dist-info/RECORD +0 -137
  578. {xtgeo-4.10.1.dist-info → xtgeo-4.14.0.dist-info}/licenses/LICENSE.md +0 -0
@@ -0,0 +1,677 @@
1
+ cxtgeo.py,sha256=4amlL5oTh0HSjlf4Wfra6KNFRhybM2jh_p6mBcOGdAU,31614
2
+ cxtgeoPYTHON_wrap.c,sha256=jNATLn9NEKglrud75J9k9wq-HxYPJ6m4U50h2ei00Ec,610361
3
+ xtgeo-4.14.0.dist-info/RECORD,,
4
+ xtgeo-4.14.0.dist-info/WHEEL,sha256=RKB2kgklE3rgz0xlIuKYm-O5gcSzEoMvCOiEOfbYfDs,141
5
+ xtgeo-4.14.0.dist-info/METADATA,sha256=a_Yyr9P4g4kgw7WuUhpxPmt81Nll1knxcMSyNtHiVjI,5779
6
+ xtgeo-4.14.0.dist-info/licenses/LICENSE.md,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
7
+ xtgeo/_cxtgeo.cpython-313-darwin.so,sha256=CrKHq-VpiKST-lZMlwoKIGxWulS91p7ujH56FtWUPY8,398000
8
+ xtgeo/__init__.py,sha256=CIIb6Ijgj54STo2GncOLqZD-7hUqebGtjDMeVj3ZEXY,5634
9
+ xtgeo/_internal.cpython-313-darwin.so,sha256=XeMHqvue2997A49iCztT0EG6Fk_ULGtjHpQMrmce2DA,814480
10
+ xtgeo/well/_wells_utils.py,sha256=hjJEBdtILtK87sbCYWHJ7aEgqgKkak6ihfOcxSixNPo,4945
11
+ xtgeo/well/_blockedwell_roxapi.py,sha256=J17-lKccvTZBuW5_aUz5lfa5W5lW7pYIw1MvGeQ9lQ0,8421
12
+ xtgeo/well/_well_io.py,sha256=CHvLfuIVNoX_4PQd7sCWg5xvyCd1L73J5dkmV2uaJqU,9821
13
+ xtgeo/well/well1.py,sha256=gUODmEw-QOQtDHVI-qPUhK8RnglASso1l2EIvQvaOng,51125
14
+ xtgeo/well/__init__.py,sha256=2OjMYXXBSTZmsJgF0TrKMX01hMwT3dt2yLXhz5gL3D4,591
15
+ xtgeo/well/_well_roxapi.py,sha256=O-6sk3p7s5oQoOtFlGE6_LfRfPBRb_cLB9-EAPd5Pok,9430
16
+ xtgeo/well/blocked_wells.py,sha256=fYup8pCBlY_qc9kFmiLGHJSs-83X5xCKZxoikCYyZyg,3833
17
+ xtgeo/well/blocked_well.py,sha256=e7AkqGaOizfi0pJvwbKqoaiq5oy6Y0h7W8kPAE-aKIc,6428
18
+ xtgeo/well/_wellmarkers.py,sha256=1JkykzygnNySTPHDATlZOWkuI3tnUp-PwkrZS11CNrc,14122
19
+ xtgeo/well/wells.py,sha256=DP8tM-s65rFqTH73ZnTUrA9P1PqwMsDFkg6k43I1ic4,6438
20
+ xtgeo/well/_well_oper.py,sha256=L6tXU9Gu7T-Q8bB-Z-trvYy0Bu4fP7qaEX0kmtv2tTM,15710
21
+ xtgeo/well/_well_aux.py,sha256=HERPSSuNHwO0cT3PxH4tYktijTCk5Ot58wdTaVq_3Bw,821
22
+ xtgeo/well/_blockedwells_roxapi.py,sha256=DBI8cu78Rc71okvuxtCa92aGw7ngoNve6VA3y7YAyIo,1984
23
+ xtgeo/include/fmt/ostream.h,sha256=xJ8Hvle3-yq8ieNChFdHQMJMLebW3wsIr_GguPU3wJA,5024
24
+ xtgeo/include/fmt/format-inl.h,sha256=esTUkHVorJnChGGIFZUFPS5ARe6ByJ0L3bd5xxjuc2w,80985
25
+ xtgeo/include/fmt/ranges.h,sha256=CWCSh3gpDIElvjvPklQu9osxVFtreaPBkwzQnrWzRHM,28211
26
+ xtgeo/include/fmt/xchar.h,sha256=1KrSITylnW2sMBVw294A4PDaoIi_hmkHCwKD3pP3slE,13636
27
+ xtgeo/include/fmt/core.h,sha256=srZpIUWxHHwndNsQYHjJdXWkfRjoDHeDxoVmR1Ml67Q,187
28
+ xtgeo/include/fmt/chrono.h,sha256=qk8RifAMooep5Vhcw7a1ffqPGgAO-vqIFDL0bq-92u0,79718
29
+ xtgeo/include/fmt/os.h,sha256=Ax7PAuZarxvhbeSvF54bPRFUD4igmJZn1fQTj-k-WTg,12786
30
+ xtgeo/include/fmt/color.h,sha256=-8NNQq92LNTkXvLJPQUIAtlW1AbFyeTJLqmwdJ_QLYo,24290
31
+ xtgeo/include/fmt/args.h,sha256=zSpCMKK5XbYPAGc3Q3af5zcvD3CHE1IMq3hxc7UFUYc,7180
32
+ xtgeo/include/fmt/printf.h,sha256=em_6w1TaoTfbmk7RTdgXt_e1tuXs9G2vJ0MfQeey5e8,20440
33
+ xtgeo/include/fmt/compile.h,sha256=ENZI-_vOmUge7OKqpPnsjOirJf7whBRCKWtxScOGSHo,18792
34
+ xtgeo/include/fmt/format.h,sha256=msNHOeuZ1f4iDJbVlRm_jan7AQjRz1utvtFXGH5MPPs,157793
35
+ xtgeo/include/fmt/std.h,sha256=ogzbgTUxCUFupDozCWAG0yMhWeiV6QtkEbaR0p9jR8A,22277
36
+ xtgeo/include/fmt/base.h,sha256=E8jZU_stmNyVUondFmmZvSLbq_66f0hrNpPCxtnWJ9s,103990
37
+ xtgeo/include/eigen3/signature_of_eigen3_matrix_library,sha256=U9kYED1-STMjAmZuzRnGn0E_lKwG8DfyDhPc8hYFVL8,216
38
+ xtgeo/include/eigen3/unsupported/Eigen/MatrixFunctions,sha256=UQx5KHuhuG6rCCydWU38vO5rX-NAu8Xpvmey3lxRhwo,17919
39
+ xtgeo/include/eigen3/unsupported/Eigen/AdolcForward,sha256=gok9u0CklJDOhhpEjl8CnD1rRRAoYw6SESu5GKp9nWA,4422
40
+ xtgeo/include/eigen3/unsupported/Eigen/AlignedVector3,sha256=PFKx8xYz7v_wHEdpFBSBnpafqzx0liSJ8f_4il3Fl80,6349
41
+ xtgeo/include/eigen3/unsupported/Eigen/OpenGLSupport,sha256=ZGKZSemUvCYq6M-LKZ0uwc1taaKX_ULeGD4dQpxyolA,19072
42
+ xtgeo/include/eigen3/unsupported/Eigen/LevenbergMarquardt,sha256=EV3RwUkSregym42GzPbDDtk-FGOOb8ohSZLu3o-sNcU,1238
43
+ xtgeo/include/eigen3/unsupported/Eigen/AutoDiff,sha256=rthp_lqfRNojDQAvI9ptF694VMcbtXsSBIJGHi_ppBk,1181
44
+ xtgeo/include/eigen3/unsupported/Eigen/NumericalDiff,sha256=UGaTN2hJyc5o8udaXbmLiVBJkT7bPlDYHo1m8FbfTZ8,1779
45
+ xtgeo/include/eigen3/unsupported/Eigen/NonLinearOptimization,sha256=IaVVXvrAPnYLdetS5T02Ru-pnWRv1jAMv4Nxi6_MwSs,5963
46
+ xtgeo/include/eigen3/unsupported/Eigen/ArpackSupport,sha256=o9VmHcIFtwVh6AQ6Gxv2PUgayP0B2HsZJ8ylj0X3odk,884
47
+ xtgeo/include/eigen3/unsupported/Eigen/Skyline,sha256=g382Fu5rZxtiB3Q--hJP-SP7UpnWglCZeWzalSnJbP4,930
48
+ xtgeo/include/eigen3/unsupported/Eigen/BVH,sha256=X_yDrxJQmIoP33ZF__N5hlzRJIIrqbhCw1etaRtSnFg,5523
49
+ xtgeo/include/eigen3/unsupported/Eigen/SpecialFunctions,sha256=gfPAPxqC7HBUuYs-JeCTtxVJR3XLeb7pHo0uYx9GV9g,2951
50
+ xtgeo/include/eigen3/unsupported/Eigen/Splines,sha256=lATg8tkAJ7gRZWkWMFzjtYfK0_gVnLfla9wst14Mtps,996
51
+ xtgeo/include/eigen3/unsupported/Eigen/KroneckerProduct,sha256=fPx1HjcrCikhchUD231u_zOKrAZ7vQWSuDTLsWZxh3g,944
52
+ xtgeo/include/eigen3/unsupported/Eigen/IterativeSolvers,sha256=KaUyoxYkFf4XPHA1s9AjL7iwIg3ngLi13R2DtBKMoYs,1561
53
+ xtgeo/include/eigen3/unsupported/Eigen/FFT,sha256=3rA3hBZ0QY8KKzaFc6TBVXnlB-a0OrCbpTFDrCdbYO4,13948
54
+ xtgeo/include/eigen3/unsupported/Eigen/EulerAngles,sha256=-QtPU3hgWE3njMiMPeR4J46FBlt3xAmsGKxth_0U1vI,1126
55
+ xtgeo/include/eigen3/unsupported/Eigen/SparseExtra,sha256=nZkznxaQNSZ2LDWJX9X7olPQ03UrlajMNZcSuYKJeGQ,1360
56
+ xtgeo/include/eigen3/unsupported/Eigen/Polynomials,sha256=v1EtXbl2fANk_QCkuYe6UG2hCraRTX3HS8aG-ebyNCA,4749
57
+ xtgeo/include/eigen3/unsupported/Eigen/MoreVectorization,sha256=bNMtuL35kS00a7vhn2zKNE3i9GUVAcItqKWuSGvep7A,592
58
+ xtgeo/include/eigen3/unsupported/Eigen/MPRealSupport,sha256=2H7NflX8oKXdd3bq0f-lksnPztIcrKL42iWsBrmxL-A,7656
59
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/ThreadPool,sha256=a55i7Oc-W-Zef-sVRbaWBwLiD8hNS-Qy0BFsHO4Aj2k,2087
60
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/TensorSymmetry,sha256=Xatz4ez47OlpqwpZLwBID1tVNi0jwp_OrCe7OaZ_eac,1267
61
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/Tensor,sha256=ERCIG4K3m9-sckrNwHnDFHVllHJSlHR2AVv1WwqsbjE,4187
62
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h,sha256=lUSg3gr2rEAcS7a7hzMp2HulKr-uP09Kw2WiFraLMuk,4174
63
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Meta.h,sha256=vfb6_OCPdzfFI-wKojyVidR2QWCGElSgLiN6i-PW74g,22752
64
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h,sha256=xDvU3caW5c18x4VWj1M2_5--PsWqh9ji4X8CpecsOIA,4115
65
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/util/EmulateArray.h,sha256=DCnmPGJ7_s9pJCAZFkTwShCDSzlOaCvWKdjEO_FXWe8,8155
66
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h,sha256=KgcrsI-cresKg6Hw_UqwpSoE_jYtwqGmFCgMU7pFtVk,1209
67
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h,sha256=AZ8fp5PypMrFL5d8RjYPWpzk2FLzpeFregqyMkE6KAo,17075
68
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/Barrier.h,sha256=pf0etwsUfZXVMbsNaGhmVHxfJzFj7sBu9B6iFvxX8Jg,2113
69
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h,sha256=eJe2SmFZMWGsvjfjPmyj_VSiZZawL70ho7AKnwwCO-Q,11482
70
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h,sha256=QgSy2IwkHlSUmtete4lgQl14RQVyyQeO__XxXfGeZZA,9366
71
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h,sha256=iqZ-DcqFx5x6slnaP8CzTrMZsoXLREXCqj88UsIGi0M,1680
72
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h,sha256=7IPJUGtaaS24TND4IOFoq2vf8nkj_q9_MC34dwtAmKM,774
73
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h,sha256=mTEppMz2rUkr8yKDvwBwDNGyRSqYFRIMEsU8tiYEt0c,715
74
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h,sha256=zXHavOGkLR7XlRN23KhPD95QQu5IUUrr6CNRHheGccQ,9121
75
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h,sha256=1idio5z5-lzJixQaKm35Z5tC_WDhdc_BqjLB71fVs18,10857
76
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h,sha256=ynPj38Z6-4lDPANJyRm4QyRuik5y9cuvKoCS9_YIYiI,9086
77
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h,sha256=ufkERAgmls6nw6mXnJKdMUVb-lMTMjOgqHKVRGGlItE,13021
78
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h,sha256=6VEcKFQ5AKPxCdytaTXGsX8qKBECpXk39rTnXvVw4-I,21046
79
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h,sha256=KbTqsxWI-QdJQNy_UN8VT6YOtsVxqUl6S-L2pbayEXk,12385
80
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h,sha256=UPHtCUNbXKq9x2Vw3nOCCxY_qqStpPrfZXJeoiRgrsw,7552
81
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionGpu.h,sha256=Yz6DDXsVp9JCOuWyjeFrJN1uNC-R3SuJ40ZYwHgq1lg,40719
82
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h,sha256=P9P0LRecMk5M-sxLCyBzn1-XTKvR_jCE9izrY6dFDLs,18803
83
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h,sha256=K7IxNJcMbICETYwTnS6Y_AU-_5KRke7o-j1BrnEK_AA,8556
84
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h,sha256=9Mwezi-wkITp0aili9hqbPcCqeXa7Fiiy3tVgbwHRus,89042
85
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h,sha256=kZQhUn3IYwcQojrMfKndhVZrXUHVnNlsdUf741lzXb0,43284
86
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h,sha256=i1j_-REJ8PQDj914mIxMg6fJo9vUj1ulkvDF4mGw-V8,8642
87
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h,sha256=NVthrO0NzFxnet0cU5Y-OxrcdcVidgApE8wzpO14MxI,45320
88
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h,sha256=GdEItwY2PalNd_fT4cM9SgBl9_doIOSQtOX7gcCcK04,15269
89
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h,sha256=WMVKy3QA9fUIcUX2qeAeXiJT19I7nq_0TG5wAT61cok,221
90
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h,sha256=7Qv4MhVy9es23wmTFZlRWYOHmxOUOinAd51Zlrqqv6Q,16115
91
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h,sha256=l3IlvCoBTYYvGD1Dsy2nTecQtc01iCJkJhRJDP3Nbw0,70687
92
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h,sha256=lLJ4oBIyIEpsmlGHe89lyFeAJOMVVVBV94aJiW74IQA,9094
93
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h,sha256=HOewfZiY8jRypX9jgHp-KlZOUW6xqpWje_FslN6Z4b4,3427
94
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h,sha256=IL33sqAnssgnhHTI74HGdkFIZ7MzUEmC16fb0uLlrys,14793
95
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h,sha256=s6mcE5V8wcSL_0pv2fpnSlX7yJ5RThqAVTSWgOQmNM0,14486
96
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h,sha256=j3fwW87MZnHEA0bMJ4Hq8WZ3jHu-MAmsSNv9hvMKZTk,3642
97
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h,sha256=quaKx2lcQXmJkp9146Mxdybqc0hw7swPtnirCLqX40o,42150
98
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h,sha256=-H2Y4z7IHATflC856iU_OvKD17ono7cX67JveXHjF58,13146
99
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h,sha256=Pj9_uFJMNmQBe6NIdJsNlfhtc7cmmW7Ed4rQY8ekTY4,12448
100
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h,sha256=aoJS9wuLu33_mzZdmIV4O3YeOqFTPzeK7YC64nlBnr0,25692
101
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h,sha256=63r4FNUanqLPaffLmDssVIT0GOcHCnQlkaMOFpsRDpc,28066
102
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h,sha256=yo4uEzTwi3vGUrH3x_vKmLL7xaJeat6LdgD6lY8Luqk,9041
103
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h,sha256=2jM1U7qvXti4u5Wp3ixkTTgYAmEaESqetGdRTA2UmOo,18256
104
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h,sha256=7oHzaicuu1Qt1QW0y7Qv_heSw9untSwBlon84nzH0-A,16938
105
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h,sha256=zrRPAkpyiIIC6f5DeOjSYloAgg3FmLzruVuniP5wqYo,44395
106
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h,sha256=WXZ7t5TCv8_pEyJC-OvtrpwhekmmPFivC8g0wDK5q4Y,215
107
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h,sha256=xwJnpXltTCEGmUz0PsnV6tdU7P-aitKZ4zFlYY3daKE,2730
108
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h,sha256=y-3D8ffs309gKMV_3eN-Ei8wIdId37pNKbjGxgumJ9o,2675
109
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h,sha256=FwguEkyjPG9_XmlByGdK91hHlM4vYHJ9T4GzwQk5UuQ,10920
110
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h,sha256=SXKQHVw2KsMMb1j4ugCuNCRIObrqL1Ep47qlD2Io3iA,48686
111
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTrace.h,sha256=m7uRkYCrx-x84RBwE_7xSq2QH43gzm5vbukniuwuZpQ,10152
112
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h,sha256=iTVhN7ZH9rZxxuYNTRTH8sLv5JyaOAAjZPOFtL5zRHo,40005
113
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h,sha256=iFLwLnGsRsmwtrlfDKTMAZWoN2GCX3kF19qnSe1o9nc,8320
114
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h,sha256=fRDgCyR3e2snQI6bZgg1EqYbZFIgLi-unG0iDvduci0,8104
115
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h,sha256=Anx0LhzDMMciTR-HlKHMM_VN6h9SCD7N0dzFZr0HFX0,28764
116
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h,sha256=yIu4oLi9YGVHViyLlasStV8_I--9UXP5fokctIT0D_c,40367
117
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h,sha256=3fxgtEhBm1dKxhF7pnEhd_za5bE_bVzQBFw2tdQHy5U,24345
118
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h,sha256=ftdhSE-Ek_uSjB56TWJ-usz5-GnSr0yiPiIWA-qGE88,7769
119
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaDefines.h,sha256=NviCSyJFxVbHUtYbTtHrOVeEMHPLY7sHKvzt5YGLO68,4068
120
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h,sha256=0t9FXHJ56IQJKWGi6bY29Of2gku5DqN5-66itH-wpRc,14191
121
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h,sha256=LZW36pczQdPBWgqhy7qhpNGB-J8lmSCuIwXKtMf8wDE,26655
122
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h,sha256=UztH-FlzXw8frTkIAZWl1Wb4q26FSNxOHBX-85YU5v4,13513
123
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h,sha256=o5srZIY1E6vjiqkN3nuavap1FfqTdt-zu9oCNavWmbQ,11474
124
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBlock.h,sha256=yA38mmjHCrTYomYMMu4TmupnpaFa3E6GiHPYMJAzA98,60851
125
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h,sha256=SBjP9On61G7HoPFZ0-R-myjihqKg45bNcMLTmhV9X5M,1316
126
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h,sha256=3YG-e0N-sFv4ouxSVuBwjXN5mrKg2whvebTEP-wXREs,20091
127
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h,sha256=FHxkQBJKVUmoPycxkZescvS_yhc3A3OJ-moyQlzYO5g,15203
128
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h,sha256=8qaBJGSwiITSCzOsUBVnlXx0Ll773AKgJzsc4wDAN-s,57932
129
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceGpu.h,sha256=tJ8_4wnmIornxvUTRU8TlcpXbK7XcjSi1yF2zHBJpQ8,12837
130
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h,sha256=GU6n3uV_-v07y8Ff3ABwVi5t6zu7akyXFMwWurweLGo,5481
131
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h,sha256=3gFwPRX5v89lK2jtclOerAVNDoxM-f_36C4ASdfUqH0,19707
132
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h,sha256=cc6FlTgMPHpV5_tOALBXR0BHhAAKogJQjVMbL5MT5a8,23586
133
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h,sha256=g_ctZjJjZ6_xxsEMqbMRfJ-3arQctuZpFTVY-mAr6IA,9432
134
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h,sha256=6DWhlbu4HiZEzAKS4L3HOfTxZ76Ft_qbhkRQL-Wob8c,30074
135
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h,sha256=qmWGuhyAlF3T2QoeNVkjW4cEsqP_Vsj-B9cxmNDMGs0,4896
136
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h,sha256=7LQwJrx7q9DLP3ZfPKjHlVn_Ml1eKGcRFY0iyGki9tE,17751
137
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionGpu.h,sha256=wEwuDp5umIBY12clvXThdiv1rOmYQ44MbdGDPnbZjLY,63402
138
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h,sha256=Flzv-2eQMOMBfFgfyT-YkPJgi-fRKmGM7_s4xoVU8tE,27527
139
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorScanSycl.h,sha256=EGn91p3mLsJc635RHxL6moByUDLbVFlN2BC0MKAmAwU,25279
140
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h,sha256=VPqsfc9SMx7FeLLy17XTqUg_BCBz7xOOYaS4_AmrZko,225
141
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h,sha256=YjOiUEPfR7tcPx3CwO0I0AqM7Zbm6lbkQK2L4sD2S7A,7674
142
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/Tensor.h,sha256=-6fvJ-2DFU47TLphGkPY9j1XRxfNUFofUOjdHw6fjsg,21269
143
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h,sha256=hhtV-BzYySE2LASRz4v6MHTyGFTLEIc-xgwbDbK4LvY,30089
144
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h,sha256=702pv5OcwklVN3kY7dfZazRCJnb5qTyasudQ16gbRB4,8782
145
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h,sha256=OdciFoYwOtwmBzbGWkKlyGsdUdb-pv8lOR1yBuMA2xU,2560
146
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h,sha256=fZzNNp1_bFqecm03OM7u5L-vn5qkAJYEvhYYjKv48nU,15665
147
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h,sha256=sWcEKNsBoJZjwzCxs2fFBoFHWs98t_O_dqgGVGlr98A,10323
148
+ xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaUndefines.h,sha256=h_GKsob90mMjq2whijQ_1t-0SL8mczn4bCxbceohs-U,1267
149
+ xtgeo/include/eigen3/unsupported/Eigen/src/MatrixFunctions/StemFunction.h,sha256=miLQKd7KREzDLyowz_w5RLNzVnkZYZktXGBTbVHnpqY,2107
150
+ xtgeo/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h,sha256=CeS7w8GulltaRbOoSLpsoq5xckx3eY8M8TxsTzIbtsY,17557
151
+ xtgeo/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h,sha256=BqfTBmNMEY2OnRP1M1YeAtq-tEpbfOz-iyn5g3WcZgY,22671
152
+ xtgeo/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h,sha256=EWm8EtYBChlL0T5iPw6JzfWUyqgf83mAnrvnlQxgMAM,23422
153
+ xtgeo/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h,sha256=4VMXm1XxmPX9JT0bCxm8iDc1ZUd3Hgr6y8BQbov6ae0,16624
154
+ xtgeo/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h,sha256=XGPxWB_qYfgRNfSh6aJfmRmP80Nyu5-A-UJDc-GXXG0,14212
155
+ xtgeo/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h,sha256=3861KPmZul5eqmieVFa6UOEb7EEfFTmzcTZ4vdPfwKw,2443
156
+ xtgeo/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h,sha256=OrzX6r3ucnhAKYV0GZK5vRwYwRXbFLb_6eXWCvHUHu0,13297
157
+ xtgeo/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h,sha256=X8Hp0NjyDcM44QHVLxERctOh4oBuf6MnPa0wNNOPP_0,5039
158
+ xtgeo/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h,sha256=SVX8VtyVjtXR21TUYmPIsAxoBSrg15xMSCXvPungmfk,6805
159
+ xtgeo/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h,sha256=WLy1LKU3ZEdAvzwmjOJJand-zDhs8L-dTPlSSBwGm0A,6648
160
+ xtgeo/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h,sha256=QZypzAIn7nVD2j1ijHABcG_r5mZB83yWrx9zz9P7_-g,3150
161
+ xtgeo/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h,sha256=3ASXjMyKTFAiqIOp2w8t7cnwYZjC6zupSPhpBMnetGk,29107
162
+ xtgeo/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h,sha256=BUUppj6gBbafJyskMB9NiEKCh6w4uI2MNj4WcQdt9JA,9029
163
+ xtgeo/include/eigen3/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h,sha256=F2-06NuiIz9xbodtAPabcEjDAlwCWSqpRX6pDUJYaZQ,4020
164
+ xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/chkder.h,sha256=ekTgbDavtmwk1np038GOnszLUXehuC2IR6L4hVGPpYE,1864
165
+ xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h,sha256=yOm0LkW4Cmh63N9gVs0uzZuQc3DS5oPdhXs_n2CMfP8,1362
166
+ xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h,sha256=tLZ1nOct4MM0P2950Fitz-lAZE069R2DCd3mEKXHEPE,2225
167
+ xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/dogleg.h,sha256=zcnhLi61hNfU2qXjDCafv63s4XyMo-6lfjwKpSPZiz8,3297
168
+ xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1updt.h,sha256=cv6OB4jn92DgmHQvTZran0mWrTrMFt-HAwra8rCBr84,3083
169
+ xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h,sha256=Ts4lRyhRGqIgYt0F0KHYTgQkwhZM-3cVVqzDWJT7pO8,3264
170
+ xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h,sha256=IZGBCI0OFeRw11kxK-6SWbv1OjcuvPmVdZXX25HlKow,19837
171
+ xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h,sha256=EX5a42pa-csg8hdNHYRD12i43quK0R9tiiGyjm8_RPk,22135
172
+ xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/lmpar.h,sha256=GPlcAfAiTZM3xz-1hOk2n2yDQfeQAx0XKWWroUzEk8M,9111
173
+ xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h,sha256=ase7D9EC6urVxmnIE236LhYt5RO8hVXRsSi40lFrmZQ,1081
174
+ xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/covar.h,sha256=VIACbf3Qws3s9aX3zNi5Qs_sZnehOxbWFUw16AxqjBU,1915
175
+ xtgeo/include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrix.h,sha256=HO4DaD0GvMBFs1KGF6s_LQjF7uHdWzUBCkYOCEXGaXQ,31105
176
+ xtgeo/include/eigen3/unsupported/Eigen/src/Skyline/SkylineStorage.h,sha256=NeTIELs1qr7wncZR9-bVi3D1hx5XAGvUhL-QqMuCGJw,7966
177
+ xtgeo/include/eigen3/unsupported/Eigen/src/Skyline/SkylineUtil.h,sha256=nzSvAIY_FB2yHCF7F6wlOaNS_jHFn_5rDRboOCBU-N8,3153
178
+ xtgeo/include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrixBase.h,sha256=DG2IyvFBkJd0MV4SW2FmAR4OrjA8Inyj_9edIKhQeg8,7837
179
+ xtgeo/include/eigen3/unsupported/Eigen/src/Skyline/SkylineInplaceLU.h,sha256=TiXysVkvUxMkNVYJ6HoKZMNtW5w26L5x-dIeeKd-u0I,11365
180
+ xtgeo/include/eigen3/unsupported/Eigen/src/Skyline/SkylineProduct.h,sha256=6ctI1SByG2gtW5TkN42RK9DxMXV7MQ-FrQ2-low1sFw,10853
181
+ xtgeo/include/eigen3/unsupported/Eigen/src/BVH/BVAlgorithms.h,sha256=KC5tUH2aPlxujvipHIQ8EcHgW0LxNnVoUsOHLLQXl1E,12976
182
+ xtgeo/include/eigen3/unsupported/Eigen/src/BVH/KdBVH.h,sha256=JepM0MGrChNUl_HKK3W9NqrN7d4et6o5bska2VC7Nkk,9166
183
+ xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h,sha256=I_w1eMg2Vj4oGaneCm-8RkJIa5PP0uTfN-V-DbQ-i0Q,7694
184
+ xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsPacketMath.h,sha256=JOkhD4nKiilVJGXFH5jwgUleZeo8-fN0Jtwm-ngPCEI,4006
185
+ xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h,sha256=G52H8od73SPwkc9MuWfQzh1AGEWexaq6dknvxo1UOa4,11700
186
+ xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h,sha256=8DmWTG4ZRRhYHl3vTcBUyuFqFvvcC-_mI73VpFkV0_g,2899
187
+ xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsImpl.h,sha256=mzyC6HJpMPxXLWDnK-DdbXaTMt5iISJ0w2JIFDPq1jI,69632
188
+ xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsBFloat16.h,sha256=9AtJ3B3Vh4KR5Hw_xjuu7qorosrLHL_SyInkbnFkPUI,2724
189
+ xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsHalf.h,sha256=EQ9GIVk1Qn-SYsxFoMq3bc3-NMYbz0u8lT3_zjcTMUg,2544
190
+ xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/HipVectorCompatibility.h,sha256=WPG2nDebvmaL53MJfGBMKJnYianOg9R8COyj57ucoNs,2489
191
+ xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsBFloat16.h,sha256=8pO6VVzTA8YYiBrOjFzkJHVd_eYdoHivMs9VvunlJ0g,3087
192
+ xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h,sha256=ZqP8O4jjSyEPIrGot9XcudNuZ76ram9JHeYP5InANto,3713
193
+ xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsArrayAPI.h,sha256=Kf40ZDBOkbqVBoFKrTk0eq9JfjJysrauDwZfR7m-Dq8,10015
194
+ xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h,sha256=l8OCgPHSsr8C-rSdDdT_lHkg80LIYiz6Kakk1NHiF_s,58539
195
+ xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsFunctors.h,sha256=D4A35TA2kOmpqbc6r1DNyWPU-P3SVEkOsM_cpRGnP6o,12641
196
+ xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/GPU/SpecialFunctions.h,sha256=8qB-xEPrv2Rrk96jP61XHo7RVby0mtFB5t0kSoofJJo,10864
197
+ xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/BesselFunctions.h,sha256=YkBb2bDAmHgfDP-Fbok-Z0_8YnQX2YZFu-oPYMMvuwo,1549
198
+ xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/SpecialFunctions.h,sha256=AlI_TVRNWqXdobwYewoBiKYw5M9Ivm0leDXN9dv22bw,415
199
+ xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX/BesselFunctions.h,sha256=c8n4ryTNSc3GaLoLt7kSDzMpZpq3RE5dXyqHIGa4YhA,1492
200
+ xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX/SpecialFunctions.h,sha256=VihlVEXAV31rLXjBdWBFcFNVMo6dFjMJaGIJZ1DwXt8,398
201
+ xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/NEON/BesselFunctions.h,sha256=6HWKDWP2TlnaAJ7w2f5WLUc2CsrYeXeWWuNzuJBlGCw,2258
202
+ xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/NEON/SpecialFunctions.h,sha256=G2EXLzIKd6E_XKOcplAvPBBFGKlco-CcjErDtU3STgM,1283
203
+ xtgeo/include/eigen3/unsupported/Eigen/src/Splines/SplineFwd.h,sha256=5K91T9EDnVCqWxNogT4GN6g3ieIx9uoJ3_4Y-UkBeF0,4312
204
+ xtgeo/include/eigen3/unsupported/Eigen/src/Splines/Spline.h,sha256=5ma22NIaePRM3TJ8-XwYjlB1kaKsD41mR58qbXoHGX8,18307
205
+ xtgeo/include/eigen3/unsupported/Eigen/src/Splines/SplineFitting.h,sha256=rsHZiQKOqWBd-ptCJyOP2Ju5uDc9Vm7V8SoUJQcSUR8,16505
206
+ xtgeo/include/eigen3/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h,sha256=VRwDAMV982CT3_mhflFauUM5YtFrmzAV5sWg1QtG7Bw,10250
207
+ xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/MINRES.h,sha256=Uni6UBQGxPuGIHTW9BHUJ2rizd6upNLIJRv_pK8nS_E,12397
208
+ xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h,sha256=pmqiXGJVZEIPY6-ZwXSQYdJAJMrcBQ54ek4rPMBpjF4,2520
209
+ xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IterationController.h,sha256=gVYjeim_7Jv8a7L51hmfuwx8LDR7rkJKfIt7YmSqCaI,5360
210
+ xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h,sha256=LuB99ry7J9S7bULsa6_DPEr-qDaEYZO_kosGXbL9ZGc,5324
211
+ xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/Scaling.h,sha256=MaTFK_qJ_dlLbVZDGkl37saxJjPRnCNckyAPii9211c,5853
212
+ xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IDRS.h,sha256=N-ejEklWLwyjWdq9M5hrbdZ1qu4gvH3ZOZO--48w7zQ,14794
213
+ xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/GMRES.h,sha256=Ur4IEqJYOyufUiE1Y-RQsU0uBrTyOtWzkdxLzw6TIgc,10209
214
+ xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/DGMRES.h,sha256=C-CKdZ532DCdXPN_pqXuRT7oNSsoh437FeyZGJGA5fA,17769
215
+ xtgeo/include/eigen3/unsupported/Eigen/src/FFT/ei_kissfft_impl.h,sha256=qg3459MDUw87zKzppGPrdjRuejMHx4EGwVQPdMcYaak,13231
216
+ xtgeo/include/eigen3/unsupported/Eigen/src/FFT/ei_fftw_impl.h,sha256=jAwJ-5qrWTN1cxjb9PVMhrtNmrKMtwkmhtQLxdk5B_A,9223
217
+ xtgeo/include/eigen3/unsupported/Eigen/src/EulerAngles/EulerAngles.h,sha256=tHTm2bx0gfekjjjftB469Pc7py_fytUOdLQyGKSYvFY,15367
218
+ xtgeo/include/eigen3/unsupported/Eigen/src/EulerAngles/EulerSystem.h,sha256=WrVhaQaZI7IGFXWeEyKFvYMiDt561U7krtHt7nvGmhE,11620
219
+ xtgeo/include/eigen3/unsupported/Eigen/src/SparseExtra/MarketIO.h,sha256=tCyF0jLS14MEEJUuI0i8EKlNS19l9R-d2VGmh0czQPo,8416
220
+ xtgeo/include/eigen3/unsupported/Eigen/src/SparseExtra/RandomSetter.h,sha256=XNlXE1Cxl_dVtYyncSgc1kfZm8wZtC6tDQK6f4tnM24,12423
221
+ xtgeo/include/eigen3/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h,sha256=2br3yTbdDWYnO10pwIz04IWjI6tfvakm2m6GHcD9DJE,7568
222
+ xtgeo/include/eigen3/unsupported/Eigen/src/SparseExtra/BlockOfDynamicSparseMatrix.h,sha256=sxDlDRTN8iyJmgxU8DSbex6Pq85uVZJBzFvHPOzc1Hc,4260
223
+ xtgeo/include/eigen3/unsupported/Eigen/src/SparseExtra/DynamicSparseMatrix.h,sha256=KbvbexyA5RDhN7ZoNd5BAEaWExmx8TRfazwr7V0iO6A,13744
224
+ xtgeo/include/eigen3/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h,sha256=rRTMEqMi4YkaLKEKZLCCIbaduguCGNKvV05yEw96plg,40316
225
+ xtgeo/include/eigen3/unsupported/Eigen/src/Polynomials/Companion.h,sha256=506CxMZQBSlOuz38RHe09Se0n7sgdfS0ijk3u_oopeo,8076
226
+ xtgeo/include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialSolver.h,sha256=MRjomFFxY_I1ZXFg-DcOLFOzjf6zh1Cq2ZtFUDsAqkQ,15683
227
+ xtgeo/include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialUtils.h,sha256=88IWHmW0IJrcuET1UHjgTe-w2x8Q9Udu0KteZF4j4GA,4806
228
+ xtgeo/include/eigen3/unsupported/Eigen/src/MoreVectorization/MathFunctions.h,sha256=U_3E8Izg7JDdG59MKbVxiB0nZQgLU8YXeS1WrRbcoEs,3035
229
+ xtgeo/include/eigen3/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h,sha256=EiAVvN_GHZ81BReFVBUEBA2q0Kh6kza0qugAJyaPoPU,29075
230
+ xtgeo/include/eigen3/Eigen/CholmodSupport,sha256=JvDRvQZ3eFOU8fTrLN33Y0I_cDwJQbPlg3PpVbATAyc,1900
231
+ xtgeo/include/eigen3/Eigen/StdVector,sha256=fosQYHV6EUApj_OQXfcO21mtEIP1BWgd8w3J3Jlj2Ks,803
232
+ xtgeo/include/eigen3/Eigen/StdDeque,sha256=wYhRZ6RHglq3w1VzQiw--iPexi9bYwrDIv_mWODuUkI,797
233
+ xtgeo/include/eigen3/Eigen/Core,sha256=uK5fd6MNSLyvYipW9wR7qosvt5D123Nhqh1X9CT6PB4,12799
234
+ xtgeo/include/eigen3/Eigen/SparseLU,sha256=XnRux2MFSTHxbt5cWIqrK0TXVf69rymfXuTMoDRqhbY,1814
235
+ xtgeo/include/eigen3/Eigen/OrderingMethods,sha256=JfrIHKwzWAF-Tcsg-Tr9D5zmXWBBN28v9dlv2dCEvXI,2451
236
+ xtgeo/include/eigen3/Eigen/QtAlignedMalloc,sha256=xGYpHG59Iw6Ldrclza0e2Cwkm_AfXsO8tvP2UB7Q_5c,900
237
+ xtgeo/include/eigen3/Eigen/Householder,sha256=GhjqJlnbFc6T3g9a_xNaU2r5cB2pr08CZxDlbe8jpVk,829
238
+ xtgeo/include/eigen3/Eigen/PardisoSupport,sha256=UOxQA985n6v1GGIOIg9xxxf_OgOnIYuGUKl03DrQaxU,1116
239
+ xtgeo/include/eigen3/Eigen/SparseCore,sha256=IyPB4xed_Gq_NIFht4wb9ezQyqj0UscMrKmhzf3Wpq4,2240
240
+ xtgeo/include/eigen3/Eigen/Jacobi,sha256=rzAgyRuOktBzTBE_sVEdlqDWsFgSiRHYmOAXdiijWMg,894
241
+ xtgeo/include/eigen3/Eigen/Dense,sha256=UyXJ1NaT5QTuASxSda1LELE1pwHL2HwURm0uoh6iLuU,122
242
+ xtgeo/include/eigen3/Eigen/SPQRSupport,sha256=T6LXO5mMB5RoLWPf-__3lb6kGn0YZlhAscNX5m_xyJ0,1162
243
+ xtgeo/include/eigen3/Eigen/QR,sha256=53rhAQ6d8dyw5ah1YEjDiAzrAjcR6NG1aeAbA58TCCA,1272
244
+ xtgeo/include/eigen3/Eigen/Eigen,sha256=sEc7XXwM2TEdSpBUgWLozxYJBEdocff7dJ6WJOmz39E,35
245
+ xtgeo/include/eigen3/Eigen/SparseQR,sha256=dDNFiuAILyaqw7VE8I5XGKXRIsR5qTFCUrQRzPHZuPs,1195
246
+ xtgeo/include/eigen3/Eigen/SVD,sha256=EVWjLv1mTLQzM6NPqKy8vCb6M62u3-6OIO3fZ0Nq6IY,1584
247
+ xtgeo/include/eigen3/Eigen/Cholesky,sha256=SMcsLXuY_bRRZ10u4DhQ7P3JfqQbzlXtdUsD2kqwm9A,1161
248
+ xtgeo/include/eigen3/Eigen/UmfPackSupport,sha256=AD1B-gjN5oscRphJn6m_nIA867J650hhWFFRn0LcVqw,1382
249
+ xtgeo/include/eigen3/Eigen/IterativeLinearSolvers,sha256=hP-jisHvO-AFv_UAt4tSnB4WT8UGN4Nv-GSP6hJ7dPc,2083
250
+ xtgeo/include/eigen3/Eigen/LU,sha256=0A-rF2kizdSiMf8z6tWPwtshqdkwNLz3ugwqNRplS6Q,1268
251
+ xtgeo/include/eigen3/Eigen/Sparse,sha256=vjUbbuZSp6IOOVPQ6uIW1NAcLCa6e2pGS_kI2zRJkHs,888
252
+ xtgeo/include/eigen3/Eigen/Geometry,sha256=84oUXuUT0fp1v8_HlPvEfJ3mWjr12ftxngV6xjMCwvg,1940
253
+ xtgeo/include/eigen3/Eigen/SuperLUSupport,sha256=iqYB8_oea_wDt5lma_OevELUSRel-yqqSJvq_WOQH3I,2243
254
+ xtgeo/include/eigen3/Eigen/StdList,sha256=A1QOKXrpbtA-go2aQzu39aXpOqg8b1CmwnHHj5KD1mc,726
255
+ xtgeo/include/eigen3/Eigen/MetisSupport,sha256=5G1R0wZZYkCKQDSA8snK1OfWH7UJweSmlSdHUSdJaaI,991
256
+ xtgeo/include/eigen3/Eigen/SparseCholesky,sha256=bjZKchFd6lcGHhNqbsgEzyHF0815qkQ5_Ss1L1id6ps,1235
257
+ xtgeo/include/eigen3/Eigen/Eigenvalues,sha256=8ZWKms880-H1GNhx19xgLoEBszzjUAi47o4XIIRb2gc,1777
258
+ xtgeo/include/eigen3/Eigen/PaStiXSupport,sha256=9CO5Vxa4BPlSEjTfvFitGi-tmhb4S88W3wu4iu7MhUM,1751
259
+ xtgeo/include/eigen3/Eigen/KLUSupport,sha256=vEYx66RCVNLRAih_AcArDKeTKRyXa1CbfDUoFX_tL2Q,1389
260
+ xtgeo/include/eigen3/Eigen/src/CholmodSupport/CholmodSupport.h,sha256=_XiNvLNTzR8Oyp-m_2V2CzNY-7RF7n3v7x-nyYNKXnk,25441
261
+ xtgeo/include/eigen3/Eigen/src/misc/blas.h,sha256=dOWodSZy7a3ZNjf23H_rilBCfqlPmsXR7VbcLa4PrWc,30560
262
+ xtgeo/include/eigen3/Eigen/src/misc/lapacke.h,sha256=Bmc-lq9luQfIPUJJW3VDYbQr2_nvxjU9UfLnAjlsrrc,1058369
263
+ xtgeo/include/eigen3/Eigen/src/misc/Kernel.h,sha256=IIiRDtPS_STfPS980xZLyEV8eCqOAFi39K3yKKHT7ro,2742
264
+ xtgeo/include/eigen3/Eigen/src/misc/RealSvd2x2.h,sha256=X-B5X0XNkqCbSMAiWe90O6y76G-JDLDAclwMA_tWiGo,1748
265
+ xtgeo/include/eigen3/Eigen/src/misc/Image.h,sha256=-Pn7ZkwUYgVhdflW2Td77dFQ6MRfuJo570RjtjaGxKE,2913
266
+ xtgeo/include/eigen3/Eigen/src/misc/lapack.h,sha256=_9_gqkbLMiEgKp8lguOez21a1mYmzf1w9AmFlSHWg0Y,7834
267
+ xtgeo/include/eigen3/Eigen/src/misc/lapacke_mangling.h,sha256=fXH97lOh4M0BVoq6LxUvLh5Pu4SehNdA47Ax6Bn7-iI,474
268
+ xtgeo/include/eigen3/Eigen/src/Core/Reverse.h,sha256=lmCGSuTPyF3sQNgueaWYtx5cWPUwNL3TDHQJPFq5oVQ,7522
269
+ xtgeo/include/eigen3/Eigen/src/Core/ConditionEstimator.h,sha256=uSdt-5gLRfIu3k4I7uRH9eAIR0AOZvJnlnaSIz5CTCc,6990
270
+ xtgeo/include/eigen3/Eigen/src/Core/PermutationMatrix.h,sha256=xOo3Hcj9crxhDZe56OJB2XZcCNjWqT5m2FH8CVzZzmA,20748
271
+ xtgeo/include/eigen3/Eigen/src/Core/Assign.h,sha256=dKQAmY90XhiXo_Kd4MHxDmrS6XJp9ylFq7JZ5mF_O2I,2738
272
+ xtgeo/include/eigen3/Eigen/src/Core/MathFunctionsImpl.h,sha256=lvc1eFdCOZ_8YQmm2KQb8jknibWnE8nL-y8Il2dJEkc,7156
273
+ xtgeo/include/eigen3/Eigen/src/Core/CwiseUnaryOp.h,sha256=ptT-VJWaOq0EShXxJmiLRFujF8jNj2DDpOGGMuMBXJA,3937
274
+ xtgeo/include/eigen3/Eigen/src/Core/DiagonalMatrix.h,sha256=Kg1DVgs8zq-jetJsx7RKlRVF5WqH0X54uJbG0GPGRxg,14670
275
+ xtgeo/include/eigen3/Eigen/src/Core/StlIterators.h,sha256=yudREy61voHxl0k2-akEGTWqipHX0AZbSDAeTPV7EMQ,21641
276
+ xtgeo/include/eigen3/Eigen/src/Core/VectorBlock.h,sha256=1_VF-6FHnjOeMEB5nsGgAIskLLr7RWEAy5XnzWRYa0k,3488
277
+ xtgeo/include/eigen3/Eigen/src/Core/ReturnByValue.h,sha256=ijhUmPC6DGdGb-FRr0LlU3vTxddbidQLc7wQPHcwlmU,4284
278
+ xtgeo/include/eigen3/Eigen/src/Core/Solve.h,sha256=0UEeTDezRD00It_7piJacK4Yaw7ZCj8Ju-wUcn7fhvI,6837
279
+ xtgeo/include/eigen3/Eigen/src/Core/ArithmeticSequence.h,sha256=8vgcI6huL7rFhH2DSPfdEPD-OYEoNNNLVERuG8pE-68,19214
280
+ xtgeo/include/eigen3/Eigen/src/Core/Product.h,sha256=R5WGCVcHEtjAZsjnUp_OM0bwzHlKzNOQ91PZcD1IQs8,7336
281
+ xtgeo/include/eigen3/Eigen/src/Core/MatrixBase.h,sha256=P8p3jdYQkj98CJ_m9j5gAAXxT-3BVoUVkfypmaKOWSs,23856
282
+ xtgeo/include/eigen3/Eigen/src/Core/Stride.h,sha256=XvhjHxIi1JnpwnMmbsu4B3iRJosg3RHHv1foOz-3w30,4212
283
+ xtgeo/include/eigen3/Eigen/src/Core/Map.h,sha256=N9PDYRqEYInLMKDXjd3EXTIphbtj-k31aA9vM8AWoHs,7256
284
+ xtgeo/include/eigen3/Eigen/src/Core/ForceAlignedAccess.h,sha256=g5uk6NSZjvNzhM24_mbkq6A3rvqCTaxjsQLwFrNnAXU,4909
285
+ xtgeo/include/eigen3/Eigen/src/Core/MathFunctions.h,sha256=s8bNFz1KyHnlaKxXCAQt0LsWCAXGupxV2gXIE0ZW91g,60784
286
+ xtgeo/include/eigen3/Eigen/src/Core/SelfCwiseBinaryOp.h,sha256=TQ8CFAN4yP0ouwXS8T3FDdhnvbwt3c4iP-N7gtvxerU,1697
287
+ xtgeo/include/eigen3/Eigen/src/Core/BandMatrix.h,sha256=ZusMpQuT9NzcCDqiH0Md2QUsMZkRNW2QJVdvDNnGyJM,14075
288
+ xtgeo/include/eigen3/Eigen/src/Core/Inverse.h,sha256=Xu8vJuEFNJiB6xQIzC62dLJkySTUW6P2v867yt_msQw,3503
289
+ xtgeo/include/eigen3/Eigen/src/Core/Assign_MKL.h,sha256=dPYwhbhTcHKTPsFzuRtDcL7RUXeMZDWicqlBtnj4tJA,12488
290
+ xtgeo/include/eigen3/Eigen/src/Core/Swap.h,sha256=cq3ST1UzR38ao94FITvncu7qmhPWfbgtAvdPzOUB6kA,2765
291
+ xtgeo/include/eigen3/Eigen/src/Core/ProductEvaluators.h,sha256=2IY694zzCciY008Oizi7TBs3C1YipIBkIR9bOwrZHrA,53832
292
+ xtgeo/include/eigen3/Eigen/src/Core/MapBase.h,sha256=7uz3jWkieES7KRTck21U22rNn6jvjQ4pqScrhJON4aA,11281
293
+ xtgeo/include/eigen3/Eigen/src/Core/Matrix.h,sha256=_YTfwccLBClS0pnznwVpT4LKHxfKAT6zNnV6PPcebRE,24343
294
+ xtgeo/include/eigen3/Eigen/src/Core/EigenBase.h,sha256=9nQxmKrOAik2Su84QtekyuxMZIJoES1dyIdQ0TnwJho,5841
295
+ xtgeo/include/eigen3/Eigen/src/Core/StableNorm.h,sha256=SI5NEBo9ABOxkbgMGPwcQumIczthCbcEv6QMz3fT0Yc,8700
296
+ xtgeo/include/eigen3/Eigen/src/Core/GenericPacketMath.h,sha256=FatABDPfUC3DlhmTRVtWPFXV-kfFqTIE0SrSp5cwr90,38812
297
+ xtgeo/include/eigen3/Eigen/src/Core/CwiseBinaryOp.h,sha256=AxbMB-jrRUh65PJDJ5EWjhwTQHEgAU67P0FhP_xuMCw,7909
298
+ xtgeo/include/eigen3/Eigen/src/Core/Visitor.h,sha256=0y8bT7AGWjEr8TooYc88PS_wjSvvStiwFLUAYa6IAqQ,11997
299
+ xtgeo/include/eigen3/Eigen/src/Core/DenseStorage.h,sha256=I16S84EpH_dd3j9b2Djc9-TGyAuoOUBVDib37kt8DIg,25360
300
+ xtgeo/include/eigen3/Eigen/src/Core/DiagonalProduct.h,sha256=_6cfNHpZFMnpNB6oK7Qr97b3uNBFS8F7xWKa3bghOMs,988
301
+ xtgeo/include/eigen3/Eigen/src/Core/CwiseUnaryView.h,sha256=5ZqmH2GmdTLUproXOERwPH6Y4o17jH6c7gqp0w1rlnU,5551
302
+ xtgeo/include/eigen3/Eigen/src/Core/NoAlias.h,sha256=Ip1s5MuKGSHKzWNPb-ZOaYxUB3MCSHxiICuEWnRGYY0,3620
303
+ xtgeo/include/eigen3/Eigen/src/Core/DenseCoeffsBase.h,sha256=shKz8IklvEP3gDcJl28Iz0qD2t1UXVWLqRWZ6SoAllk,24484
304
+ xtgeo/include/eigen3/Eigen/src/Core/PartialReduxEvaluator.h,sha256=hj7Bxbfe3LjOvaTLnDi2_HfcddIpDb_yw5p9uYzjOjg,9207
305
+ xtgeo/include/eigen3/Eigen/src/Core/IndexedView.h,sha256=X6kQiPumLzTPCrTmy7q6iKNrfEsZXebS9nyW4pPzL-w,9620
306
+ xtgeo/include/eigen3/Eigen/src/Core/Fuzzy.h,sha256=TaSjzj16hbMNNZd2WEFeSKTBBR7Wuh3Uxhy8jTUAJ9M,5759
307
+ xtgeo/include/eigen3/Eigen/src/Core/TriangularMatrix.h,sha256=zEwgkLv57QKwo2EpgJ-yw5oy0r0u_qBdDeux6v6EgRE,38277
308
+ xtgeo/include/eigen3/Eigen/src/Core/IO.h,sha256=iaTrSS9KSgqeIe_2ZmODFS0PRe-C1KGHnmEnfa-0rU8,8238
309
+ xtgeo/include/eigen3/Eigen/src/Core/Array.h,sha256=39fKPydmTk45GiUd5NpStFdQf8lCUWohqz6Ln6T-jaQ,16782
310
+ xtgeo/include/eigen3/Eigen/src/Core/SolverBase.h,sha256=M57lChZDARbiviOylEHsf7kLc_8r9r6KOeHHT7Phca4,6170
311
+ xtgeo/include/eigen3/Eigen/src/Core/AssignEvaluator.h,sha256=E5UBHDUEfSI5Oeas89CW6DrsdhKG6aEJZ0pbdeBtZaM,41673
312
+ xtgeo/include/eigen3/Eigen/src/Core/Replicate.h,sha256=b3eh2lzUvOvhy7kNUv1_wj0ZpG6LG48qgI7Q7L-b2-4,5656
313
+ xtgeo/include/eigen3/Eigen/src/Core/CoreIterators.h,sha256=MLxTh9kMqEHm7IVobSElMYoZ1P2qBah_rm_6sISPdJo,4745
314
+ xtgeo/include/eigen3/Eigen/src/Core/ArrayBase.h,sha256=h6XAellrUiXUmw2iWF2B0Ub38jt6DaeiDFHrW3Rq_F4,8217
315
+ xtgeo/include/eigen3/Eigen/src/Core/Block.h,sha256=EJKGf-xoAEOIsLo403rWA8x8tdA03Ci2_jqC6SrYiK0,18648
316
+ xtgeo/include/eigen3/Eigen/src/Core/Dot.h,sha256=SVnXKm92-UFx5WJF5zMtVVp3UdKdy-BLOq6iyEGODvU,11654
317
+ xtgeo/include/eigen3/Eigen/src/Core/PlainObjectBase.h,sha256=-qVMt5_XTbX9X7PG9g_CUjmOvDUp6WB8_eIjIkQWIzU,49193
318
+ xtgeo/include/eigen3/Eigen/src/Core/SelfAdjointView.h,sha256=awX8Mcrm-Ubbf89EOe-hPrIc2bGQOueRDMdKYRuV9o8,14999
319
+ xtgeo/include/eigen3/Eigen/src/Core/GeneralProduct.h,sha256=u3pQ7qYb-HzruMX_JVPjZB4ed9YvVhg44SZb9CrIg6A,21679
320
+ xtgeo/include/eigen3/Eigen/src/Core/SolveTriangular.h,sha256=8psntHTv5Wkru_Hxhj8N20zPA54-2gJ5b1TDOInchqE,9368
321
+ xtgeo/include/eigen3/Eigen/src/Core/CoreEvaluators.h,sha256=6J0oxusVbLZZ9YqGGX_eJArEyGEaPdKRHkGipw0CejM,63841
322
+ xtgeo/include/eigen3/Eigen/src/Core/CwiseNullaryOp.h,sha256=cPW5ApD9Ddx10LNh324u_0-7vZl_W4kyFArFgYAgJN8,36282
323
+ xtgeo/include/eigen3/Eigen/src/Core/VectorwiseOp.h,sha256=taEMnk7xoASOi9F-UUNUseFkex1wDVkHbB-jTs8EvD0,35168
324
+ xtgeo/include/eigen3/Eigen/src/Core/ArrayWrapper.h,sha256=i9CnjmTAjDy95K81Nv_m4GKhLOnHMhxDoUaXBKk3zOQ,7018
325
+ xtgeo/include/eigen3/Eigen/src/Core/BooleanRedux.h,sha256=Udvh6C02Obp9MLeU4KmYLPizv5iZVWiJcNS81yPHCqU,4429
326
+ xtgeo/include/eigen3/Eigen/src/Core/Transpositions.h,sha256=OQ83uchr7R8XCMX3eGtGCWZYIDcKQ3oiLaMgowx7mGc,13567
327
+ xtgeo/include/eigen3/Eigen/src/Core/NestByValue.h,sha256=XpO9qFQqjr-zIdyRmbEQpTri-48sIOELbyTkN5sKJ8s,2520
328
+ xtgeo/include/eigen3/Eigen/src/Core/Ref.h,sha256=9KCGVMNnveUblYknmVbCOht0eniluU60x-Q_Fq4mLrw,17821
329
+ xtgeo/include/eigen3/Eigen/src/Core/Reshaped.h,sha256=UQGxKCGDdGABPnCtstVC9eYjzdZUHTYEr2KNKnjefhQ,17033
330
+ xtgeo/include/eigen3/Eigen/src/Core/Transpose.h,sha256=qhBLL99zcYMdT87iOD3spTAMSYBbmaPIg-E_QLEiV1A,17606
331
+ xtgeo/include/eigen3/Eigen/src/Core/Redux.h,sha256=3Ntognx_kGOvdFyaDh6Fz1PApptn09SIATSi747R8_Y,19195
332
+ xtgeo/include/eigen3/Eigen/src/Core/NumTraits.h,sha256=YDlXi0wX8kTrbgsY8puAictK_71EMTZeT-iySCWRmfE,12884
333
+ xtgeo/include/eigen3/Eigen/src/Core/CommaInitializer.h,sha256=qAJ2QnYid9sBFKj070CQMDVIQSHVtO35pQ1cEOEaGyA,5981
334
+ xtgeo/include/eigen3/Eigen/src/Core/GlobalFunctions.h,sha256=NTFhnsI7k43_IwOaPw3Ykr5TP2PWgcfWWWZZ27CuMaI,11543
335
+ xtgeo/include/eigen3/Eigen/src/Core/Random.h,sha256=_JWxS-8mkmR8CJGyWQbKyYjpUZ5fcZ2w_Z5k4PrwpsI,7756
336
+ xtgeo/include/eigen3/Eigen/src/Core/Diagonal.h,sha256=DohU_IOblBq_OwllK1_sT6WnzTpErPy1J0p3c7abL_8,9870
337
+ xtgeo/include/eigen3/Eigen/src/Core/DenseBase.h,sha256=ho6oVZqhHldM5zShTqVvXOUDJ0ay1z9MjHkw-JxZgic,31529
338
+ xtgeo/include/eigen3/Eigen/src/Core/CwiseTernaryOp.h,sha256=l9ngPHPhoQE1LYsA7hkQE7a2rPAOkMiH3VS-pFUd574,8256
339
+ xtgeo/include/eigen3/Eigen/src/Core/Select.h,sha256=C5vueNWTUBIRCHeLutIDpGPYHHG_tc1zK4WcAmBaHrU,6143
340
+ xtgeo/include/eigen3/Eigen/src/Core/products/SelfadjointRank2Update.h,sha256=GjBksbLTUh8dSwIroBAzFAZd3pNmaGzgwq9y_AezhAY,4126
341
+ xtgeo/include/eigen3/Eigen/src/Core/products/GeneralBlockPanelKernel.h,sha256=sYJHOdyCm91ch9TiA1eUIw9eqOMAeXfjeDmeGVYrmPM,108448
342
+ xtgeo/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h,sha256=lz3gcCibomI0C11GP9WWJfLxJWkfozIuaeKPWNp8KoQ,6936
343
+ xtgeo/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h,sha256=ec1yDwUGvK3GAOot40BaRFdTbko1vrQHgWH3X3YTT2c,5106
344
+ xtgeo/include/eigen3/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h,sha256=mZtYGatUC0-bugfLV3Y81DPJy8H-pm4F2hKqQQZOdpM,6368
345
+ xtgeo/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix.h,sha256=33qhvQHkXEfnHqOM5XnYH1t5qlXe1A8haFgClGVk7CA,20104
346
+ xtgeo/include/eigen3/Eigen/src/Core/products/Parallelizer.h,sha256=LFS04pfAyxh-5HrsMZ7q00Om_P2z9BTUJ1i_1o_0k40,5582
347
+ xtgeo/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h,sha256=tBWrOcXAPqby8_dJumI0JLnx4PfqHn33HhYPLuOReW4,15948
348
+ xtgeo/include/eigen3/Eigen/src/Core/products/TriangularMatrixVector.h,sha256=pFx7Lk-jLFI3L51jXGWZoYRPkFPt2RCHdOZJcrC9yP4,14722
349
+ xtgeo/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector.h,sha256=X9VMtikMlDeHUmXltnN5f0zbbkXHkf4CR7QeCY4zEFU,9958
350
+ xtgeo/include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix.h,sha256=e755tKu-x4ef6xyEwr-SuOUDm6p6e8_u6d7LOr9URVA,14678
351
+ xtgeo/include/eigen3/Eigen/src/Core/products/GeneralMatrixVector.h,sha256=6ghVCEVie_PXwK0w7XBh1euVkLH7VI_T2P3pBnB7EfM,21724
352
+ xtgeo/include/eigen3/Eigen/src/Core/products/SelfadjointProduct.h,sha256=DkewFi5s_R2NwxTXy8EFUpk2sDqAL1RsEibRG2o42-Y,6164
353
+ xtgeo/include/eigen3/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h,sha256=SsT_NUCdiHXlevXOyArnxTe2QDTicg1AH766Tscmh0k,10571
354
+ xtgeo/include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h,sha256=sJu-wvyIjUQml9JtYlcfGpkbShLzR3SJMPNZLVN8Odo,13867
355
+ xtgeo/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h,sha256=EKrXRBTWeuks1FjFJn-ExEHdLD3oJs1PkzOqBCzHaxw,5209
356
+ xtgeo/include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h,sha256=2cKW56cfUCooBLv4pwS09ehmtZeNb5QWhcNUi6XmqEI,6707
357
+ xtgeo/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h,sha256=dO0QzTSlEY0DALfJHNCLv-VqyWWdGKOD640qrzoHDOw,11570
358
+ xtgeo/include/eigen3/Eigen/src/Core/products/TriangularSolverVector.h,sha256=X-vXZ8N5pXDF-RiweJD3XIe_muTWsPVlRW8nWzCNEL4,5882
359
+ xtgeo/include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix.h,sha256=inJs7op1I5ker51aTO8raRwxg5TWT0svVeE1iKWZ7RY,20987
360
+ xtgeo/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix.h,sha256=4gQBLDrdPARSB7Xk5-7qX4O_PanQxvfih6zqHFiksi0,21354
361
+ xtgeo/include/eigen3/Eigen/src/Core/util/NonMPL2.h,sha256=RekKBVaidiOpEb9sm8gcs9_LyeyC3OKOSvf4JV6l2tc,85
362
+ xtgeo/include/eigen3/Eigen/src/Core/util/ReshapedHelper.h,sha256=IiSNYQUioI1RXHJZb45ppb0PaTBUWphGxXXaVRGbNRI,1432
363
+ xtgeo/include/eigen3/Eigen/src/Core/util/BlasUtil.h,sha256=R4hliGvYhqOw9uIh_5uBG-N0InTR-iYMf71SWivFVxY,23156
364
+ xtgeo/include/eigen3/Eigen/src/Core/util/StaticAssert.h,sha256=FuzHTQMY4HyEd5nmdXqLTd13adbwcHehgKfe8-620b0,10676
365
+ xtgeo/include/eigen3/Eigen/src/Core/util/Constants.h,sha256=ttU2oem4zBxoX3xs95Tr5wpnIJk3D-V-R19soXOSNqA,21931
366
+ xtgeo/include/eigen3/Eigen/src/Core/util/XprHelper.h,sha256=91FpxKLKPlGo5qxCP_NK2Ce_cyZMy736OxGtGfjvEN4,35762
367
+ xtgeo/include/eigen3/Eigen/src/Core/util/MKL_support.h,sha256=SH8MIg1AuEGIdrXH2QMtNZc3TN_3kNQCLo9O6pMs9iA,4268
368
+ xtgeo/include/eigen3/Eigen/src/Core/util/Macros.h,sha256=jXMlm0ukgubb0Rsx2Ih_01DfsINnANMnk0Rrumqxrno,52909
369
+ xtgeo/include/eigen3/Eigen/src/Core/util/DisableStupidWarnings.h,sha256=Ytqy175AkKqgXj0sZYGySbc2Vya7dQbNyRBVL8g4bFU,4892
370
+ xtgeo/include/eigen3/Eigen/src/Core/util/SymbolicIndex.h,sha256=2x8GtyOpQZncKMYU5NkdJatRYS08G9cFYnN2_x0Mnv4,12003
371
+ xtgeo/include/eigen3/Eigen/src/Core/util/ForwardDeclarations.h,sha256=ZhdE6dxa1vvWMloGjxiNVqfUxTouV3vfAtIDLoP5NUE,15555
372
+ xtgeo/include/eigen3/Eigen/src/Core/util/Memory.h,sha256=4lVlqmrj5hLCa5LP5zGl35DX7fpme-W5h8KAHHCyyVw,46661
373
+ xtgeo/include/eigen3/Eigen/src/Core/util/Meta.h,sha256=TuaFXI83ZpuMhkgzQsVvmtBvLfxpq_5GkSmKjSqUQgI,29336
374
+ xtgeo/include/eigen3/Eigen/src/Core/util/ConfigureVectorization.h,sha256=Puw_386FDIesp7rEXOK_GJiASoReKalUjD6Y5Mgq01o,19876
375
+ xtgeo/include/eigen3/Eigen/src/Core/util/IntegralConstant.h,sha256=MsGgGP33vR824xB3MDJWbzUa_ztaANXyOeJNDCgJ7mk,10949
376
+ xtgeo/include/eigen3/Eigen/src/Core/util/ReenableStupidWarnings.h,sha256=4CANL3bylEgx4MEpc_qnL6uwRFu6_WXHrlFquM1nreU,1024
377
+ xtgeo/include/eigen3/Eigen/src/Core/util/IndexedViewHelper.h,sha256=6I-WuqgpdRGkOQAtI7CuMARenFQ4pLmzaA5BgtbittU,6696
378
+ xtgeo/include/eigen3/Eigen/src/Core/functors/UnaryFunctors.h,sha256=kFshHJT8zGBHriYmc8ZEq4KcgnXpi29LiXjHPLNJRio,40146
379
+ xtgeo/include/eigen3/Eigen/src/Core/functors/TernaryFunctors.h,sha256=D8PBqipa0vHKnNvPN6YzcSzARSsQftY_akzxDWcREWg,607
380
+ xtgeo/include/eigen3/Eigen/src/Core/functors/AssignmentFunctors.h,sha256=2PGxIkRB-s5e_kJx1zVGg-wWtcvo7InnxyjBP_hb8WA,6686
381
+ xtgeo/include/eigen3/Eigen/src/Core/functors/BinaryFunctors.h,sha256=CwfNbUDL-WVhgk64Cq5a9xnc_hxNNJsBEQCs21eCGZc,20921
382
+ xtgeo/include/eigen3/Eigen/src/Core/functors/StlFunctors.h,sha256=cYI-b8vomEe7fK7xnoN7Hu0cMkQs340QQQOIjE_-S7A,4998
383
+ xtgeo/include/eigen3/Eigen/src/Core/functors/NullaryFunctors.h,sha256=GQpjDoSCvAuUODxnubXXpB88JssQiU1UWXz949c7pws,8334
384
+ xtgeo/include/eigen3/Eigen/src/Core/arch/SSE/PacketMath.h,sha256=peCG6Wv3h2vZ2gxDEX9IJDXQTNy8TPnBBMFyRCmAQTA,64465
385
+ xtgeo/include/eigen3/Eigen/src/Core/arch/SSE/MathFunctions.h,sha256=cAcwShFbn0K0g-TiyoNqDsV41oqJo_kMBI3evwdGc-U,6765
386
+ xtgeo/include/eigen3/Eigen/src/Core/arch/SSE/TypeCasting.h,sha256=Uq2Z3RJeG1t7ZICopSGTROezDe9xwI_nTRQwSFaELmA,3650
387
+ xtgeo/include/eigen3/Eigen/src/Core/arch/SSE/Complex.h,sha256=h6bwXhEi-IZVCphcy3kVC-CZmTUtfLzoa77tZIohV6k,14251
388
+ xtgeo/include/eigen3/Eigen/src/Core/arch/GPU/PacketMath.h,sha256=2KKjUpwiDgzbxMXoRwB7Fg5Bs98NsGn9RWqgvd0LoD0,57047
389
+ xtgeo/include/eigen3/Eigen/src/Core/arch/GPU/MathFunctions.h,sha256=WNBXkzPWzZx-a9VYKr_u3A2mS80eARwiY8LdflRmT1c,2695
390
+ xtgeo/include/eigen3/Eigen/src/Core/arch/GPU/TypeCasting.h,sha256=HR1OOHLb9NmrIsW2dkRBgmWgpkHibWw0DUgJyqO8Lpg,2256
391
+ xtgeo/include/eigen3/Eigen/src/Core/arch/MSA/PacketMath.h,sha256=PaxsMC3KR2tfvd6eWHG3-vSEc_100mAsB-dIOiy4ZM4,33615
392
+ xtgeo/include/eigen3/Eigen/src/Core/arch/MSA/MathFunctions.h,sha256=8WDhQFA0s_u9LNZOh6J8DQ-vkAchObk3v263HzaYPyg,16159
393
+ xtgeo/include/eigen3/Eigen/src/Core/arch/MSA/Complex.h,sha256=mD175hijPLKuPWMgJG8Tn1c5uyUzdRLMJSzeY2SHkWQ,17541
394
+ xtgeo/include/eigen3/Eigen/src/Core/arch/CUDA/Complex.h,sha256=of74nv05x33Y09JHA06CnpMGnhKM--ya7wKOi5XHhu0,17317
395
+ xtgeo/include/eigen3/Eigen/src/Core/arch/ZVector/PacketMath.h,sha256=F01Hv3MIEyKand_VxS4kvVHMgyBC4YoaepnphPKiIXY,36894
396
+ xtgeo/include/eigen3/Eigen/src/Core/arch/ZVector/MathFunctions.h,sha256=AL5v8pbey2Oeuyd75kVVmD6O2q98waSnkKYnszN19Es,8024
397
+ xtgeo/include/eigen3/Eigen/src/Core/arch/ZVector/Complex.h,sha256=5kgD19Zhq9EwxI7PhkRBwLnA1cXD4uioUIo7h_DbLF8,16728
398
+ xtgeo/include/eigen3/Eigen/src/Core/arch/Default/Half.h,sha256=vN9CBcF-3crLwXXBpdGI2ys2yeUCmzgpB20F39pAb00,35534
399
+ xtgeo/include/eigen3/Eigen/src/Core/arch/Default/Settings.h,sha256=Qbh6le3EAOdUX3JzxZdCq8ld765sp82F-WLVGnqPt5A,1746
400
+ xtgeo/include/eigen3/Eigen/src/Core/arch/Default/TypeCasting.h,sha256=Tv47egCZ2kG0IEAACpxLkr1I77NblQXEU7Xz0wT7T3U,3746
401
+ xtgeo/include/eigen3/Eigen/src/Core/arch/Default/BFloat16.h,sha256=HD-vLoEqRj0L4cfaszaO3mr-hNNPBCwAe8Xa03Xpa9k,26903
402
+ xtgeo/include/eigen3/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h,sha256=a9Lk1ShhdtC4I3COGmmc9GlMt06_VPLdtngnDbXEZxc,3770
403
+ xtgeo/include/eigen3/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h,sha256=4-8jZykCpqD-85ybbFlSup7WnmoOsy8OzBMAT8ZgBS0,67696
404
+ xtgeo/include/eigen3/Eigen/src/Core/arch/Default/ConjHelper.h,sha256=-tVUil_T8-S8sW_ihUnuc8Ht5fnin2yQIr1NitPqpSA,5251
405
+ xtgeo/include/eigen3/Eigen/src/Core/arch/AVX512/PacketMath.h,sha256=OUFH_dw0sH2Keii8gKXt0fpe8_ZRAbU1bOFo0H9xwx8,87891
406
+ xtgeo/include/eigen3/Eigen/src/Core/arch/AVX512/MathFunctions.h,sha256=05V1fuacBbf_IQEpvX9UIHv4q2RJCaKC9RhMjDVuMkc,13344
407
+ xtgeo/include/eigen3/Eigen/src/Core/arch/AVX512/TypeCasting.h,sha256=dSDpOtpAFcs4vLQTWSNai66TbSU53_hs1K-naDF1Gjs,2134
408
+ xtgeo/include/eigen3/Eigen/src/Core/arch/AVX512/Complex.h,sha256=ugr3JzEmI5-3tHJRvigqfAue6meW37D3xBG-XzsJI8Q,17160
409
+ xtgeo/include/eigen3/Eigen/src/Core/arch/SVE/PacketMath.h,sha256=ExnP6wxeTf-muQEl0kGqp9aFrG6ZB1WERaEkRJxX6v8,21200
410
+ xtgeo/include/eigen3/Eigen/src/Core/arch/SVE/MathFunctions.h,sha256=ArIHSTscu776ZEoith1MvV16BxFAhvV3iLYdC4zYHjI,1194
411
+ xtgeo/include/eigen3/Eigen/src/Core/arch/SVE/TypeCasting.h,sha256=euzd4LBaPcZvuqE4w2WMiFyysQSYE_No9MdqGfO7vjQ,1351
412
+ xtgeo/include/eigen3/Eigen/src/Core/arch/HIP/hcc/math_constants.h,sha256=TYakFU7yBjjXKrL1hexh9sCIGQjZhqK0_7RO-pf5ckY,691
413
+ xtgeo/include/eigen3/Eigen/src/Core/arch/AVX/PacketMath.h,sha256=I0SozIfkw1iRU0p6x93nPgEpNeDNZWmbGO53u-aX_kA,64608
414
+ xtgeo/include/eigen3/Eigen/src/Core/arch/AVX/MathFunctions.h,sha256=c4oN-JVUz9ohpSw7pG5Hvf-eNRmceI3Y3U2bo8FZgQU,8102
415
+ xtgeo/include/eigen3/Eigen/src/Core/arch/AVX/TypeCasting.h,sha256=LKu4896ma5FgFwWLY-VC0hih7Y9Z7Dlv8hrjV0tZcmw,2564
416
+ xtgeo/include/eigen3/Eigen/src/Core/arch/AVX/Complex.h,sha256=TReBJLZKy19ZFalvKel_Lr49xEIICFGZvQksN8hBbxA,15223
417
+ xtgeo/include/eigen3/Eigen/src/Core/arch/SYCL/PacketMath.h,sha256=dZkkF8ku0zF__pcYkyFNCekEhg3xBi9NDPTmUDiwpLU,27786
418
+ xtgeo/include/eigen3/Eigen/src/Core/arch/SYCL/MathFunctions.h,sha256=Szum19_ng_oX-Tt_oykOHuEHsUkF88gV5OE36aMupD8,12539
419
+ xtgeo/include/eigen3/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h,sha256=IIOs2E1g5_iKaeuF-aC8ygJw6tb8KnDLzklMhkwGQ1k,21856
420
+ xtgeo/include/eigen3/Eigen/src/Core/arch/SYCL/InteropHeaders.h,sha256=2G5Noo9_d_MvJobezN9exX1zevfW_lo6lf63Y1j1OTQ,7428
421
+ xtgeo/include/eigen3/Eigen/src/Core/arch/SYCL/TypeCasting.h,sha256=B_oAog8UHkDn2lOO-DhVRoAaAWT2Wt5sBHWAIKC9_7o,2626
422
+ xtgeo/include/eigen3/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h,sha256=VNMQHhSfKRhI0RcKJhalOI8skbh4p08tMWPagiB-p6c,6815
423
+ xtgeo/include/eigen3/Eigen/src/Core/arch/NEON/PacketMath.h,sha256=PhMYCg3QG5ppvRfxeqhpw4xFFd8cyDBDuI9D2aExt18,189525
424
+ xtgeo/include/eigen3/Eigen/src/Core/arch/NEON/MathFunctions.h,sha256=jNj21p4bjGDqqIwPlR6rYZuOzpAzk9f5DXJqpIfagW4,3083
425
+ xtgeo/include/eigen3/Eigen/src/Core/arch/NEON/TypeCasting.h,sha256=c2yYt3iTKrpZFLQY_YEKE1V6LreGtdEec2goqfPucIE,51286
426
+ xtgeo/include/eigen3/Eigen/src/Core/arch/NEON/Complex.h,sha256=yyJ41YOVRLrIqws49Ddbi63_scdGqNavmXZv52Sv7fY,22503
427
+ xtgeo/include/eigen3/Eigen/src/Core/arch/AltiVec/PacketMath.h,sha256=oPYdaGjd2Dt3f1b3YAbzU5W73cgIz7_aDhzQ5-IeSi8,102394
428
+ xtgeo/include/eigen3/Eigen/src/Core/arch/AltiVec/MathFunctions.h,sha256=GkyOC20PLKzbUW2SJhPzqSvHf41jfZjcomaAZs4N10s,2323
429
+ xtgeo/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProduct.h,sha256=qH4IawNh5kCC5e2EeYvbh8l1BfYlySMO4rDAqWtOqsY,119355
430
+ xtgeo/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h,sha256=MRJTWUfUBVYsDs189H1oIBeoYwbK90anZxJ1w_Zqk9E,24820
431
+ xtgeo/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h,sha256=BOcTnv97OFhluX8S-H-c40gQEoupm9BqXPOq_PoJ-04,9490
432
+ xtgeo/include/eigen3/Eigen/src/Core/arch/AltiVec/Complex.h,sha256=CUSoZRzKfCXxeQfELlIb5y879_nskuYPPpAa34ADUeE,16540
433
+ xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_Utils.h,sha256=VfbLFtU8hQaZl3sijSs0KKJ1Ok4eH0kZwfSlAD1CchA,2049
434
+ xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_kernel_bmod.h,sha256=wsTY9YnpE064Zp-tp79vhsn31leV4rkHmVVkjQaVWCU,5723
435
+ xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_column_bmod.h,sha256=UEFzzPnZoMvp_q7hyaNJaMQaivnuKGgfU8OMcLkY9Eo,6712
436
+ xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_gemm_kernel.h,sha256=E0ypMty0CtJ9jyiQAlbsBrUdgU3t1IHhLXoq_29kP6I,10217
437
+ xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU.h,sha256=0jr8FVLqbXlYeSoQFJCA8z9Wp1gUZj-rM_8Zz7Dd4FM,33316
438
+ xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_column_dfs.h,sha256=_1ukmKpCiPxqLHP_sW7wwJF0f58LNzJmb12dl1duO3c,6584
439
+ xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_panel_dfs.h,sha256=HHxwbCV4bDeDVwo6Pl77jhTnCVAinCQ10m2ozi0_xDw,9028
440
+ xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_relax_snode.h,sha256=xmWkJ3HrCeYx_o2b7V1NtTwoskgt84Fzmg5OHO4ZJNY,2889
441
+ xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h,sha256=6H52qNW19OTAgaGACscVS30r9ZZjktHYzS4aEIxFPLk,4181
442
+ xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_panel_bmod.h,sha256=E0ZMPmU59QNrxZLBFDQafZpbW30yduzwYIJux419A10,8485
443
+ xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_Structs.h,sha256=iiBKapQJWGE1_1IYQg3G4Tifza4c_gcnUP1EeKg5RhQ,4974
444
+ xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_pruneL.h,sha256=xbkTSkO6Y2EGGHWy8zHDVbEgOUJjm_bQLbHV7OOhWbw,4545
445
+ xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h,sha256=xuejAH5T973lZoxXrfTfZMrp5d_GWWOEUzeSsqRaFjk,3681
446
+ xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_Memory.h,sha256=0RtpqZwv2VeoYnL1E_2W55Zf-Q8GJBfCGWKnJVSMNKo,7602
447
+ xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_pivotL.h,sha256=WtGmsoGD9gUhPImH2f4V3RfVeHbbyVghDsPtAhMwbFs,4979
448
+ xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLUImpl.h,sha256=xqFVMyyht4lOAPP36lz-OLTKDLLV4_abAlxAE358DkA,4303
449
+ xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h,sha256=XEsGCbVbRuN7n3frLwrGupWG9vKhkYHBzFVmbY6Vflo,12837
450
+ xtgeo/include/eigen3/Eigen/src/OrderingMethods/Ordering.h,sha256=zQaPZlp5hpbFNKmxRQx42zI6Y3E9uTa7ddt5tP_1LJM,5248
451
+ xtgeo/include/eigen3/Eigen/src/OrderingMethods/Eigen_Colamd.h,sha256=aGVdr2uuSAuOnywk06Ox5iRwLxWsHoxIHuOpuiYJgOs,61681
452
+ xtgeo/include/eigen3/Eigen/src/OrderingMethods/Amd.h,sha256=c7g7u_79UNDMwQhqLLF-io6d843uZM7zEBkL-BrNMZw,16105
453
+ xtgeo/include/eigen3/Eigen/src/plugins/ArrayCwiseUnaryOps.h,sha256=Lw8DNEdrrQmtr1uj64wlKMK2qzrkchCDLL0nY4hRP0w,21431
454
+ xtgeo/include/eigen3/Eigen/src/plugins/CommonCwiseUnaryOps.h,sha256=KounaHKSxrMBzP7sUcUSdSELN0QhjCSXsYZbU3DYMlY,6089
455
+ xtgeo/include/eigen3/Eigen/src/plugins/BlockMethods.h,sha256=VP5GDS9pFosNtDF1bpa0pUZ9uqpCas3CG4elB6fCaw8,59020
456
+ xtgeo/include/eigen3/Eigen/src/plugins/ArrayCwiseBinaryOps.h,sha256=3J685GySQ-w9ATdG_yU5K2_enofrPBBjhYzBaHXBnUk,14060
457
+ xtgeo/include/eigen3/Eigen/src/plugins/MatrixCwiseBinaryOps.h,sha256=kOqEkZJMkAgDl_sePzPQ4ahC9aO4C5n8UqIGUZWMaYI,6387
458
+ xtgeo/include/eigen3/Eigen/src/plugins/IndexedViewMethods.h,sha256=XpWD8sYQXjvwE93Br-KgaFtKugYO9hEERuk3l1QEZUg,12283
459
+ xtgeo/include/eigen3/Eigen/src/plugins/CommonCwiseBinaryOps.h,sha256=H4qb7Ef81ff1KdWVbhXaLQ0yURh5vfYT05-yL7ybRJg,4828
460
+ xtgeo/include/eigen3/Eigen/src/plugins/ReshapedMethods.h,sha256=OYyO_yoZ3TL7X8GFrIW-IKzqs_1LbM0M96HJyZAVOi8,6915
461
+ xtgeo/include/eigen3/Eigen/src/plugins/MatrixCwiseUnaryOps.h,sha256=hBC2LK2aHti-DqelsfGCGw5zMMxqaFjIyd_DJ-Sd17M,3350
462
+ xtgeo/include/eigen3/Eigen/src/Householder/HouseholderSequence.h,sha256=qJx7vJqOfwuk2bOCwT_qSA4uQRA5uDK07lhMOmJNTOg,23611
463
+ xtgeo/include/eigen3/Eigen/src/Householder/Householder.h,sha256=Sm81woK9lvrX8YcXqLStZqdoHyWUxO9VlLOzE2iOiy0,5365
464
+ xtgeo/include/eigen3/Eigen/src/Householder/BlockHouseholder.h,sha256=gT-lKuZc5n9FylQ3dARF5S0a7M4J93mT7oRzI87Koa4,4784
465
+ xtgeo/include/eigen3/Eigen/src/PardisoSupport/PardisoSupport.h,sha256=wsVkKSSLM_PyT6okkE-68CY-i9uw5JQK-J_49b53K0w,20092
466
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseSelfAdjointView.h,sha256=pKMa9HSZVf4TDrSs3WQPHm81-yvYWN_X3QbDGXZhChs,25889
467
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseMatrix.h,sha256=Uahcnyjjk9enq1aUvlnqI1d5zBeHSv8rHDjVr8BKufs,57475
468
+ xtgeo/include/eigen3/Eigen/src/SparseCore/CompressedStorage.h,sha256=KbsmaOECLX-_dCrw4l5OH8qSYthcNl51lHEUrOAElfU,8743
469
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseCwiseBinaryOp.h,sha256=UM8IsTqnqOIVvcVPNMI74lkGu0TC7c1-3OHD4E00U7U,25524
470
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseView.h,sha256=tt7YUvbYq4FC7o8OjMRAE5ENMAyDgBjJQw23fkFxKYI,8127
471
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseColEtree.h,sha256=hxvhX86IU5AEN0Re5JE7ugycPWrwjmMT8965y5Fuk0Q,6485
472
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseMatrixBase.h,sha256=vKuTKTtOY6UAAogaE7yVSPElvanBCqJB4og5B7kI21g,17451
473
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseDiagonalProduct.h,sha256=ql1gDrRmdDxurRXKYKt3558VV56rwkkg39q1rmNjUZ8,5808
474
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseTriangularView.h,sha256=wLzim0CxFIHthPPnf-BETneIxDpr5os7WMmm22Ihps8,6437
475
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseAssign.h,sha256=V9_BJwEgsy433vZPaZkNcz7VHaUtxFty8DrG2y7Bby0,11368
476
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparsePermutation.h,sha256=MOCjCgQY25pYtPMQhvGvkRk8koWuGO8dk0QRMqStiM8,7329
477
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseCwiseUnaryOp.h,sha256=Gt77DWmbFD21-2tgm3UCHDFB3vFqg07ZzPOmK1sYdU8,4757
478
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseMap.h,sha256=LENinGDgzP-0fSLxe9IC2QmTGpvw6-WmYZouy98GH6A,12589
479
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseDenseProduct.h,sha256=S-SIciqeQ8Cq0eRnjdwO0W-nJTdWrJ9cDSyUpTKDnwQ,13256
480
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseRef.h,sha256=KpWEyz-BSDQr2jkFY41qpl81k1xobd09MroJeAet90A,15600
481
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseFuzzy.h,sha256=-HvMRkGwLuoeAVRUzaTxJOZerK1LKoF7zIhUntzpE3A,1107
482
+ xtgeo/include/eigen3/Eigen/src/SparseCore/MappedSparseMatrix.h,sha256=LqSrqm_EN6KXQXTFIExr2w5AzGtZ39M70CDZwt1mDto,2191
483
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseSparseProductWithPruning.h,sha256=oJ95Mr8PoxBlVcuyIk83xAnA9B8BTF8SLFFr8JLzMcg,8704
484
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseSolverBase.h,sha256=_FJeIwvbZvS6TXnQI4bqcW07AeultzRTOhcfBDogpHk,4424
485
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseBlock.h,sha256=B_Rou_EU1DXsnaBNbKC5QPH9fWO2JUjH-dgTBVC0JFE,24360
486
+ xtgeo/include/eigen3/Eigen/src/SparseCore/TriangularSolver.h,sha256=6crxaL_epxj6kAKDRIOV3leRsjdoPfEMrwtFPPTtMU8,9657
487
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseVector.h,sha256=FXR2BBlYjN74_Y7HGt_xK14qGY93lmZOLi7FEZNW4h8,14832
488
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseCompressedBase.h,sha256=i_QDAUmYXh_o_or8Ooc6-OHwzl88PFIjK1gK1uTxENc,13606
489
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseTranspose.h,sha256=vzGAkYMV3rfcQz-g1POI16Qgn6QweDzJ2ANzq4i_1y4,3175
490
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseProduct.h,sha256=XL278sDrscm5H1ClbMyWtp9zMF-KoM-vecd-fXEmZZ0,7593
491
+ xtgeo/include/eigen3/Eigen/src/SparseCore/AmbiVector.h,sha256=5rbOU6LmuocubflDlpHJW-LV8RbLVt52PxlNwAD-24Q,10670
492
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseRedux.h,sha256=8-aCkMrV-7ug7PgoT6I4pSByEI4zaMBjL4yQgWtB3JE,1699
493
+ xtgeo/include/eigen3/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h,sha256=NSTC00y1pePE2y11NaWiKkV-cZ7iQDu4D0uQdlX1aI4,13166
494
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseUtil.h,sha256=QbJdHLBXVilPHMYRlJUpu242IYXCyljuRWU6Gg0CHyE,6827
495
+ xtgeo/include/eigen3/Eigen/src/SparseCore/SparseDot.h,sha256=qNMFtSwdxuZrJALftuwc1Uln8dXPHn7O-B6HYnfXh2c,3080
496
+ xtgeo/include/eigen3/Eigen/src/Jacobi/Jacobi.h,sha256=eqr6CeolwC9s94yeCFlGF_MdSvztGqDr8OLnT6XDp08,16383
497
+ xtgeo/include/eigen3/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h,sha256=aBRbczGluCFCW0z6zj-VPv3fPnseGS5Y_LWtCTPvugE,11826
498
+ xtgeo/include/eigen3/Eigen/src/QR/FullPivHouseholderQR.h,sha256=0mO6wR2Oz4LkO-63diixti5mRpEwlK1j6JQpXTjknh4,26768
499
+ xtgeo/include/eigen3/Eigen/src/QR/HouseholderQR.h,sha256=buDUUKKkR7GtuG59nGmnZOHPuPOfnWqZ-omhYq7e7t8,14641
500
+ xtgeo/include/eigen3/Eigen/src/QR/CompleteOrthogonalDecomposition.h,sha256=K80XQdqtt7GtaO6trSe9d-6SvwF_dmYkTK-aip00P9Y,23429
501
+ xtgeo/include/eigen3/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h,sha256=Pg4g_uASg01GUvKv85HZ10mcLIb2TsBAe8TxUIUzMbs,4662
502
+ xtgeo/include/eigen3/Eigen/src/QR/ColPivHouseholderQR.h,sha256=GRplSpNfH9u1hGj-UO_0ASrJsqUw1X873zHylf98Msg,25498
503
+ xtgeo/include/eigen3/Eigen/src/QR/HouseholderQR_LAPACKE.h,sha256=ioSGFFyQnCEIqvG71bRI-RwLslUwcNpeThs4Zht2qoc,2993
504
+ xtgeo/include/eigen3/Eigen/src/SparseQR/SparseQR.h,sha256=b7kIX0lfsWOEXscFjviaUOKMkieFnGnPdkHNOIC07ms,29167
505
+ xtgeo/include/eigen3/Eigen/src/SVD/JacobiSVD_LAPACKE.h,sha256=ka623NBfDraF1xca6Y-VNZlJPWUcPuw7DI35DlnSLpo,5099
506
+ xtgeo/include/eigen3/Eigen/src/SVD/SVDBase.h,sha256=7BZYx_gFqsiiYhobHmP6hKj-0hx_JOF27IYqlFViMAo,14743
507
+ xtgeo/include/eigen3/Eigen/src/SVD/JacobiSVD.h,sha256=hAnEE_IZPVHqlmnC8LfSgDGdqVJlo1wyP6vGX4pAcQg,32988
508
+ xtgeo/include/eigen3/Eigen/src/SVD/BDCSVD.h,sha256=_W5LHUpTg7pE48jCCqoZf6JbGTuUBQ76x4EEknP9Er8,54214
509
+ xtgeo/include/eigen3/Eigen/src/SVD/UpperBidiagonalization.h,sha256=6IpmJCGMm2kzzhJeLAPQNt-cSmdDm-UceOm5QNDSH18,15957
510
+ xtgeo/include/eigen3/Eigen/src/Cholesky/LLT_LAPACKE.h,sha256=Hvw3IINOyWug30oGIqogw6gK5I2Q1gz6rV4L-cHPoEs,3974
511
+ xtgeo/include/eigen3/Eigen/src/Cholesky/LDLT.h,sha256=zGNi3c3eoUA-qewcvqLKbq8cWHRjDxsTCE9Rx48znXg,24934
512
+ xtgeo/include/eigen3/Eigen/src/Cholesky/LLT.h,sha256=Ni_msIDJtn0REG-CH5JvqE7SSyEg-9uioJ77CGnu8ew,18760
513
+ xtgeo/include/eigen3/Eigen/src/UmfPackSupport/UmfPackSupport.h,sha256=to6gjstZ3u7FA3DBEekczSMwUP5inY9UoSRyeSP-6nY,24456
514
+ xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h,sha256=YMCQ6x4_-d79glE5ruPlzad6znhQFY02gqV0ymmGdsY,6771
515
+ xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h,sha256=l_qee65b_AyF54NQTEhqiQn4wpxF0EOgQfrjzKM-Z-o,15036
516
+ xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h,sha256=skUBIA1GTm3pchMagwn-Q0vElsbBKyOXqVfZ6Ig9gp0,4212
517
+ xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h,sha256=9N6ZL4g7dpQ1-C_AYBr2jV4R1nrToYgg1CJSstT8VIQ,14940
518
+ xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h,sha256=hxTZyH0vfNtGucFrc_JnlmaBnvnbYwpV6lnJVrQZDB8,7349
519
+ xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h,sha256=bAe7AXzOohoeR4hASXMS6QKHt2GIAwvEXN1zwa32EdM,8887
520
+ xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h,sha256=JAMwkJDDKrvMpaK4iCZQ3vhXaqbDleMsAafEft8Aay0,6850
521
+ xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h,sha256=RVUk3D9zTiShzR68o8N4qlsrbnu3xHAY-xCHP79Ixso,13379
522
+ xtgeo/include/eigen3/Eigen/src/LU/PartialPivLU_LAPACKE.h,sha256=405eiTTFwaWRyj6v0acEWJjEBKlbk-6zdEZqEnjERiU,3555
523
+ xtgeo/include/eigen3/Eigen/src/LU/InverseImpl.h,sha256=YcMuvxXWRaOKJJgf6YzAL6UanhW7sVAwgyyWOSahVeQ,15727
524
+ xtgeo/include/eigen3/Eigen/src/LU/Determinant.h,sha256=Ej8IFYHDjgeiBM8MsooiCpbZMFH8fADI0ZuaGG_C-yc,3439
525
+ xtgeo/include/eigen3/Eigen/src/LU/PartialPivLU.h,sha256=Lb6kmlOg7MA18WeAQAj0y0ZS5J-hiZ-kiIzX0fbApks,22069
526
+ xtgeo/include/eigen3/Eigen/src/LU/FullPivLU.h,sha256=cC7S7j5wQlYzGYKS6YnPMIVZ5k_aFyKE2vR1UZMSpHE,32383
527
+ xtgeo/include/eigen3/Eigen/src/LU/arch/InverseSize4.h,sha256=jEo1e85De1QKK5gpSB3wUciHnvmr4QgS4YThDNIgNQI,13693
528
+ xtgeo/include/eigen3/Eigen/src/Geometry/AngleAxis.h,sha256=hWEB6P7KkVOjUDyiPkdVZ7v1PofDUIQFQDVguHGydCU,8403
529
+ xtgeo/include/eigen3/Eigen/src/Geometry/RotationBase.h,sha256=EiowLy81k6w5UeRAjH0UBDYKAxuqA4Bhe6HdbdZFGMw,8063
530
+ xtgeo/include/eigen3/Eigen/src/Geometry/EulerAngles.h,sha256=MvmHhZbH0Nf9YzZG8B8YjXvHXQsWz3W8HY-bbCXoX6k,3624
531
+ xtgeo/include/eigen3/Eigen/src/Geometry/Hyperplane.h,sha256=L5qiKx7H8mhpvf3eXhPCpcudz_jw4XJ7nvaEty82qtc,11962
532
+ xtgeo/include/eigen3/Eigen/src/Geometry/Homogeneous.h,sha256=GubxVxEyxSFiZiGMTfln7dmXw3ayq55IrdJ5R-oxb98,20726
533
+ xtgeo/include/eigen3/Eigen/src/Geometry/AlignedBox.h,sha256=LJX63IVJ-iNtb4qjgCK635GG1jrtEqECu4Brzw9tUi4,18939
534
+ xtgeo/include/eigen3/Eigen/src/Geometry/Quaternion.h,sha256=jigf4p9JcYKOeQ8zRlP8qq_jSnhTsO7OQiSmOhzPH6g,34367
535
+ xtgeo/include/eigen3/Eigen/src/Geometry/Umeyama.h,sha256=8WBq8Bq-eOCwCPpCEJvCV4AdG9i--MYPuIQzekjltHA,6190
536
+ xtgeo/include/eigen3/Eigen/src/Geometry/Translation.h,sha256=MQelKqMEPMYDxBx_o_Bin1j4nlL5aQrunz3_TYrcRjk,7664
537
+ xtgeo/include/eigen3/Eigen/src/Geometry/Scaling.h,sha256=VP1L8yU9-kjXgRpJRDQ_Mobm4F6c47WBQu2qF75qbOw,6724
538
+ xtgeo/include/eigen3/Eigen/src/Geometry/OrthoMethods.h,sha256=PUA_fyzkfUoG16Tlvi82LCsO2Lx8LARN56CfsjGVbEQ,8955
539
+ xtgeo/include/eigen3/Eigen/src/Geometry/Rotation2D.h,sha256=ZJF39LieDyLVc82wCBjcv-89XUmjgiP8_FGtW4lhvOM,6862
540
+ xtgeo/include/eigen3/Eigen/src/Geometry/Transform.h,sha256=_LyXBb70PoLUGeas7TkZRADBH8gHKJp01ui7RmJmesM,61930
541
+ xtgeo/include/eigen3/Eigen/src/Geometry/ParametrizedLine.h,sha256=_XBm00cMu2GvSxc_Vq0Lw3CY6gPQPmLreuj3-ZhGkSE,9812
542
+ xtgeo/include/eigen3/Eigen/src/Geometry/arch/Geometry_SIMD.h,sha256=K0pUdNdQMSUnnx3iuujvVvmaxS3-zTIY__XXkCd3mno,5945
543
+ xtgeo/include/eigen3/Eigen/src/SuperLUSupport/SuperLUSupport.h,sha256=wmnrpnMFQ2KKgZJ2YZ0sGwtnORWfNB6zVx7yV_-mIzM,34324
544
+ xtgeo/include/eigen3/Eigen/src/MetisSupport/MetisSupport.h,sha256=x7X2CnuvlYp6C0a_SEUYueSdVryY74llxUM718ZPJk8,4588
545
+ xtgeo/include/eigen3/Eigen/src/StlSupport/StdList.h,sha256=_PoP9JjpMxFHyRt2ierD07kKYw5YCaQ-m2uff_9bv9A,4155
546
+ xtgeo/include/eigen3/Eigen/src/StlSupport/StdDeque.h,sha256=nwcLxBznnCK-XXIVzLj6m3TE9vNf6hCB5rEwVglEMtA,4730
547
+ xtgeo/include/eigen3/Eigen/src/StlSupport/details.h,sha256=N4XAZ1MVBkj5Wqqf0purzw8BN2oBMqkenPyCC7ZUF4E,2809
548
+ xtgeo/include/eigen3/Eigen/src/StlSupport/StdVector.h,sha256=ZMFTM2irx-ZrmNDMIYCyoRRWvfNdab18XXVN7WYgh4g,5338
549
+ xtgeo/include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h,sha256=dFdpa-FOJlaOirwy9MZadsnMjesv7vwHpXWVky5bSPM,5830
550
+ xtgeo/include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky.h,sha256=oJz3HAOgW9nflw7znky97aP_SJz7S9vwhOhelWfXe_A,24216
551
+ xtgeo/include/eigen3/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h,sha256=gjhXg_YIsizsBpnfbljjuOn7zmtAkz0levvRZRzXT4c,17176
552
+ xtgeo/include/eigen3/Eigen/src/Eigenvalues/EigenSolver.h,sha256=dk5LGEjuFvvUJFChALix6WXx-S9Buki-srtgELoLhEA,22970
553
+ xtgeo/include/eigen3/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h,sha256=MKr7VFn4KX1oUapqi2USdVZdn6pFEzLQSvUHE8BDVis,3650
554
+ xtgeo/include/eigen3/Eigen/src/Eigenvalues/RealSchur.h,sha256=YIcKltQsAZXPrfkWnM44lWAviB4EDQ8x_1ZKlaPqZy8,21078
555
+ xtgeo/include/eigen3/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h,sha256=_WVTQ369kknRbjGuKu7XPJg8r6PKuDXMmCk0PlzO-k8,4178
556
+ xtgeo/include/eigen3/Eigen/src/Eigenvalues/Tridiagonalization.h,sha256=mnlGNd83WlBplAPiJBD2ptx8z-yFtqasH7oEygEFEEc,22764
557
+ xtgeo/include/eigen3/Eigen/src/Eigenvalues/HessenbergDecomposition.h,sha256=O5VrdbpZMSheCsU_bUsr7VH_sJUo5Gh8Rg-D0nEt6Vs,14349
558
+ xtgeo/include/eigen3/Eigen/src/Eigenvalues/ComplexEigenSolver.h,sha256=slDfS5K-VOr0aXn4M4QT2IfQEcHoH-W3HcqYqFqKY1c,12559
559
+ xtgeo/include/eigen3/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h,sha256=4_rDPfwSRhuobLvKWLsS2dR1C_1O6ofWPX81JKXTsIQ,9716
560
+ xtgeo/include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h,sha256=WVrgd6o4MYqGf6ZUP-qftealRVMvJ9Z2lYzB-ubvb6Q,4104
561
+ xtgeo/include/eigen3/Eigen/src/Eigenvalues/ComplexSchur.h,sha256=ZxIzjl0HXd09pS0vKLopsZLqR5IRwJcWGETc0Bgup5o,17274
562
+ xtgeo/include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h,sha256=C9q8ME35ACSMx57vfhud9XprJYazudk9QhNEuAbCbuY,35182
563
+ xtgeo/include/eigen3/Eigen/src/Eigenvalues/RealQZ.h,sha256=872Nd9lFrTCQwhtLWCyAtnZeG1mnaGWi1Q60IqVWGYo,23640
564
+ xtgeo/include/eigen3/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h,sha256=uxKK8knBdzSTGVJCn8qt07J_SqGDtNfT7e2z4wq1Jeg,5575
565
+ xtgeo/include/eigen3/Eigen/src/PaStiXSupport/PaStiXSupport.h,sha256=guI9MhWY5GTjrYXHWWRI6mXbUfaB23ooNEgTM35fLvA,22249
566
+ xtgeo/include/eigen3/Eigen/src/KLUSupport/KLUSupport.h,sha256=txjmMFEbp2X2xCmPMDheZGtR-wA_AnQWSCSnn7sAVRQ,11555
567
+ xtgeo/grid3d/_grid_import.py,sha256=T--Nk4CVKifCskc2i8y6cpFXV2LZdTmJC3iSxKXXiZE,2593
568
+ xtgeo/grid3d/_roff_parameter.py,sha256=UNS2cngVP3GIAr5nVCoGQYJq062KtfvCAkFb0FEJY68,11073
569
+ xtgeo/grid3d/grid.py,sha256=-qlTfofzPjR90C-uk6LNlI7SgwemN1zMbaTdn-bw0DA,112116
570
+ xtgeo/grid3d/_grid_boundary.py,sha256=oxWmQdy9cG1PzAtOH-IcCqAQYfmIwTD87tc-c4VgTA8,2308
571
+ xtgeo/grid3d/_grid_import_ecl.py,sha256=gIcX4uMnwg0UnYMXyUdJsFSNKV-yhLFtc88AL1fmx6Y,3453
572
+ xtgeo/grid3d/_gridprop_roxapi.py,sha256=Z2A0Xv7Y_umy8joI__5YL7GsZ6NctaBakfn6serGks4,9093
573
+ xtgeo/grid3d/_gridprop_op1.py,sha256=o0JemRzyECX0qzUpj9OXGB9nb1IOZ8-5Gs-1i_a302g,8956
574
+ xtgeo/grid3d/_grid_import_roff.py,sha256=UViMnU44b75x4EfgnEmUYLFTK0R33lS9wAw0aBgzVzw,4039
575
+ xtgeo/grid3d/_grid_translate_coords.py,sha256=UDHoOtH9v2oMXh-6_Vyh_4R1lOFESgpOC3BjrP8fRP8,4696
576
+ xtgeo/grid3d/_grid_hybrid.py,sha256=N7l2l96AGnKNLvaqhuVUMX0Nhk4rTy2v0V9cj_FSbuA,1255
577
+ xtgeo/grid3d/_grid3d_fence.py,sha256=XdIY-TlSgoTuRtRyRNqLvXLoR9F1QTEkFJO-rgKlqwE,9217
578
+ xtgeo/grid3d/_grid3d.py,sha256=eM6842v2Q1Sb75zM3KynCITeV57OlXcusGEa_NWLPSU,740
579
+ xtgeo/grid3d/_ecl_output_file.py,sha256=WPb7VGPyt89MpKtxL2jLoSKwn04jIfNsB11L-9wMhSY,2014
580
+ xtgeo/grid3d/_grdecl_grid.py,sha256=Er13V2E-4LtvpeLwFA-EhGKJxqWU-LUzR-OMZTKPoZo,13602
581
+ xtgeo/grid3d/_grid_refine.py,sha256=VgcwTyUPafgtLRb5Cam0GbW7DJiL94xBgj1yM6fKKQM,8558
582
+ xtgeo/grid3d/_roff_grid.py,sha256=Or-QR92AB_oE-6lbMVhQjXC_E1HAcxZjFlbep3cFo6w,17272
583
+ xtgeo/grid3d/__init__.py,sha256=k6T-xKWIBey_WMjWDnYZfvCsLQGokCL9RjqBZNvbUq0,332
584
+ xtgeo/grid3d/types.py,sha256=s4iR1hmpZ_mF7xLXqujZaT2Sa6RK0uA48ZywBmkjoD0,275
585
+ xtgeo/grid3d/_grid_export.py,sha256=2Idg_5OGwS3Swu992RqYovDHBxfakjphN6ozKnDU1V0,7270
586
+ xtgeo/grid3d/_ecl_inte_head.py,sha256=yz8oQXCPzITNYNguZe9pUYVM2UbI6ZBy_e7VAEYJ8vU,4749
587
+ xtgeo/grid3d/_gridprop_import_eclrun.py,sha256=k1SjOp4PmZ3nIcDM6N-2FDvDx3jMPf7rea3IGOrgo88,5096
588
+ xtgeo/grid3d/_grid3d_utils.py,sha256=zIQZpWqAf33nVpC2aDqquPhd7Tqr-rRZvAaXPF-kxG0,7249
589
+ xtgeo/grid3d/_ecl_grid.py,sha256=8k_eq1ZVTUSrvAS3BmIsTR1mn2J_GD_keqNp4DS2iL4,25978
590
+ xtgeo/grid3d/_grid_roxapi.py,sha256=DJnG2CL56ygt2OEdVyH3oiMoyud-bra08tuLpFedCWQ,8907
591
+ xtgeo/grid3d/_ecl_logi_head.py,sha256=CzBi7MSyPFeFGIKeBcex8qgm6VICUY6YjiKs0X9_UR4,2664
592
+ xtgeo/grid3d/_grdecl_format.py,sha256=Nrp-dUh8p6G0WgDiWRfY_otxPwS_wUaUpReXVoj-U_s,10138
593
+ xtgeo/grid3d/_grid_wellzone.py,sha256=cBLmO4YL62vHEVvltxFHyQScZIY2RQQcrIqq9Cx6euE,5786
594
+ xtgeo/grid3d/_find_gridprop_in_eclrun.py,sha256=zUv1Fk5ouSICYd9SR7NpHbN78rFBcN7FBlURmeyaedk,21434
595
+ xtgeo/grid3d/_gridprop_lowlevel.py,sha256=8aUDxj1mPu8yH0F9FVaxxumew1OdBOkwEQI5tjIZEQI,5086
596
+ xtgeo/grid3d/_grid_etc1.py,sha256=zVJu-FBRjTOtgIgfzo5RGyiWYlBLSryvGLupWACom5E,47865
597
+ xtgeo/grid3d/_gridprops_import_eclrun.py,sha256=kWzubpyeorvfUSEjIF-UdoGnzQYYsUePW2jUtgoTuf0,11438
598
+ xtgeo/grid3d/_gridprop_import_roff.py,sha256=tXp_mMqwfblSEb5KUbMOcL-TgGVn--vEqzPeXAK1IuI,1523
599
+ xtgeo/grid3d/_gridprop_export.py,sha256=i4aukBXCeoYYIVJytG8ObjA1KyDGQqsQr2XukSSbZYg,6533
600
+ xtgeo/grid3d/_gridprop_import_grdecl.py,sha256=t2Heqw5f9azf_LJlIae-vMe9s0-HJr88TIKZCeTfqpc,4133
601
+ xtgeo/grid3d/_egrid.py,sha256=zOYcmK_3-BrCwHLZiZis7nuzdm_n0jPq_P2_J0X4_wY,33835
602
+ xtgeo/grid3d/_grid_import_xtgcpgeom.py,sha256=VtLKqxwNRZYlrPFRPHq-GUO0er-qLkmRlHVrhiTMosA,10202
603
+ xtgeo/grid3d/grid_properties.py,sha256=Ur2gPRV69JEfLidUxRulr5lO2pKMs6CVsFtxp5ZLMIo,24294
604
+ xtgeo/grid3d/_gridprops_import_roff.py,sha256=u6UobGgMaIBrCUOvGotAv_PJAoAJQYaFGH_kGo1RvRY,2467
605
+ xtgeo/grid3d/grid_property.py,sha256=aeBgWQ9cGq3ZPSuWm9crlFulWP25Leu21V4Ax51KvqQ,44667
606
+ xtgeo/grid3d/_gridprop_import_xtgcpprop.py,sha256=-9576pMYO78IZl4VgaI_dk-ArCh0LRHt6cQL8MyEgos,4859
607
+ xtgeo/grid3d/_gridprop_value_init.py,sha256=tN3LVziZsyIxbghkpGt6tCsHWFvGEm1e8ZpYpBgBdB8,4314
608
+ xtgeo/cube/_cube_roxapi.py,sha256=mj9Nnug13t_Fsu0w4KKaJNEmrB_kYb0m133T6W-7wt0,4921
609
+ xtgeo/cube/__init__.py,sha256=JJHhXXkXgFYRZTk5JDtqjxVzczDgLsHSLS-NPgCutIU,160
610
+ xtgeo/cube/_cube_window_attributes.py,sha256=MvD5pCjoJQ43EFKEfvOV6gCF7b3rwk2BluLe9wt59bo,9981
611
+ xtgeo/cube/_cube_utils.py,sha256=wTQZX2sNgmsYRRswjqr4h_NJp1CwbXVH1DWIejaIRbo,7440
612
+ xtgeo/cube/_cube_import.py,sha256=7wgjUZHeXnP2KyW5zKQwX1X1k_t0RC6Rat7PL-m67PA,16782
613
+ xtgeo/cube/_cube_export.py,sha256=G2e4ybxl7htjkGn1O-Eb9FrVf1o55esr_roNNubEknk,6445
614
+ xtgeo/cube/cube1.py,sha256=WTUGu_A4-SL2-9X-xLFjXIrmSmZy63Ebxt29R0g8VBM,34841
615
+ xtgeo/xyz/points.py,sha256=UdgFmBtsHSyzTwV27XvhQNDAOgeWbG6PU_HNqRpJ9qU,22582
616
+ xtgeo/xyz/_xyz_data.py,sha256=YRap9It2oYz7-_YGwNPXe4lxiXi45CCLpYQshQQXXI0,24126
617
+ xtgeo/xyz/polygons.py,sha256=fIh3DNfhj-uZnMTmB1w2AcRi_r_eoMxA-Ytm3QkLJUg,27964
618
+ xtgeo/xyz/__init__.py,sha256=yoBAADZ8lpnr_IY7txqpHIXQ_6atwxQckopaEgVkx-E,174
619
+ xtgeo/xyz/_xyz_oper.py,sha256=P8b2rGDZGDh8k7Jwg_SI-Jw6NaAF6I1LfhhybOTIcXw,19445
620
+ xtgeo/xyz/_xyz_roxapi.py,sha256=tP29S1cy4Il8wExScgmgrBKu6WO2MMbRCr-YjSARnUQ,25819
621
+ xtgeo/xyz/_xyz_io.py,sha256=5wL6ibpQwi3MSR7H09sdrubiVTkIhA8goHSIlDWQjLk,23981
622
+ xtgeo/xyz/_xyz_lowlevel.py,sha256=xEB_GVyNgI_0uxkl5DJ-rAUVtQ7_zNauiouUf18OmBc,1041
623
+ xtgeo/xyz/_xyz.py,sha256=AcFZMmZj05WNtLHGoYNm8jGphABp2I7WpPvoH12_UCo,28392
624
+ xtgeo/xyz/_polygons_oper.py,sha256=Fe5o7acA72DsOMhOw49xA_uZWuagsyrtSaRIADsy764,9346
625
+ xtgeo/io/__init__.py,sha256=iP27kGdvI2cArE7o88AJl21Q24IhOvQZUJzD6HNwm1U,22
626
+ xtgeo/io/_file.py,sha256=niBHmtbx796zr4_aGMEdhiOYCUldYo-RbteSxPOXP-8,20789
627
+ xtgeo/surface/_regsurf_lowlevel.py,sha256=MNq6hwF0LRhgLqoPvdGje2pt_OTVUdjIw1T5iX5RTp8,3488
628
+ xtgeo/surface/_zmap_parser.py,sha256=MRQk_62UfMWjCi1JZtrQe2vJrldpm77wpShM8zj3JIA,4070
629
+ xtgeo/surface/_regsurf_gridding.py,sha256=aP2BIbk-NXQ-VDaS-HK3KuinaXkOJ3eLXQvdA4UCMoM,10212
630
+ xtgeo/surface/_regsurf_ijxyz_parser.py,sha256=QPBdR5_jltx9VFw2kzvRtuaz-XaHD6xb7YeGAh2JYAA,9877
631
+ xtgeo/surface/surfaces.py,sha256=exrkUPRRF4FMpxPFEW-Otcvi4rWI33IsgSYMyIIDesA,9363
632
+ xtgeo/surface/_regsurf_grid3d.py,sha256=Fr9nqNtXiSNFUwwFGWpngg9OWB9Io-_0grat85z3U3E,9164
633
+ xtgeo/surface/regular_surface.py,sha256=jNQveSHUjn1P00AiLJblDEGeJcqdSWNyjyll7SVy7bw,110056
634
+ xtgeo/surface/_surfs_import.py,sha256=bPnGgwHFbill_EyLAQb2mTAlFEbUQZ3Qj11JnE1hNjU,1240
635
+ xtgeo/surface/__init__.py,sha256=8PovsG9QEc2XW9dC18puhwQlmDoQA4vLmbW4iotVvI4,408
636
+ xtgeo/surface/_regsurf_cube_window.py,sha256=zAhyxLd-JEn6wcJe5UYFNRSZVwkCkkOxMjT8DHKkd1c,10337
637
+ xtgeo/surface/_regsurf_export.py,sha256=rYLuIQBx8pbEe-AEoEN8332smU3UanrZKJ4jVpvDiUg,10467
638
+ xtgeo/surface/_regsurf_cube_window_v3.py,sha256=WElPWT9zha94gfY82IufF2YiApIefg8hEhWi0x55Pk8,10811
639
+ xtgeo/surface/_regsurf_boundary.py,sha256=iEBSy-Jww1yn5Tam1p5-zy4wP0jhwa9So3xYdSPVtwQ,784
640
+ xtgeo/surface/_regsurf_cube_window_v2.py,sha256=m1-bw8zbn6eEscKd2Q7VLXlnwhIP0ClPFFFzyA0b3UU,6165
641
+ xtgeo/surface/_regsurf_oper.py,sha256=lGtV7AZ_T1GFfsEhbnREa6lRGIKczTp4lKbVh2fJ4GA,14155
642
+ xtgeo/surface/_regsurf_cube.py,sha256=xZXIE418guB3rG8iscI9xQ0deAtJ_auu1XDe3ml9GBM,4952
643
+ xtgeo/surface/_regsurf_utils.py,sha256=P91jVmstYGe-bn6ut-9xfd8DiOw7QUCt2DLwbnlJwB4,2307
644
+ xtgeo/surface/_regsurf_import.py,sha256=IXD1T4hLRk705RbixSfcOxyrBUilRRbUHYC_S_xZqZA,10396
645
+ xtgeo/common/_xyz_enum.py,sha256=IiKRWhvIKKRhUH2QwpDttW4XqJ4f4StPrVt1vfVBTxM,1045
646
+ xtgeo/common/version.py,sha256=q7Ae9zMS4sYZj8I9xKBpvjndF2IOlPt8c30kLqr3waM,714
647
+ xtgeo/common/log.py,sha256=3C_WdYpCMEr5ebIGoGmalXNP0O2IGvLuJdzeuR8Cd-o,2742
648
+ xtgeo/common/xtgeo_dialog.py,sha256=AcT8DrIBViSZJltwZuEfrcRbmicQEFfbwlf_gV2-6k8,17129
649
+ xtgeo/common/constants.py,sha256=vp6k7lkWKKxyvojQZ1yYhhwXRXGZlMCPK8WY9nG2yns,749
650
+ xtgeo/common/__init__.py,sha256=LxWNTrS_4Rk60yOtdoQf5moYhl7me6AAMYIgkb7WBW8,461
651
+ xtgeo/common/types.py,sha256=qi2yJ1VPU7Zzmv14UWx5Z10DLfRwHQQ6Bx2e0eKpBEU,344
652
+ xtgeo/common/_angles.py,sha256=VuNLV9pTooF_V3thFTg9SmTMBnKkv6ZxyvOXw22vLE0,822
653
+ xtgeo/common/calc.py,sha256=xrJIVqFlrPIjhORbMThQylbjD4xdMM_vtEqBu5vc7C8,10134
654
+ xtgeo/common/exceptions.py,sha256=4BRCtzk74eyc4LeeapAWFLkNh-TT0ev5pDxKJlPaI7s,1175
655
+ xtgeo/common/sys.py,sha256=NGxnVoPoAGx_lekTF9QPBEf-VF8ORp4buoBeh6jkZko,4978
656
+ xtgeo/lib/libfmt.a,sha256=Fp1SSPunObg8JSW1HS5nUxCUpLUaorvJfpX32GFRN7E,163432
657
+ xtgeo/lib/pkgconfig/fmt.pc,sha256=XkYa5c660SrZAWU0dhHkcnjRrsoUBsP89-i19B-S0Lw,353
658
+ xtgeo/lib/cmake/fmt/fmt-targets-release.cmake,sha256=0hurnnAYtVc8r8yvaxkXAS5Op01RPnwKE6SFNOL1nYA,807
659
+ xtgeo/lib/cmake/fmt/fmt-config.cmake,sha256=Cd-Xn_HSZ-Lk5ZBDX8q49OQKSvnS0_k4r0-tb6G8LW4,999
660
+ xtgeo/lib/cmake/fmt/fmt-config-version.cmake,sha256=p1j16l20z3aEnEsIu-cbcrqFT32K2IJNZl10B8Ww2pk,1862
661
+ xtgeo/lib/cmake/fmt/fmt-targets.cmake,sha256=ldmu9wnYq11UbsJ79TSK4ejJA-Zr20Ih9DyGS7EbPHM,4464
662
+ xtgeo/roxutils/roxutils.py,sha256=BGvnWhYKvX2h7eU0ZXNUuDnHi8IM_2lLIzpq9lWZI6M,6904
663
+ xtgeo/roxutils/__init__.py,sha256=UJKTgNSIGdtRxaUAwot4D5sGCTdfITw6BRaOnGkk41k,92
664
+ xtgeo/roxutils/_roxutils_etc.py,sha256=K1fJKFBinfj32GGYnauU5t1sIgJ0l7N2gkXvaxMpNS8,3730
665
+ xtgeo/roxutils/_roxar_loader.py,sha256=R2yBt7su6_u87UP00lLaiDxW0QuSnFLkEJQgcTWhjZI,1904
666
+ xtgeo/metadata/metadata.py,sha256=ululOAz5qnLVsIvWcon7gAhL5hqYTMztV0Yns2Cwo10,12904
667
+ xtgeo/metadata/__init__.py,sha256=WXmKZjBGV3kr-lmrPxr3Ph7CpI5KIn3WKlE23crBteA,320
668
+ xtgeo/interfaces/rms/_rmsapi_package.py,sha256=Dym2JGW4JDJwGcntpv_ZpxLO6JfHUS1lQ05PtC9KYc8,2512
669
+ xtgeo/interfaces/rms/rmsapi_utils.py,sha256=lAewqLxBxOwRBDwkTSQ0y1MlmxGE12BBCCAD9a5j8AA,14748
670
+ xtgeo/interfaces/rms/_regular_surface.py,sha256=SdeVJAiON-5fjZ1ZEsxWYmAD3ddknxAQfuiJGNIOH34,17302
671
+ xtgeo/interfaces/rms/__init__.py,sha256=hnNIjmkJYusKG-CX1X2hiKXmxLp8OtW_x3FUA29J7GY,382
672
+ xtgeo/interfaces/rms/_rms_base.py,sha256=u1iToyz-pvyB0rDnjZ_jvkL0jpCYlQqnn8iSzaMgt1Q,3008
673
+ xtgeo/share/pkgconfig/eigen3.pc,sha256=Y43tSSywPDea5KvXibZy7hfKDZpVK_vehI_VpND7aFc,288
674
+ xtgeo/share/eigen3/cmake/Eigen3Config.cmake,sha256=x0pY00N82bHVUD1ieWKjI_i5qPiEv65l-CBuY1YKRaQ,1339
675
+ xtgeo/share/eigen3/cmake/Eigen3ConfigVersion.cmake,sha256=kmx0uYAIqWGE5dwo0MIlPyZuKUyNvtbBNmg53QMw5kU,2759
676
+ xtgeo/share/eigen3/cmake/UseEigen3.cmake,sha256=1VpGAFMK_5H1HlGbGPlyv9lepMl0JF_PDi5TkumFvZU,177
677
+ xtgeo/share/eigen3/cmake/Eigen3Targets.cmake,sha256=0y9N3APTOXbI0ENVRbTJw5ckKceCPb0xm8IwRWs9yVo,4122