Closed tomasmcz closed 10 years ago
@tomasmcz awesome, and that does look correct!
could you add a tiny itsy bittsy 2x2 example for calling show on a both column row major cases to the unit test suite?
I did a 2x3 example, as 2x2 would not catch the bug I fixed.
oh, good call! looks good, but i'll double check / review it tomorrow when i'm more awake and merge it in.
Thank you very much, good catch :)
When I tried apply
show
on a column oriented DenseMatrix, the program got into an infinite loop. Turns outshow
was checking forstride == xdim
andmapDenseMatrix id
kept setting it toydim
. I hope this is the correct way to fix that.