Skip to main content

Utility classes for testing (robust) equilibrium of a system in contact with the environment, and other centroidal dynamics methods.

Project description

HPP Centroidal Dynamics

Pipeline status Coverage report Code style: black pre-commit.ci status

Utility classes to check the (robust) equilibrium of a system in contact with the environment. Comes with python bindings. The main class that collects all the equilibrium-related algorithms is Equilibrium. All the algorithms take as input:

  • A list of contact points
  • A list of contact normals
  • The contact friction coefficient
  • The number of generators used for the linear approximations of the friction cones
  • The mass of the system

Once these input parameters have been specified, the user has access to four algorithms implemented in the following four methods of the class Equilibrium:

  • computeEquilibriumRobustness: compute the robustness of the equilibrium of a given a CoM (center of mass) position (negative values mean the system can not be in equilibrium).
  • checkRobustEquilibrium: checks whether the system can be in equilibrium in a specified CoM position and with a specified robustness level.
  • findExtremumOverLine: Find the extremum com position that is in robust equilibrium along the specified line.
  • findExtremumInDirection: Find the extremum com position that is in robust equilibrium in the specified direction.

All these problems boil down to solving Linear Programs. Different formulations are implemented and tested in test_static_equilibrium. More details can be found in the code documentation. In the end, we found that most of the times the dual LP formulation (DLP) is the fastest.

The test test_LP_solvers tries to solve some LP problems using qpOases and checks that the results are correct.

Dependencies

Additional dependencies for python bindings

Installation Steps for Ubuntu 12.04, 14.04 and 16.04

You can install cdd lib with the following command:

sudo apt-get install libcdd-dev

You can install Eigen3 with the following command:

 sudo apt-get install libeigen3-dev

For qpOases you have to install the pkg-config version you can find here: https://github.com/humanoid-path-planner/qpoases

git clone --recursive https://github.com/humanoid-path-planner/qpoases
mkdir qpoases/build
cd qpoases/build
cmake -DCMAKE_INSTALL_PREFIX=${DEVEL_DIR}/install ..
make install

Then you can clone this repository using ssh:

git clone --recursive git@github.com:andreadelprete/robust-equilibrium-lib.git $ROBUST_EQUI_LIB_DIR

or using http:

git clone --recursive https://github.com/andreadelprete/robust-equilibrium-lib.git $ROBUST_EQUI_LIB_DIR

And you can build this library using CMake:

mkdir $ROBUST_EQUI_LIB_DIR/build
cd $ROBUST_EQUI_LIB_DIR/build
cmake -DCMAKE_INSTALL_PREFIX=${DEVEL_DIR}/install ..
make install

Optional: CLP installation

As an alternative to qpOases you can use CLP to solve linear programs. However, we found qpOases to be faster (especially when solving a series of problems that are similar to each other, because it can exploit warm start) and more reliable, so we suggest you to stick with qpOases. In particular, we found that CLP sometimes fails to find the real optimum when using the DLP formulation.

Optional: Python bindings installation

To install the Python bindings, in the CMakeLists.txt file, first enable the BUILD_PYTHON_INTERFACE option:

OPTION (BUILD_PYTHON_INTERFACE "Build the python binding" ON)

Then rebuild the library:

cd $ROBUST_EQUI_LIB_DIR/build
cmake -DCMAKE_INSTALL_PREFIX=${DEVEL_DIR}/install ..
make install

The python bindings should then be accessible through the package centroidal_dynamics. To see example of use, you can refer to the test file which is rather self explanatory:

