Skip to main content

An extension of the Flexible Collision Library

Project description

Coal — An extension of the Flexible Collision Library

Pipeline status Documentation Coverage report Conda Downloads Conda Version PyPI version black ruff

FCL was forked in 2015, creating a new project called HPP-FCL. Since then, a large part of the code has been rewritten or removed (unused and untested code), and new features have been introduced (see below). Due to these major changes, it was decided in 2024 to rename the HPP-FCL project to Coal.

If you use Coal in your projects and research papers, we would appreciate it if you would cite it.

New features

Compared to the original FCL library, the main new features are:

  • dedicated and efficient implementations of the GJK and the EPA algorithms (we do not rely on libccd)
  • the support of safety margins for collision detection
  • an accelerated version of collision detection à la Nesterov, which leads to increased performance (up to a factor of 2). More details are available in this paper
  • the computation of a lower bound of the distance between two objects when collision checking is performed, and no collision is found
  • the implementation of Python bindings for easy code prototyping
  • the support of new geometries such as height fields, capsules, ellipsoids, etc.
  • enhance reliability with the fix of a myriad of bugs
  • efficient computation of contact points and contact patches between objects
  • full support of object serialization via Boost.Serialization

Note: the broad phase was reintroduced by Justin Carpentier in 2022, based on the FCL version 0.7.0.

This project is now used in several robotics frameworks such as Pinocchio, an open-source library which implements efficient and versatile rigid-body dynamics algorithms, the Humanoid Path Planner, an open-source library for Motion and Manipulation Planning. Coal has recently also been used to develop Simple, a new (differentiable) and efficient simulator for robotics and beyond.

A high-performance library

Unlike the original FCL library, Coal implements the well-established GJK algorithm and its variants for collision detection and distance computation. These implementations lead to state-of-the-art performance, as shown in the figures below.

On the one hand, we have benchmarked Coal against major state-of-the-art software alternatives:

  1. the Bullet simulator,
  2. the original FCL library (used in the Drake framework),
  3. the libccd library (used in MuJoCo).

The results are depicted in the following figure, which notably shows that the accelerated variants of GJK largely outperform by a large margin (from 5x up to 15x times faster). Please notice that the y-axis is in log scale.

Coal vs the rest of the world

On the other hand, why do we care about dedicated collision detection solvers like GJK for the narrow phase? Why can't we simply formulate the collision detection problem as a quadratic problem and call an off-the-shelf optimization solver like ProxQP)? Here is why:

Coal vs generic QP solvers

One can observe that GJK-based approaches largely outperform solutions based on classic optimization solvers (e.g., QP solver like ProxQP), notably for large geometries composed of tens or hundreds of vertices.

Open-source projects relying on Pinocchio

  • Pinocchio A fast and flexible implementation of Rigid Body Dynamics algorithms and their analytical derivatives.
  • IfcOpenShell Open source IFC library and geometry engine.
  • Crocoddyl A software to realize model predictive control for complex robotics platforms.
  • TSID A software that implements a Task Space Inverse Dynamics QP.
  • HPP A SDK that implements motion planners for humanoids and other robots.
  • Jiminy A simulator based on Pinocchio.
  • ocs2 A toolbox for Optimal Control for Switched Systems (OCS2)

Installation

Conda

Coal can be installed from the conda-forge channel:

conda install coal -c conda-forge

Build

You can find build instruction here.

C++ example

Both the C++ library and the python bindings can be installed as simply as conda -c conda-forge install coal. The .so library, include files and python bindings will then be installed under $CONDA_PREFIX/lib, $CONDA_PREFIX/include and $CONDA_PREFIX/lib/python3.XX/site-packages.

Here is an example of using Coal in C++:

#include "coal/math/transform.h"
#include "coal/mesh_loader/loader.h"
#include "coal/BVH/BVH_model.h"
#include "coal/collision.h"
#include "coal/collision_data.h"
#include <iostream>
#include <memory>

