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

Uploaded Source

Built Distributions

coal-3.0.1-1-cp313-cp313-manylinux_2_28_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

coal-3.0.1-1-cp313-cp313-manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

coal-3.0.1-1-cp313-cp313-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

coal-3.0.1-1-cp313-cp313-macosx_10_9_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.13macOS 10.9+ x86-64

coal-3.0.1-1-cp312-cp312-manylinux_2_28_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

coal-3.0.1-1-cp312-cp312-manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

coal-3.0.1-1-cp312-cp312-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

coal-3.0.1-1-cp312-cp312-macosx_10_9_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

coal-3.0.1-1-cp311-cp311-manylinux_2_28_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

coal-3.0.1-1-cp311-cp311-manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

coal-3.0.1-1-cp311-cp311-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

coal-3.0.1-1-cp311-cp311-macosx_10_9_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

coal-3.0.1-1-cp310-cp310-manylinux_2_28_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

coal-3.0.1-1-cp310-cp310-manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

coal-3.0.1-1-cp310-cp310-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

coal-3.0.1-1-cp310-cp310-macosx_10_9_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

coal-3.0.1-1-cp39-cp39-manylinux_2_28_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

coal-3.0.1-1-cp39-cp39-manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

coal-3.0.1-1-cp39-cp39-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

coal-3.0.1-1-cp39-cp39-macosx_10_9_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

coal-3.0.1-1-cp38-cp38-manylinux_2_28_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

coal-3.0.1-1-cp38-cp38-manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

coal-3.0.1-1-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-3.0.1.tar.gz.

File metadata

  • Download URL: coal-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.9

File hashes

