|
|
|
|
|
by tnecniv
3616 days ago
|
|
Because evaluating algorithms is not always that straight forward. For some algorithms runtime is hugely important, and I don't mean the asymptotic complexity but a hard benchmark of how much it can do in what time span. Stuff like a SLAM algorithm being O(n^2) is nice and all, but to compare it to other SLAM algorithms, I need hard numbers on what it can do in how many milliseconds. Often, I find that authors don't publish their code. If they do publish their code, they rarely publish their code for their benchmarks. |
|