Reverse the order of test sizes. Don't remember why but past me usually had a good reason.

main
Bryson Zimmerman 10 months ago
parent a249afc549
commit cb7129cd2c

@ -24,7 +24,7 @@ class HierarchicalPathfinding {
@JvmStatic @JvmStatic
fun main(args: Array<String>) { fun main(args: Array<String>) {
val benchmarking = true val benchmarking = true
val ns = arrayListOf(50, 100, 250, 500, 750, 1000) val ns = arrayListOf(50, 100, 250, 500, 750, 1000).reversed()
val iterations = 10 val iterations = 10
val file = File("performance.csv") val file = File("performance.csv")
file.writeText("n,path-length,build,bfs,astar-array,astar-hashmap\n") file.writeText("n,path-length,build,bfs,astar-array,astar-hashmap\n")

Loading…
Cancel
Save