casadi_max_viol.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 "max_viol"
21 template<typename T1>
22 T1 casadi_max_viol(casadi_int n, const T1* x, const T1* lb, const T1* ub) {
23  T1 r;
24  casadi_int i;
25  const T1 zero = 0;
26  r = 0;
27  for (i=0; i<n; ++i) {
28  T1 x_i, lb_i, ub_i;
29  x_i = x ? *x++ : zero;
30  lb_i = lb ? *lb++ : zero;
31  ub_i = ub ? *ub++ : zero;
32  // C-REPLACE "fmax" "casadi_fmax"
33  r = fmax(r, fmax(x_i-ub_i, zero));
34  r = fmax(r, fmax(lb_i-x_i, zero));
35  }
36  return r;
37 }