matrix.icc
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 #include <algorithm>
00042
00043 namespace Gecode { namespace MiniModel {
00044
00045 template <class A>
00046 inline
00047 Matrix<A>::Slice::Slice(Matrix<A>& a,
00048 unsigned int fc, unsigned int tc,
00049 unsigned int fr, unsigned int tr)
00050 : _r(0), _fc(fc), _tc(tc), _fr(fr), _tr(tr) {
00051 if (tc > a.width() || tr > a.height())
00052 throw ArgumentOutOfRange("MiniModel::Matrix::Slice::Slice");
00053 if (fc >= tc || fr >= tr)
00054 throw ArgumentOutOfRange("MiniModel::Matrix::Slice::Slice");
00055
00056 _r = args_type((tc-fc)*(tr-fr));
00057
00058 int i = 0;
00059 for (unsigned int h = fr; h < tr; ++h) {
00060 for (unsigned int w = fc; w < tc; ++w) {
00061 _r[i++] = a(w, h);
00062 }
00063 }
00064 }
00065
00066 template <class A>
00067 typename Matrix<A>::Slice&
00068 Matrix<A>::Slice::reverse(void) {
00069 for (int i = 0; i < _r.size()/2; ++i)
00070 std::swap(_r[i], _r[_r.size()-i-1]);
00071 return *this;
00072 }
00073
00074 template <class A>
00075 inline
00076 Matrix<A>::Slice::operator typename Matrix<A>::args_type(void) {
00077 return _r;
00078 }
00079 template <class A>
00080 inline
00081 Matrix<A>::Slice::operator Matrix<typename Matrix<A>::args_type>(void) {
00082 return Matrix<args_type>(_r, _tc-_fc, _tr-_fr);
00083 }
00084
00085
00086 template <class A>
00087 inline
00088 Matrix<A>::Matrix(A a, unsigned int w, unsigned int h)
00089 : _a(a), _w(w), _h(h) {
00090 if (_w * _h != static_cast<unsigned int>(_a.size()))
00091 throw ArgumentSizeMismatch("MiniModel::Matrix::Matrix(A, w, h)");
00092 }
00093
00094 template <class A>
00095 inline
00096 Matrix<A>::Matrix(A a, unsigned int n)
00097 : _a(a), _w(n), _h(n) {
00098 if (n*n != static_cast<unsigned int>(_a.size()))
00099 throw ArgumentSizeMismatch("MiniModel::Matrix::Matrix(A, n)");
00100 }
00101
00102 template <class A>
00103 inline unsigned int
00104 Matrix<A>::width(void) const { return _w; }
00105 template <class A>
00106 inline unsigned int
00107 Matrix<A>::height(void) const { return _h; }
00108 template <class A>
00109 inline typename Matrix<A>::args_type const
00110 Matrix<A>::get_array(void) {
00111 return args_type(_a);
00112 }
00113
00114 template <class A>
00115 inline typename Matrix<A>::value_type&
00116 Matrix<A>::operator()(unsigned int c, unsigned int r) {
00117 if (c >= _w || r >= _h)
00118 throw ArgumentOutOfRange("MiniModel::Matrix::operator()");
00119
00120 return _a[r*_w + c];
00121 }
00122
00123 template <class A>
00124 inline typename Matrix<A>::Slice
00125 Matrix<A>::slice(unsigned int fc, unsigned int tc,
00126 unsigned int fr, unsigned int tr) {
00127 return Slice(*this, fc, tc, fr, tr);
00128 }
00129
00130 template <class A>
00131 inline typename Matrix<A>::Slice
00132 Matrix<A>::row(int r) {
00133 return slice(0, width(), r, r+1);
00134 }
00135
00136 template <class A>
00137 inline typename Matrix<A>::Slice
00138 Matrix<A>::col(int c) {
00139 return slice(c, c+1, 0, height());
00140 }
00141
00142 }}
00143
00144