placo 0.8.10__0-cp39-cp39-macosx_11_0_arm64.whl → 0.9.1__0-cp39-cp39-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 placo might be problematic. Click here for more details.

Binary file
@@ -15,6 +15,7 @@ Contact6D = typing.NewType("Contact6D", None)
15
15
  CubicSpline = typing.NewType("CubicSpline", None)
16
16
  CubicSpline3D = typing.NewType("CubicSpline3D", None)
17
17
  Distance = typing.NewType("Distance", None)
18
+ DistanceConstraint = typing.NewType("DistanceConstraint", None)
18
19
  DistanceTask = typing.NewType("DistanceTask", None)
19
20
  DynamicsCoMTask = typing.NewType("DynamicsCoMTask", None)
20
21
  DynamicsConstraint = typing.NewType("DynamicsConstraint", None)
@@ -90,6 +91,7 @@ WPGTrajectoryPart = typing.NewType("WPGTrajectoryPart", None)
90
91
  WalkPatternGenerator = typing.NewType("WalkPatternGenerator", None)
91
92
  WalkTasks = typing.NewType("WalkTasks", None)
92
93
  WheelTask = typing.NewType("WheelTask", None)
94
+ YawConstraint = typing.NewType("YawConstraint", None)
93
95
  boost_type_index = typing.NewType("boost_type_index", None)
94
96
  map_indexing_suite_map_string_double_entry = typing.NewType("map_indexing_suite_map_string_double_entry", None)
95
97
  map_string_double = typing.NewType("map_string_double", None)
@@ -1183,6 +1185,65 @@ None( (placo.Distance)arg1) -> object :
1183
1185
  """
1184
1186
 
1185
1187
 
1188
+ class DistanceConstraint:
1189
+ def __init__(
1190
+ self,
1191
+ frame_a: any, # pinocchio::FrameIndex
1192
+ frame_b: any, # pinocchio::FrameIndex
1193
+ distance_max: float, # double
1194
+ ) -> any:
1195
+ """
1196
+ Constraints the distance betweek two points in the robot.
1197
+
1198
+ :param any frame_a:
1199
+
1200
+ :param any frame_b:
1201
+
1202
+ :param float distance_max:
1203
+ """
1204
+ ...
1205
+
1206
+ def configure(
1207
+ self,
1208
+ name: str, # std::string
1209
+ priority: str = "soft", # std::string
1210
+ weight: float = 1.0, # double
1211
+ ) -> None:
1212
+ """
1213
+ Configures the object.
1214
+
1215
+ :param str name: task name
1216
+
1217
+ :param str priority: task priority (hard, soft or scaled)
1218
+
1219
+ :param float weight: task weight
1220
+ """
1221
+ ...
1222
+
1223
+ distance_max: any
1224
+ """
1225
+
1226
+ None( (placo.DistanceConstraint)arg1) -> float :
1227
+
1228
+ C++ signature :
1229
+ double {lvalue} None(placo::kinematics::DistanceConstraint {lvalue})
1230
+ """
1231
+
1232
+ name: any
1233
+ """
1234
+
1235
+ None( (placo.Prioritized)arg1) -> str :
1236
+
1237
+ C++ signature :
1238
+ std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> {lvalue} None(placo::tools::Prioritized {lvalue})
1239
+ """
1240
+
1241
+ priority: str
1242
+ """
1243
+ Priority [str]
1244
+ """
1245
+
1246
+
1186
1247
  class DistanceTask:
1187
1248
  A: any
1188
1249
  """
@@ -4173,26 +4234,14 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4173
4234
  def dcm(
4174
4235
  self,
4175
4236
  omega: float, # double
4237
+ com_velocity: numpy.ndarray, # Eigen::Vector2d
4176
4238
  ) -> numpy.ndarray:
