/usr/include/rheolef/form_concat.h is in librheolef-dev 6.6-1build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 | #ifndef _RHEOLEF_FORM_CONCAT_H
#define _RHEOLEF_FORM_CONCAT_H
///
/// This file is part of Rheolef.
///
/// Copyright (C) 2000-2009 Pierre Saramito <Pierre.Saramito@imag.fr>
///
/// Rheolef is free software; you can redistribute it and/or modify
/// it under the terms of the GNU General Public License as published by
/// the Free Software Foundation; either version 2 of the License, or
/// (at your option) any later version.
///
/// Rheolef is distributed in the hope that it will be useful,
/// but WITHOUT ANY WARRANTY; without even the implied warranty of
/// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
/// GNU General Public License for more details.
///
/// You should have received a copy of the GNU General Public License
/// along with Rheolef; if not, write to the Free Software
/// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
///
/// =========================================================================
// build form from initializer list (c++ 2011)
//
#include "rheolef/form.h"
#include "rheolef/csr_concat.h"
namespace rheolef {
// =========================================================================
// 1rst case : one-line matrix initializer
// A = {a, b}; // matrix & vector
// =========================================================================
template <class T, class M>
struct form_concat_value {
// typedef:
typedef enum { scalar, field, field_transpose, form} variant_type;
// allocators:
form_concat_value (const int& x) : s(x), v(), m(), variant(scalar) {}
#ifdef _RHEOLEF_HAVE_QD
form_concat_value (const double& x) : s(x), v(), m(), variant(scalar) {}
#endif // _RHEOLEF_HAVE_QD
form_concat_value (const T& x) : s(x), v(), m(), variant(scalar) {}
form_concat_value (const form_basic<T,M>& x) : s(), v(), m(x), variant(form) {}
// io/debug:
friend std::ostream& operator<< (std::ostream& o, const form_concat_value<T,M>& x) {
if (x.variant == scalar) return o << "s";
else if (x.variant == field) return o << "f";
else if (x.variant == field_transpose) return o << "ft";
else return o << "m";
}
// data:
public:
T s;
field_basic<T,M> v;
form_basic<T,M> m;
variant_type variant;
};
template <class T, class M>
struct form_concat_line {
// typedef:
typedef typename form_basic<T,M>::size_type size_type;
typedef form_concat_value<T,M> value_type;
typedef typename std::list<value_type>::const_iterator const_iterator;
// allocators:
form_concat_line () : _l() {}
#ifdef _RHEOLEF_HAVE_STD_INITIALIZER_LIST
form_concat_line (const std::initializer_list<value_type>& il) : _l() {
#ifdef _RHEOLEF_HAVE_STD_INITIALIZER_ITERATOR
typedef typename std::initializer_list<value_type>::const_iterator const_iterator;
#else // _RHEOLEF_HAVE_STD_INITIALIZER_ITERATOR
typedef const value_type* const_iterator;
#endif // _RHEOLEF_HAVE_STD_INITIALIZER_ITERATOR
for(const_iterator iter = il.begin(); iter != il.end(); ++iter) {
_l.push_back(*iter);
}
}
#endif // _RHEOLEF_HAVE_STD_INITIALIZER_LIST
// accessors:
const_iterator begin() const { return _l.begin(); }
const_iterator end() const { return _l.end(); }
friend std::ostream& operator<< (std::ostream& o, const form_concat_line<T,M>& x) {
std::cout << "{";
for(typename std::list<value_type>::const_iterator iter = x._l.begin(); iter != x._l.end(); ++iter) {
std::cout << *iter << " ";
}
return std::cout << "}";
}
// internals:
void build_form_pass0 (std::vector<std::pair<bool,space_basic<T,M> > >& l_Xh, space_basic<T,M>& Yh, size_t i_comp = 0) const;
static void build_first_space (const std::vector<std::pair<bool,space_basic<T,M> > >& l_Xh, space_basic<T,M>& Xh);
void build_form_pass1 (space_basic<T,M>& Xh, space_basic<T,M>& Yh) const;
form_basic<T,M> build_form_pass2 (const space_basic<T,M>& Xh, const space_basic<T,M>& Yh) const;
form_basic<T,M> build_form () const;
// data:
protected:
std::list<value_type> _l;
};
template <class T, class M>
void
form_concat_line<T,M>::build_form_pass0 (std::vector<std::pair<bool,space_basic<T,M> > >& l_Xh, space_basic<T,M>& Yh, size_t i_comp) const
{
// ------------------------------------------------------------
// pass 0 : lazy first space computation, compute second space
// ------------------------------------------------------------
size_t j_comp = 0;
bool have_Yh = false;
typename std::vector<std::pair<bool,space_basic<T,M> > >::iterator xh_iter = l_Xh.begin();
for (typename std::list<value_type>::const_iterator iter = _l.begin(); iter != _l.end(); ++iter, xh_iter++, j_comp++) {
const value_type& x = *iter;
switch (x.variant) {
case form_concat_value<T,M>::scalar: {
check_macro (x.s == 0, "unsupported non-nul scalar `"<<x.s<<"' in form concatenation"
<< " at ("<<i_comp<<","<<j_comp<<")");
break;
}
case form_concat_value<T,M>::form: {
if (!(*xh_iter).first) {
(*xh_iter).first = true;
(*xh_iter).second = x.m.get_first_space();
} else {
check_macro (x.m.get_first_space() == (*xh_iter).second, "form initializer: invalid second space `"
<< x.m.get_first_space().stamp() << "': expect `" << (*xh_iter).second.stamp() << "'"
<< " at ("<<i_comp<<","<<j_comp<<")");
}
if (!have_Yh) {
have_Yh = true;
Yh = x.m.get_second_space();
} else {
check_macro (x.m.get_second_space() == Yh, "form initializer: invalid second space `"
<< x.m.get_second_space().stamp() << "': expect `" << Yh.stamp() << "'"
<< " at ("<<i_comp<<","<<j_comp<<")");
}
break;
}
default: error_macro ("non-form or scalar concatenation not yet supported"
<< " at ("<<i_comp<<","<<j_comp<<")");
}
}
check_macro (have_Yh, "form concatenation: "<<i_comp<<"th row space remains undefined");
}
template <class T, class M>
void
form_concat_line<T,M>::build_first_space (const std::vector<std::pair<bool,space_basic<T,M> > >& l_Xh, space_basic<T,M>& Xh)
{
// ------------------------------------------------------------
// pass 0b : first space computation
// ------------------------------------------------------------
space_mult_list<T,M> sml_X;
size_t j_comp = 0;
for (typename std::vector<std::pair<bool,space_basic<T,M> > >::const_iterator
xh_iter = l_Xh.begin(),
xh_last = l_Xh.end(); xh_iter != xh_last; xh_iter++, j_comp++) {
check_macro ((*xh_iter).first, "form concatenation: "<<j_comp<<"th column space remains undefined");
sml_X *= (*xh_iter).second;
}
Xh = space_basic<T,M>(sml_X);
}
template <class T, class M>
void
form_concat_line<T,M>::build_form_pass1 (space_basic<T,M>& Xh, space_basic<T,M>& Yh) const
{
// --------------------------------
// pass 1 : both spaces computation
// --------------------------------
std::vector<std::pair<bool,space_basic<T,M> > > l_Xh (_l.size(), std::pair<bool,space_basic<T,M> >(false, space_basic<T,M>()));
build_form_pass0 (l_Xh, Yh);
build_first_space (l_Xh, Xh);
}
template <class T, class M>
form_basic<T,M>
form_concat_line<T,M>::build_form_pass2 (const space_basic<T,M>& Xh, const space_basic<T,M>& Yh) const
{
// -----------------------
// pass 2 : compute values
// -----------------------
form_basic<T,M> a (Xh, Yh);
csr_concat_line<T,M> uu, ub, bu, bb;
for(typename std::list<value_type>::const_iterator iter = _l.begin(); iter != _l.end(); ++iter) {
const value_type& x = *iter;
switch (x.variant) {
case form_concat_value<T,M>::form: {
uu.push_back (x.m.uu());
ub.push_back (x.m.ub());
bu.push_back (x.m.bu());
bb.push_back (x.m.bb());
break;
}
default: error_macro ("non-form concatenation not yet supported");
}
}
a.set_uu() = uu.build_csr();
a.set_ub() = ub.build_csr();
a.set_bu() = bu.build_csr();
a.set_bb() = bb.build_csr();
return a;
}
template <class T, class M>
form_basic<T,M>
form_concat_line<T,M>::build_form() const
{
space_basic<T,M> Xh, Yh;
build_form_pass1 (Xh, Yh);
return build_form_pass2 (Xh, Yh);
}
// -------------------------------
// form cstor from std::initializer
// -------------------------------
#ifdef _RHEOLEF_HAVE_STD_INITIALIZER_LIST
template <class T, class M>
inline
form_basic<T,M>::form_basic (const std::initializer_list<form_concat_value<T,M> >& init_list)
{
form_concat_line<T,M> cc (init_list);
form_basic<T,M>::operator= (cc.build_form());
}
#endif // _RHEOLEF_HAVE_STD_INITIALIZER_LIST
// =========================================================================
// 2nd case : multi-line form initializer
// A = { {a, b },
// {c, d} };
// =========================================================================
template <class T, class M>
struct form_concat {
// typedef:
typedef typename form_basic<T,M>::size_type size_type;
typedef form_concat_line<T,M> line_type;
typedef form_concat_value<T,M> value_type;
// allocators:
form_concat () : _l() {}
#ifdef _RHEOLEF_HAVE_STD_INITIALIZER_LIST
form_concat (const std::initializer_list<line_type>& il) : _l() {
#ifdef _RHEOLEF_HAVE_STD_INITIALIZER_ITERATOR
typedef typename std::initializer_list<line_type>::const_iterator const_iterator;
#else // _RHEOLEF_HAVE_STD_INITIALIZER_ITERATOR
typedef const line_type* const_iterator;
#endif // _RHEOLEF_HAVE_STD_INITIALIZER_ITERATOR
for(const_iterator iter = il.begin(); iter != il.end(); ++iter) {
_l.push_back(*iter);
}
}
#endif // _RHEOLEF_HAVE_STD_INITIALIZER_LIST
friend std::ostream& operator<< (std::ostream& o, const form_concat<T,M>& x) {
std::cout << "{";
for(typename std::list<line_type>::const_iterator iter = x._l.begin(); iter != x._l.end(); ++iter) {
std::cout << *iter << " ";
}
return std::cout << "}";
}
// internals:
form_basic<T,M> build_form () const;
// data:
protected:
std::list<line_type> _l;
};
template <class T, class M>
form_basic<T,M>
form_concat<T,M>::build_form() const
{
// ---------------------------
// pass 1 : compute spaces
// ---------------------------
size_t i_comp = 0;
space_mult_list<T,M> sml_Y;
std::vector<std::pair<bool,space_basic<T,M> > > l_Xh (_l.size(), std::pair<bool,space_basic<T,M> >(false, space_basic<T,M>()));
for (typename std::list<line_type>::const_iterator iter = _l.begin(); iter != _l.end(); ++iter, i_comp++) {
const line_type& line = *iter;
space_basic<T,M> Yih;
line.build_form_pass0 (l_Xh, Yih, i_comp);
sml_Y *= Yih;
}
space_basic<T,M> Xh;
form_concat_line<T,M>::build_first_space (l_Xh, Xh);
space_basic<T,M> Yh (sml_Y);
// ------------------------
// pass 2 : copy
// ------------------------
csr_concat<T,M> uu, ub, bu, bb;
for (typename std::list<line_type>::const_iterator iter = _l.begin(); iter != _l.end(); ++iter) {
const line_type& line = *iter;
csr_concat_line<T,M> uu_i, ub_i, bu_i, bb_i;
for (typename std::list<value_type>::const_iterator jter = line.begin(); jter != line.end(); ++jter) {
const value_type& x = *jter;
switch (x.variant) {
case form_concat_value<T,M>::scalar: {
check_macro (x.s == 0, "unsupported non-nul scalar `"<<x.s<<"' in form concatenation");
// zero: no values to insert in the sparse structure => nothing more to do
uu_i.push_back (x.s);
ub_i.push_back (x.s);
bu_i.push_back (x.s);
bb_i.push_back (x.s);
break;
}
case form_concat_value<T,M>::form: {
uu_i.push_back (x.m.uu());
ub_i.push_back (x.m.ub());
bu_i.push_back (x.m.bu());
bb_i.push_back (x.m.bb());
break;
}
default: error_macro ("non-form or scalar concatenation not yet supported");
}
}
uu.push_back (uu_i);
ub.push_back (ub_i);
bu.push_back (bu_i);
bb.push_back (bb_i);
}
form_basic<T,M> a(Xh, Yh);
a.set_uu() = uu.build_csr();
a.set_ub() = ub.build_csr();
a.set_bu() = bu.build_csr();
a.set_bb() = bb.build_csr();
return a;
}
#ifdef _RHEOLEF_HAVE_STD_INITIALIZER_LIST
template <class T, class M>
inline
form_basic<T,M>::form_basic (const std::initializer_list<form_concat_line<T,M> >& init_list)
{
form_concat<T,M> cc (init_list);
form_basic<T,M>::operator= (cc.build_form());
}
#endif // _RHEOLEF_HAVE_STD_INITIALIZER_LIST
} // namespace rheolef
#endif // _RHEOLEF_FORM_CONCAT_H
|