A
Arne Vajhøj
Boris said:I had a quick look at it, and saw that it uses a lot of
three-dimensional arrays. To my experience, this is never
a good idea in java if you really want best performance.
I remember a case where I got around 30% performance improvement
just by using 1-dimensional arrays instead. Depending on
how often the arrays are accessed, you might get similar
numbers.
That is a good explanation of a +30% overhead.
But we are looking for +3000% overhead.
Arne