4177
4239
  """
4178
4240
  Compute the Divergent Component of Motion (DCM)
4179
4241
 
4180
- :param float omega: Natural frequency of the LIP (= sqrt(g/h))
4181
- """
4182
- ...
4183
-
4184
- def dcm_from_com_vel(
4185
- arg1: HumanoidRobot,
4186
- arg2: float,
4187
- arg3: numpy.ndarray,
4188
- ) -> numpy.ndarray:
4189
- ...
4190
-
4191
- def dcom_world(
4192
- self,
4193
- ) -> numpy.ndarray:
4194
- """
4195
- Gets the CoM velocity in the world.
4242
+ :param float omega: Natural frequency of the LIP (= sqrt(g/h))
4243
+
4244
+ :param numpy.ndarray com_velocity: CoM velocity
4196
4245
  """
4197
4246
  ...
4198
4247
 
@@ -4202,7 +4251,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4202
4251
  """
4203
4252
  Computes all minimum distances between current collision pairs.
4204
4253
 
4205
- :return: <Element 'para' at 0x107765c20>
4254
+ :return: <Element 'para' at 0x1072ef5e0>
4206
4255
  """
4207
4256
  ...
4208
4257
 
@@ -4235,7 +4284,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4235
4284
 
4236
4285
  :param any frame: the frame for which we want the jacobian
4237
4286
 
4238
- :return: <Element 'para' at 0x10776a770>
4287
+ :return: <Element 'para' at 0x1072f3d10>
4239
4288
  """
4240
4289
  ...
4241
4290
 
@@ -4249,7 +4298,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4249
4298
 
4250
4299
  :param any frame: the frame for which we want the jacobian time variation
4251
4300
 
4252
- :return: <Element 'para' at 0x107792220>
4301
+ :return: <Element 'para' at 0x10730d4f0>
4253
4302
  """
4254
4303
  ...
4255
4304
 
@@ -4561,7 +4610,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
4561
4610
 
4562
4611
  :param bool stop_at_first: whether to stop at the first collision found
4563
4612
 
4564
- :return: <Element 'para' at 0x1077654f0>
4613
+ :return: <Element 'para' at 0x1072eee50>
4565
4614
  """
4566
4615
  ...
4567
4616
 
@@ -4795,6 +4844,17 @@ None( (placo.HumanoidRobot)arg1) -> placo.HumanoidRobot_Side :
4795
4844
  """
4796
4845
  ...
4797
4846
 
4847
+ def update_from_imu(
4848
+ self,
4849
+ R_world_trunk: numpy.ndarray, # Eigen::Matrix3d
4850
+ ) -> None:
4851
+ """
4852
+ Rotate the robot around its support.
4853
+
4854
+ :param numpy.ndarray R_world_trunk: Orientation of the trunk from the IMU
4855
+ """
4856
+ ...
4857
+
4798
4858
  def update_kinematics(
4799
4859
  self,
4800
4860
  ) -> None:
@@ -5375,6 +5435,23 @@ None( (placo.KinematicsSolver)arg1) -> int :
5375
5435
  """
5376
5436
  ...
5377
5437
 
5438
+ def add_distance_constraint(
5439
+ self,
5440
+ frame_a: str, # std::string
5441
+ frame_b: str, # std::string
5442
+ distance_max: float, # double
5443
+ ) -> DistanceConstraint:
5444
+ """
5445
+ Adds a distance constraint.
5446
+
5447
+ :param str frame_a: frame A
5448
+
5449
+ :param str frame_b: frame B
5450
+
5451
+ :param float distance_max: maximum distance between the two frames
5452
+ """
5453
+ ...
5454
+
5378
5455
  def add_distance_task(
5379
5456
  self,
5380
5457
  frame_a: str, # std::string
@@ -5430,12 +5507,9 @@ None( (placo.KinematicsSolver)arg1) -> int :
5430
5507
 
5431
5508
  def add_joints_task(
5432
5509
  self,
5433
- joints: dict[str, float], # std::map< std::string, double > &
5434
5510
  ) -> JointsTask:
5435
5511
  """
5436
5512
  Adds joints task.
