Skip to content

Commit

Permalink
favor azimuth even more
Browse files Browse the repository at this point in the history
  • Loading branch information
JulioJerez committed Sep 18, 2024
1 parent 7b22a2c commit 5d995fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ namespace ndAdvancedRobot
ndFloat32 azimuthReward = rewardWeigh * ndExp(-invRewardSigma2 * positError2.m_z);

ndFloat32 reward = azimuthReward;
if (azimuthReward > 1.0e-5f)
if (azimuthReward > 1.0e-2f)
{
const ndVector rotationError(CalculateDeltaTargetRotation(currentEffectorMatrix));
const ndVector rotationError2 = rotationError * rotationError;
Expand Down

0 comments on commit 5d995fa

Please sign in to comment.