Skip to content
Snippets Groups Projects
Unverified Commit 174b4cf0 authored by Justin Carpentier's avatar Justin Carpentier Committed by GitHub
Browse files

Merge branch 'devel' into topic/coal

parents b308deef 686dc253
No related branches found
No related tags found
No related merge requests found
Pipeline #42670 failed
BasedOnStyle: Google
SortIncludes: false
......@@ -14,6 +14,7 @@ dependencies:
- lxml
- pylatexenc
- qhull
- qhull-static
- cmake
- ccache
- cxx-compiler
......
ci:
autoupdate_branch: devel
autofix_prs: false
autoupdate_schedule: quarterly
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.10
rev: v0.5.1
hooks:
- id: ruff
args:
......@@ -10,7 +12,7 @@ repos:
- --exit-non-zero-on-fix
- id: ruff-format
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v18.1.7
rev: v18.1.8
hooks:
- id: clang-format
args:
......
......@@ -382,6 +382,8 @@ ContactPatchFunctionMatrix::ContactPatchFunctionMatrix() {
contact_patch_matrix[GEOM_OCTREE][BV_KDOP16] = &contact_patch_function_not_implemented;
contact_patch_matrix[GEOM_OCTREE][BV_KDOP18] = &contact_patch_function_not_implemented;
contact_patch_matrix[GEOM_OCTREE][BV_KDOP24] = &contact_patch_function_not_implemented;
contact_patch_matrix[GEOM_OCTREE][HF_AABB] = &contact_patch_function_not_implemented;
contact_patch_matrix[GEOM_OCTREE][HF_OBBRSS] = &contact_patch_function_not_implemented;
contact_patch_matrix[GEOM_BOX][GEOM_OCTREE] = &contact_patch_function_not_implemented;
contact_patch_matrix[GEOM_SPHERE][GEOM_OCTREE] = &contact_patch_function_not_implemented;
......@@ -401,6 +403,8 @@ ContactPatchFunctionMatrix::ContactPatchFunctionMatrix() {
contact_patch_matrix[BV_KDOP16][GEOM_OCTREE] = &contact_patch_function_not_implemented;
contact_patch_matrix[BV_KDOP18][GEOM_OCTREE] = &contact_patch_function_not_implemented;
contact_patch_matrix[BV_KDOP24][GEOM_OCTREE] = &contact_patch_function_not_implemented;
contact_patch_matrix[HF_AABB][GEOM_OCTREE] = &contact_patch_function_not_implemented;
contact_patch_matrix[HF_OBBRSS][GEOM_OCTREE] = &contact_patch_function_not_implemented;
#endif
// clang-format on
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment