Skip to content

Commit

Permalink
style(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Jan 23, 2025
1 parent 4ef247a commit a33d3d9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ __host__ __device__ __forceinline__ double convertCharToProbability(const std::u

__host__ __device__ __forceinline__ std::uint8_t convertProbabilityToChar(const double value)
{
return static_cast<std::uint8_t>(std::max(0.0, std::min(1.0, value)) * 255.0);;
return static_cast<std::uint8_t>(std::max(0.0, std::min(1.0, value)) * 255.0);
;
}

__host__ __device__ __forceinline__ double logOddsFusion(const double p1, const double p2)
Expand Down

0 comments on commit a33d3d9

Please sign in to comment.