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 #ifndef __ADMB_IMATRIX_H__
00042 #define __ADMB_IMATRIX_H__
00043
00048 class imatrix_position
00049 {
00050 public:
00051 int row_min;
00052 int row_max;
00053 ivector lb;
00054 ivector ub;
00055 ptr_vector ptr;
00056 imatrix_position(const imatrix &);
00057 imatrix_position(int min, int max);
00058 imatrix_position(const imatrix_position &);
00059 ivector_position operator()(int i);
00060 };
00061
00062 imatrix_position restore_imatrix_position(void);
00063 imatrix restore_imatrix_value(const imatrix_position &);
00064
00069 class imatrix
00070 {
00071 protected:
00072 int index_min;
00073 int index_max;
00074 ivector* m;
00075 mat_shapex* shape;
00076
00077 public:
00078 int operator!(void) const
00079 {
00080 return (shape == NULL);
00081 }
00082
00083 imatrix(int, int);
00084
00085
00086 imatrix(int nrl, int nrh, const ivector & iv);
00087 void allocate(int nrl, int nrh, const ivector & iv);
00088
00089 imatrix(int, int, int, int);
00090
00091 imatrix(int, int, int, const ivector &);
00092 imatrix sub(int, int);
00093 imatrix(int, int, const ivector &, const ivector &);
00094 imatrix(const ad_integer & nrl, const ad_integer & nrh,
00095 const index_type & ncl, const index_type & nch);
00096
00097 imatrix& operator=(const imatrix & t);
00098 imatrix& operator=(const int);
00099 imatrix(const imatrix &);
00100
00101 imatrix(const imatrix_position &);
00102 imatrix(void);
00103
00104 ~imatrix();
00105 void shallow_copy(const imatrix &);
00106
00107 void save_imatrix_value(void);
00108 void save_imatrix_position(void);
00109 imatrix restore_imatrix_value(const imatrix_position & mpos);
00110 imatrix_position restore_imatrix_position(void);
00111
00112 void allocate(void);
00113 void allocate(const imatrix & dm);
00114 void allocate(int nrl, int nrh, int ncl, int nch);
00115 void allocate(int nrl, int nrh);
00116 void allocate(int nrl, int nrh, int ncl, const ivector & nch);
00117 void allocate(int nrl, int nrh, const ivector & ncl, const ivector & nch);
00118 void allocate(const ad_integer & nrl, const ad_integer & nrh,
00119 const index_type & ncl, const index_type & nch);
00120 void deallocate();
00121
00122 ivector& operator[](int);
00123 ivector& operator()(int);
00124 int& operator()(int, int);
00125 const ivector& operator[](int) const;
00126 const ivector& operator()(int) const;
00127 const int& operator()(int, int) const;
00128
00129 int indexmin(void) const
00130 {
00131 return index_min;
00132 }
00133 int indexmax(void) const
00134 {
00135 return index_max;
00136 }
00137 int rowmin(void) const
00138 {
00139 return index_min;
00140 }
00141 int rowmax(void) const
00142 {
00143 return index_max;
00144 }
00145 int colmin(void) const
00146 {
00147 return ((*this) (indexmin()).indexmin());
00148 }
00149 int colmax(void) const
00150 {
00151 return ((*this) (indexmin()).indexmax());
00152 }
00153
00154 int rowsize() const
00155 {
00156 return (rowmax() - rowmin() + 1);
00157 }
00158
00159 int colsize() const
00160 {
00161 return (colmax() - colmin() + 1);
00162 }
00163 void rowshift(int min);
00164 inline ivector & elem(int i)
00165 {
00166 return (*(m + i));
00167 }
00168 inline int &elem(int i, int j)
00169 {
00170 return (*((*(m + i)).v + j));
00171 }
00172 inline const ivector & elem(int i) const
00173 {
00174 return (*(m + i));
00175 }
00176 inline const int &elem(int i, int j) const
00177 {
00178 return (*((*(m + i)).v + j));
00179 }
00180
00181 void write_on(const ostream &) const;
00182 void write_on(const uostream &) const;
00183 void read_from(const istream &);
00184 void read_from(const uistream &);
00185 void initialize(void);
00186 void fill_seqadd(int, int);
00187 void colfill_seqadd(int, int, int);
00188
00189 bool is_valid_row(const int i) const;
00190
00191 friend char* fform(const char*, const dmatrix&);
00192 friend class i3_array;
00193 };
00194
00195 #ifdef OPT_LIB
00196 inline ivector& imatrix::operator()(int i)
00197 {
00198 return m[i];
00199 }
00200 inline int& imatrix::operator()(int i, int j)
00201 {
00202 return (*((*(m + i)).v + j));
00203 }
00204 inline ivector& imatrix::operator[](int i)
00205 {
00206 if (!m)
00207 throw std::bad_alloc();
00208 else
00209 return m[i];
00210 }
00211 inline const ivector& imatrix::operator()(int i) const
00212 {
00213 return m[i];
00214 }
00215 inline const int& imatrix::operator()(int i, int j) const
00216 {
00217 return (*((*(m + i)).v + j));
00218 }
00219 inline const ivector& imatrix::operator[](int i) const
00220 {
00221 return m[i];
00222 }
00223 #endif
00224 #endif
00225