placo 0.9.3__0-cp39-cp39-manylinux_2_28_aarch64.whl → 0.9.5__0-cp39-cp39-manylinux_2_28_aarch64.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.
- cmeel.prefix/lib/liblibplaco.so +0 -0
- cmeel.prefix/lib/python3.9/site-packages/placo.pyi +161 -13
- cmeel.prefix/lib/python3.9/site-packages/placo.so +0 -0
- {placo-0.9.3.dist-info → placo-0.9.5.dist-info}/METADATA +3 -3
- placo-0.9.5.dist-info/RECORD +12 -0
- placo-0.9.3.dist-info/RECORD +0 -12
- {placo-0.9.3.dist-info → placo-0.9.5.dist-info}/WHEEL +0 -0
- {placo-0.9.3.dist-info → placo-0.9.5.dist-info}/licenses/LICENSE +0 -0
- {placo-0.9.3.dist-info → placo-0.9.5.dist-info}/top_level.txt +0 -0
cmeel.prefix/lib/liblibplaco.so
CHANGED
|
Binary file
|
|
@@ -17,6 +17,7 @@ CubicSpline3D = typing.NewType("CubicSpline3D", None)
|
|
|
17
17
|
Distance = typing.NewType("Distance", None)
|
|
18
18
|
DistanceConstraint = typing.NewType("DistanceConstraint", None)
|
|
19
19
|
DistanceTask = typing.NewType("DistanceTask", None)
|
|
20
|
+
DummyWalk = typing.NewType("DummyWalk", None)
|
|
20
21
|
DynamicsCoMTask = typing.NewType("DynamicsCoMTask", None)
|
|
21
22
|
DynamicsConstraint = typing.NewType("DynamicsConstraint", None)
|
|
22
23
|
DynamicsFrameTask = typing.NewType("DynamicsFrameTask", None)
|
|
@@ -1322,6 +1323,150 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
1322
1323
|
...
|
|
1323
1324
|
|
|
1324
1325
|
|
|
1326
|
+
class DummyWalk:
|
|
1327
|
+
T_world_left: any
|
|
1328
|
+
"""
|
|
1329
|
+
|
|
1330
|
+
None( (placo.DummyWalk)arg1) -> object :
|
|
1331
|
+
|
|
1332
|
+
C++ signature :
|
|
1333
|
+
Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1334
|
+
"""
|
|
1335
|
+
|
|
1336
|
+
T_world_next: any
|
|
1337
|
+
"""
|
|
1338
|
+
|
|
1339
|
+
None( (placo.DummyWalk)arg1) -> object :
|
|
1340
|
+
|
|
1341
|
+
C++ signature :
|
|
1342
|
+
Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1343
|
+
"""
|
|
1344
|
+
|
|
1345
|
+
T_world_right: any
|
|
1346
|
+
"""
|
|
1347
|
+
|
|
1348
|
+
None( (placo.DummyWalk)arg1) -> object :
|
|
1349
|
+
|
|
1350
|
+
C++ signature :
|
|
1351
|
+
Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1352
|
+
"""
|
|
1353
|
+
|
|
1354
|
+
def __init__(
|
|
1355
|
+
self,
|
|
1356
|
+
robot: RobotWrapper, # placo::model::RobotWrapper
|
|
1357
|
+
) -> any:
|
|
1358
|
+
...
|
|
1359
|
+
|
|
1360
|
+
feet_spacing: any
|
|
1361
|
+
"""
|
|
1362
|
+
|
|
1363
|
+
None( (placo.DummyWalk)arg1) -> float :
|
|
1364
|
+
|
|
1365
|
+
C++ signature :
|
|
1366
|
+
double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1367
|
+
"""
|
|
1368
|
+
|
|
1369
|
+
lift_height: any
|
|
1370
|
+
"""
|
|
1371
|
+
|
|
1372
|
+
None( (placo.DummyWalk)arg1) -> float :
|
|
1373
|
+
|
|
1374
|
+
C++ signature :
|
|
1375
|
+
double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1376
|
+
"""
|
|
1377
|
+
|
|
1378
|
+
def next_step(
|
|
1379
|
+
self,
|
|
1380
|
+
dx: float, # double
|
|
1381
|
+
dy: float, # double
|
|
1382
|
+
dtheta: float, # double
|
|
1383
|
+
) -> None:
|
|
1384
|
+
"""
|
|
1385
|
+
Produce the next step, change support foot.
|
|
1386
|
+
|
|
1387
|
+
:param float dx: dx
|
|
1388
|
+
:param float dy: dy
|
|
1389
|
+
:param float dtheta: dtheta
|
|
1390
|
+
"""
|
|
1391
|
+
...
|
|
1392
|
+
|
|
1393
|
+
def reset(
|
|
1394
|
+
self,
|
|
1395
|
+
support_left: bool = False, # bool
|
|
1396
|
+
) -> None:
|
|
1397
|
+
"""
|
|
1398
|
+
Reset the robot with a given support.
|
|
1399
|
+
|
|
1400
|
+
:param bool support_left: whether the first support is left
|
|
1401
|
+
"""
|
|
1402
|
+
...
|
|
1403
|
+
|
|
1404
|
+
robot: any
|
|
1405
|
+
"""
|
|
1406
|
+
|
|
1407
|
+
None( (placo.DummyWalk)arg1) -> placo.RobotWrapper :
|
|
1408
|
+
|
|
1409
|
+
C++ signature :
|
|
1410
|
+
placo::model::RobotWrapper {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1411
|
+
"""
|
|
1412
|
+
|
|
1413
|
+
solver: any
|
|
1414
|
+
"""
|
|
1415
|
+
|
|
1416
|
+
None( (placo.DummyWalk)arg1) -> placo.KinematicsSolver :
|
|
1417
|
+
|
|
1418
|
+
C++ signature :
|
|
1419
|
+
placo::kinematics::KinematicsSolver {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1420
|
+
"""
|
|
1421
|
+
|
|
1422
|
+
support_left: any
|
|
1423
|
+
"""
|
|
1424
|
+
|
|
1425
|
+
None( (placo.DummyWalk)arg1) -> bool :
|
|
1426
|
+
|
|
1427
|
+
C++ signature :
|
|
1428
|
+
bool {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1429
|
+
"""
|
|
1430
|
+
|
|
1431
|
+
trunk_height: any
|
|
1432
|
+
"""
|
|
1433
|
+
|
|
1434
|
+
None( (placo.DummyWalk)arg1) -> float :
|
|
1435
|
+
|
|
1436
|
+
C++ signature :
|
|
1437
|
+
double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1438
|
+
"""
|
|
1439
|
+
|
|
1440
|
+
trunk_pitch: any
|
|
1441
|
+
"""
|
|
1442
|
+
|
|
1443
|
+
None( (placo.DummyWalk)arg1) -> float :
|
|
1444
|
+
|
|
1445
|
+
C++ signature :
|
|
1446
|
+
double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1447
|
+
"""
|
|
1448
|
+
|
|
1449
|
+
def update(
|
|
1450
|
+
self,
|
|
1451
|
+
t: float, # double
|
|
1452
|
+
) -> None:
|
|
1453
|
+
"""
|
|
1454
|
+
Updates the internal IK.
|
|
1455
|
+
|
|
1456
|
+
:param float t: phase in step from 0 to 1
|
|
1457
|
+
"""
|
|
1458
|
+
...
|
|
1459
|
+
|
|
1460
|
+
def update_T_world_support(
|
|
1461
|
+
self,
|
|
1462
|
+
T_world_support: numpy.ndarray, # Eigen::Affine3d
|
|
1463
|
+
) -> None:
|
|
1464
|
+
"""
|
|
1465
|
+
Update the support to a given world pose.
|
|
1466
|
+
"""
|
|
1467
|
+
...
|
|
1468
|
+
|
|
1469
|
+
|
|
1325
1470
|
class DynamicsCoMTask:
|
|
1326
1471
|
A: any
|
|
1327
1472
|
"""
|
|
@@ -3484,9 +3629,10 @@ class FootstepsPlanner:
|
|
|
3484
3629
|
"""
|
|
3485
3630
|
...
|
|
3486
3631
|
|
|
3487
|
-
def
|
|
3632
|
+
def truncate_supports(
|
|
3488
3633
|
arg1: Supports,
|
|
3489
3634
|
arg2: int,
|
|
3635
|
+
arg3: bool,
|
|
3490
3636
|
) -> Supports:
|
|
3491
3637
|
...
|
|
3492
3638
|
|
|
@@ -3556,9 +3702,10 @@ class FootstepsPlannerNaive:
|
|
|
3556
3702
|
"""
|
|
3557
3703
|
...
|
|
3558
3704
|
|
|
3559
|
-
def
|
|
3705
|
+
def truncate_supports(
|
|
3560
3706
|
arg1: Supports,
|
|
3561
3707
|
arg2: int,
|
|
3708
|
+
arg3: bool,
|
|
3562
3709
|
) -> Supports:
|
|
3563
3710
|
...
|
|
3564
3711
|
|
|
@@ -3632,9 +3779,10 @@ class FootstepsPlannerRepetitive:
|
|
|
3632
3779
|
"""
|
|
3633
3780
|
...
|
|
3634
3781
|
|
|
3635
|
-
def
|
|
3782
|
+
def truncate_supports(
|
|
3636
3783
|
arg1: Supports,
|
|
3637
3784
|
arg2: int,
|
|
3785
|
+
arg3: bool,
|
|
3638
3786
|
) -> Supports:
|
|
3639
3787
|
...
|
|
3640
3788
|
|
|
@@ -4153,7 +4301,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4153
4301
|
"""
|
|
4154
4302
|
Computes all minimum distances between current collision pairs.
|
|
4155
4303
|
|
|
4156
|
-
:return: <Element 'para' at
|
|
4304
|
+
:return: <Element 'para' at 0xff1388eb4770>
|
|
4157
4305
|
"""
|
|
4158
4306
|
...
|
|
4159
4307
|
|
|
@@ -4185,7 +4333,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4185
4333
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
4186
4334
|
|
|
4187
4335
|
:param any frame: the frame for which we want the jacobian
|
|
4188
|
-
:return: <Element 'para' at
|
|
4336
|
+
:return: <Element 'para' at 0xff1388eafc70>
|
|
4189
4337
|
"""
|
|
4190
4338
|
...
|
|
4191
4339
|
|
|
@@ -4198,7 +4346,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4198
4346
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
4199
4347
|
|
|
4200
4348
|
:param any frame: the frame for which we want the jacobian time variation
|
|
4201
|
-
:return: <Element 'para' at
|
|
4349
|
+
:return: <Element 'para' at 0xff1388ebfdb0>
|
|
4202
4350
|
"""
|
|
4203
4351
|
...
|
|
4204
4352
|
|
|
@@ -4504,7 +4652,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
4504
4652
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
4505
4653
|
|
|
4506
4654
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
4507
|
-
:return: <Element 'para' at
|
|
4655
|
+
:return: <Element 'para' at 0xff1388eb4e50>
|
|
4508
4656
|
"""
|
|
4509
4657
|
...
|
|
4510
4658
|
|
|
@@ -5614,7 +5762,7 @@ None( (placo.KinematicsSolver)arg1) -> placo.Problem :
|
|
|
5614
5762
|
None( (placo.KinematicsSolver)arg1) -> placo.RobotWrapper :
|
|
5615
5763
|
|
|
5616
5764
|
C++ signature :
|
|
5617
|
-
placo::model::RobotWrapper None(placo::kinematics::KinematicsSolver)
|
|
5765
|
+
placo::model::RobotWrapper {lvalue} None(placo::kinematics::KinematicsSolver)
|
|
5618
5766
|
"""
|
|
5619
5767
|
|
|
5620
5768
|
scale: any
|
|
@@ -7358,7 +7506,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7358
7506
|
"""
|
|
7359
7507
|
Computes all minimum distances between current collision pairs.
|
|
7360
7508
|
|
|
7361
|
-
:return: <Element 'para' at
|
|
7509
|
+
:return: <Element 'para' at 0xff1388ecf630>
|
|
7362
7510
|
"""
|
|
7363
7511
|
...
|
|
7364
7512
|
|
|
@@ -7371,7 +7519,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7371
7519
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
7372
7520
|
|
|
7373
7521
|
:param any frame: the frame for which we want the jacobian
|
|
7374
|
-
:return: <Element 'para' at
|
|
7522
|
+
:return: <Element 'para' at 0xff1388eb18b0>
|
|
7375
7523
|
"""
|
|
7376
7524
|
...
|
|
7377
7525
|
|
|
@@ -7384,7 +7532,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7384
7532
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
7385
7533
|
|
|
7386
7534
|
:param any frame: the frame for which we want the jacobian time variation
|
|
7387
|
-
:return: <Element 'para' at
|
|
7535
|
+
:return: <Element 'para' at 0xff1388ec0bd0>
|
|
7388
7536
|
"""
|
|
7389
7537
|
...
|
|
7390
7538
|
|
|
@@ -7622,7 +7770,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
7622
7770
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
7623
7771
|
|
|
7624
7772
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
7625
|
-
:return: <Element 'para' at
|
|
7773
|
+
:return: <Element 'para' at 0xff1388ecf5e0>
|
|
7626
7774
|
"""
|
|
7627
7775
|
...
|
|
7628
7776
|
|
|
@@ -9493,4 +9641,4 @@ def wrap_angle(
|
|
|
9493
9641
|
...
|
|
9494
9642
|
|
|
9495
9643
|
|
|
9496
|
-
__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::
|
|
9644
|
+
__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::humanoid': ['DummyWalk', 'Footstep', 'FootstepsPlanner', 'FootstepsPlannerNaive', 'FootstepsPlannerRepetitive', 'HumanoidParameters', 'HumanoidRobot', 'LIPM', 'LIPMTrajectory', 'Support', 'SwingFoot', 'SwingFootCubic', 'SwingFootCubicTrajectory', 'SwingFootQuintic', 'SwingFootQuinticTrajectory', 'SwingFootTrajectory', 'WPGTrajectory', 'WPGTrajectoryPart', 'WalkPatternGenerator', 'WalkTasks'], 'placo::problem': ['Expression', 'Integrator', 'IntegratorTrajectory', 'PolygonConstraint', 'Problem', 'ProblemConstraint', 'ProblemPolynom', 'QPError', 'Sparsity', 'SparsityInterval', 'Variable']}
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: placo
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.5
|
|
4
4
|
Summary: PlaCo: Rhoban Planning and Control
|
|
5
5
|
Requires-Python: >= 3.9
|
|
6
6
|
License-Expression: MIT
|
|
@@ -11,12 +11,12 @@ Home-page: https://placo.readthedocs.io/en/latest/
|
|
|
11
11
|
Project-URL: Repository, https://github.com/rhoban/placo.git
|
|
12
12
|
Requires-Dist: cmeel
|
|
13
13
|
Requires-Dist: eiquadprog >= 1.2.6, < 2
|
|
14
|
-
Requires-Dist: pin
|
|
14
|
+
Requires-Dist: pin == 3.7.0
|
|
15
15
|
Requires-Dist: rhoban-cmeel-jsoncpp
|
|
16
16
|
Requires-Dist: meshcat
|
|
17
17
|
Requires-Dist: ischedule
|
|
18
18
|
Provides-Extra: build
|
|
19
|
-
Requires-Dist: pin[build]
|
|
19
|
+
Requires-Dist: pin[build] == 3.7.0 ; extra == "build"
|
|
20
20
|
Requires-Dist: doxystub >= 0.0.13 ; extra == "build"
|
|
21
21
|
Requires-Dist: cmake<4 ; extra == "build"
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.so,sha256=NBlmEt4JO1z8mrcRjxNY-aj18rNuKZjR6ahvKnDdACM,1809200
|
|
2
|
+
cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=LYNpFebTEwHl5XMoeBsyeDNh40k5nMes7x10scuFHuE,199393
|
|
3
|
+
cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=2_sjAGdUxozDRy1AwcMdZh5hzs130AQ4lX0KPyXUDVg,8942960
|
|
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.5.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
+
placo-0.9.5.dist-info/METADATA,sha256=pNcn38rwrk9kss2D1sHX4snCWclHrA3yhUB-XOCX3R4,2628
|
|
10
|
+
placo-0.9.5.dist-info/WHEEL,sha256=UpsNPCAbucsGLzlF7xcG-xAWM966_qp3wtQSt2FQzyw,114
|
|
11
|
+
placo-0.9.5.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
placo-0.9.5.dist-info/RECORD,,
|
placo-0.9.3.dist-info/RECORD
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
cmeel.prefix/lib/liblibplaco.so,sha256=aG7WuzcEhPbmkOErtURnTbmeXVPn9NnNdp90N9qW2rA,1808232
|
|
2
|
-
cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=Go_pphorN_MshcgCkz3Ju6EfXJpo-CiFpxSa5p6PypU,196540
|
|
3
|
-
cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=tpsRb6Nr9SQ06_AsV4uGgEvvTWY20XhgP94yxnelWZ8,8827144
|
|
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.3.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
-
placo-0.9.3.dist-info/METADATA,sha256=DBHbwi-DvN5P7To0NuwzxiSbQaXooNpDsGhILdWciog,2620
|
|
10
|
-
placo-0.9.3.dist-info/WHEEL,sha256=UpsNPCAbucsGLzlF7xcG-xAWM966_qp3wtQSt2FQzyw,114
|
|
11
|
-
placo-0.9.3.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
placo-0.9.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|