|
CGAL 6.3 - Monotone and Sorted Matrix Search
|
The concept MonotoneMatrixSearchTraits is a refinement of BasicMatrix and defines types and operations needed to compute the maxima for all rows of a totally monotone matrix using the function CGAL::monotone_matrix_search.
Notes
Types | |
| typedef unspecified_type | Value |
| The type of a matrix entry. | |
Operations | |
| int | number_of_columns () const |
| returns the number of columns. | |
| int | number_of_rows () const |
| returns the number of rows. | |
| Entry | operator() (int row, int column) const |
| returns the entry at position (row, column). | |
| void | replace_column (int old, int new) |
| replace column old with column number new. | |
| Matrix * | extract_all_even_rows () const |
| returns a new Matrix consisting of all rows of m with even index, (i.e. first row is row \( 0\) of m, second row is row \( 2\) of m etc.). | |
| void | shrink_to_quadratic_size () |
| deletes the rightmost columns, such that m becomes quadratic. | |
| Matrix * MonotoneMatrixSearchTraits::extract_all_even_rows | ( | ) | const |
returns a new Matrix consisting of all rows of m with even index, (i.e. first row is row \( 0\) of m, second row is row \( 2\) of m etc.).
| Entry MonotoneMatrixSearchTraits::operator() | ( | int | row, |
| int | column ) const |
returns the entry at position (row, column).
| void MonotoneMatrixSearchTraits::replace_column | ( | int | old, |
| int | new ) |
replace column old with column number new.
| void MonotoneMatrixSearchTraits::shrink_to_quadratic_size | ( | ) |
deletes the rightmost columns, such that m becomes quadratic.