5437
-
5438
- :param dict[str, float] joints: value for the joints
5439
5513
  """
5440
5514
  ...
5441
5515
 
@@ -5579,6 +5653,23 @@ None( (placo.KinematicsSolver)arg1) -> int :
5579
5653
  """
5580
5654
  ...
5581
5655
 
5656
+ def add_yaw_constraint(
5657
+ self,
5658
+ frame_a: str, # std::string
5659
+ frame_b: str, # std::string
5660
+ alpha_max: float, # double
5661
+ ) -> YawConstraint:
5662
+ """
5663
+ Adds a yaw constraint.
5664
+
5665
+ :param str frame_a: frame A
5666
+
5667
+ :param str frame_b: frame B
5668
+
5669
+ :param float alpha_max: angle max for yaw of x-axis in frame b in a
5670
+ """
5671
+ ...
5672
+
5582
5673
  def clear(
5583
5674
  self,
5584
5675
  ) -> None:
@@ -7447,21 +7538,13 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7447
7538
  """
7448
7539
  ...
7449
7540
 
7450
- def dcom_world(
7451
- self,
7452
- ) -> numpy.ndarray:
7453
- """
7454
- Gets the CoM velocity in the world.
7455
- """
7456
- ...
7457
-
7458
7541
  def distances(
7459
7542
  self,
7460
7543
  ) -> list[Distance]:
7461
7544
  """
7462
7545
  Computes all minimum distances between current collision pairs.
7463
7546
 
7464
- :return: <Element 'para' at 0x10764c400>
7547
+ :return: <Element 'para' at 0x106a6c9f0>
7465
7548
  """
7466
7549
  ...
7467
7550
 
@@ -7475,7 +7558,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7475
7558
 
7476
7559
  :param any frame: the frame for which we want the jacobian
7477
7560
 
7478
- :return: <Element 'para' at 0x10764cef0>
7561
+ :return: <Element 'para' at 0x106a73540>
7479
7562
  """
7480
7563
  ...
7481
7564
 
@@ -7489,7 +7572,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7489
7572
 
7490
7573
  :param any frame: the frame for which we want the jacobian time variation
7491
7574
 
7492
- :return: <Element 'para' at 0x1076549a0>
7575
+ :return: <Element 'para' at 0x106a76f90>
7493
7576
  """
7494
7577
  ...
7495
7578
 
@@ -7730,7 +7813,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
7730
7813
 
7731
7814
  :param bool stop_at_first: whether to stop at the first collision found
7732
7815
 
7733
- :return: <Element 'para' at 0x107647c70>
7816
+ :return: <Element 'para' at 0x106a6c2c0>
7734
7817
  """
7735
7818
  ...
7736
7819
 
@@ -8733,6 +8816,19 @@ None( (placo.WPGTrajectory)arg1) -> float :
8733
8816
  """
8734
8817
  ...
8735
8818
 
8819
+ def get_p_support_CoM(
8820
+ self,
8821
+ t: float, # double
8822
+ ) -> numpy.ndarray:
8823
+ ...
8824
+
8825
+ def get_p_support_DCM(
8826
+ self,
8827
+ t: float, # double
8828
+ omega: float, # double
8829
+ ) -> numpy.ndarray:
8830
+ ...
8831
+
8736
8832
  def get_p_world_CoM(
8737
8833
  self,
8738
8834
  t: float, # double
@@ -8805,6 +8901,12 @@ None( (placo.WPGTrajectory)arg1) -> float :
8805
8901
  ) -> list[Support]:
8806
8902
  ...
8807
8903
 
8904
+ def get_v_support_CoM(
8905
+ self,
8906
+ t: float, # double
8907
+ ) -> numpy.ndarray:
8908
+ ...
8909
+
8808
8910
  def get_v_world_CoM(
8809
8911
  self,
8810
8912
  t: float, # double
@@ -9021,6 +9123,15 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
9021
9123
  bool {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
9022
9124
  """
9023
9125
 
