(a, ccontig, fcontig)
| 545 | b = np.ones((2, 2, 1, 2, 2)).swapaxes(3, 4) |
| 546 | |
| 547 | def check_contig(a, ccontig, fcontig): |
| 548 | assert_(a.flags.c_contiguous == ccontig) |
| 549 | assert_(a.flags.f_contiguous == fcontig) |
| 550 | |
| 551 | # Check if new arrays are correct: |
| 552 | check_contig(a, False, False) |
no test coverage detected