pymomentum-cpu 0.1.78.post24__cp313-cp313-manylinux_2_39_x86_64.whl → 0.1.80.post0__cp313-cp313-manylinux_2_39_x86_64.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 pymomentum-cpu might be problematic. Click here for more details.

Files changed (37) hide show
  1. include/momentum/character_solver/vertex_projection_error_function.h +2 -11
  2. include/momentum/character_solver/vertex_vertex_distance_error_function.h +4 -8
  3. lib/libarrow_bundled_dependencies.a +0 -0
  4. lib/librerun_sdk.a +0 -0
  5. lib64/libaxel.a +0 -0
  6. lib64/libmomentum_app_utils.a +0 -0
  7. lib64/libmomentum_character.a +0 -0
  8. lib64/libmomentum_character_sequence_solver.a +0 -0
  9. lib64/libmomentum_character_solver.a +0 -0
  10. lib64/libmomentum_common.a +0 -0
  11. lib64/libmomentum_diff_ik.a +0 -0
  12. lib64/libmomentum_io.a +0 -0
  13. lib64/libmomentum_io_common.a +0 -0
  14. lib64/libmomentum_io_fbx.a +0 -0
  15. lib64/libmomentum_io_gltf.a +0 -0
  16. lib64/libmomentum_io_legacy_json.a +0 -0
  17. lib64/libmomentum_io_marker.a +0 -0
  18. lib64/libmomentum_io_motion.a +0 -0
  19. lib64/libmomentum_io_shape.a +0 -0
  20. lib64/libmomentum_io_skeleton.a +0 -0
  21. lib64/libmomentum_io_urdf.a +0 -0
  22. lib64/libmomentum_marker_tracker.a +0 -0
  23. lib64/libmomentum_math.a +0 -0
  24. lib64/libmomentum_online_qr.a +0 -0
  25. lib64/libmomentum_process_markers.a +0 -0
  26. lib64/libmomentum_rerun.a +0 -0
  27. lib64/libmomentum_simd_constraints.a +0 -0
  28. lib64/libmomentum_simd_generalized_loss.a +0 -0
  29. lib64/libmomentum_skeleton.a +0 -0
  30. lib64/libmomentum_solver.a +0 -0
  31. pymomentum/geometry.cpython-313-x86_64-linux-gnu.so +0 -0
  32. pymomentum/solver.cpython-313-x86_64-linux-gnu.so +0 -0
  33. pymomentum/solver2.cpython-313-x86_64-linux-gnu.so +0 -0
  34. {pymomentum_cpu-0.1.78.post24.dist-info → pymomentum_cpu-0.1.80.post0.dist-info}/METADATA +3 -3
  35. {pymomentum_cpu-0.1.78.post24.dist-info → pymomentum_cpu-0.1.80.post0.dist-info}/RECORD +37 -37
  36. {pymomentum_cpu-0.1.78.post24.dist-info → pymomentum_cpu-0.1.80.post0.dist-info}/WHEEL +0 -0
  37. {pymomentum_cpu-0.1.78.post24.dist-info → pymomentum_cpu-0.1.80.post0.dist-info}/licenses/LICENSE +0 -0