9126
+ stop_end_support_weight: any
9127
+ """
9128
+
9129
+ None( (placo.WalkPatternGenerator)arg1) -> float :
9130
+
9131
+ C++ signature :
9132
+ double {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
9133
+ """
9134
+
9024
9135
  def support_default_duration(
9025
9136
  self,
9026
9137
  support: Support, # placo::humanoid::FootstepsPlanner::Support
@@ -9037,7 +9148,6 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
9037
9148
  self,
9038
9149
  t: float, # double
9039
9150
  supports: list[Support], # std::vector<placo::humanoid::FootstepsPlanner::Support>
9040
- world_target_zmp: numpy.ndarray, # Eigen::Vector2d
9041
9151
  world_measured_dcm: numpy.ndarray, # Eigen::Vector2d
9042
9152
  ) -> list[Support]:
9043
9153
  """
@@ -9047,12 +9157,19 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
9047
9157
 
9048
9158
  :param list[Support] supports: Planned supports
9049
9159
 
9050
- :param numpy.ndarray world_target_zmp: Target ZMP for the flying foot in world frame
9051
-
9052
9160
  :param numpy.ndarray world_measured_dcm: Measured DCM in world frame
9053
9161
  """
9054
9162
  ...
9055
9163
 
9164
+ zmp_in_support_weight: any
9165
+ """
9166
+
9167
+ None( (placo.WalkPatternGenerator)arg1) -> float :
9168
+
9169
+ C++ signature :
9170
+ double {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
9171
+ """
9172
+
9056
9173
 
9057
9174
  class WalkTasks:
9058
9175
  def __init__(
@@ -9313,6 +9430,65 @@ None( (placo.WheelTask)arg1) -> float :
9313
9430
  ...
9314
9431
 
9315
9432
 
9433
+ class YawConstraint:
9434
+ def __init__(
9435
+ self,
9436
+ frame_a: any, # pinocchio::FrameIndex
9437
+ frame_b: any, # pinocchio::FrameIndex
9438
+ angle_max: float, # double
9439
+ ) -> any:
9440
+ """
9441
+ Constrains the yaw of frame b in frame a, such that the x-axis of frame b should remain with +- angle_max.
9442
+
9443
+ :param any frame_a:
9444
+
9445
+ :param any frame_b:
9446
+
9447
+ :param float angle_max:
9448
+ """
9449
+ ...
9450
+
9451
+ angle_max: any
9452
+ """
9453
+
9454
+ None( (placo.YawConstraint)arg1) -> float :
9455
+
9456
+ C++ signature :
9457
+ double {lvalue} None(placo::kinematics::YawConstraint {lvalue})
9458
+ """
9459
+
9460
+ def configure(
9461
+ self,
9462
+ name: str, # std::string
9463
+ priority: str = "soft", # std::string
9464
+ weight: float = 1.0, # double
9465
+ ) -> None:
9466
+ """
9467
+ Configures the object.
9468
+
9469
+ :param str name: task name
9470
+
9471
+ :param str priority: task priority (hard, soft or scaled)
9472
+
9473
+ :param float weight: task weight
9474
+ """
9475
+ ...
9476
+
9477
+ name: any
9478
+ """
9479
+
9480
+ None( (placo.Prioritized)arg1) -> str :
9481
+
9482
+ C++ signature :
9483
+ std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> {lvalue} None(placo::tools::Prioritized {lvalue})
9484
+ """
9485
+
9486
+ priority: str
9487
+ """
9488
+ Priority [str]
9489
+ """
9490
+
9491
+
9316
9492
  class boost_type_index:
9317
9493
  def __init__(
9318
9494
  ) -> any:
@@ -9545,4 +9721,4 @@ def wrap_angle(
9545
9721
  ...
9546
9722
 
9547
9723
 
9548
- __groups__ = {'placo::dynamics': ['AvoidSelfCollisionsDynamicsConstraint', 'Contact', 'Contact6D', 'DynamicsCoMTask', 'DynamicsConstraint', 'DynamicsFrameTask', 'DynamicsGearTask', 'DynamicsJointsTask', 'DynamicsOrientationTask', 'DynamicsPositionTask', 'DynamicsRelativeFrameTask', 'DynamicsRelativeOrientationTask', 'DynamicsRelativePositionTask', 'DynamicsSolver', 'DynamicsSolverResult', 'DynamicsTask', 'DynamicsTorqueTask', 'ExternalWrenchContact', 'LineContact', 'PointContact', 'PuppetContact', 'TaskContact'], 'placo::kinematics': ['AvoidSelfCollisionsKinematicsConstraint', 'AxisAlignTask', 'CentroidalMomentumTask', 'CoMPolygonConstraint', 'CoMTask', 'ConeConstraint', 'DistanceTask', 'FrameTask', 'GearTask', 'JointSpaceHalfSpacesConstraint', 'JointsTask', 'KinematicsConstraint', 'KinematicsSolver', 'KineticEnergyRegularizationTask', 'ManipulabilityTask', 'OrientationTask', 'PositionTask', 'RegularizationTask', 'RelativeFrameTask', 'RelativeOrientationTask', 'RelativePositionTask', 'Task', 'WheelTask'], 'placo::tools': ['AxisesMask', 'CubicSpline', 'CubicSpline3D', 'Polynom', 'Prioritized', 'Segment'], 'placo::model': ['Collision', 'Distance', 'RobotWrapper', 'RobotWrapper_State'], 'placo::problem': ['Expression', 'Integrator', 'IntegratorTrajectory', 'PolygonConstraint', 'Problem', 'ProblemConstraint', 'ProblemPolynom', 'QPError', 'Sparsity', 'SparsityInterval', 'Variable'], 'placo::humanoid': ['Footstep', 'FootstepsPlanner', 'FootstepsPlannerNaive', 'FootstepsPlannerRepetitive', 'HumanoidParameters', 'HumanoidRobot', 'LIPM', 'LIPMTrajectory', 'Support', 'SwingFoot', 'SwingFootCubic', 'SwingFootCubicTrajectory', 'SwingFootQuintic', 'SwingFootQuinticTrajectory', 'SwingFootTrajectory', 'WPGTrajectory', 'WPGTrajectoryPart', 'WalkPatternGenerator', 'WalkTasks']}
9724
+ __groups__ = {'placo::dynamics': ['AvoidSelfCollisionsDynamicsConstraint', 'Contact', 'Contact6D', 'DynamicsCoMTask', 'DynamicsConstraint', 'DynamicsFrameTask', 'DynamicsGearTask', 'DynamicsJointsTask', 'DynamicsOrientationTask', 'DynamicsPositionTask', 'DynamicsRelativeFrameTask', 'DynamicsRelativeOrientationTask', 'DynamicsRelativePositionTask', 'DynamicsSolver', 'DynamicsSolverResult', 'DynamicsTask', 'DynamicsTorqueTask', 'ExternalWrenchContact', 'LineContact', 'PointContact', 'PuppetContact', 'TaskContact'], 'placo::kinematics': ['AvoidSelfCollisionsKinematicsConstraint', 'AxisAlignTask', 'CentroidalMomentumTask', 'CoMPolygonConstraint', 'CoMTask', 'ConeConstraint', 'DistanceConstraint', 'DistanceTask', 'FrameTask', 'GearTask', 'JointSpaceHalfSpacesConstraint', 'JointsTask', 'KinematicsConstraint', 'KinematicsSolver', 'KineticEnergyRegularizationTask', 'ManipulabilityTask', 'OrientationTask', 'PositionTask', 'RegularizationTask', 'RelativeFrameTask', 'RelativeOrientationTask', 'RelativePositionTask', 'Task', 'WheelTask', 'YawConstraint'], 'placo::tools': ['AxisesMask', 'CubicSpline', 'CubicSpline3D', 'Polynom', 'Prioritized', 'Segment'], 'placo::model': ['Collision', 'Distance', 'RobotWrapper', 'RobotWrapper_State'], 'placo::problem': ['Expression', 'Integrator', 'IntegratorTrajectory', 'PolygonConstraint', 'Problem', 'ProblemConstraint', 'ProblemPolynom', 'QPError', 'Sparsity', 'SparsityInterval', 'Variable'], 'placo::humanoid': ['Footstep', 'FootstepsPlanner', 'FootstepsPlannerNaive', 'FootstepsPlannerRepetitive', 'HumanoidParameters', 'HumanoidRobot', 'LIPM', 'LIPMTrajectory', 'Support', 'SwingFoot', 'SwingFootCubic', 'SwingFootCubicTrajectory', 'SwingFootQuintic', 'SwingFootQuinticTrajectory', 'SwingFootTrajectory', 'WPGTrajectory', 'WPGTrajectoryPart', 'WalkPatternGenerator', 'WalkTasks']}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: placo
3
- Version: 0.8.10
3
+ Version: 0.9.1
4
4
  Summary: PlaCo: Rhoban Planning and Control
5
5
  Requires-Python: >= 3.9
6
6
  License-Expression: MIT
@@ -0,0 +1,12 @@
1
+ cmeel.prefix/lib/liblibplaco.dylib,sha256=zZukyGat6n36r0wNnIM2zwj-dsIgJxMR2qU_IviZI-k,1382288
2
+ cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=Cf0RdlW8TPDwpl-VAQYlJASo6fHLxtSxMBoZNS_EAk8,198277
3
+ cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=Hk7BZKMy5gtZESqleeV06AaYLWcC-88CErvGOYUb6-Q,6647832
4
+ cmeel.prefix/lib/python3.9/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
+ cmeel.prefix/lib/python3.9/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
+ cmeel.prefix/lib/python3.9/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
+ cmeel.prefix/lib/python3.9/site-packages/placo_utils/visualization.py,sha256=MiUn91MtezIpaP-bBj5g5PqVQNbDWdKkZxbvS_nu93I,8330
8
+ placo-0.9.1.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
9
+ placo-0.9.1.dist-info/METADATA,sha256=Kd24ONb11iqnbdUPph0Tw0DAdzgjpPGLeBh3Pw8sW5M,2620
10
+ placo-0.9.1.dist-info/WHEEL,sha256=L4i5x-b2_mmN301N-Fm2blmgWxGr90rVrliWtA2YuAU,109
11
+ placo-0.9.1.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
+ placo-0.9.1.dist-info/RECORD,,
@@ -1,12 +0,0 @@
1
- cmeel.prefix/lib/liblibplaco.dylib,sha256=Kat8JwzH5lHAjWOruBnUvFrRa_XlJzpeVpoFzvlk6l4,1379120
2
- cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=5X75-gQc9SQ_kZ5tky_fMTKFGiBjfP-__nbmGpKsisg,194610
3
- cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=lpC65rWzuBUHXG-OUqwLPYv69CxF5CnxEzV6IJJZLIM,6578664
4
- cmeel.prefix/lib/python3.9/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
- cmeel.prefix/lib/python3.9/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
- cmeel.prefix/lib/python3.9/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
- cmeel.prefix/lib/python3.9/site-packages/placo_utils/visualization.py,sha256=MiUn91MtezIpaP-bBj5g5PqVQNbDWdKkZxbvS_nu93I,8330
8
- placo-0.8.10.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
9
- placo-0.8.10.dist-info/METADATA,sha256=1LTdooqrP_YI0_MPBR5qsfSucytLvTeG84QY0MxVZ_A,2621
10
- placo-0.8.10.dist-info/WHEEL,sha256=L4i5x-b2_mmN301N-Fm2blmgWxGr90rVrliWtA2YuAU,109
11
- placo-0.8.10.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
- placo-0.8.10.dist-info/RECORD,,
File without changes