// Function to load a convex mesh from a `.obj`, `.stl` or `.dae` file.
//
// This function imports the object inside the file as a BVHModel, i.e. a point cloud
// which is hierarchically transformed into a tree of bounding volumes.
// The leaves of this tree are the individual points of the point cloud
// stored in the `.obj` file.
// This BVH can then be used for collision detection.
//
// For better computational efficiency, we sometimes prefer to work with
// the convex hull of the point cloud. This insures that the underlying object
// is convex and thus very fast collision detection algorithms such as
// GJK or EPA can be called with this object.
// Consequently, after creating the BVH structure from the point cloud, this function
// also computes its convex hull.
std::shared_ptr<coal::ConvexBase> loadConvexMesh(const std::string& file_name) {
  coal::NODE_TYPE bv_type = coal::BV_AABB;
  coal::MeshLoader loader(bv_type);
  coal::BVHModelPtr_t bvh = loader.load(file_name);
  bvh->buildConvexHull(true, "Qt");
  return bvh->convex;
}

int main() {
  // Create the coal shapes.
  // Coal supports many primitive shapes: boxes, spheres, capsules, cylinders, ellipsoids, cones, planes,
  // halfspace and convex meshes (i.e. convex hulls of clouds of points).
  // It also supports BVHs (bounding volumes hierarchies), height-fields and octrees.
  std::shared_ptr<coal::Ellipsoid> shape1 = std::make_shared<coal::Ellipsoid>(0.7, 1.0, 0.8);
  std::shared_ptr<coal::ConvexBase> shape2 = loadConvexMesh("../path/to/mesh/file.obj");

  // Define the shapes' placement in 3D space
  coal::Transform3s T1;
  T1.setQuatRotation(coal::Quaternion3f::UnitRandom());
  T1.setTranslation(coal::Vec3s::Random());
  coal::Transform3s T2 = coal::Transform3s::Identity();
  T2.setQuatRotation(coal::Quaternion3f::UnitRandom());
  T2.setTranslation(coal::Vec3s::Random());

  // Define collision requests and results.
  //
  // The collision request allows to set parameters for the collision pair.
  // For example, we can set a positive or negative security margin.
  // If the distance between the shapes is less than the security margin, the shapes
  // will be considered in collision.
  // Setting a positive security margin can be usefull in motion planning,
  // i.e to prevent shapes from getting too close to one another.
  // In physics simulation, allowing a negative security margin may be usefull to stabilize the simulation.
  coal::CollisionRequest col_req;
  col_req.security_margin = 1e-1;
  // A collision result stores the result of the collision test (signed distance between the shapes,
  // witness points location, normal etc.)
  coal::CollisionResult col_res;

  // Collision call
  coal::collide(shape1.get(), T1, shape2.get(), T2, col_req, col_res);

  // We can access the collision result once it has been populated
  std::cout << "Collision? " << col_res.isCollision() << "\n";
  if (col_res.isCollision()) {
    coal::Contact contact = col_res.getContact(0);
    // The penetration depth does **not** take into account the security margin.
    // Consequently, the penetration depth is the true signed distance which separates the shapes.
    // To have the distance which takes into account the security margin, we can simply add the two together.
    std::cout << "Penetration depth: " << contact.penetration_depth << "\n";
    std::cout << "Distance between the shapes including the security margin: " << contact.penetration_depth + col_req.security_margin << "\n";
    std::cout << "Witness point on shape1: " << contact.nearest_points[0].transpose() << "\n";
    std::cout << "Witness point on shape2: " << contact.nearest_points[1].transpose() << "\n";
    std::cout << "Normal: " << contact.normal.transpose() << "\n";
  }

  // Before calling another collision test, it is important to clear the previous results stored in the collision result.
  col_res.clear();

  return 0;
}

Python example

Here is the C++ example from above translated in python using the python bindings of Coal:

