Skip to content

Commit

Permalink
Remove trailing whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
xela-95 committed Oct 7, 2023
1 parent 26d2731 commit 78dc783
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/TSID/include/BipedalLocomotion/TSID/SE3Task.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class SE3Task : public TSIDLinearTask, public BipedalLocomotion::System::ITaskCo
std::size_t m_linearDoFs{m_linearVelocitySize}; /**< DoFs associated to the linear task */
std::size_t m_DoFs{m_spatialVelocitySize}; /**< DoFs associated to the entire task */

Eigen::MatrixXd m_jacobian; /**< Jacobian matrix in MIXED representation */
Eigen::MatrixXd m_jacobian; /**< Jacobian matrix in MIXED representation */

/** State of the proportional derivative controller implemented in the task */
Mode m_controllerMode{Mode::Enable};
Expand Down
4 changes: 2 additions & 2 deletions src/TSID/src/SE3Task.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ bool SE3Task::initialize(std::weak_ptr<const ParametersHandler::IParametersHandl
std::copy(mask.begin(), mask.end(), m_mask.begin());
// compute the DoFs associated to the task
m_linearDoFs = std::count(m_mask.begin(), m_mask.end(), true);

m_DoFs = m_linearDoFs + m_angularVelocitySize;

// Update the mask description
Expand Down Expand Up @@ -296,7 +296,7 @@ bool SE3Task::update()

// take the all angular part
iDynTree::toEigen(this->subA(m_robotAccelerationVariable)).bottomRows<3>() = m_jacobian.bottomRows<3>();
}
}



Expand Down
2 changes: 1 addition & 1 deletion src/TSID/tests/SE3TaskTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ TEST_CASE("SE3 Task")
const auto DoFs = std::count(mask.begin(), mask.end(), true) + 3;

parameterHandler->setParameter("mask", mask);

SE3Task task;
REQUIRE(task.setKinDyn(kinDyn));
REQUIRE(task.initialize(parameterHandler));
Expand Down

0 comments on commit 78dc783

Please sign in to comment.