(array)
| 473 | array.hide_partition() |
| 474 | |
| 475 | def demosort(array): |
| 476 | while True: |
| 477 | for alg in [quicksort, insertionsort, selectionsort, bubblesort]: |
| 478 | randomize(array) |
| 479 | alg(array) |
| 480 | |
| 481 | |
| 482 | # Sort demo class -- usable as a Grail applet |
nothing calls this directly
no test coverage detected