Skip to content

Commit

Permalink
Remove white spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
isorrentino committed Jul 22, 2024
1 parent d48c504 commit 329ceef
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@ class BipedalLocomotion::JointTorqueControlDevice
std::vector<CoulombViscousStribeckParameters> coulombViscousStribeckParameters;
std::vector<std::unique_ptr<PINNFrictionEstimator>> frictionEstimators;
std::mutex mutexTorqueControlParam_; // The mutex for protecting the parameters

yarp::sig::Vector desiredJointTorques;
yarp::sig::Vector desiredMotorCurrents;
yarp::sig::Vector measuredJointVelocities;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ class PINNFrictionEstimator
* @param[in] modelPath a string representing the path to the ONNX model
* @param[in] intraOpNumThreads a std::size_t representing the number of threads to be used for intra-op parallelism
* @param[in] interOpNumThreads a std::size_t representing the number of threads to be used for inter-op parallelism
*
* @return true if the initialization is successful, false otherwise
*/
bool initialize(const std::string& modelPath,
Expand All @@ -51,7 +50,6 @@ class PINNFrictionEstimator
* @param[in] inputDeltaPosition a double representing difference between the joint position and the motor position motor side (rad)
* @param[in] inputJointVelocity a double representing the joint velocity (rad/sec)
* @param[out] output a double representing the joint friction torque
*
* @return true if the estimation is successful, false otherwise
*/
bool estimate(double inputDeltaPosition, double inputJointVelocity, double& output);
Expand Down

0 comments on commit 329ceef

Please sign in to comment.