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 Coal

  • 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

Docker

docker run --rm -it ghcr.io/coal-library/coal:devel

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-3.0.3.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

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

coal-3.0.3-0-cp314-cp314-manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

coal-3.0.3-0-cp314-cp314-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

coal-3.0.3-0-cp314-cp314-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

coal-3.0.3-0-cp314-cp314-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 10.9+ x86-64

coal-3.0.3-0-cp313-cp313-manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

coal-3.0.3-0-cp313-cp313-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

coal-3.0.3-0-cp313-cp313-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

coal-3.0.3-0-cp313-cp313-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 10.9+ x86-64

coal-3.0.3-0-cp312-cp312-manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

coal-3.0.3-0-cp312-cp312-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

coal-3.0.3-0-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

coal-3.0.3-0-cp312-cp312-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

coal-3.0.3-0-cp311-cp311-manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

coal-3.0.3-0-cp311-cp311-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

coal-3.0.3-0-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

coal-3.0.3-0-cp311-cp311-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

coal-3.0.3-0-cp310-cp310-manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

coal-3.0.3-0-cp310-cp310-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

coal-3.0.3-0-cp310-cp310-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

coal-3.0.3-0-cp310-cp310-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file coal-3.0.3.tar.gz.

File metadata

  • Download URL: coal-3.0.3.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for coal-3.0.3.tar.gz