import numpy as np
import coal
# Optional:
# The Pinocchio library is a rigid body algorithms library and has a handy SE3 module.
# It can be installed as simply as `conda -c conda-forge install pinocchio`.
# Installing pinocchio also installs coal.
import pinocchio as pin

def loadConvexMesh(file_name: str):
    loader = coal.MeshLoader()
    bvh: coal.BVHModelBase = loader.load(file_name)
    bvh.buildConvexHull(True, "Qt")
    return bvh.convex

if __name__ == "__main__":
    # Create coal shapes
    shape1 = coal.Ellipsoid(0.7, 1.0, 0.8)
    shape2 = loadConvexMesh("../path/to/mesh/file.obj")

    # Define the shapes' placement in 3D space
    T1 = coal.Transform3s()
    T1.setTranslation(pin.SE3.Random().translation)
    T1.setRotation(pin.SE3.Random().rotation)
    T2 = coal.Transform3s();
    # Using np arrays also works
    T1.setTranslation(np.random.rand(3))
    T2.setRotation(pin.SE3.Random().rotation)

    # Define collision requests and results
    col_req = coal.CollisionRequest()
    col_res = coal.CollisionResult()

    # Collision call
    coal.collide(shape1, T1, shape2, T2, col_req, col_res)

    # Accessing the collision result once it has been populated
    print("Is collision? ", {col_res.isCollision()})
    if col_res.isCollision():
        contact: coal.Contact = col_res.getContact(0)
        print("Penetration depth: ", contact.penetration_depth)
        print("Distance between the shapes including the security margin: ", contact.penetration_depth + col_req.security_margin)
        print("Witness point shape1: ", contact.getNearestPoint1())
        print("Witness point shape2: ", contact.getNearestPoint2())
        print("Normal: ", contact.normal)

    # Before running another collision call, it is important to clear the old one
    col_res.clear()

Acknowledgments

The development of Coal is actively supported by the Gepetto team @LAAS-CNRS, the Willow team @INRIA and, to some extent, Eureka Robotics.

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

coal_library-3.0.1.tar.gz (3.3 MB view details)

Uploaded Source

Built Distributions

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

coal_library-3.0.1-0-cp313-cp313-manylinux_2_28_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

coal_library-3.0.1-0-cp313-cp313-manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

coal_library-3.0.1-0-cp313-cp313-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

coal_library-3.0.1-0-cp313-cp313-macosx_10_9_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.13macOS 10.9+ x86-64

coal_library-3.0.1-0-cp312-cp312-manylinux_2_28_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

coal_library-3.0.1-0-cp312-cp312-manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

coal_library-3.0.1-0-cp312-cp312-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

coal_library-3.0.1-0-cp312-cp312-macosx_10_9_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

coal_library-3.0.1-0-cp311-cp311-manylinux_2_28_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

coal_library-3.0.1-0-cp311-cp311-manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

coal_library-3.0.1-0-cp311-cp311-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

coal_library-3.0.1-0-cp311-cp311-macosx_10_9_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

coal_library-3.0.1-0-cp310-cp310-manylinux_2_28_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

coal_library-3.0.1-0-cp310-cp310-manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

coal_library-3.0.1-0-cp310-cp310-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

coal_library-3.0.1-0-cp310-cp310-macosx_10_9_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

coal_library-3.0.1-0-cp39-cp39-manylinux_2_28_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

coal_library-3.0.1-0-cp39-cp39-manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

coal_library-3.0.1-0-cp39-cp39-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

coal_library-3.0.1-0-cp39-cp39-macosx_10_9_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

coal_library-3.0.1-0-cp38-cp38-manylinux_2_28_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

coal_library-3.0.1-0-cp38-cp38-manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

coal_library-3.0.1-0-cp38-cp38-macosx_10_9_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file coal_library-3.0.1.tar.gz.

File metadata

  • Download URL: coal_library-3.0.1.tar.gz
  • Upload date:
  • Size: 3.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for coal_library-3.0.1.tar.gz
Algorithm Hash digest
SHA256 40aa6d4e7d6dbe259d3637e697380c8fdec0dcec89886e9cf0cbd36d2a9df2e5
MD5 51fa981aa3ae6caabd40522ece7daf8a
BLAKE2b-256 d020ad159b6d9eb7f4158c7dfa71e335cd89c35288de1ae23be06e24a986a6d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1.tar.gz:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 96ce11ffe98215ce6845c435322a1e55297c97f532e0e22ef41e815887d09a41
MD5 036bf8e21ace9fc3ac9b9185e2053e58
BLAKE2b-256 10f4615449e99cb23a258a9a9178ea7b56e634b3b1e4b4f07dce79708d3ad245

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1013d326633664f3701f91007b9738d8d79465da5a15cd75c65e696304fff366
MD5 5401517cbb7174ca256911d3843909d6
BLAKE2b-256 c42aba0c897358597b6976aee28e5e849f87ddae132cce04d9e8415003473a0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61a33e9e6d2bd695da718468d0cd3d9b6e20d4dafced90a38b1c17399b3ab73d
MD5 4eb0f1c93d7bd43c98977f1059b339cd
BLAKE2b-256 d8a91c6c3a9d480b8b97c3eafc3c964454f4046d2ea6b780dc0dbc801f9bd41f

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp313-cp313-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp313-cp313-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8594b26e115d1a78b13db4dbcd2b25e834517734f104decd355d09e3b494d191
MD5 66d2a40079a8d820f1766a3835875d37
BLAKE2b-256 5ac2b45fb444004d4026d936297b2c5183fca7c42ad31b1399020ce6c57ba84f

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp313-cp313-macosx_10_9_x86_64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5701232b34d2c70b622066c8796079ecda9bac77a60044650daed25da77637ef
MD5 425deab0ffcceb029e8af4e32a6a70e9
BLAKE2b-256 3f4cb8c6c3627f1fe0be7972e38fb50899af8de87745dc8ceb40af82badf185e

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad7e8ecd9421b02190a2d4f504d8c53a63f91ab14182deadb508a7e44efba367
MD5 c4c167747300256c45c8770b116af7fc
BLAKE2b-256 ddb53014b8f9382539f72ab30f32cd263ee4c885b9926180f79ed7d7853f4a8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1def214c7aaee3e45dbcdc9049c28096cb945b194b5eb5cad867d5811430255e
MD5 636230ef8528b7199f2da1fe5f2a04ff
BLAKE2b-256 3cd6d6b2f7256775ec71886d3ffbc3d00bed3594bef23314adaa6e3c23853e5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f7f0c01e839c455712b540e15d8719ff986e726beed306c7f73424c37021e705
MD5 13306fb7b6e8f2ca68d89a71c41ef9d3
BLAKE2b-256 f429469f0b0b086576413e92f68b83bec3ca29b2e0f17c27f2f7c24cd0700d32

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp312-cp312-macosx_10_9_x86_64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a00492012bb43d3386041872cf98d7fdd7cc546a6bb53cba4a478de8c70a0fa4
MD5 39449c9618ace04537fd4e64c32a233e
BLAKE2b-256 68404ae9c8f09532174c49bd152c46efc71f4ee5596236eaef9901ba643b33d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64129fe9fa2374134a8d18b83051da229ff9987773df7cf0d2a8bd1dbbe6139e
MD5 40e77804e936cdc0af136f74741dc81e
BLAKE2b-256 4b3862d5effedab4ad9312e38b91e462b15bca42fbb6a02f2400ef67dbb618eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a7ba0b7f51d1e419466b5b1778730547bb8b240fb3f5e373dd9ec9ec372ecb0
MD5 766ce7c712c3eab043b059bc25330bf5
BLAKE2b-256 01988090cc15e4733b14de32f54523f1c2f007b826cbdb0b9a2aa864186cb0b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e26cfc2c3953d263cf4c9ba873794e0b79736a5d391fdfababcc161929bf5ed7
MD5 32163d34e2341db999f3f02a4e66f200
BLAKE2b-256 c4fe8511aba274acbc724678c9b7944cca5c298e038b4c1316e501a4cfca2b0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c939380c0dc8a3cbb177ddd14c5ddac5f8beeb3d6b8b1e89d4a7d533567532b3
MD5 defd904c93709fb1cafdd76488e7e947
BLAKE2b-256 c80c165082211ab7df98ab1aacae6f7354f1b3e6c67cc966ec8ef6ea27c8e229

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 566a61a913b037e9e6118a42cc1a1170c4b126dec4f13c5628d523e6a93a473a
MD5 14de4ad0b5e9062422c81ed662615f1b
BLAKE2b-256 e6490529dddc58fe7d435d43e50b33852ec5f8121f57e87cce1d7bfce4929a23

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e1bdc7575afcdda27a7487af19b7ffc42272fa1859d56f74b40b9512fb23931
MD5 c2e03b01d3ab3878d6e77168ae382100
BLAKE2b-256 3ae307c5e05cf2d0f2feef5b9e226f30d11cbca29f5c30173ec8a3fc93f01e59

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0a9d44f1311f165603eab3f4abc96aed9f5739310305638937fbe6dd5cc563be
MD5 40182f3b9f0b4d7a9fc9395b5e6fe8d8
BLAKE2b-256 9cee14464beb631396090028267fe4cd167a38ee382bb6f7184961eeb2ab88e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 080b268beb61a53805a464a6283c218c85e66dc3037df58b98879bcc294d04f5
MD5 4bbfdd9e43b2f9b86a015a4e7fddeaac
BLAKE2b-256 0c122cfa9bdda32c1bd4daa11fa9c5a71c36e23d0096780ac0a8d9de2ba538bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 82e704a892f0081036b1e68338d0980f4e2f963ad54e41a4b95894c05ce006c1
MD5 602db705fdfcafd4b0dde49723ee2226
BLAKE2b-256 75a22a2c62673edef43581d5506bf6e9d32f341902769f26ea64388e7291b82a

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2cba0bfc872469acfd6119810b7a0e10af2c4bf5945aac6da66638df374237ec
MD5 a868f4cbdd3a2e59109f9d0aa214ac48
BLAKE2b-256 133da48693acaa626501ea0a74e2b5e3c4bf365c7ccd3709813fd78fc81176cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a17b36e8e732ae492848ba9fbbc15dd5f778cc87ca2d1519883ca654269f594
MD5 c5b598cf937363f6d2fac2edc2169d29
BLAKE2b-256 7d0690970be8f14b99fffa861a76a8415df87dfe741d3c7c95a52c688daed730

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7cf89a2949de42571563956fea1ef53fe4c7de39ea6368c506e1f4fa0740fb52
MD5 887bb330ec1af69a83760f7e2fc0891f
BLAKE2b-256 db89cb074cd3848b29e21f1c0187f22c1f351590c41d7475433d2910d85a7fa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp38-cp38-manylinux_2_28_x86_64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fec532f3ee7527c8a815d8353ee3258ad9fabb9def1667a0c936f8e705a646b3
MD5 e63f1260d5a8e374486595c9ca4e2bfb
BLAKE2b-256 7bb90f2b6f53b13d94cb9b71deaafeb1cc0b36ca5fd6a8bca5704c04e1096206

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp38-cp38-manylinux_2_28_aarch64.whl:

Publisher: release.yml on cmake-wheel/coal

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

File details

Details for the file coal_library-3.0.1-0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coal_library-3.0.1-0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 65e12361dd6654b16c5e1858922e7016c9b75c220c42a0bc3c2f2c0012b02dd5
MD5 be2a7a936ec546cfe18b209b35845721
BLAKE2b-256 803febee7a0d5b707766979440224a7596248b748be1dbd06ec5e1ea0d83fc7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal_library-3.0.1-0-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: release.yml on cmake-wheel/coal

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