Gecode::Matrix minimodel.hh class ArrayTraits< A >::ValueType typedef ArrayTraits<A>::ValueType Gecode::Matrix< class >::ValueType ValueType The type of elements of this array. ArrayTraits< A >::ArgsType typedef ArrayTraits<A>::ArgsType Gecode::Matrix< class >::ArgsType ArgsType The type of the Args-array type for ValueType values. ArrayTraits< A >::StorageType typedef ArrayTraits<A>::StorageType Gecode::Matrix< class >::StorageType StorageType The type of storage for this array. StorageType StorageType Gecode::Matrix< class >::_a _a The array wrapped. int int Gecode::Matrix< class >::_w _w The width of the matrix. int int Gecode::Matrix< class >::_h _h The height of the matrix. forceinline Gecode::Matrix< A >::Matrix (A a, int w, int h) Matrix A a int w int h Basic constructor. Constructs a Matrix from the array a, using w and h as the width and height of the matrix.The elements in the wrapped array a are accessed in row-major order. MiniModel::ArgumentSizeMismatch Raised if the parameters w and h doesn't match the size of the array a. forceinline Gecode::Matrix< A >::Matrix (A a, int n) Matrix A a int n Basic constructor. Constructs a square Matrix from the array a, using n as the length of the sides.The elements in the wrapped array a are accessed in row-major order. MiniModel::ArgumentSizeMismatch Raised if the parameter n doesn't match the size of the array a. int forceinline int Gecode::Matrix< A >::width (void) const width void Return the width of the matrix. int forceinline int Gecode::Matrix< A >::height (void) const height void Return the height of the matrix. ArgsType const Matrix< A >::ArgsType const Gecode::Matrix< A >::get_array (void) const get_array void Return an Args-array of the contents of the matrix. ValueType & forceinline Matrix< A >::ValueType & Gecode::Matrix< A >::operator() (int c, int r) operator() int c int r Access element (c, r) of the matrix. MiniModel::ArgumentOutOfRange Raised if c or r are out of range. const ValueType & forceinline const Matrix< A >::ValueType & Gecode::Matrix< A >::operator() (int c, int r) const operator() int c int r Access element (c, r) of the matrix. MiniModel::ArgumentOutOfRange Raised if c or r are out of range. Slice< A > forceinline Slice< A > Gecode::Matrix< A >::slice (int fc, int tc, int fr, int tr) const slice int fc int tc int fr int tr Access slice of the matrix. This function allows accessing a slice of the matrix, located at columns $[fc,tc)$ and rows $[fr,tr)$. The result of this function is an object that can be converted into either a Matrix<ArgsType> or into ArgsType.For further information, see Slice. Slice< A > forceinline Slice< A > Gecode::Matrix< A >::row (int r) const row int r Access row r. Slice< A > forceinline Slice< A > Gecode::Matrix< A >::col (int c) const col int c Access column c. class Char class Traits class A std::basic_ostream< Char, Traits > & std::basic_ostream< Char, Traits > & operator<< (std::basic_ostream< Char, Traits > &os, const Matrix< A > &m) operator<< std::basic_ostream< Char, Traits > & os const Matrix< A > & m Print matrix m class Char class Traits class A std::basic_ostream< Char, Traits > & std::basic_ostream< Char, Traits > & operator<< (std::basic_ostream< Char, Traits > &os, const Slice< A > &s) operator<< std::basic_ostream< Char, Traits > & os const Slice< A > & s Print slice s void void element (Home home, const Matrix< IntArgs > &m, IntVar x, IntVar y, IntVar z, IntConLevel icl=ICL_DEF) element Home home const Matrix< IntArgs > & m IntVar x IntVar y IntVar z IntConLevel icl ICL_DEF Element constraint for matrix. Here, x and y are the coordinates and z is the value at position m(x,y). void void element (Home home, const Matrix< IntArgs > &m, IntVar x, IntVar y, BoolVar z, IntConLevel icl=ICL_DEF) element Home home const Matrix< IntArgs > & m IntVar x IntVar y BoolVar z IntConLevel icl ICL_DEF Element constraint for matrix. Here, x and y are the coordinates and z is the value at position m(x,y). void void element (Home home, const Matrix< IntVarArgs > &m, IntVar x, IntVar y, IntVar z, IntConLevel icl=ICL_DEF) element Home home const Matrix< IntVarArgs > & m IntVar x IntVar y IntVar z IntConLevel icl ICL_DEF Element constraint for matrix. Here, x and y are the coordinates and z is the value at position m(x,y). void void element (Home home, const Matrix< BoolVarArgs > &m, IntVar x, IntVar y, BoolVar z, IntConLevel icl=ICL_DEF) element Home home const Matrix< BoolVarArgs > & m IntVar x IntVar y BoolVar z IntConLevel icl ICL_DEF Element constraint for matrix. Here, x and y are the coordinates and z is the value at position m(x,y). class A SymmetryHandle SymmetryHandle rows_interchange (const Matrix< A > &m) rows_interchange const Matrix< A > & m Interchangeable rows symmetry specification. class A SymmetryHandle SymmetryHandle columns_interchange (const Matrix< A > &m) columns_interchange const Matrix< A > & m Interchangeable columns symmetry specification. class A SymmetryHandle SymmetryHandle rows_reflect (const Matrix< A > &m) rows_reflect const Matrix< A > & m Reflect rows symmetry specification. class A SymmetryHandle SymmetryHandle columns_reflect (const Matrix< A > &m) columns_reflect const Matrix< A > & m Reflect columns symmetry specification. class A SymmetryHandle SymmetryHandle diagonal_reflect (const Matrix< A > &m) diagonal_reflect const Matrix< A > & m Reflect around main diagonal symmetry specification. The matrix must be square. Matrix-interface for arrays. This class allows for wrapping some array and accessing it as a matrix.This is a light-weight wrapper, and is not intended for storing variables directly instead of in an array. Gecode::Matrix_a Gecode::Matrix_h Gecode::Matrix_w Gecode::MatrixArgsType Gecode::Matrixcol Gecode::Matrixcolumns_interchange Gecode::Matrixcolumns_reflect Gecode::Matrixdiagonal_reflect Gecode::Matrixelement Gecode::Matrixelement Gecode::Matrixelement Gecode::Matrixelement Gecode::Matrixget_array Gecode::Matrixheight Gecode::MatrixMatrix Gecode::MatrixMatrix Gecode::Matrixoperator() Gecode::Matrixoperator() Gecode::Matrixoperator<< Gecode::Matrixoperator<< Gecode::Matrixrow Gecode::Matrixrows_interchange Gecode::Matrixrows_reflect Gecode::Matrixslice Gecode::MatrixStorageType Gecode::MatrixValueType Gecode::Matrixwidth