Skip to content

Commit

Permalink
Fix style.
Browse files Browse the repository at this point in the history
  • Loading branch information
sarutak committed Sep 14, 2020
1 parent d1f9c3c commit d83794b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ private[feature] object PCAUtil {
def memoryCost(k: Int, numFeatures: Int): Long = {
3L * math.min(k, numFeatures) * math.min(k, numFeatures) +
math.max(math.max(k, numFeatures), 4L * math.min(k, numFeatures) *
math.min(k, numFeatures) + 4L * math.min(k, numFeatures))
math.min(k, numFeatures) + 4L * math.min(k, numFeatures))
}

}

0 comments on commit d83794b

Please sign in to comment.