casadi_ocp_block.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 
21 // SYMBOL "ocp_block"
23  casadi_int offset_r;
24  casadi_int offset_c;
25  casadi_int rows;
26  casadi_int cols;
27 };
28 // C-REPLACE "casadi_ocp_block" "struct casadi_ocp_block"
29 
30 // SYMBOL "unpack_ocp_blocks"
31 template<typename T1>
32 void casadi_unpack_ocp_blocks(casadi_ocp_block* blocks, const casadi_int* packed) {
33  casadi_int i;
34  casadi_int N = *packed++;
35  for (i=0;i<N;++i) {
36  blocks[i].offset_r = *packed++;
37  blocks[i].offset_c = *packed++;
38  blocks[i].rows = *packed++;
39  blocks[i].cols = *packed++;
40  }
41 }
42 
43 // SYMBOL "ptr_ocp_block"
44 template<typename T1>
45 void casadi_ptr_ocp_block(casadi_int N, T1** vs, T1* v, const casadi_ocp_block* blocks, int eye) {
46  casadi_int k, offset = 0;
47  for (k=0;k<N;++k) {
48  vs[k] = v+offset;
49  if (eye) {
50  offset += blocks[k].rows;
51  } else {
52  offset += blocks[k].rows*blocks[k].cols;
53  }
54  }
55 }