Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ ci:
autoupdate_branch: 'devel'
repos:
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v16.0.6
rev: v21.1.6
hooks:
- id: clang-format
args: [--style=Google]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v6.0.0
hooks:
- id: check-added-large-files
- id: check-ast
Expand All @@ -24,12 +24,12 @@ repos:
- id: fix-byte-order-marker
- id: mixed-line-ending
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 23.3.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.11.0
hooks:
- id: black
- repo: https://github.com/PyCQA/flake8
rev: 6.0.0
rev: 7.3.0
hooks:
- id: flake8
- repo: https://github.com/cheshirekow/cmake-format-precommit
Expand Down
6 changes: 3 additions & 3 deletions src/kinematic-planner.cc
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ KinematicPlanner::KinematicPlanner(const std::string& name)
addCommand("runKinematicPlanner",
dynamicgraph::command::makeCommandVoid0(
*this,
(void(KinematicPlanner::*)(void)) &
KinematicPlanner::runKinematicPlanner,
(void (KinematicPlanner::*)(
void))&KinematicPlanner::runKinematicPlanner,
docstring2));
parametersSet = false;

Expand Down Expand Up @@ -437,7 +437,7 @@ void KinematicPlanner::blending() {
currentWeight2.push_back(intWeightCSrc);
}
} //(cG!=nGaitCycles-1)
} //(t>nTimeSteps*9/10)
} //(t>nTimeSteps*9/10)

// Start Mixing all sources
for (int cJ = 0; cJ < nJoints; cJ++) {
Expand Down