Algorithm Hash digest
SHA256 18660bde4021af496343646fa0a0d1bcf0be392f432641e772dc423be5075f64
MD5 6ca9e42c28ee72ed7052bbba0c349459
BLAKE2b-256 f0148cb072a3e5fb85cac4d8d1234351ca3eb4ecf100b87901ab912ec7e5135e

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3.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-3.0.3-0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coal-3.0.3-0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4553a8e088fddf46c48229686e9b66df7e38d09bbd26fa32c411fb5cf86ac3f0
MD5 57f2d1e9ce80458086efbf9942f8bf9f
BLAKE2b-256 d9f2f79c90ec7289f5f80481a1b60bde05a385d247f4a6269fc64b04e8714054

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3-0-cp314-cp314-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-3.0.3-0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coal-3.0.3-0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3f46e2030a4a6f91704d5c8e310c80032e979e1d4bb491265a8beb4358a7998
MD5 7540e9cce46b9dd21cad26e8db745c0e
BLAKE2b-256 69ca0172d8558f1231c9542b875854101616dfd4227bd540ad095e257596e8bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3-0-cp314-cp314-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-3.0.3-0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coal-3.0.3-0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfc85277f55495da5a15cf9a1d86530004c6225986803935cab6e6c90638002f
MD5 75f7e67c4806d4cf840063f3250edd58
BLAKE2b-256 98a2f90b450da22e69922c3ed36bb8e84376fac56a95d1c864ab477a5a77a951

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3-0-cp314-cp314-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-3.0.3-0-cp314-cp314-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coal-3.0.3-0-cp314-cp314-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5888efaa97a1d6160e07503c5463fa55180120d7219aec1cbe0a1efe1d84449b
MD5 d1904290cbecc234e9140bf14ce249fc
BLAKE2b-256 18aa9b0a3560f86c586aa2ddde57c08f7b6d4c9dc622e82104300da5a1781e25

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3-0-cp314-cp314-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-3.0.3-0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coal-3.0.3-0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 80cba8b0c3166a024deacfc801b0c6a06337d230af434c379f693887d5c4e458
MD5 4695a0c490b1415bdfba006873565208
BLAKE2b-256 51765ca02caa98c238bf336ce0387464669c29b6f57c3daab441f047a9e65cc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3-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-3.0.3-0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coal-3.0.3-0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 691da7cd15683d23a28cdea81906a6e614cffbeab92523494ea493ede5d433e8
MD5 8ef3ee14ad16a69db59ac4743df814c2
BLAKE2b-256 d7d9f0dd708b923368e4628fb760fe2ce2a3f2cd026e2effbad186c076fadb9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3-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-3.0.3-0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coal-3.0.3-0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7dc81cf507301d145b2c0085072effb3744bf3034669092f7d95c49d7318aba5
MD5 51af963c9924cc444496a04c00d63274
BLAKE2b-256 7d72c3b7d84682868252e43f0dc3dfcec5a5d754a383fb20db17863a55d10f2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3-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-3.0.3-0-cp313-cp313-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coal-3.0.3-0-cp313-cp313-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf489028d1123293fe4b0598fdd21ab2c0a7c6f69d8e61a0a849712b47aba885
MD5 ef4d1213830602b96125fbee79e96b54
BLAKE2b-256 fb3769680aa3b0d6f1cf6309177326d625fe8afe49b440952ee36735c4e6be2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3-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-3.0.3-0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coal-3.0.3-0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b98f45b92af8f6608a97d47f05abab861af13ba54a47c82dfc22c9f4e7754a18
MD5 28e7c0dc8efcafa653533e5c54e421c2
BLAKE2b-256 19f125368a2fb63a18283b6732e2cdbe15bfb19df26b76f3721fd79729def54a

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3-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-3.0.3-0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coal-3.0.3-0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f9736086902db07b3b38b04917e7d3c9291d12340e5248c06b327ce6a6e2de49
MD5 bc1ec6d0023c314cb04dc5f52783afc8
BLAKE2b-256 56468c7c7e83c83acdc5af8c553a2ca0b1b335132dccff4732edd6acd90a5a16

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3-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-3.0.3-0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coal-3.0.3-0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d3c157a72d3c79a99bd6b59479ab5ca0efeed22b74e5d8e66dda827ce76e18e
MD5 89b90d7ab556d1867445994f57c3f2b7
BLAKE2b-256 335a6c9836db4747010fc31543336a6b7f9aea04b1a58b8fe09611daf5e965f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3-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-3.0.3-0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coal-3.0.3-0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd9c9bb7d4de17afda5e59802fddddee4149bdf72312cd60d68403b2d5265e9b
MD5 c8c5f254a2c838e9636124fb0b981144
BLAKE2b-256 08821c634b366c7ba991f3f11b73bfff5c8cfee0ee32911347f37a256bc1724c

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3-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-3.0.3-0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coal-3.0.3-0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c9a62cd52868ce295623e34e664084ee87b9bb6314df913952d288cbe8b3fe6
MD5 07a3ae1ae4af1ca4483fb5fc4fc639fb
BLAKE2b-256 4345e5859f9c03c6353e50ac8df218a6b9efb8de90f3fa1f3bd571bc6a3242cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3-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-3.0.3-0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coal-3.0.3-0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8aafdf317161ba73858ed1a3e8e673c5a82bd04cef82a3b7ba953d6a8d1007d
MD5 8683d1757137bfde83362b340c37b807
BLAKE2b-256 1d2965550bafd2639b8152e6a0e63603e74f657761fc1dc5daa4a305b5ea9922

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3-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-3.0.3-0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coal-3.0.3-0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22572a8f877488ab987f868ffd362c08f923470be6b1e4f9c86d260f110405fc
MD5 315485b3a3f706b9b9e2ac1cc9ec0db3
BLAKE2b-256 9a783323984a61b63515e1951e2f697d4250a55b54788bc65496e2824989d969

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3-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-3.0.3-0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coal-3.0.3-0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e59370db33b4fb0e23da8f953b300b3eec591624803e3143d447be21f530b87
MD5 0859f77db26acd02c1d255c07f069147
BLAKE2b-256 bd4d6af55fff20a0705f54ea313c2fe64b090e3e60e50fdcb5bfdb430a22e391

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3-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-3.0.3-0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coal-3.0.3-0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f526bb6173f5a4aab5cb0485a99fed73e6179b11814272a41f9e787cd509ed6
MD5 262b21e787ee7d7194847e524c1e8cfe
BLAKE2b-256 2bca3f92a4a4ccd1392d0cfc3f6019241ea4939ff8b5b59e2b2dd0e7f1819330

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3-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-3.0.3-0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coal-3.0.3-0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6641e1b9de4a10d7986749751c4507f9b1708e438621e361c512037e7d249ad2
MD5 65d022ad00aa7ffbf92913ef744469a4
BLAKE2b-256 c455a909441bec811dfbc1ab453cac9eb26d5fdba18349348625ea33ec49b48b

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3-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-3.0.3-0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coal-3.0.3-0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da9ae72679d17a675be2f204debe60823b6568c1817670788f55cf666d7389a3
MD5 d0fc10ce00423515c1164a8825cd5eaf
BLAKE2b-256 d2a843c3d209ae76ae0ba78dc3398af1ad5f817832478e20652c258d5bfb2ce8

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3-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-3.0.3-0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coal-3.0.3-0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f28ec989f385b9ffa5a0e2457efbc54d37fc70a6fa9df8f8caeeb12e8a7f8296
MD5 0d4dc6be58a8ca9747f732854d120064
BLAKE2b-256 ec2aaa46eb1568f2d6e8a121f0da15a7778e2156058cf141d646a69c46d35bc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.3-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.

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