placo 0.9.3__0-cp311-cp311-macosx_11_0_arm64.whl → 0.9.5__0-cp311-cp311-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.11/site-packages/placo.pyi +165 -13
- cmeel.prefix/lib/python3.11/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
|
"""
|
|
@@ -3582,9 +3731,10 @@ class FootstepsPlanner:
|
|
|
3582
3731
|
"""
|
|
3583
3732
|
...
|
|
3584
3733
|
|
|
3585
|
-
def
|
|
3734
|
+
def truncate_supports(
|
|
3586
3735
|
arg1: Supports,
|
|
3587
3736
|
arg2: int,
|
|
3737
|
+
arg3: bool,
|
|
3588
3738
|
) -> Supports:
|
|
3589
3739
|
...
|
|
3590
3740
|
|
|
@@ -3659,9 +3809,10 @@ class FootstepsPlannerNaive:
|
|
|
3659
3809
|
"""
|
|
3660
3810
|
...
|
|
3661
3811
|
|
|
3662
|
-
def
|
|
3812
|
+
def truncate_supports(
|
|
3663
3813
|
arg1: Supports,
|
|
3664
3814
|
arg2: int,
|
|
3815
|
+
arg3: bool,
|
|
3665
3816
|
) -> Supports:
|
|
3666
3817
|
...
|
|
3667
3818
|
|
|
@@ -3742,9 +3893,10 @@ class FootstepsPlannerRepetitive:
|
|
|
3742
3893
|
"""
|
|
3743
3894
|
...
|
|
3744
3895
|
|
|
3745
|
-
def
|
|
3896
|
+
def truncate_supports(
|
|
3746
3897
|
arg1: Supports,
|
|
3747
3898
|
arg2: int,
|
|
3899
|
+
arg3: bool,
|
|
3748
3900
|
) -> Supports:
|
|
3749
3901
|
...
|
|
3750
3902
|
|
|
@@ -4273,7 +4425,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4273
4425
|
"""
|
|
4274
4426
|
Computes all minimum distances between current collision pairs.
|
|
4275
4427
|
|
|
4276
|
-
:return: <Element 'para' at
|
|
4428
|
+
:return: <Element 'para' at 0x105c41710>
|
|
4277
4429
|
"""
|
|
4278
4430
|
...
|
|
4279
4431
|
|
|
@@ -4306,7 +4458,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4306
4458
|
|
|
4307
4459
|
:param any frame: the frame for which we want the jacobian
|
|
4308
4460
|
|
|
4309
|
-
:return: <Element 'para' at
|
|
4461
|
+
:return: <Element 'para' at 0x105c254e0>
|
|
4310
4462
|
"""
|
|
4311
4463
|
...
|
|
4312
4464
|
|
|
@@ -4320,7 +4472,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4320
4472
|
|
|
4321
4473
|
:param any frame: the frame for which we want the jacobian time variation
|
|
4322
4474
|
|
|
4323
|
-
:return: <Element 'para' at
|
|
4475
|
+
:return: <Element 'para' at 0x105c24270>
|
|
4324
4476
|
"""
|
|
4325
4477
|
...
|
|
4326
4478
|
|
|
@@ -4632,7 +4784,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
4632
4784
|
|
|
4633
4785
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
4634
4786
|
|
|
4635
|
-
:return: <Element 'para' at
|
|
4787
|
+
:return: <Element 'para' at 0x105c40b30>
|
|
4636
4788
|
"""
|
|
4637
4789
|
...
|
|
4638
4790
|
|
|
@@ -5796,7 +5948,7 @@ None( (placo.KinematicsSolver)arg1) -> placo.Problem :
|
|
|
5796
5948
|
None( (placo.KinematicsSolver)arg1) -> placo.RobotWrapper :
|
|
5797
5949
|
|
|
5798
5950
|
C++ signature :
|
|
5799
|
-
placo::model::RobotWrapper None(placo::kinematics::KinematicsSolver)
|
|
5951
|
+
placo::model::RobotWrapper {lvalue} None(placo::kinematics::KinematicsSolver)
|
|
5800
5952
|
"""
|
|
5801
5953
|
|
|
5802
5954
|
scale: any
|
|
@@ -7570,7 +7722,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7570
7722
|
"""
|
|
7571
7723
|
Computes all minimum distances between current collision pairs.
|
|
7572
7724
|
|
|
7573
|
-
:return: <Element 'para' at
|
|
7725
|
+
:return: <Element 'para' at 0x105c27470>
|
|
7574
7726
|
"""
|
|
7575
7727
|
...
|
|
7576
7728
|
|
|
@@ -7584,7 +7736,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7584
7736
|
|
|
7585
7737
|
:param any frame: the frame for which we want the jacobian
|
|
7586
7738
|
|
|
7587
|
-
:return: <Element 'para' at
|
|
7739
|
+
:return: <Element 'para' at 0x105c27f60>
|
|
7588
7740
|
"""
|
|
7589
7741
|
...
|
|
7590
7742
|
|
|
@@ -7598,7 +7750,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7598
7750
|
|
|
7599
7751
|
:param any frame: the frame for which we want the jacobian time variation
|
|
7600
7752
|
|
|
7601
|
-
:return: <Element 'para' at
|
|
7753
|
+
:return: <Element 'para' at 0x105c31990>
|
|
7602
7754
|
"""
|
|
7603
7755
|
...
|
|
7604
7756
|
|
|
@@ -7839,7 +7991,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
7839
7991
|
|
|
7840
7992
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
7841
7993
|
|
|
7842
|
-
:return: <Element 'para' at
|
|
7994
|
+
:return: <Element 'para' at 0x105c26d40>
|
|
7843
7995
|
"""
|
|
7844
7996
|
...
|
|
7845
7997
|
|
|
@@ -9747,4 +9899,4 @@ def wrap_angle(
|
|
|
9747
9899
|
...
|
|
9748
9900
|
|
|
9749
9901
|
|
|
9750
|
-
__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::
|
|
9902
|
+
__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=cA1EpTqepoL_AuM_5xl-keo1JEGyaYtE2qJsXA87J9I,1505632
|
|
2
|
+
cmeel.prefix/lib/python3.11/site-packages/placo.pyi,sha256=_at4y86CjCtT-c82bLuKFsptcsmFKBdKBvRvWkIvp9c,201519
|
|
3
|
+
cmeel.prefix/lib/python3.11/site-packages/placo.so,sha256=cQz4C3okLBlG85PagTBgydRLP5FJdka0-P8XK_acgB0,6750184
|
|
4
|
+
cmeel.prefix/lib/python3.11/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
+
cmeel.prefix/lib/python3.11/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
+
cmeel.prefix/lib/python3.11/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
+
cmeel.prefix/lib/python3.11/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=t66Vmq09ySSuYNkvxj8pPRXN3x8PGEstXQgBdYltQZc,111
|
|
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=SxegS_whEunlnOoAG9e8XUvgqjxqV6f-elZSr-t7bcE,1504608
|
|
2
|
-
cmeel.prefix/lib/python3.11/site-packages/placo.pyi,sha256=Q5mGYk02T72kH9kWSqvhSJ-5QGtFJPhz6QlCH_DqdLo,198609
|
|
3
|
-
cmeel.prefix/lib/python3.11/site-packages/placo.so,sha256=tkvOAMA2oNbBFb1jtrLFUEdJ1gnVVN_v46uoCiDiisU,6675864
|
|
4
|
-
cmeel.prefix/lib/python3.11/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
-
cmeel.prefix/lib/python3.11/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
-
cmeel.prefix/lib/python3.11/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
-
cmeel.prefix/lib/python3.11/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=t66Vmq09ySSuYNkvxj8pPRXN3x8PGEstXQgBdYltQZc,111
|
|
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
|