Function smawk::brute_force_row_minima[][src]

pub fn brute_force_row_minima<T: Ord>(matrix: &Array2<T>) -> Vec<usize>

Compute row minima by brute force in O(mn) time.

Panics

It is an error to call this on a matrix with zero columns.