In spite of an exhaustive documentation, please refer to the C++ documentation, which mostly applies to python.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hpp_centroidal_dynamics-9.0.1.tar.gz (83.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

hpp_centroidal_dynamics-9.0.1-0-cp314-cp314-manylinux_2_28_x86_64.whl (153.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

hpp_centroidal_dynamics-9.0.1-0-cp314-cp314-manylinux_2_28_aarch64.whl (149.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

hpp_centroidal_dynamics-9.0.1-0-cp314-cp314-macosx_11_0_arm64.whl (135.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

hpp_centroidal_dynamics-9.0.1-0-cp314-cp314-macosx_10_9_x86_64.whl (138.5 kB view details)

Uploaded CPython 3.14macOS 10.9+ x86-64

hpp_centroidal_dynamics-9.0.1-0-cp313-cp313-manylinux_2_28_x86_64.whl (153.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

hpp_centroidal_dynamics-9.0.1-0-cp313-cp313-manylinux_2_28_aarch64.whl (149.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

hpp_centroidal_dynamics-9.0.1-0-cp313-cp313-macosx_11_0_arm64.whl (135.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hpp_centroidal_dynamics-9.0.1-0-cp313-cp313-macosx_10_9_x86_64.whl (138.3 kB view details)

Uploaded CPython 3.13macOS 10.9+ x86-64

hpp_centroidal_dynamics-9.0.1-0-cp312-cp312-manylinux_2_28_x86_64.whl (153.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

hpp_centroidal_dynamics-9.0.1-0-cp312-cp312-manylinux_2_28_aarch64.whl (149.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

hpp_centroidal_dynamics-9.0.1-0-cp312-cp312-macosx_11_0_arm64.whl (135.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hpp_centroidal_dynamics-9.0.1-0-cp312-cp312-macosx_10_9_x86_64.whl (138.3 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

hpp_centroidal_dynamics-9.0.1-0-cp311-cp311-manylinux_2_28_x86_64.whl (153.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

hpp_centroidal_dynamics-9.0.1-0-cp311-cp311-manylinux_2_28_aarch64.whl (149.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

hpp_centroidal_dynamics-9.0.1-0-cp311-cp311-macosx_11_0_arm64.whl (134.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hpp_centroidal_dynamics-9.0.1-0-cp311-cp311-macosx_10_9_x86_64.whl (138.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

hpp_centroidal_dynamics-9.0.1-0-cp310-cp310-manylinux_2_28_x86_64.whl (153.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

hpp_centroidal_dynamics-9.0.1-0-cp310-cp310-manylinux_2_28_aarch64.whl (149.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

hpp_centroidal_dynamics-9.0.1-0-cp310-cp310-macosx_11_0_arm64.whl (134.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

hpp_centroidal_dynamics-9.0.1-0-cp310-cp310-macosx_10_9_x86_64.whl (138.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file hpp_centroidal_dynamics-9.0.1.tar.gz.

File metadata

  • Download URL: hpp_centroidal_dynamics-9.0.1.tar.gz
  • Upload date:
  • Size: 83.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1.tar.gz
Algorithm Hash digest
SHA256 e3b48d8a6bea56f11da99372aed73dcf736800a32c8b50d7d30746ad3540f265
MD5 e16f334dd4a4853f1e05527fe3a88417
BLAKE2b-256 37f6d3dca0f30b0384bb58f470c3e184b5c9e69e445962ed836275a9568b5ea0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1.tar.gz:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hpp_centroidal_dynamics-9.0.1-0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1-0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7cef1844c0052f89ffc2e2c5cf21dbb11ab38a2204c10704e50c73e2bf1afa00
MD5 60f379c00ff182c99b0d3f69354bce0e
BLAKE2b-256 30ff23eb246bfa70afa4d6ac3ddf39668103773dd5883c1e7e6da018212d1823

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1-0-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hpp_centroidal_dynamics-9.0.1-0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1-0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 00ff5e3adbd5a0388f3be39eedcea86f537fb9c79a4be47c246448a6db85cd75
MD5 68262b4fdeff23f12e5f17d9f752f76e
BLAKE2b-256 7af69112b3aaba5cffd2a21d3b823267093277989bb72fcf29862932f0006cbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1-0-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hpp_centroidal_dynamics-9.0.1-0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1-0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 323d4679323dfb8fcbce80dc29726afe6e83ba25b257e8c3b15a4a0ed0e81d0e
MD5 7bade262cf6820bea2710932f28575df
BLAKE2b-256 0bb9b699f270ec788249053952245e42d1bd497f1f18501f87b06d13d0386c5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1-0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hpp_centroidal_dynamics-9.0.1-0-cp314-cp314-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1-0-cp314-cp314-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9b050ae31f6a9fea534957eeb028786de321b202467532317b2dc61425404546
MD5 6e227b1ffbd1d30bf05349f741fcb4ce
BLAKE2b-256 b8ad93ea30b834a2242542b6501236e3f7bd9cf7fc4d701b6bf576a0bfb0c534

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1-0-cp314-cp314-macosx_10_9_x86_64.whl:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hpp_centroidal_dynamics-9.0.1-0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1-0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e62e3f6f5720de81cc443fad0d977b51bb3c4347a5c0a6b0e8c67141e713af4e
MD5 1f5ec60f28ab903e450b11a0880ddb89
BLAKE2b-256 429c648c07cef292bd8f3affbd4fb985019bdb8e20a62c25da22200791a123ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1-0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hpp_centroidal_dynamics-9.0.1-0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1-0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 30d658f766d320fe1c07e82acffc5612fd3d2e0dce380d769915f1e2933b6449
MD5 1b0c6751b7068fb8f92ea4a19add1e84
BLAKE2b-256 1b9788133fd937e5d69386d74265586548526b63d86cfb33a63fa0f703919739

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1-0-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hpp_centroidal_dynamics-9.0.1-0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1-0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0dbfe1c80d8c46a0eaafc6f468c1218181611770af7799b955bbf6ed0bf6453
MD5 d5868503dbd5f9a2a7b4de4fdbb348dd
BLAKE2b-256 bddb99a0f6b5e05b00cd0f6180b5c5df0f9a9170a5832135c84effe3280149ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1-0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hpp_centroidal_dynamics-9.0.1-0-cp313-cp313-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1-0-cp313-cp313-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c720c6524826c25b0651b8e1c3d552a4e5f3661976ef5dc34d3ad29ab0f0f50
MD5 211baf84cc0df4018d984ac177fa6aa9
BLAKE2b-256 1ffc1fa6b6484bfb5f766802095b6a4b29dd138f5a762fc4cfe2fa50f18ffb40

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1-0-cp313-cp313-macosx_10_9_x86_64.whl:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hpp_centroidal_dynamics-9.0.1-0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1-0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b437e919ed7bdf5458c9d507a9a731b63e6b5e00308d824c2e505644ecef31ff
MD5 cdace85c347f382fec16c900d4c5ad91
BLAKE2b-256 59c37a6566fde150c70d8c88eaf9f54fb5cc59a74772fd7495b155e1c3edacfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1-0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hpp_centroidal_dynamics-9.0.1-0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1-0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba9e4cc9d4ebdd2677d769207acfab02d0e416d5535a964ae0c2b0f4a302aade
MD5 749f5ab818623e73340c99a0b1dfec52
BLAKE2b-256 059952eb365c495f09eeb1223abf2f56fabbe7a90a5dfe10659c14c6e9e0a93c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1-0-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hpp_centroidal_dynamics-9.0.1-0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1-0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bac14b2dd157d3cda2bac7a0a2a4cb344c1281d3c53897c9393ed6a1cebbf4b2
MD5 c513b0e3609ea269ba5eacb4f68d4b12
BLAKE2b-256 16f36b6aa8c75b7ad5cb3f0867d68531ce66f78f8c9c3932707d1acc16941581

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1-0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hpp_centroidal_dynamics-9.0.1-0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1-0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9db0a0520140b5b76cda454407c34f4cb8ca6d377755be94d84b5e122b5dde02
MD5 e438d8394840f2dfa25fc523973d5ac5
BLAKE2b-256 74b7eb4e75facfa4cd343433edbf4e89eee248e60203c7c7ce4dcf1065c823dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1-0-cp312-cp312-macosx_10_9_x86_64.whl:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hpp_centroidal_dynamics-9.0.1-0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1-0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 961a3a831bee1d4ffef0d045611ba0e2d1f6df1a6d247da72c7dd095f06dc16c
MD5 31105d39fd7a202dadde086a0900dce4
BLAKE2b-256 30e8eef618bdac619edb992f1668f09cea1816ddb5b8e4d1a48e4b06b39ef2f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1-0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hpp_centroidal_dynamics-9.0.1-0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1-0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 509ab685a41c7a32bb399d653bbba4a1d1c6a67616efe6a056ee302d212be3ca
MD5 7ded43a195ee375da71f726248cc6fa7
BLAKE2b-256 6f9ba4f68b934c3523673c9d05254fc9e4bb66ee27c8ebcd48a6924cc4c0097a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1-0-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hpp_centroidal_dynamics-9.0.1-0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1-0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d147bb15b7e8551ca9251faa1c068f9e28a0420485ceae5070f17fd98dcc055
MD5 c1c56821c9a6032d89978ed941404c21
BLAKE2b-256 06ace26a64d1b9cba85948f5deee25d2cd121b84a982564c2da87711faa983f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1-0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hpp_centroidal_dynamics-9.0.1-0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1-0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 907f57fa1c9a738af84d8e31e77ba7ffe90f1923b9a21c6455d6f4ba87a9c770
MD5 a47e744c093cce4680a3bb52269ec68e
BLAKE2b-256 1306a6cba3c15430a8f184d95398888b9e0af2a13da24979137116d3eae83357

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1-0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hpp_centroidal_dynamics-9.0.1-0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1-0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a953497ee18a92027c87a944d76696bdd49501986e99f8a6021e345b94044b78
MD5 5511946b942906e32e1ff3b5b291e5a3
BLAKE2b-256 c22a1da3dcacb7f3029920aae4c7ca8390c822387dd984472f855e8d119c7baf

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1-0-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hpp_centroidal_dynamics-9.0.1-0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1-0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2929b8aa64562c489b9bfe5cacee54f2e6faaf6b429d15573834400470e43024
MD5 8b111ac67c3cc1301a828d0c2b3cbe6b
BLAKE2b-256 a1a97a0b31e5511f39fd8a7344f7032b6efd58546ab49045a4e43c30e4141e3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1-0-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hpp_centroidal_dynamics-9.0.1-0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1-0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36f9009174bfd254d79745f7cb29849eb57e1a2cd87757908f83905c9ec2d0a5
MD5 92be1a4dad0d7b7cdd666edf91220bba
BLAKE2b-256 d0985f395e7e6e371a3f1a1b4be08394cbe4418552ea3d1915c6bf6f3958ec53

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1-0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hpp_centroidal_dynamics-9.0.1-0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hpp_centroidal_dynamics-9.0.1-0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 313253c3a1c3347c7660529a030fbc878a20d49419a5a436f51ba29544a81a13
MD5 3cb8d421e4dc0f2b9b1c39a531c70340
BLAKE2b-256 5c2e353804baf74cd88ebfb7bf41cf1a5f7b6d59f49d916dc6e157e44240c47c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hpp_centroidal_dynamics-9.0.1-0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on cmake-wheel/hpp-centroidal-dynamics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page