placo 0.9.3__0-cp39-cp39-macosx_11_0_arm64.whl → 0.9.5__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.
- cmeel.prefix/lib/liblibplaco.dylib +0 -0
- cmeel.prefix/lib/python3.9/site-packages/placo.pyi +165 -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
|
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)
|
|
@@ -1357,6 +1358,154 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
1357
1358
|
...
|
|
1358
1359
|
|
|
1359
1360
|
|
|
1361
|
+
class DummyWalk:
|
|
1362
|
+
T_world_left: any
|
|
1363
|
+
"""
|
|
1364
|
+
|
|
1365
|
+
None( (placo.DummyWalk)arg1) -> object :
|
|
1366
|
+
|
|
1367
|
+
C++ signature :
|
|
1368
|
+
Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1369
|
+
"""
|
|
1370
|
+
|
|
1371
|
+
T_world_next: any
|
|
1372
|
+
"""
|
|
1373
|
+
|
|
1374
|
+
None( (placo.DummyWalk)arg1) -> object :
|
|
1375
|
+
|
|
1376
|
+
C++ signature :
|
|
1377
|
+
Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1378
|
+
"""
|
|
1379
|
+
|
|
1380
|
+
T_world_right: any
|
|
1381
|
+
"""
|
|
1382
|
+
|
|
1383
|
+
None( (placo.DummyWalk)arg1) -> object :
|
|
1384
|
+
|
|
1385
|
+
C++ signature :
|
|
1386
|
+
Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1387
|
+
"""
|
|
1388
|
+
|
|
1389
|
+
def __init__(
|
|
1390
|
+
self,
|
|
1391
|
+
robot: RobotWrapper, # placo::model::RobotWrapper
|
|
1392
|
+
) -> any:
|
|
1393
|
+
...
|
|
1394
|
+
|
|
1395
|
+
feet_spacing: any
|
|
1396
|
+
"""
|
|
1397
|
+
|
|
1398
|
+
None( (placo.DummyWalk)arg1) -> float :
|
|
1399
|
+
|
|
1400
|
+
C++ signature :
|
|
1401
|
+
double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1402
|
+
"""
|
|
1403
|
+
|
|
1404
|
+
lift_height: any
|
|
1405
|
+
"""
|
|
1406
|
+
|
|
1407
|
+
None( (placo.DummyWalk)arg1) -> float :
|
|
1408
|
+
|
|
1409
|
+
C++ signature :
|
|
1410
|
+
double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1411
|
+
"""
|
|
1412
|
+
|
|
1413
|
+
def next_step(
|
|
1414
|
+
self,
|
|
1415
|
+
dx: float, # double
|
|
1416
|
+
dy: float, # double
|
|
1417
|
+
dtheta: float, # double
|
|
1418
|
+
) -> None:
|
|
1419
|
+
"""
|
|
1420
|
+
Produce the next step, change support foot.
|
|
1421
|
+
|
|
1422
|
+
:param float dx: dx
|
|
1423
|
+
|
|
1424
|
+
:param float dy: dy
|
|
1425
|
+
|
|
1426
|
+
:param float dtheta: dtheta
|
|
1427
|
+
"""
|
|
1428
|
+
...
|
|
1429
|
+
|
|
1430
|
+
def reset(
|
|
1431
|
+
self,
|
|
1432
|
+
support_left: bool = False, # bool
|
|
1433
|
+
) -> None:
|
|
1434
|
+
"""
|
|
1435
|
+
Reset the robot with a given support.
|
|
1436
|
+
|
|
1437
|
+
:param bool support_left: whether the first support is left
|
|
1438
|
+
"""
|
|
1439
|
+
...
|
|
1440
|
+
|
|
1441
|
+
robot: any
|
|
1442
|
+
"""
|
|
1443
|
+
|
|
1444
|
+
None( (placo.DummyWalk)arg1) -> placo.RobotWrapper :
|
|
1445
|
+
|
|
1446
|
+
C++ signature :
|
|
1447
|
+
placo::model::RobotWrapper {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1448
|
+
"""
|
|
1449
|
+
|
|
1450
|
+
solver: any
|
|
1451
|
+
"""
|
|
1452
|
+
|
|
1453
|
+
None( (placo.DummyWalk)arg1) -> placo.KinematicsSolver :
|
|
1454
|
+
|
|
1455
|
+
C++ signature :
|
|
1456
|
+
placo::kinematics::KinematicsSolver {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1457
|
+
"""
|
|
1458
|
+
|
|
1459
|
+
support_left: any
|
|
1460
|
+
"""
|
|
1461
|
+
|
|
1462
|
+
None( (placo.DummyWalk)arg1) -> bool :
|
|
1463
|
+
|
|
1464
|
+
C++ signature :
|
|
1465
|
+
bool {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1466
|
+
"""
|
|
1467
|
+
|
|
1468
|
+
trunk_height: any
|
|
1469
|
+
"""
|
|
1470
|
+
|
|
1471
|
+
None( (placo.DummyWalk)arg1) -> float :
|
|
1472
|
+
|
|
1473
|
+
C++ signature :
|
|
1474
|
+
double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1475
|
+
"""
|
|
1476
|
+
|
|
1477
|
+
trunk_pitch: any
|
|
1478
|
+
"""
|
|
1479
|
+
|
|
1480
|
+
None( (placo.DummyWalk)arg1) -> float :
|
|
1481
|
+
|
|
1482
|
+
C++ signature :
|
|
1483
|
+
double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1484
|
+
"""
|
|
1485
|
+
|
|
1486
|
+
def update(
|
|
1487
|
+
self,
|
|
1488
|
+
t: float, # double
|
|
1489
|
+
) -> None:
|
|
1490
|
+
"""
|
|
1491
|
+
Updates the internal IK.
|
|
1492
|
+
|
|
1493
|
+
:param float t: phase in step from 0 to 1
|
|
1494
|
+
"""
|
|
1495
|
+
...
|
|
1496
|
+
|
|
1497
|
+
def update_T_world_support(
|
|
1498
|
+
self,
|
|
1499
|
+
T_world_support: numpy.ndarray, # Eigen::Affine3d
|
|
1500
|
+
) -> None:
|
|
1501
|
+
"""
|
|
1502
|
+
Update the support to a given world pose.
|
|
1503
|
+
|
|
1504
|
+
:param numpy.ndarray T_world_support:
|
|
1505
|
+
"""
|
|
1506
|
+
...
|
|
1507
|
+
|
|
1508
|
+
|
|
1360
1509
|
class DynamicsCoMTask:
|
|
1361
1510
|
A: any
|
|
1362
1511
|
"""
|
|
@@ -3578,9 +3727,10 @@ class FootstepsPlanner:
|
|
|
3578
3727
|
"""
|
|
3579
3728
|
...
|
|
3580
3729
|
|
|
3581
|
-
def
|
|
3730
|
+
def truncate_supports(
|
|
3582
3731
|
arg1: Supports,
|
|
3583
3732
|
arg2: int,
|
|
3733
|
+
arg3: bool,
|
|
3584
3734
|
) -> Supports:
|
|
3585
3735
|
...
|
|
3586
3736
|
|
|
@@ -3655,9 +3805,10 @@ class FootstepsPlannerNaive:
|
|
|
3655
3805
|
"""
|
|
3656
3806
|
...
|
|
3657
3807
|
|
|
3658
|
-
def
|
|
3808
|
+
def truncate_supports(
|
|
3659
3809
|
arg1: Supports,
|
|
3660
3810
|
arg2: int,
|
|
3811
|
+
arg3: bool,
|
|
3661
3812
|
) -> Supports:
|
|
3662
3813
|
...
|
|
3663
3814
|
|
|
@@ -3738,9 +3889,10 @@ class FootstepsPlannerRepetitive:
|
|
|
3738
3889
|
"""
|
|
3739
3890
|
...
|
|
3740
3891
|
|
|
3741
|
-
def
|
|
3892
|
+
def truncate_supports(
|
|
3742
3893
|
arg1: Supports,
|
|
3743
3894
|
arg2: int,
|
|
3895
|
+
arg3: bool,
|
|
3744
3896
|
) -> Supports:
|
|
3745
3897
|
...
|
|
3746
3898
|
|
|
@@ -4269,7 +4421,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4269
4421
|
"""
|
|
4270
4422
|
Computes all minimum distances between current collision pairs.
|
|
4271
4423
|
|
|
4272
|
-
:return: <Element 'para' at
|
|
4424
|
+
:return: <Element 'para' at 0x1077d4630>
|
|
4273
4425
|
"""
|
|
4274
4426
|
...
|
|
4275
4427
|
|
|
@@ -4302,7 +4454,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4302
4454
|
|
|
4303
4455
|
:param any frame: the frame for which we want the jacobian
|
|
4304
4456
|
|
|
4305
|
-
:return: <Element 'para' at
|
|
4457
|
+
:return: <Element 'para' at 0x1077cf180>
|
|
4306
4458
|
"""
|
|
4307
4459
|
...
|
|
4308
4460
|
|
|
@@ -4316,7 +4468,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4316
4468
|
|
|
4317
4469
|
:param any frame: the frame for which we want the jacobian time variation
|
|
4318
4470
|
|
|
4319
|
-
:return: <Element 'para' at
|
|
4471
|
+
:return: <Element 'para' at 0x1077ce400>
|
|
4320
4472
|
"""
|
|
4321
4473
|
...
|
|
4322
4474
|
|
|
@@ -4628,7 +4780,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
4628
4780
|
|
|
4629
4781
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
4630
4782
|
|
|
4631
|
-
:return: <Element 'para' at
|
|
4783
|
+
:return: <Element 'para' at 0x1077d9ea0>
|
|
4632
4784
|
"""
|
|
4633
4785
|
...
|
|
4634
4786
|
|
|
@@ -5788,7 +5940,7 @@ None( (placo.KinematicsSolver)arg1) -> placo.Problem :
|
|
|
5788
5940
|
None( (placo.KinematicsSolver)arg1) -> placo.RobotWrapper :
|
|
5789
5941
|
|
|
5790
5942
|
C++ signature :
|
|
5791
|
-
placo::model::RobotWrapper None(placo::kinematics::KinematicsSolver)
|
|
5943
|
+
placo::model::RobotWrapper {lvalue} None(placo::kinematics::KinematicsSolver)
|
|
5792
5944
|
"""
|
|
5793
5945
|
|
|
5794
5946
|
scale: any
|
|
@@ -7562,7 +7714,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7562
7714
|
"""
|
|
7563
7715
|
Computes all minimum distances between current collision pairs.
|
|
7564
7716
|
|
|
7565
|
-
:return: <Element 'para' at
|
|
7717
|
+
:return: <Element 'para' at 0x106eb72c0>
|
|
7566
7718
|
"""
|
|
7567
7719
|
...
|
|
7568
7720
|
|
|
@@ -7576,7 +7728,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7576
7728
|
|
|
7577
7729
|
:param any frame: the frame for which we want the jacobian
|
|
7578
7730
|
|
|
7579
|
-
:return: <Element 'para' at
|
|
7731
|
+
:return: <Element 'para' at 0x106eb7db0>
|
|
7580
7732
|
"""
|
|
7581
7733
|
...
|
|
7582
7734
|
|
|
@@ -7590,7 +7742,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7590
7742
|
|
|
7591
7743
|
:param any frame: the frame for which we want the jacobian time variation
|
|
7592
7744
|
|
|
7593
|
-
:return: <Element 'para' at
|
|
7745
|
+
:return: <Element 'para' at 0x106ec0860>
|
|
7594
7746
|
"""
|
|
7595
7747
|
...
|
|
7596
7748
|
|
|
@@ -7831,7 +7983,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
7831
7983
|
|
|
7832
7984
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
7833
7985
|
|
|
7834
|
-
:return: <Element 'para' at
|
|
7986
|
+
:return: <Element 'para' at 0x106eb3b30>
|
|
7835
7987
|
"""
|
|
7836
7988
|
...
|
|
7837
7989
|
|
|
@@ -9739,4 +9891,4 @@ def wrap_angle(
|
|
|
9739
9891
|
...
|
|
9740
9892
|
|
|
9741
9893
|
|
|
9742
|
-
__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::
|
|
9894
|
+
__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.dylib,sha256=TIerlJRQAP3hembrKJNDsNZPCctJcMLfgA3AupMkW-I,1505632
|
|
2
|
+
cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=WFAd1kgqcDBim6JyY3pTO_IMosNMP6wYmhQ620tWGm0,201443
|
|
3
|
+
cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=pJxrBCDpppmC43aLT1Am0v40gE0ii-oqOqB9ihKtJok,6750184
|
|
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=L4i5x-b2_mmN301N-Fm2blmgWxGr90rVrliWtA2YuAU,109
|
|
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.dylib,sha256=1WriBl-cFKo2AE-ibn7nhfCn_n5JrTLSfLPmp4ug1_c,1504608
|
|
2
|
-
cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=oIToWGrI3w8h8qWkyQQ4j2Jv3GvnKbeARY2guruUUFE,198533
|
|
3
|
-
cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=uB78KPMrvVjOl4Va_X_L61MI_2PGJvODclNrszOUKbw,6675864
|
|
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=L4i5x-b2_mmN301N-Fm2blmgWxGr90rVrliWtA2YuAU,109
|
|
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
|