casadi_to_file.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 // C-REPLACE "static_cast<int>" "(int) "
21 
22 // SYMBOL "to_file"
23 template<typename T1>
24 void casadi_to_file(FILE* f, const casadi_int* sp, const T1* x) {
25  casadi_int nrow = sp[0];
26  casadi_int ncol = sp[1];
27  const casadi_int* colind = sp+2;
28  const casadi_int* row = colind + ncol + 1;
29  casadi_int nnz = colind[ncol];
30  casadi_int cc, k;
31  fprintf(f, "%%%%MatrixMarket matrix coordinate real general\n");
32  fprintf(f, "%d %d %d\n", static_cast<int>(nrow), static_cast<int>(ncol),
33  static_cast<int>(nnz));
34  for (cc=0; cc<ncol; ++cc) {
35  for (k=colind[cc]; k<colind[cc+1]; ++k) {
36  fprintf(f, "%d %d ", static_cast<int>(row[k]+1), static_cast<int>(cc+1));
37  if (x) {
38  casadi_fprintf_scalar(f, x[k]);
39  } else {
40  fprintf(f, "nan");
41  }
42  fprintf(f, "\n");
43  }
44  }
45 }