Hashes for coal-3.0.1.tar.gz
Algorithm Hash digest
SHA256 aaae951110cb289365e65215c1e9d73aedc9d8cebb862328381b09ca6c0706d7
MD5 2c56d5779af2349941e386c38e255c46
BLAKE2b-256 481d6d19cc5107fa503e08a8319ef24992e0595c0de7f3c4849ed02e5e0d53f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coal-3.0.1-1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 41cd2795a46cb985290b5e9bdd790229a9ea271a371c29e1300b74838e100e7f
MD5 b27e1d0c01b93ed132aa7b0c4b8d3cf3
BLAKE2b-256 d9e2f595d5543f5f8b54d5e692bcce1646fa66e6803477cc7d56714ba063ab4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coal-3.0.1-1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c7c4d6e9733ba9e3a46f565b84292ad1f766ebdbc198256a90febe5bc4aca0e
MD5 f8447ec11dab1c41a8a1859b2ef7dc67
BLAKE2b-256 a61b53310d3bb2e4b3a046b87b953593d2f24a8e0bb7c478fb179521b54bf884

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coal-3.0.1-1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06257fb3cd096652a8ff68ccf2864308dfc8a46e89c7a2228f5a712c7230d273
MD5 74b03c9def84ae99c697f899769cb166
BLAKE2b-256 99a9087b4cb16cdfbb01a52eab9b71a46d4c61caadfb1175ba563a05d65879f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coal-3.0.1-1-cp313-cp313-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a2a9e4a76253d37b9d316dbc342777b0eb3c61fd20e26cd03cff8c1e190acd10
MD5 519385a188c4abd5017a88de5859890c
BLAKE2b-256 39f93b859c6cbcfd6dcd0c9076dba3bff443554c740f160edd0a3de687fb7cb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coal-3.0.1-1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2be5e8cb3ff165d564ecd9de8a8af6add2b3c404def0d4d9653b42bb034c54bb
MD5 d0aee2997b58a5615be1986c33373575
BLAKE2b-256 28e2958e80e25aa613ce0d29a8ab6c7b6af66c1994063835921eda48ce0f9950

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coal-3.0.1-1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9edec6cbc455a0c9cbde83154af3f5f1ef92cef65260e3187ee5f395252d60f9
MD5 1b96f1d8826a12e081b9b175920b9041
BLAKE2b-256 619f112c8265c8c18cddc2d06eb10c7a1992a2222d53917d823395491f567fd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coal-3.0.1-1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62e4d36d220f0cfdd23ff1aa7b5b0cca3a2f0ca514604a62670b1cc43e048194
MD5 76ca0826a3b83af3c3b71f5bbb680ac0
BLAKE2b-256 c9e74d9838e8dda421562b8a27220bdaff200653235e0dadf5ceb8a38b3fcb22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coal-3.0.1-1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0765bae91f20548e0ac05c9acc66dd4cd7665921784204aa97ce2cc63ab075a5
MD5 e54daeeeb00d727ef34965fbd5271b0f
BLAKE2b-256 e9355e1e3810dd3180cf8901b0537e56616ccc63205de08168ddb9f0f9aac57b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coal-3.0.1-1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 63d48ed0fb1d89c3beb5c6b002ef509e41d92d2a5cd9e8ffca22a7d481c19556
MD5 373a02a92bc98555c7c36ffa46b8ca08
BLAKE2b-256 8b0871b6b47118c5de8233aeb52ad2137bd3de11663d4976b5073fd70e7eb0f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coal-3.0.1-1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c3863fed2dedf735b51f85d1230427cc77b1a9de94bf5ce963a2920f6f14a7db
MD5 90f89e3a7f3e3a734cd3e762c19662af
BLAKE2b-256 d79b002277747102c18613f6544f5ece340d75cf5a77a1a8de6a3cc12b4d2f2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coal-3.0.1-1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c29d28c6bd601ec336fb85ac462601a1c30ab007bfad7ee7a9c9151eeb593e3
MD5 8a104979c67d7365a07a905e54e84f0d
BLAKE2b-256 33d93712d38449441555702bcd54d7874054535ce5915c683e14073520a0ecd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coal-3.0.1-1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ee5aefb25b01e173adbc2348c7f4800b7a0181a803c94fd6a9c22c582cd9a2ff
MD5 c5db1e364056487695f4bca3e03a9a1e
BLAKE2b-256 b590e13cfab10cb5dc44ecd37115247f69356661fb4c1df9e0ff5d1479e93e20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coal-3.0.1-1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf968c68381f7d303d4ff52fbb4247f74156205e1ab695e15c01cb3d4ef75644
MD5 9a2863d0b20302b196e439c7c79131c0
BLAKE2b-256 9d00c558e50d73df4d97077360bdacdfc864b1c8188158412dc1c6bfb5940ceb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coal-3.0.1-1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3218a0b2ab4c52fa1f5b5fb64b6ff769dbedfaceb15230734c054e5342c8c940
MD5 ad07c25a91b0fc186b22428bcf592346
BLAKE2b-256 289192ec4d5f016f8a09426b63ff06ecdad316cb8f8487897c468adc3679b13d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coal-3.0.1-1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a45c96df9c9c63bea460c52b9b4f3df04269193a09aa375235fb49dc27865a41
MD5 d5f7de142e31b55ee032183a4ac4c85d
BLAKE2b-256 7df4884c7cf411d3bca78553e8b752fe1084ff039ffed292478789da0e13fb4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coal-3.0.1-1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 18c36cc20a001cd616b85f1028cda501aa6962b4eb5112d2cf0ec84c01969631
MD5 7c1a82f4f8937c451d6cac613523ffe6
BLAKE2b-256 f940592a23927a91680d20baaaab07af211ed7d3398edcea22ef1df2c7895d16

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.1-1-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-3.0.1-1-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coal-3.0.1-1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 69138526e3d6e937cc8469b9dd723ed4d9a1607d70d6a69467b3c573cac84b14
MD5 9069828f1a385720c28b18815bc00fce
BLAKE2b-256 12262b3d28f292553c15b89ac8b0abae629ad2ce567fb88da5bae44f848711bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.1-1-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-3.0.1-1-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coal-3.0.1-1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4c01ccaabcd6048d949b7c0781b8f1498faab85e84b9ac559441c07779fb55e5
MD5 f0b0565cbac2153869f3ff5c853ab13d
BLAKE2b-256 ac84e76fbbe220a69a07f2a8ca3fb1f48d7441e698dd05a1402ddf6dcf1b461f

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.1-1-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-3.0.1-1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coal-3.0.1-1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1cffeca031eeac3cdba47f67e341d39144bbac07488f2ea4cf164c7a7c8709f
MD5 bbf3d0597e4ac80bf9cc8ed36520eede
BLAKE2b-256 f66b9a69d5bb0ee492dd698e8f533f39767217326ba59fd9e4e4f344f924b5f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.1-1-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-3.0.1-1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coal-3.0.1-1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7bc286b7a45c89d7dbc1226cbf6a14c81d9b19468a116e8014cf48261f1384c8
MD5 4f4fc29270dd686546f8b599fb32c6cb
BLAKE2b-256 756c09c5a66bb0876f21c2a59f9ef56f45aca3e7b734cbc24dd9c98faedd5a5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.1-1-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-3.0.1-1-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coal-3.0.1-1-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bfc13ddc3a407ab933246d78008d855fae77206748cc59494ff2c6cc8e6b42ee
MD5 84ec62aa74b59ba6a9f33cfa2cf87292
BLAKE2b-256 847e7cbe0160fad766fc672fa43cf4cf082d6d03493dcf4ff7eda330f9ad8afa

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.1-1-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-3.0.1-1-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coal-3.0.1-1-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6048e53f9210a7d57b097e9bb9a2b396cace7c58fc1eecc33e458bb49cd49fdd
MD5 ad60ffa0e666cd784e9d8094316c117f
BLAKE2b-256 d57fe3ca16556b2c27612bdf82f9e070aed901238429f5373e1d0da0029cc36f

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.1-1-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-3.0.1-1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coal-3.0.1-1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 10e371dcc6377ec3f33d9c33f87b9beb4e24d74852215e9d4a491517bd6ddf00
MD5 75876305276b020f7242882913dfdd35
BLAKE2b-256 049e26686a62da3b3dc413fa42b6296716f26b79603b091cfccc06e2380c8504

See more details on using hashes here.

Provenance

The following attestation bundles were made for coal-3.0.1-1-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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page