autopilot: append instead of appends in a loop

This commit is contained in:
Andras Banki-Horvath
2020-04-09 20:57:44 +02:00
parent 28c2ef12b2
commit 0679d1dd4b
2 changed files with 3 additions and 7 deletions

View File

@@ -139,10 +139,7 @@ func assertChoice(w []float64, iterations int) bool {
}
// The sum of choices must be exactly iterations of course.
if totalChoices != iterations {
return false
}
return true
return totalChoices == iterations
}