casadi_sparsify.hpp
1 //
2 // MIT No Attribution
3 //
4 // Copyright (C) 2010-2023 Joel Andersson, Joris Gillis, Moritz Diehl, KU Leuven.
5 //
6 // Permission is hereby granted, free of charge, to any person obtaining a copy of this
7 // software and associated documentation files (the "Software"), to deal in the Software
8 // without restriction, including without limitation the rights to use, copy, modify,
9 // merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
10 // permit persons to whom the Software is furnished to do so.
11 //
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
13 // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
14 // PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
15 // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
16 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
17 // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
18 //
19 
20 // SYMBOL "sparsify"
21 template<typename T1, typename T2>
22 void casadi_sparsify(const T1* x, T2* y, const casadi_int* sp_y, casadi_int tr) {
23  casadi_int nrow_y, ncol_y, i, el;
24  const casadi_int *colind_y, *row_y;
25  nrow_y = sp_y[0];
26  ncol_y = sp_y[1];
27  colind_y = sp_y+2; row_y = sp_y+ncol_y+3;
28  if (tr) {
29  for (i=0; i<ncol_y; ++i) {
30  for (el=colind_y[i]; el!=colind_y[i+1]; ++el) {
31  *y++ = CASADI_CAST(T2, x[i + row_y[el]*ncol_y]);
32  }
33  }
34  } else {
35  for (i=0; i<ncol_y; ++i) {
36  for (el=colind_y[i]; el!=colind_y[i+1]; ++el) {
37  *y++ = CASADI_CAST(T2, x[row_y[el]]);
38  }
39  x += nrow_y;
40  }
41  }
42 }