@@ -85,6 +85,7 @@ class VertexProjectionErrorFunctionT : public SkeletonErrorFunctionT<T> {
85
85
  double calculateJacobian(
86
86
  const ModelParametersT<T>& modelParameters,
87
87
  const SkeletonStateT<T>& state,
88
+ const MeshStateT<T>& meshState,
88
89
  const VertexProjectionConstraintT<T>& constr,
89
90
  Ref<Eigen::MatrixX<T>> jac,
90
91
  Ref<Eigen::VectorX<T>> res) const;
@@ -92,6 +93,7 @@ class VertexProjectionErrorFunctionT : public SkeletonErrorFunctionT<T> {
92
93
  double calculateGradient(
93
94
  const ModelParametersT<T>& modelParameters,
94
95
  const SkeletonStateT<T>& state,
96
+ const MeshStateT<T>& meshState,
95
97
  const VertexProjectionConstraintT<T>& constr,
96
98
  Eigen::Ref<Eigen::VectorX<T>> gradient) const;
97
99
 
@@ -103,21 +105,10 @@ class VertexProjectionErrorFunctionT : public SkeletonErrorFunctionT<T> {
103
105
  const Eigen::Vector3<T>& d_restPos,
104
106
  Eigen::Vector3<T>& d_worldPos) const;
105
107
 
106
- void updateMeshes(const ModelParametersT<T>& modelParameters, const SkeletonStateT<T>& state);
107
-
108
108
  const Character& character_;
109
109
 
110
110
  std::vector<VertexProjectionConstraintT<T>> constraints_;
111
111
 
112
- std::unique_ptr<MeshT<T>>
113
- neutralMesh_; // Rest mesh without facial expression basis,
114
- // used to restore the neutral shape after facial expressions are applied.
115
- // Not used with there is a shape basis.
116
- std::unique_ptr<MeshT<T>> restMesh_; // The rest positions of the mesh after shape basis
117
- // (and potentially facial expression) has been applied
118
- std::unique_ptr<MeshT<T>>
119
- posedMesh_; // The posed mesh after the skeleton transforms have been applied.
120
-
121
112
  uint32_t maxThreads_;
122
113
 
123
114
  T _nearClip = 1.0f;
@@ -101,6 +101,7 @@ class VertexVertexDistanceErrorFunctionT : public SkeletonErrorFunctionT<T> {
101
101
  double calculateJacobian(
102
102
  const ModelParametersT<T>& modelParameters,
103
103
  const SkeletonStateT<T>& state,
104
+ const MeshStateT<T>& meshState,
104
105
  const VertexVertexDistanceConstraintT<T>& constraint,
105
106
  Eigen::Ref<Eigen::MatrixX<T>> jacobian,
106
107
  T& residual) const;
@@ -109,6 +110,7 @@ class VertexVertexDistanceErrorFunctionT : public SkeletonErrorFunctionT<T> {
109
110
  double calculateGradient(
110
111
  const ModelParametersT<T>& modelParameters,
111
112
  const SkeletonStateT<T>& state,
113
+ const MeshStateT<T>& meshState,
112
114
  const VertexVertexDistanceConstraintT<T>& constraint,
113
115
  Eigen::Ref<Eigen::VectorX<T>> gradient) const;
114
116
 
@@ -116,6 +118,7 @@ class VertexVertexDistanceErrorFunctionT : public SkeletonErrorFunctionT<T> {
116
118
  void calculateVertexGradient(
117
119
  const ModelParametersT<T>& modelParameters,
118
120
  const SkeletonStateT<T>& state,
121
+ const MeshStateT<T>& meshState,
119
122
  int vertexIndex,
120
123
  const Eigen::Vector3<T>& gradientDirection,
121
124
  Eigen::Ref<Eigen::VectorX<T>> gradient) const;
@@ -124,6 +127,7 @@ class VertexVertexDistanceErrorFunctionT : public SkeletonErrorFunctionT<T> {
124
127
  void calculateVertexJacobian(
125
128
  const ModelParametersT<T>& modelParameters,
126
129
  const SkeletonStateT<T>& state,
130
+ const MeshStateT<T>& meshState,
127
131
  int vertexIndex,
128
132
  const Eigen::Vector3<T>& jacobianDirection,
129
133
  Eigen::Ref<Eigen::MatrixX<T>> jacobian) const;
@@ -135,17 +139,9 @@ class VertexVertexDistanceErrorFunctionT : public SkeletonErrorFunctionT<T> {
135
139
  const Eigen::Vector3<T>& d_restPos,
136
140
  Eigen::Vector3<T>& d_worldPos) const;
137
141
 
138
- /// Update the meshes with current parameters and state
139
- void updateMeshes(const ModelParametersT<T>& modelParameters, const SkeletonStateT<T>& state);
140
-
141
142
  const Character& character_;
142
143
 
143
144
  std::vector<VertexVertexDistanceConstraintT<T>> constraints_;
144
-
145
- /// Mesh used to store rest positions
146
- std::unique_ptr<MeshT<T>> restMesh_;
147
- /// Mesh used to store posed positions
148
- std::unique_ptr<MeshT<T>> posedMesh_;
149
145
  };
150
146
 
151
147
  } // namespace momentum
Binary file
lib/librerun_sdk.a CHANGED
Binary file
lib64/libaxel.a CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
lib64/libmomentum_io.a CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
lib64/libmomentum_math.a CHANGED
Binary file
Binary file
Binary file
lib64/libmomentum_rerun.a CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pymomentum-cpu
3
- Version: 0.1.78.post24
3
+ Version: 0.1.80.post0
4
4
  Summary: A library providing foundational algorithms for human kinematic motion and numerical optimization solvers to apply human motion in various applications (CPU-only version for Linux, macOS Intel, and macOS ARM)
5
5
  Keywords: kinematics,motion,optimization,human-motion,inverse-kinematics,forward-kinematics,body-tracking,motion-capture,character-animation,robotics,cpu
6
6
  Author-Email: Meta Reality Labs Research <jeongseok@meta.com>
@@ -30,8 +30,8 @@ Requires-Dist: numpy>=1.20.0
30
30
  Requires-Dist: scipy>=1.7.0
31
31
  Requires-Dist: torch<2.9,>=2.8.0; platform_system == "Linux" and python_version == "3.12"
32
32
  Requires-Dist: torch<2.9,>=2.8.0; platform_system == "Linux" and python_version == "3.13"
33
- Requires-Dist: torch<2.3,>=2.2.0; platform_system == "Darwin" and python_version == "3.12"
34
- Requires-Dist: torch<2.7,>=2.6.0; platform_system == "Darwin" and python_version == "3.13"
33
+ Requires-Dist: torch<2.9,>=2.8.0; platform_system == "Darwin" and platform_machine == "arm64" and python_version == "3.12"
34
+ Requires-Dist: torch<2.9,>=2.8.0; platform_system == "Darwin" and platform_machine == "arm64" and python_version == "3.13"
35
35
  Description-Content-Type: text/markdown
36
36
 
37
37
  # Momentum
@@ -94,8 +94,8 @@ include/momentum/character_solver/state_error_function.h,sha256=qkgPgKcn0FLahMsC
94
94
  include/momentum/character_solver/transform_pose.h,sha256=PCmBQ8FcXfcR4udOlgUC7-gO7UDCJobCumG7PTlrgy4,3213
95
95
  include/momentum/character_solver/trust_region_qr.h,sha256=7OmK1zRgFJxeTumr7bQSs4IakZIY6GRvxO8kkS-8e_w,1905
96
96
  include/momentum/character_solver/vertex_error_function.h,sha256=VNgc_P3cnaeaRFpSrxg3VeTWmmLGF_aqkeU1pyyJnYs,4799
97
- include/momentum/character_solver/vertex_projection_error_function.h,sha256=lJw5GvMXN-6fG7de4FjZBAvd9ZCU-b8VEgSAA1vt48w,3986
98
- include/momentum/character_solver/vertex_vertex_distance_error_function.h,sha256=Zr1WG64A4eC7jLmZJrNIPeITsrgx_GgsBgFYKYT4Fco,5009
97
+ include/momentum/character_solver/vertex_projection_error_function.h,sha256=o9taDDuKkPf3I0LG0DOXF9aGYFwIIZs-qDUY768X4OY,3414
98
+ include/momentum/character_solver/vertex_vertex_distance_error_function.h,sha256=SLL7Lq4LX5f9I0uSuRt3JHHzyKeGw1grr1k1FG5ssXE,4844
99
99
  include/momentum/common/aligned.h,sha256=dZydnVzKP7kwNqaDlAUUi4AdEnrGWqH3TnRKU5hIXYs,4965
100
100
  include/momentum/common/checks.h,sha256=D6DFxY8tz84fFDv_SAZkDDx_on8vkP_yL3SrAOMpI64,758
101
101
  include/momentum/common/exception.h,sha256=EGY8XU07VHO2o2ZjfQHj48RaC-lYvT-vqTf-7XEtGhE,2524
@@ -451,39 +451,39 @@ include/rerun/datatypes/view_coordinates.hpp,sha256=qoKlxS-oQDx4_8SE1kGUJvV0LtSy
451
451
  include/rerun/datatypes/visible_time_range.hpp,sha256=6HIjxAUOXtv7I7g0GflgaRTwLbHHO2WXcyZtMZGqBWk,1778
452
452
  include/rerun/third_party/cxxopts.hpp,sha256=zp6SePNC9y1tAD7ryAodVydRCo0leWDwZRmcf4TbWEc,71577
453
453
  lib/libarrow.a,sha256=Jdj4Gf6N8SKdhtIdOIECmx16n0b15JHdgkxk1iU76J4,33273022
454
- lib/libarrow_bundled_dependencies.a,sha256=zOHb6WppwXYYma0FY39RJx3D1DJrEDXBjTwGce1nBOk,244362
454
+ lib/libarrow_bundled_dependencies.a,sha256=RaDMF47CVNIxc-VqDqGXc3xx823sSHS_OQzDNXb5alc,244362
455
455
  lib/librerun_c__linux_x64.a,sha256=JadrhPNhNjgRXq7eo8ZpwZJb4lpOSnvb__ds-OhYPfA,125411548
456
- lib/librerun_sdk.a,sha256=uyVoegfVOznC6unXIjF5_WIUdpJ9mydwFvLZuv8gvKE,5552506
456
+ lib/librerun_sdk.a,sha256=FIZYN7I0AE4KjxCwpkaexXMWhgCwF_pZxoQX0Tv5c-M,5552506
457
457
  lib/cmake/rerun_sdk/rerun_sdkConfig.cmake,sha256=Q-pxHnbFc3Ok6T-gxRglfZSsMigx5dCurCzO0H_peD4,3346
458
458
  lib/cmake/rerun_sdk/rerun_sdkConfigVersion.cmake,sha256=pkP-Dk2ua51-lUaTXsyrol2-gkTmJ9cVmQBOc_YBBXk,3252
459
459
  lib/cmake/rerun_sdk/rerun_sdkTargets-release.cmake,sha256=oJmUbA8vo_Af5olAGr7JcaiuRPU4dihtdClmCq11ADY,824
460
460
  lib/cmake/rerun_sdk/rerun_sdkTargets.cmake,sha256=BNlHggsz8G6CC3ypFIFo4xMQVy5c2aSaGJr7nQTmLIM,4255
461
- lib64/libaxel.a,sha256=V02L043r_4SDDbHdtDPu2M1VvHSgFLY6_LtJQhhloxI,1225348
462
- lib64/libmomentum_app_utils.a,sha256=uvt14y9dbCkSK2HIGSkfbXTgDyVPnaroN2nzssKfd4Q,731204
463
- lib64/libmomentum_character.a,sha256=weYna5abJTuxQE9Tjxxk3GeORRacTpuQZG7ux-Ziq14,2558960
464
- lib64/libmomentum_character_sequence_solver.a,sha256=LOO8f1mYpPlpnfBU6kTjqebNBB4LCCu9r9f5MfGupc8,3344130
465
- lib64/libmomentum_character_solver.a,sha256=8fCSXRvO921hnEmcrNVII_F3mu0MTYWhP8qazQsOhpU,9076330
466
- lib64/libmomentum_common.a,sha256=rgyVrmQzg7VUWNMYhOS_5qPtai9CNuMnmsYGFmiSxNI,812114
467
- lib64/libmomentum_diff_ik.a,sha256=5G6pjDRVUXleDL-vlgbYASo16LZysBlkwaxrvRYnXTU,4673132
468
- lib64/libmomentum_io.a,sha256=sN3noFevV8JHHd5wxNoBUt5XxhuYYyXG9r3BB7LBvwo,207354
469
- lib64/libmomentum_io_common.a,sha256=FAXaPPHNNerg1uFOtJi0LOYmFtCvTsH-C0jRNnvrXUw,202526
470
- lib64/libmomentum_io_fbx.a,sha256=x9iXmbeaLR6O7w4oH_4hdJMHlSkxYpqT87Asx7ILZlo,1849894
471
- lib64/libmomentum_io_gltf.a,sha256=yyf6_DHAj4JDcWu_2Rr7D2U3BOXCuCsFTNVIhPf1qFw,4281270
472
- lib64/libmomentum_io_legacy_json.a,sha256=k43OAcDDKEpUFE3fTvfVDrgPhZd9jfkYHi-8Ng-UhIA,714782
473
- lib64/libmomentum_io_marker.a,sha256=yLrYXVG_p7aePPd7t05Ot35y3eaP_rVLfPFRdeJ1Xmk,2283748
474
- lib64/libmomentum_io_motion.a,sha256=Ihm-EvfZ-4-mJgC_QzjgXXJfQgeDYyGsyUIJC7s8tWs,793718
475
- lib64/libmomentum_io_shape.a,sha256=Exlks5MTUxukGpl7kvnwcPe_kJ1ja3rwmDudZdBso70,1365814
476
- lib64/libmomentum_io_skeleton.a,sha256=mucCWHMnCRGKDEvHU9s7stPEro6uDxhU8TnJlwWUQKk,2684638
477
- lib64/libmomentum_io_urdf.a,sha256=0W27AnSvJP-F7XSxOqDdD7NWoFOoH4KQJXq5w_Icl_g,313770
478
- lib64/libmomentum_marker_tracker.a,sha256=qbtxFw9NirRYv9wCbDvYwodIxdI71qkBYpqfTHDu8ak,1963772
479
- lib64/libmomentum_math.a,sha256=U5GnY14cEfslEzJMnhAwlPAh9V8HjA_Z3aq1t9IEgKQ,1641786
480
- lib64/libmomentum_online_qr.a,sha256=bwiWKstQCahGocGY5_y4Oe1IGG1zZPm4eNce6xUpZS8,229302
481
- lib64/libmomentum_process_markers.a,sha256=1jUF2TwEZEVgrA7Cb0jAdUo-Z2LbblT5dEU_cN6hS70,1250318
482
- lib64/libmomentum_rerun.a,sha256=0YZ18_Z8cwRej0Sp2EV7tCcMEZEb5X2DN0waHgaMvh4,1137038
483
- lib64/libmomentum_simd_constraints.a,sha256=e-rSfklZ0v8brMwxmaXu00uiQuyqNFHfCBxAxp0xvos,776086
484
- lib64/libmomentum_simd_generalized_loss.a,sha256=PZqSyfvM_PYGmOKJ8As4Xnl6mBf-O5gylPea3oZbkAE,753012
485
- lib64/libmomentum_skeleton.a,sha256=0bkN2ff7d1VzXYepw-E6qtdkF1MiSRsN11S8UJS8Sxo,789844
486
- lib64/libmomentum_solver.a,sha256=QPXS7rFynZxLRv416M39akRxqArJrj9S0uSKKcewWNU,1610354
461
+ lib64/libaxel.a,sha256=z-YjMx-0G7UAQU3wZq58yDlPo8x01OhQPuaiAHFh9JE,1225348
462
+ lib64/libmomentum_app_utils.a,sha256=kj_5btRrHbGwDxCAsFjVzhL1ASqv5HzH9qIgwD_LEno,731204
463
+ lib64/libmomentum_character.a,sha256=sximUYL3o9dKAPwz_nPH2sGzwwzGhm2nsIv8geW2sf0,2558960
464
+ lib64/libmomentum_character_sequence_solver.a,sha256=11bP-qhzOSuCJ2OKWSHGGWdZbYbJMi5OmxTsEv346VE,3344130
465
+ lib64/libmomentum_character_solver.a,sha256=58wIHYLDOp1Q4v1eGZwe0WagSyBBVDQD1B4Ka4PXfZ0,9031550
466
+ lib64/libmomentum_common.a,sha256=FjzgA_XVUFSvfAZqHhsxXfl4ELsiFoZDZ9eAtpuwBvc,812114
467
+ lib64/libmomentum_diff_ik.a,sha256=i_g20-b6ztmvVqrRqcvdlyLHjOthXLjCNUYVvFNNGyg,4673132
468
+ lib64/libmomentum_io.a,sha256=ROzZQ35gAfp1qMqSV3NRVHLKnW_eb13PruUAJ8rGNvU,207354
469
+ lib64/libmomentum_io_common.a,sha256=-FjH6ycGNxPfdd0pg6wYjh3qOiUh5ItX-jf0HqiW0yI,202526
470
+ lib64/libmomentum_io_fbx.a,sha256=iYMh2BcGSqwK4BZzDE07oPyEmT7ol7um2svqDNRTA_U,1849894
471
+ lib64/libmomentum_io_gltf.a,sha256=IIKYqIvrlEe2FaMaGY7aqs9Tk6BRvQEenktcrK31tRY,4281270
472
+ lib64/libmomentum_io_legacy_json.a,sha256=wD6FzLRvcaHddBLBc9gdJjTws6fM5eYu7Zi28RYxlG8,714782
473
+ lib64/libmomentum_io_marker.a,sha256=vaWb82YHzgjG5S5ewqFXbpS5VqjuNOb5se_fv0AUxLU,2283748
474
+ lib64/libmomentum_io_motion.a,sha256=CvdcKZmRzNrVeEAccuV8Kjsf_9gjzBZLU4couQpVx2Y,793718
475
+ lib64/libmomentum_io_shape.a,sha256=r04qFmKl3WARRIxj45KFjVzcVfDGQnYWRRD2scGmDF0,1365814
476
+ lib64/libmomentum_io_skeleton.a,sha256=PkDJeKcDVXnVzNTwiv1OfXq-Dq4Q-qwbwom8mfKv3q0,2684638
477
+ lib64/libmomentum_io_urdf.a,sha256=4pB4ZNeeGZD4ypAvSrTO9pjumL5JC2SYf4abHiLNxVg,313770
478
+ lib64/libmomentum_marker_tracker.a,sha256=pDK1Ytr9mwq6b6W1nqLsg_KlJ7Up77c-bv-ZyAURsc8,1963772
479
+ lib64/libmomentum_math.a,sha256=A5-2GoLzXV6MjNP87O3snlskUH3_KPC6jJws0NUInj8,1641786
480
+ lib64/libmomentum_online_qr.a,sha256=MQIKdRgw3vMPTrjj2-_PXkRWcnqnAAVjCRluM2bWSFU,229302
481
+ lib64/libmomentum_process_markers.a,sha256=P6xUpiBoSwNPt84l9VCM-ti3IoU-Rg3ydUWrMMdJrOE,1250318
482
+ lib64/libmomentum_rerun.a,sha256=_Q9lQcD6CyoPqXkb4cJySX5hHztZN-HUIzyI42rpILw,1137038
483
+ lib64/libmomentum_simd_constraints.a,sha256=IXH5brccs7jSkwoO8RFdqmyq6sKmvNLB8mTmItb1WXM,776086
484
+ lib64/libmomentum_simd_generalized_loss.a,sha256=jyolAPX40xtpp1xFdJ5J8xA5sM7nQKDcDy9YI-ct-dw,753012
485
+ lib64/libmomentum_skeleton.a,sha256=klLaYE2UnQCv-uDVtmUHgJR5yX5tFpHST6BN6DmJUzU,789844
486
+ lib64/libmomentum_solver.a,sha256=7JdW902jiyZyQQvgXOriVj18Z1-OygT7650qj2HNowY,1610354
487
487
  lib64/cmake/axel/axel-config.cmake,sha256=gTDQ-zK9pDcMzFmSoKorPKVbCaeUhK6JVGMmui1QX64,1372
488
488
  lib64/cmake/axel/axelTargets-release.cmake,sha256=S6GMmgGs-IxZC0qBBz_ADcbD7GrHGS1UXSk4BLkz2JI,823
489
489
  lib64/cmake/axel/axelTargets.cmake,sha256=gtHQernEzZl5Kc1GmxzmFX_IXfDNhuXscPsfxzz4fkI,4231
@@ -492,12 +492,12 @@ lib64/cmake/momentum/momentum-config.cmake,sha256=Ma8BDkEqOBeFAuKj5HaZY8HP2_vXGf
492
492
  lib64/cmake/momentum/momentumTargets-release.cmake,sha256=1MnXwezsk-IVmp7XWZroPt-wd53biWQXOS2TMrCns_A,13517
493
493
  lib64/cmake/momentum/momentumTargets.cmake,sha256=-ZocI6gx3eZTRDo4Ynz5TwiFXwZOBF9JqPAtTq0Mx3c,15954
494
494
  pymomentum/axel.cpython-313-x86_64-linux-gnu.so,sha256=URcbyfzhgnlQEECA6W2ge1nk7kdJniud-dT1hp-xRtc,970273
495
- pymomentum/geometry.cpython-313-x86_64-linux-gnu.so,sha256=Q4qlsyuQ7A6fNgVa7P4xDxrPfnW8YVkNQF1p0JxCWGM,6421913
495
+ pymomentum/geometry.cpython-313-x86_64-linux-gnu.so,sha256=iN8ElCTJ1DpLmLt1ChzHm4_SD2dacJeY2R7k8wTCiiA,6421913
496
496
  pymomentum/marker_tracking.cpython-313-x86_64-linux-gnu.so,sha256=5KAuAzir2NjSqih8jE9OMJKimgM1GkJg2HNtNJx55mU,5515769
497
497
  pymomentum/quaternion.py,sha256=-TB1iUxcAVjntIJZW2xS8Mc2uWBUZW_M4sj-CaoMvPY,26956
498
498
  pymomentum/skel_state.py,sha256=K2WTFxudHsxR3LuE3ZT5_zzvgjEbrD5KWpWEQXOzUGY,17769
499
- pymomentum/solver.cpython-313-x86_64-linux-gnu.so,sha256=h8SZEPlC71jgdsbrbnmYG5wK_lA0L1Z5qcUDJR4YyjI,7388081
500
- pymomentum/solver2.cpython-313-x86_64-linux-gnu.so,sha256=AugesDq67gkp85VMPHV9E2ujXK7f6nH5J3U4prx3Mms,5493169
499
+ pymomentum/solver.cpython-313-x86_64-linux-gnu.so,sha256=9Zrd4qFKGHW4myF9BUNNNRQav1N5FuCEn22vuouxfSw,7379761
500
+ pymomentum/solver2.cpython-313-x86_64-linux-gnu.so,sha256=M1rRG4n9t3BdGoAOJo0hl2EMl0womgvunrwtn9PCo-s,5480681
501
501
  pymomentum/trs.py,sha256=jwvOR2DDMpAqOE9zFh0TJnigsDpfRi2guUfayQklVqk,17624
502
502
  pymomentum/backend/__init__.py,sha256=6tzrxIJl9w1eM-gqf7YwTZ33WkJ6lnq9h4-TsTuOtuc,476
503
503
  pymomentum/backend/skel_state_backend.py,sha256=tsd2iqtkbyvC7kmvZcApKGu16QbkZuEq2_ysWv6p89Y,25883
@@ -549,7 +549,7 @@ pymomentum_cpu.libs/libezc3d-4a95ab2c.so,sha256=aryLuqXyWoYK9vUVR2guVfBwnWMXInj4
549
549
  pymomentum_cpu.libs/libre2-985fb83c.so.11,sha256=XtGXahmFHO6kV-x1ROEAdIDmcZVlWGT70joU20kCLYg,718825
550
550
  pymomentum_cpu.libs/libtinyxml2-8d10763c.so.11.0.0,sha256=KoK7Wl1HGQLMYBc4NWufsGh6RqNvjpWBQVGKqUoXgrE,163353
551
551
  pymomentum_cpu.libs/liburdfdom_model-7b26ae88.so.4.0,sha256=OTjp8aTUsvzgCy4OvW3EWM5G8JP4miw_nYc7brW3U6g,227401
552
- pymomentum_cpu-0.1.78.post24.dist-info/METADATA,sha256=nvZFBuG2yY59M6RZBxtPZt0NTgBmoWQs2IpA65QmHKU,5740
553
- pymomentum_cpu-0.1.78.post24.dist-info/WHEEL,sha256=2ADbL3pVf9-n9sIiYH0qdS_3puCuND-aMQYo3y1sVjQ,118
554
- pymomentum_cpu-0.1.78.post24.dist-info/RECORD,,
555
- pymomentum_cpu-0.1.78.post24.dist-info/licenses/LICENSE,sha256=2m03A-0Ry-Qr0hLHJZV8mNojy_8ZmMBfpLPZdtGljpM,1088
552
+ pymomentum_cpu-0.1.80.post0.dist-info/METADATA,sha256=DObqHGmbFHWewE-kRojRGX67Al71s4TSzomfd3RHQqk,5803
553
+ pymomentum_cpu-0.1.80.post0.dist-info/WHEEL,sha256=2ADbL3pVf9-n9sIiYH0qdS_3puCuND-aMQYo3y1sVjQ,118
554
+ pymomentum_cpu-0.1.80.post0.dist-info/RECORD,,
555
+ pymomentum_cpu-0.1.80.post0.dist-info/licenses/LICENSE,sha256=2m03A-0Ry-Qr0hLHJZV8mNojy_8ZmMBfpLPZdtGljpM,1088