Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
rjoomen committed Dec 15, 2023
1 parent e5de419 commit b09ef53
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,14 +211,18 @@ void TrajOptDefaultPlanProfile::addConstraintErrorFunctions(trajopt::ProblemCons
}
}

bool TrajOptDefaultPlanProfile::isFixedCartesian() const {
bool TrajOptDefaultPlanProfile::isFixedCartesian() const
{
// If the term type is constraint and all coefficients are non-zero
return (term_type == trajopt::TermType::TT_CNT) && (abs(cartesian_coeff.array()) >= std::numeric_limits<double>::epsilon()).all();
return (term_type == trajopt::TermType::TT_CNT) &&
(abs(cartesian_coeff.array()) >= std::numeric_limits<double>::epsilon()).all();
}

bool TrajOptDefaultPlanProfile::isFixedJoint() const {
bool TrajOptDefaultPlanProfile::isFixedJoint() const
{
// If the term type is constraint and all coefficients are non-zero
return (term_type == trajopt::TermType::TT_CNT) && (abs(joint_coeff.array()) >= std::numeric_limits<double>::epsilon()).all();
return (term_type == trajopt::TermType::TT_CNT) &&
(abs(joint_coeff.array()) >= std::numeric_limits<double>::epsilon()).all();
}

tinyxml2::XMLElement* TrajOptDefaultPlanProfile::toXML(tinyxml2::XMLDocument& doc) const
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,14 +138,18 @@ void TrajOptIfoptDefaultPlanProfile::apply(TrajOptIfoptProblem& problem,
}
}

bool TrajOptIfoptDefaultPlanProfile::isFixedCartesian() const {
bool TrajOptIfoptDefaultPlanProfile::isFixedCartesian() const
{
// If the term type is constraint and all coefficients are non-zero
return (term_type == TrajOptIfoptTermType::CONSTRAINT) && (abs(cartesian_coeff.array()) >= std::numeric_limits<double>::epsilon()).all();
return (term_type == TrajOptIfoptTermType::CONSTRAINT) &&
(abs(cartesian_coeff.array()) >= std::numeric_limits<double>::epsilon()).all();
}

bool TrajOptIfoptDefaultPlanProfile::isFixedJoint() const {
bool TrajOptIfoptDefaultPlanProfile::isFixedJoint() const
{
// If the term type is constraint and all coefficients are non-zero
return (term_type == TrajOptIfoptTermType::CONSTRAINT) && (abs(joint_coeff.array()) >= std::numeric_limits<double>::epsilon()).all();
return (term_type == TrajOptIfoptTermType::CONSTRAINT) &&
(abs(joint_coeff.array()) >= std::numeric_limits<double>::epsilon()).all();
}

tinyxml2::XMLElement* TrajOptIfoptDefaultPlanProfile::toXML(tinyxml2::XMLDocument& /*doc*/) const
Expand Down

0 comments on commit b09ef53

Please sign in to comment.