optistack_internal.cpp
1 /*
2  * This file is part of CasADi.
3  *
4  * CasADi -- A symbolic framework for dynamic optimization.
5  * Copyright (C) 2010-2023 Joel Andersson, Joris Gillis, Moritz Diehl,
6  * KU Leuven. All rights reserved.
7  * Copyright (C) 2011-2014 Greg Horn
8  *
9  * CasADi is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 3 of the License, or (at your option) any later version.
13  *
14  * CasADi is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with CasADi; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  *
23  */
24 
25 #include "optistack_internal.hpp"
26 #include "nlpsol.hpp"
27 #include "conic.hpp"
28 #include "function_internal.hpp"
29 #include "global_options.hpp"
30 #include "filesystem_impl.hpp"
31 
32 namespace casadi {
33 
34 class InternalOptiCallback : public FunctionInternal {
35  public:
36 
37  InternalOptiCallback(OptiNode& sol) : FunctionInternal(class_name()), sol_(sol) {}
38 
39  ~InternalOptiCallback() override {
40  clear_mem();
41  }
42 
44  std::string class_name() const override {return "InternalOptiCallback";}
45 
46  // Number of inputs and outputs
47  size_t get_n_in() override { return nlpsol_n_out();}
48 
49  Sparsity get_sparsity_in(casadi_int i) override {
50  std::string n = nlpsol_out(i);
51  casadi_int size = 0;
52  if (n=="f") {
53  size = 1;
54  } else if (n=="lam_x" || n=="x") {
55  size = sol_.nx();
56  } else if (n=="lam_g" || n=="g") {
57  size = sol_.ng();
58  } else if (n=="p" || n=="lam_p") {
59  size = sol_.np();
60  if (size==0) return Sparsity::dense(0, 0);
61  } else {
62  return Sparsity::dense(0, 0);
63  }
64  return Sparsity::dense(size, 1);
65  }
66 
67  void reset() { i=0; }
68 
69  // eval_dm has been defined instead of eval
70  bool has_eval_dm() const override { return true;}
71 
73  std::vector<DM> eval_dm(const std::vector<DM>& arg) const override {
74  DMDict r;
75 
76  for (casadi_int i=0;i<nlpsol_n_out();++i) {
77  r[nlpsol_out(i)] = arg[i];
78  }
79 
80  sol_.res(r);
81 
82  if (sol_.user_callback_) sol_.user_callback_->call(i);
83 
84  i+=1;
85  return {0};
86  }
87 
88  bool associated_with(const OptiNode* o) { return &sol_==o; }
89 
90  private:
91  OptiNode& sol_;
92  mutable casadi_int i;
93 };
94 
95 OptiNode* OptiNode::create(const std::string& problem_type) {
96 return new OptiNode(problem_type);
97 }
98 
99 
101  user_callback_ = callback;
102 }
103 
105  user_callback_ = nullptr;
106 }
107 
109  return user_callback_ != 0;
110 }
111 
112 std::string OptiNode::format_stacktrace(const Dict& stacktrace, casadi_int indent) {
113  std::string s_indent;
114  for (casadi_int i=0;i<indent;++i) {
115  s_indent+= " ";
116  }
117  std::string description;
118  std::string filename = stacktrace.at("file").as_string();
119  casadi_int line = stacktrace.at("line").as_int();
120  description += "called from " + filename +":"+str(line);
121  std::string name = stacktrace.at("name").as_string();
122  if (name!="Unknown" && name!= "<module>")
123  description += " in " + stacktrace.at("name").as_string();
124  try {
125  auto file_ptr = Filesystem::ifstream_ptr(filename);
126  std::istream& file = *file_ptr;
127  for (casadi_int i=0; i<line-1; ++i) {
128  file.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
129  }
130  std::string contents; std::getline(file, contents);
131  auto it = contents.find_first_not_of(" \t\r\n");
132  if (it!=std::string::npos) {
133  description += "\n" + s_indent + contents.substr(it);
134  }
135  } catch(...) {
136  return description;
137  }
138  return description;
139 }
140 
141 std::string OptiNode::describe(const MX& expr, casadi_int indent, const Dict& opts) const {
142  if (problem_dirty()) return baked_copy().describe(expr, indent, opts);
143  casadi_int max_stacktrace_depth = 1;
144  for (const auto& op : opts) {
145  if (op.first=="max_stacktrace_depth") {
146  max_stacktrace_depth = op.second.as_int();
147  } else {
148  casadi_warning("Unknown option '" + op.first + "'");
149  }
150  }
151  std::string s_indent;
152  for (casadi_int i=0;i<indent;++i) {
153  s_indent+= " ";
154  }
155  std::string description = s_indent;
156  if (expr.is_symbolic()) {
157  if (has(expr)) {
158  description += "Opti " + variable_type_to_string(meta(expr).type) + " '" + expr.name() +
159  "' of shape " + expr.dim();
160  const Dict& extra = meta(expr).extra;
161  auto it = extra.find("stacktrace");
162  if (it!=extra.end()) {
163  for (const Dict& stacktrace : it->second.as_dict_vector()) {
164  description += ", " + format_stacktrace(stacktrace, indent+1);
165  if (--max_stacktrace_depth==0) break;
166  }
167  }
168  } else {
169  VariableType vt;
170  if (parse_opti_name(expr.name(), vt)) {
171  description += "Opti " + variable_type_to_string(vt) + " '" + expr.name() +
172  "' of shape " + expr.dim()+
173  ", belonging to a different instance of Opti.";
174  } else {
175  description += "MX symbol '" + expr.name() + "' of shape " + expr.dim();
176  description += ", declared outside of Opti.";
177  }
178  }
179  } else {
180  if (has_con(expr)) {
181  description = "Opti constraint of shape " + expr.dim();
182  const Dict& extra = meta_con(expr).extra;
183  auto it = extra.find("stacktrace");
184  if (it!=extra.end()) {
185  for (const Dict& stacktrace : it->second.as_dict_vector()) {
186  description += ", " + format_stacktrace(stacktrace, indent+1);
187  if (--max_stacktrace_depth==0) break;
188  }
189  }
190  } else {
191  std::vector<MX> s = symvar(expr);
192  if (s.empty()) {
193  description+= "Constant epxression.";
194  } else {
195  description+= "General expression, dependent on " + str(s.size()) + " symbols:";
196  for (casadi_int i=0;i<s.size();++i) {
197  description+= "\n"+describe(s[i], indent+1);
198  if (i>5) {
199  description+= "\n...";
200  break;
201  }
202  }
203  }
204  }
205  }
206 
207  return description;
208 }
209 
210 std::string OptiNode::g_describe(casadi_int i, const Dict& opts) const {
211  if (problem_dirty()) return baked_copy().g_describe(i, opts);
212  MX expr = g_lookup(i);
213  casadi_int local_i = i-meta_con(expr).start + GlobalOptions::start_index;
214  std::string description = describe(expr, 0, opts);
215  if (expr.numel()>1)
216  description += "\nAt nonzero " + str(local_i % expr.numel()) +
217  ", part " + str((casadi_int) local_i / expr.numel()) + ".";
218  return description;
219 }
220 
221 std::string OptiNode::x_describe(casadi_int i, const Dict& opts) const {
222  if (problem_dirty()) return baked_copy().x_describe(i, opts);
223  MX symbol = x_lookup(i);
224  casadi_int local_i = i-meta(symbol).start + GlobalOptions::start_index;
225  std::string description = describe(symbol, 0, opts);
226  if (symbol.numel()>1)
227  description += "\nAt nonzero " + str(local_i) + ".";
228  return description;
229 }
230 
231 MX OptiNode::x_lookup(casadi_int i) const {
232  if (problem_dirty()) return baked_copy().x_lookup(i);
233  casadi_assert_dev(i>=0);
234  casadi_assert_dev(i<nx());
235  std::vector<MX> x = active_symvar(OPTI_VAR);
236  for (const auto& e : x) {
237  const MetaVar& m = meta(e);
238  if (i>=m.start && i<m.stop) return e;
239  }
240  casadi_error("Internal error");
241  return MX();
242 }
243 
244 MX OptiNode::g_lookup(casadi_int i) const {
245  if (problem_dirty()) return baked_copy().g_lookup(i);
246  casadi_assert_dev(i>=0);
247  casadi_assert_dev(i<ng());
248  for (const auto& e : g_) {
249  const MetaCon& m = meta_con(e);
250  if (i>=m.start && i<m.stop) return e;
251  }
252  casadi_error("Internal error");
253  return MX();
254 }
255 
256 OptiNode::OptiNode(const std::string& problem_type) :
257  count_(0), count_var_(0), count_par_(0), count_dual_(0) {
258  f_ = 0;
259  f_linear_scale_ = 1;
260  instance_number_ = instance_count_++;
261  user_callback_ = nullptr;
262  store_initial_[OPTI_VAR] = {};
263  store_initial_[OPTI_PAR] = {};
264  store_initial_[OPTI_DUAL_G] = {};
265  store_latest_[OPTI_VAR] = {};
266  store_latest_[OPTI_DUAL_G] = {};
267  casadi_assert(problem_type=="nlp" || problem_type=="conic",
268  "Specified problem type '" + problem_type + "'unknown. "
269  "Choose 'nlp' (default) or 'conic'.");
270  problem_type_ = problem_type;
272  helpers_ = std::make_shared<ValueCache>();
273 }
274 
276 }
277 
278 MX OptiNode::variable(casadi_int n, casadi_int m, const std::string& attribute) {
279 
280  // Prepare metadata
281  MetaVar meta_data;
282  meta_data.attribute = attribute;
283  meta_data.n = n;
284  meta_data.m = m;
285  meta_data.type = OPTI_VAR;
286  meta_data.count = count_++;
287  meta_data.i = count_var_++;
288  meta_data.domain = OPTI_DOMAIN_REAL;
289 
290  MX symbol, ret;
291 
292  if (attribute=="symmetric") {
293  casadi_assert(n==m, "You specified attribute 'symmetric', "
294  "while matrix is not even square, but " + str(n) + "-by-" + str(m) + ".");
295  symbol = MX::sym(name_prefix() + "x_" + str(count_var_), n*(n+1)/2);
296  ret = tril2symm(MX(Sparsity::lower(n), symbol));
297  } else if (attribute=="full") {
298  symbol = MX::sym(name_prefix() + "x_" + str(count_var_), n, m);
299  ret = symbol;
300  } else {
301  casadi_error("Unknown attribute '" + attribute + "'. Choose from 'full' or 'symmetric'.");
302  }
303 
304  // Store the symbol; preventing it from going ut of scope
305  symbols_.push_back(symbol);
306  store_initial_[OPTI_VAR].push_back(DM::zeros(symbol.sparsity()));
307  store_latest_[OPTI_VAR].push_back(DM::nan(symbol.sparsity()));
308  store_linear_scale_[OPTI_VAR].push_back(DM::ones(symbol.sparsity()));
309  store_linear_scale_offset_[OPTI_VAR].push_back(DM::zeros(symbol.sparsity()));
310 
311  set_meta(symbol, meta_data);
312  return ret;
313 }
314 
315 MX OptiNode::variable(const MX& symbol, const std::string& attribute) {
316 
317  // Prepare metadata
318  MetaVar meta_data;
319  meta_data.attribute = attribute;
320  meta_data.n = symbol.size1();
321  meta_data.m = symbol.size2();
322  meta_data.type = OPTI_VAR;
323  meta_data.count = count_++;
324  meta_data.i = count_var_++;
325 
326  // Store the symbol; preventing it from going ut of scope
327  symbols_.push_back(symbol);
328  store_initial_[OPTI_VAR].push_back(DM::zeros(symbol.sparsity()));
329  store_latest_[OPTI_VAR].push_back(DM::nan(symbol.sparsity()));
330  store_linear_scale_[OPTI_VAR].push_back(DM::ones(symbol.sparsity()));
331  store_linear_scale_offset_[OPTI_VAR].push_back(DM::zeros(symbol.sparsity()));
332 
333  set_meta(symbol, meta_data);
334  return symbol;
335 }
336 
337 MX OptiNode::variable(const Sparsity& sp, const std::string& attribute) {
338 
339  // Prepare metadata
340  MetaVar meta_data;
341  meta_data.attribute = attribute;
342  meta_data.n = sp.size1();
343  meta_data.m = sp.size2();
344  meta_data.type = OPTI_VAR;
345  meta_data.count = count_++;
346  meta_data.i = count_var_++;
347 
348  MX symbol = MX::sym(name_prefix() + "x_" + str(count_var_), sp);
349 
350  // Store the symbol; preventing it from going ut of scope
351  symbols_.push_back(symbol);
352  store_initial_[OPTI_VAR].push_back(DM::zeros(symbol.sparsity()));
353  store_latest_[OPTI_VAR].push_back(DM::nan(symbol.sparsity()));
354  store_linear_scale_[OPTI_VAR].push_back(DM::ones(symbol.sparsity()));
355  store_linear_scale_offset_[OPTI_VAR].push_back(DM::zeros(symbol.sparsity()));
356 
357  set_meta(symbol, meta_data);
358  return symbol;
359 }
360 
361 std::string OptiNode::name_prefix() const {
362  return "opti" + str(instance_number_) + "_";
363 }
364 
366  return Opti::create(new OptiNode(*this));
367 }
368 
369 void OptiNode::register_dual(MetaCon& c) {
370 
371  // Prepare metadata
372  MetaVar meta_data;
373  meta_data.attribute = "full";
374  meta_data.n = c.canon.size1();
375  meta_data.m = c.canon.size2();;
376  meta_data.type = OPTI_DUAL_G;
377  meta_data.count = count_++;
378  meta_data.i = count_dual_++;
379 
380  MX symbol, ret;
381  if (c.type==OPTI_PSD) {
382  symbol = MX();
383  ret = MX();
384  } else {
385  symbol = MX::sym(name_prefix()+"lam_g_"+str(count_dual_), c.canon.sparsity());
386 
387  casadi_assert_dev(c.canon.is_dense());
388 
389  Sparsity ret_sp = repmat(c.original.sparsity(), 1, c.n);
390 
391  casadi_int N = c.canon.sparsity().nnz();
392 
393  MX flat = vec(symbol);
394  if (c.type==OPTI_DOUBLE_INEQUALITY) {
395  MX v = MX::sym("v");
396  MX decide_left_right = vertcat(if_else_zero(v<0, -v), if_else_zero(v>=0, v));
397  Function sign = Function("sign", {v}, {decide_left_right});
398  Function sign_map = sign.map(c.canon.sparsity().nnz());
399  ret = MX(ret_sp, sign_map((c.flipped ? -1 : 1)*flat)[0].T());
400  } else {
401  casadi_int block_size = N / c.n;
402  std::vector<MX> original_blocks = vertsplit(
403  c.type==OPTI_EQUALITY ||
404  c.type==OPTI_GENERIC_EQUALITY ? flat : fabs(flat), block_size);
405  std::vector<MX> blocks(N);
406  for (casadi_int i=0;i<c.n;++i) {
407  casadi_int p = c.flipped? c.n-i-1: i;
408  blocks[p] = original_blocks[i];
409  }
410  ret = MX(ret_sp, vertcat(blocks));
411  }
412  }
413 
414  symbols_.push_back(symbol);
415  store_initial_[OPTI_DUAL_G].push_back(DM::zeros(symbol.sparsity()));
416  store_latest_[OPTI_DUAL_G].push_back(DM::nan(symbol.sparsity()));
417 
418  c.dual = ret;
419  c.dual_canon = symbol;
420 
421  set_meta(symbol, meta_data);
422 }
423 
424 MX OptiNode::parameter(const MX& symbol, const std::string& attribute) {
425  casadi_assert_dev(attribute=="full");
426 
427  // Prepare metadata
428  MetaVar meta_data;
429  meta_data.attribute = attribute;
430  meta_data.n = symbol.size1();
431  meta_data.m = symbol.size2();
432  meta_data.type = OPTI_PAR;
433  meta_data.count = count_++;
434  meta_data.i = count_par_++;
435 
436  symbols_.push_back(symbol);
437  store_initial_[OPTI_PAR].push_back(DM::nan(symbol.sparsity()));
438 
439  set_meta(symbol, meta_data);
440  return symbol;
441 }
442 
443 MX OptiNode::parameter(const Sparsity& sp, const std::string& attribute) {
444  casadi_assert_dev(attribute=="full");
445 
446  // Prepare metadata
447  MetaVar meta_data;
448  meta_data.attribute = attribute;
449  meta_data.n = sp.size1();
450  meta_data.m = sp.size2();
451  meta_data.type = OPTI_PAR;
452  meta_data.count = count_++;
453  meta_data.i = count_par_++;
454 
455  MX symbol = MX::sym(name_prefix() + "p_" + str(count_par_), sp);
456  symbols_.push_back(symbol);
457  store_initial_[OPTI_PAR].push_back(DM::nan(symbol.sparsity()));
458 
459  set_meta(symbol, meta_data);
460  return symbol;
461 }
462 
463 MX OptiNode::parameter(casadi_int n, casadi_int m, const std::string& attribute) {
464  casadi_assert_dev(attribute=="full");
465 
466  // Prepare metadata
467  MetaVar meta_data;
468  meta_data.attribute = attribute;
469  meta_data.n = n;
470  meta_data.m = m;
471  meta_data.type = OPTI_PAR;
472  meta_data.count = count_++;
473  meta_data.i = count_par_++;
474 
475  MX symbol = MX::sym(name_prefix() + "p_" + str(count_par_), n, m);
476  symbols_.push_back(symbol);
477  store_initial_[OPTI_PAR].push_back(DM::nan(symbol.sparsity()));
478 
479  set_meta(symbol, meta_data);
480  return symbol;
481 }
482 
484  assert_solved();
485  if (stats_.empty()) {
486  stats_ = solver_.stats();
487  is_simple_ = get_from_dict(stats_,
488  "detect_simple_bounds_is_simple",
489  std::vector<bool>(ng(), false));
490  target_x_ = get_from_dict(stats_,
491  "detect_simple_bounds_target_x",
492  std::vector<casadi_int>{});
493  casadi_assert_dev(is_simple_.size()==ng());
494 
495  g_index_reduce_g_.resize(ng());
496  g_index_reduce_x_.resize(ng(), -1);
497  g_index_unreduce_g_.resize(ng(), -1);
498 
499  casadi_int* target_x_ptr = target_x_.data();
500 
501  casadi_int k=0;
502  for (casadi_int i=0;i<is_simple_.size();++i) {
503  if (!is_simple_[i]) {
504  g_index_reduce_g_[i] = k;
505  g_index_unreduce_g_[k] = i;
506  k++;
507  } else {
508  g_index_reduce_g_[i] = -1;
509  g_index_reduce_x_[i] = *target_x_ptr;
510  target_x_ptr++;
511  }
512  }
513 
514  reduced_ = any(is_simple_);
515  }
516  return stats_;
517 }
518 
519 casadi_int OptiNode::g_index_reduce_g(casadi_int i) const {
520  stats();
521  return g_index_reduce_g_[i];
522 }
523 casadi_int OptiNode::g_index_unreduce_g(casadi_int i) const {
524  stats();
525  return g_index_unreduce_g_[i];
526 }
527 casadi_int OptiNode::g_index_reduce_x(casadi_int i) const {
528  stats();
529  return g_index_reduce_x_[i];
530 }
531 
532 std::string OptiNode::return_status() const {
533  Dict mystats;
534  try {
535  mystats = stats();
536  } catch (...) {
537  return "unknown";
538  }
539  if (mystats.find("return_status")!=mystats.end()) {
540  std::stringstream ss;
541  ss << mystats.at("return_status");
542  return ss.str();
543  }
544  return "unknown";
545 }
546 
547 bool OptiNode::return_success(bool accept_limit) const {
548  Dict mystats;
549  try {
550  mystats = stats();
551  } catch (...) {
552  return false;
553  }
554  bool success = false;
555  if (mystats.find("success")!=mystats.end()) success = mystats.at("success");
556  if (!accept_limit) return success;
557 
558  bool limited = false;
559  if (mystats.find("unified_return_status")!=mystats.end())
560  limited = mystats.at("unified_return_status")=="SOLVER_RET_LIMITED";
561  return success || limited;
562 }
563 
565  return solver_;
566 }
567 
568 void OptiNode::set_meta(const MX& m, const MetaVar& meta) {
569  meta_[m.get()] = meta;
570 }
571 
572 void OptiNode::set_meta_con(const MX& m, const MetaCon& meta) {
573  meta_con_[m.get()] = meta;
574 }
575 
576 void OptiNode::update_user_dict(const MX& m, const Dict& meta) {
577  if (has_con(m)) {
578  MetaCon m_update = get_meta_con(m);
579  MetaVar m_update2 = get_meta(m_update.dual_canon);
580  for (const auto & it : meta) {
581  m_update.extra[it.first] = it.second;
582  m_update2.extra[it.first] = it.second;
583  }
584  set_meta_con(m, m_update);
585  set_meta(m_update.dual_canon, m_update2);
586  } else {
587  for (const auto & s : MX::symvar(m)) {
588  MetaVar m_update = get_meta(s);
589  for (const auto & it : meta)
590  m_update.extra[it.first] = it.second;
591  set_meta(s, m_update);
592  }
593  }
594 }
595 
596 Dict OptiNode::user_dict(const MX& m) const {
597  if (has_con(m)) {
598  MetaCon meta = get_meta_con(m);
599  return meta.extra;
600  } else {
601  MetaVar meta = get_meta(m);
602  return meta.extra;
603  }
604 }
605 
606 MX OptiNode::dual(const MX& m) const {
607  return meta_con(m).dual;
608 }
609 
610 const MetaVar& OptiNode::meta(const MX& m) const {
611  assert_has(m);
612  auto find = meta_.find(m.get());
613  return find->second;
614 }
615 
616 const MetaCon& OptiNode::meta_con(const MX& m) const {
617  assert_has_con(m);
618  auto find = meta_con_.find(m.get());
619  return find->second;
620 }
621 
622 MetaVar& OptiNode::meta(const MX& m) {
623  assert_has(m);
624  auto find = meta_.find(m.get());
625  return find->second;
626 }
627 
628 MetaCon& OptiNode::meta_con(const MX& m) {
629  assert_has_con(m);
630  auto find = meta_con_.find(m.get());
631  return find->second;
632 }
633 
634 MetaVar OptiNode::get_meta(const MX& m) const {
635  return meta(m);
636 }
637 
639  return meta_con(m);
640 }
641 
642 bool OptiNode::has(const MX& m) const {
643  return meta_.find(m.get())!=meta_.end();
644 }
645 
646 bool OptiNode::has_con(const MX& m) const {
647  return meta_con_.find(m.get())!=meta_con_.end();
648 }
649 
650 void OptiNode::assert_has(const MX& m) const {
651  if (!has(m)) {
652  VariableType vt;
653  casadi_assert(m.is_symbolic(), "Symbol expected, got expression.");
654  if (parse_opti_name(m.name(), vt)) {
655  casadi_error("Unknown: " + describe(m));
656  } else {
657  casadi_error("Unknown: " + describe(m) + "\n"
658  "Note: you cannot use a raw MX.sym in your Opti problem,"
659  " only if you package it in a CasADi Function.");
660  }
661  }
662 }
663 
664 void OptiNode::assert_has_con(const MX& m) const {
665  casadi_assert(has_con(m), "Constraint not present in Opti stack.");
666 }
667 
668 casadi_int OptiNode::instance_count_ = 0;
669 
670 bool OptiNode::parse_opti_name(const std::string& name, VariableType& vt) const {
671  casadi_int i = name.find("opti");
672  if (i!=0) return false;
673 
674  i = name.find("_");
675  i++;
676  if (i==std::string::npos) return false;
677  if (name.substr(i, 1)=="x") {
678  vt = OPTI_VAR;
679  return true;
680  } else if (name.substr(i, 1)=="p") {
681  vt = OPTI_PAR;
682  return true;
683  } else if (name.substr(i, 5)=="lam_g") {
684  vt = OPTI_DUAL_G;
685  return true;
686  }
687 
688  return false;
689 }
690 
691 std::string OptiNode::variable_type_to_string(VariableType vt) const {
692  auto it = VariableType2String_.find(vt);
693  if (it==VariableType2String_.end()) return "unknown variable type";
694  return it->second;
695 
696 }
697 std::map<VariableType, std::string> OptiNode::VariableType2String_ =
698  {{OPTI_VAR, "decision variable"},
699  {OPTI_PAR, "parameter"},
700  {OPTI_DUAL_G, "dual variable"}};
701 
702 std::vector<MX> OptiNode::initial() const {
703  std::vector<MX> ret;
704  for (const auto& e : symvar()) {
705  if (meta(e).type==OPTI_VAR || meta(e).type==OPTI_DUAL_G)
706  ret.push_back(e==store_initial_.at(meta(e).type)[meta(e).i]);
707  }
708  return ret;
709 }
710 
711 std::vector<MX> OptiNode::value_variables() const {
712  std::vector<MX> ret;
713  for (const auto& e : symvar()) {
714  if (meta(e).type==OPTI_VAR)
715  ret.push_back(e==store_latest_.at(meta(e).type)[meta(e).i]);
716  }
717  return ret;
718 }
719 
720 std::vector<MX> OptiNode::value_parameters() const {
721  std::vector<MX> ret;
722  for (const auto& e : symvar()) {
723  if (meta(e).type==OPTI_PAR)
724  ret.push_back(e==store_initial_.at(meta(e).type)[meta(e).i]);
725  }
726  return ret;
727 }
728 
730  casadi_assert(!f_.is_empty() || !g_.empty(),
731  "You need to specify at least an objective (y calling 'minimize'), "
732  "or a constraint (by calling 'subject_to').");
733 
734  symbol_active_.clear();
735  symbol_active_.resize(symbols_.size());
736  helpers_ = std::make_shared<ValueCache>();
737 
738  // Gather all expressions
739  MX total_expr = vertcat(f_, veccat(g_));
740 
741  // Categorize the symbols appearing in those expressions
742  for (const auto& d : symvar(total_expr))
743  symbol_active_[meta(d).count] = true;
744 
745  std::vector<MX> x = active_symvar(OPTI_VAR);
746  for (casadi_int i=0;i<x.size();++i) meta(x[i]).active_i = i;
747 
748  casadi_int offset = 0;
749  for (const auto& v : x) {
750  meta(v).start = offset;
751  offset+= v.nnz();
752  meta(v).stop = offset;
753  }
754  std::vector<MX> p = active_symvar(OPTI_PAR);
755  for (casadi_int i=0;i<p.size();++i) meta(p[i]).active_i = i;
756 
757  // Fill the nlp definition
758  nlp_["x"] = veccat(x);
759  nlp_["p"] = veccat(p);
760 
761  nlp_unscaled_["x"] = veccat(x);
762  nlp_unscaled_["p"] = veccat(p);
763 
764  discrete_.clear();
765  for (const MX& e : x) {
766  discrete_.insert(discrete_.end(), e.nnz(), meta(e).domain == OPTI_DOMAIN_INTEGER);
767  }
768 
769  nlp_["f"] = f_;
770  nlp_unscaled_["f"] = f_;
771 
772  offset = 0;
773  for (casadi_int i=0;i<g_.size();++i) {
774  MetaCon& r = meta_con(g_[i]);
775  MetaVar& r2 = meta(r.dual_canon);
776  symbol_active_[r2.count] = true;
777 
778  // Compute offsets for this constraint:
779  // location into the global constraint variable
780  r.start = offset;
781  offset+= r.canon.nnz();
782  r.stop = offset;
783 
784  r2.start = r.start;
785  r2.stop = r.stop;
786 
787  }
788  index_all_to_g_.resize(offset);
789  offset = 0;
790  casadi_int offset_g = 0;
791  for (const auto& g : g_) {
792  const MetaCon& r = meta_con(g);
793  if (r.type==OPTI_PSD) {
794  for (casadi_int i=0;i<r.stop-r.start;++i) {
795  index_all_to_g_[r.start+i] = -1;
796  }
797  } else {
798  for (casadi_int i=0;i<r.stop-r.start;++i) {
799  index_all_to_g_[r.start+i] = offset_g+i;
800  }
801  offset_g += r.canon.nnz();
802  }
803  }
804 
805  std::vector<MX> lam = active_symvar(OPTI_DUAL_G);
806  for (casadi_int i=0;i<lam.size();++i) meta(lam[i]).active_i = i;
807 
808  lam_ = veccat(lam);
809 
810  // Collect bounds and canonical form of constraints
811  std::vector<MX> g_all, g_unscaled_all;
812  std::vector<MX> h_all, h_unscaled_all;
813  std::vector<MX> lbg_all, lbg_unscaled_all;
814  std::vector<MX> ubg_all, ubg_unscaled_all;
815 
816  g_linear_scale_.clear();
817  h_linear_scale_.clear();
818  std::vector<DM> g_linear_scale, h_linear_scale;
819 
820  equality_.clear();
821  for (const auto& g : g_) {
822  if (meta_con(g).type==OPTI_PSD) {
823  h_all.push_back(meta_con(g).canon/meta_con(g).linear_scale);
824  if (meta_con(g).canon.numel()==meta_con(g).linear_scale.numel()) {
825  h_linear_scale.push_back(meta_con(g).linear_scale);
826  } else {
827  casadi_assert_dev(meta_con(g).linear_scale.numel()==1);
828  h_linear_scale.push_back(DM::ones(meta_con(g).canon.sparsity())*meta_con(g).linear_scale);
829  }
830  h_unscaled_all.push_back(meta_con(g).canon);
831  } else {
832  g_all.push_back(meta_con(g).canon/meta_con(g).linear_scale);
833  if (meta_con(g).canon.numel()==meta_con(g).linear_scale.numel()) {
834  g_linear_scale.push_back(meta_con(g).linear_scale);
835  } else {
836  casadi_assert_dev(meta_con(g).linear_scale.numel()==1);
837  g_linear_scale.push_back(DM::ones(meta_con(g).canon.sparsity())*meta_con(g).linear_scale);
838  }
839  g_unscaled_all.push_back(meta_con(g).canon);
840  lbg_all.push_back(meta_con(g).lb/meta_con(g).linear_scale);
841  lbg_unscaled_all.push_back(meta_con(g).lb);
842  ubg_all.push_back(meta_con(g).ub/meta_con(g).linear_scale);
843  ubg_unscaled_all.push_back(meta_con(g).ub);
844 
845  equality_.insert(equality_.end(),
846  meta_con(g).canon.numel(),
847  meta_con(g).type==OPTI_EQUALITY || meta_con(g).type==OPTI_GENERIC_EQUALITY);
848  }
849  }
850 
851  nlp_["g"] = veccat(g_all);
852  g_linear_scale_ = veccat(g_linear_scale).nonzeros();
853  nlp_unscaled_["g"] = veccat(g_unscaled_all);
854  if (problem_type_=="conic") {
855  nlp_["h"] = diagcat(h_all);
856  nlp_unscaled_["h"] = diagcat(h_unscaled_all);
857  h_linear_scale_ = veccat(h_linear_scale).nonzeros();
858  }
859 
860  // Get scaling data
861  std::vector<DM> linear_scale = active_values(OPTI_VAR, store_linear_scale_);
862  std::vector<DM> linear_scale_offset = active_values(OPTI_VAR, store_linear_scale_offset_);
863 
864  linear_scale_ = veccat(linear_scale).nonzeros();
865  linear_scale_offset_ = veccat(linear_scale_offset).nonzeros();
866 
867  // Unscaled version of x
868  std::vector<MX> x_unscaled(x.size());
869  for (casadi_int i=0;i<x.size();++i) {
870  x_unscaled[i] = x[i]*linear_scale[i] + linear_scale_offset[i];
871  }
872 
873  // Perform substitution
874  std::vector<MX> expr = {nlp_["f"], nlp_["g"]};
875  if (problem_type_=="conic") expr.push_back(nlp_["h"]);
876  std::vector<MX> fgh = substitute(expr, x, x_unscaled);
877  nlp_["f"] = fgh[0];
878  nlp_["g"] = fgh[1];
879  if (problem_type_=="conic") {
880  nlp_["h"] = fgh[2];
881  }
882 
883  // Scale of objective
884  nlp_["f"] = nlp_["f"]/f_linear_scale_;
885 
886  // Create bounds helper function
887  MXDict bounds;
888  bounds["p"] = nlp_["p"];
889  bounds_lbg_ = veccat(lbg_all);
890  bounds_ubg_ = veccat(ubg_all);
891  bounds_unscaled_lbg_ = veccat(lbg_unscaled_all);
892  bounds_unscaled_ubg_ = veccat(ubg_unscaled_all);
893 
894  bounds["lbg"] = bounds_lbg_;
895  bounds["ubg"] = bounds_ubg_;
896 
897  bounds_ = Function("bounds", bounds, {"p"}, {"lbg", "ubg"});
898  mark_problem_dirty(false);
899 }
900 
902  if (problem_dirty()) return baked_copy().scale_helper(h);
903  std::string name = h.name();
904  MX g_linear_scale_mx = g_linear_scale();
905  MX g_linear_scale_inv = 1/g_linear_scale();
906  MX f_linear_scale_mx = f_linear_scale();
907  MX x_linear_scale_mx = x_linear_scale();
908  MX x_linear_scale_offset_mx = x_linear_scale_offset();
909  if (name=="nlp_jac_g") {
910  MXDict arg;
911  arg["x"] = MX::sym("x", nx());
912  arg["p"] = MX::sym("p", np());
913  MXDict args;
914  args["x"] = arg["x"]*x_linear_scale_mx+x_linear_scale_offset_mx;
915  args["p"] = arg["p"];
916  MXDict res = h(args);
917  for (const auto & it : res) {
918  if (it.first=="g") {
919  arg[it.first] = it.second*g_linear_scale_inv;
920  } else if (it.first=="jac_g_x") {
921  arg[it.first] = mtimes(
922  mtimes(diag(g_linear_scale_inv), it.second),
923  diag(x_linear_scale_mx));
924  } else {
925  casadi_error("Unknown output '" + it.first + "'. Expecting g, jac_g_x.");
926  }
927  }
928  Function ret(name, arg, h.name_in(), h.name_out());
929  return ret;
930  } else if (name=="nlp_hess_l") {
931  MXDict arg;
932  arg["x"] = MX::sym("x", nx());
933  arg["p"] = MX::sym("p", np());
934  arg["lam_f"] = MX::sym("lam_f");
935  arg["lam_g"] = MX::sym("lam_g", ng());
936  MXDict args;
937  args["x"] = arg["x"]*x_linear_scale_mx+x_linear_scale_offset_mx;
938  args["p"] = arg["p"];
939  args["lam_f"] = arg["lam_f"]/f_linear_scale_mx;
940  args["lam_g"] = arg["lam_g"]/g_linear_scale_mx;
941  MXDict res = h(args);
942  for (const auto & it : res) {
943  if (it.first=="triu_hess_gamma_x_x" ||
944  it.first=="hess_gamma_x_x" ||
945  (it.second.size1()==nx() && it.second.is_square())) {
946  MX D = diag(x_linear_scale_mx);
947  arg[it.first] = mtimes(mtimes(D, it.second), D);
948  } else {
949  casadi_error("Unknown output '" + it.first + "'. Expecting triu_hess_gamma_x_x");
950  }
951  }
952  Function ret(name, arg, h.name_in(), h.name_out());
953  return ret;
954  } else {
955  casadi_error("Unknown helper function '" + name + "'");
956  }
957 }
958 
959 void OptiNode::solver(const std::string& solver_name, const Dict& plugin_options,
960  const Dict& solver_options) {
961  solver_name_ = solver_name;
962  solver_options_ = plugin_options;
963  if (!solver_options.empty())
964  solver_options_[solver_name] = solver_options;
966 }
967 
968 std::vector<MX> OptiNode::sort(const std::vector<MX>& v) const {
969  // We exploit the fact that std::map is ordered
970 
971  // Populate map
972  std::map<casadi_int, MX> unordered;
973  for (const auto& d : v)
974  unordered[meta(d).count] = d;
975 
976  // Loop over map (ordered)
977  std::vector<MX> ret;
978  for (auto const &e : unordered)
979  ret.push_back(e.second);
980  return ret;
981 }
982 
983 std::vector<MX> OptiNode::symvar() const {
984  return symbols_;
985 }
986 
987 std::vector<MX> OptiNode::symvar(const MX& expr) const {
988  return sort(MX::symvar(expr));
989 }
990 
991 std::vector<MX> OptiNode::ineq_unchain(const MX& a, bool& flipped) {
992  flipped = false;
993  casadi_assert_dev(a.is_op(OP_LE) || a.is_op(OP_LT));
994 
995  // Is there inequalities in the left or right leaf?
996  bool left = a.dep(0).is_op(OP_LE) || a.dep(0).is_op(OP_LT);
997  bool right = a.dep(1).is_op(OP_LE) || a.dep(1).is_op(OP_LT);
998  casadi_assert_dev(!left || !right);
999 
1000  if (!left && !right)
1001  return {a.dep(0), a.dep(1)}; // Simple inequality
1002 
1003  // We have a chain of inequalities
1004  bool ineq = !left;
1005  std::vector<MX> ret = {a.dep(!ineq)};
1006  MX e = a.dep(ineq);
1007  while (e.is_op(OP_LE) || e.is_op(OP_LT)) {
1008  casadi_assert_dev(!e.is_op(OP_EQ));
1009  casadi_assert_dev(!e.dep(!ineq).is_op(OP_LE) && !e.dep(!ineq).is_op(OP_LT));
1010  ret.push_back(e.dep(!ineq));
1011  e = e.dep(ineq);
1012  }
1013  ret.push_back(e);
1014  if (left) std::reverse(ret.begin(), ret.end());
1015  flipped = !left;
1016 
1017  return ret;
1018 }
1019 
1020 void OptiNode::assert_only_opti_symbols(const MX& e) const {
1021  std::vector<MX> symbols = MX::symvar(e);
1022  for (const auto& s : symbols) assert_has(s);
1023 }
1024 
1025 void OptiNode::assert_only_opti_nondual(const MX& e) const {
1026  std::vector<MX> symbols = MX::symvar(e);
1027  for (const auto& s : symbols) {
1028  assert_has(s);
1029  casadi_assert(meta(s).type!=OPTI_DUAL_G, "Dual variables forbidden in this context.");
1030  }
1031 }
1032 
1033 bool OptiNode::is_parametric(const MX& expr) const {
1034  return symvar(expr, OPTI_VAR).empty();
1035 }
1036 
1037 MetaCon OptiNode::canon_expr(const MX& expr, const DM& linear_scale) const {
1038  MX c = expr;
1039 
1040  MetaCon con;
1041  con.original = expr;
1042  casadi_assert(linear_scale.is_scalar() || linear_scale.size()==expr.size(),
1043  "Linear scale must have the same size as the expression. "
1044  "You got linear_scale " + con.linear_scale.dim() + " while " + expr.dim() + " is expected.");
1045  con.linear_scale = linear_scale;
1046 
1047  if (c.is_op(OP_LE) || c.is_op(OP_LT)) { // Inequalities
1048  std::vector<MX> ret;
1049  bool flipped;
1050  std::vector<MX> args = ineq_unchain(c, flipped);
1051  std::vector<bool> parametric;
1052  for (auto &a : args) parametric.push_back(is_parametric(a));
1053 
1054  if (args.size()==2 && (parametric[0] || parametric[1])) {
1055  // case: g(x,p) <= bound(p)
1056  MX e = args[0]-args[1];
1057  if (e.is_vector()) {
1058  casadi_assert(!parametric[0] || !parametric[1],
1059  "Constraint must contain decision variables.");
1060  if (problem_type_=="conic") {
1061  if (args[0].op()==OP_NORMF || args[0].op()==OP_NORM2) {
1062  args[0] = -soc(args[0].dep(), args[1]);
1063  args[1] = 0;
1064  }
1065  } else {
1066  con.type = OPTI_INEQUALITY;
1067  if (parametric[0]) {
1068  con.lb = args[0]*DM::ones(e.sparsity());
1069  con.ub = inf*DM::ones(e.sparsity());
1070  con.canon = args[1]*DM::ones(e.sparsity());
1071  } else {
1072  con.lb = -inf*DM::ones(e.sparsity());
1073  con.ub = args[1]*DM::ones(e.sparsity());
1074  con.canon = args[0]*DM::ones(e.sparsity());
1075  }
1076  return con;
1077  }
1078  }
1079  // Fall through to generic inequalities
1080  } else if (args.size()==3 && parametric[0] && parametric[2]) {
1081  // lb(p) <= g(x,p) <= ub(p)
1083  con.lb = args[0]*DM::ones(args[1].sparsity());
1084  con.ub = args[2]*DM::ones(args[1].sparsity());
1085  con.canon = args[1]*DM::ones(args[1].sparsity());
1086  con.flipped = flipped;
1087  con.n = 2;
1088  return con;
1089  }
1090 
1091  bool type_known = false;
1092  for (casadi_int j=0;j<args.size()-1;++j) {
1093  MX e = args[j]-args[j+1];
1094  if (problem_type_=="conic") {
1095  if (args[j].op()==OP_NORMF || args[j].op()==OP_NORM2) {
1096  args[j] = -soc(args[j].dep(), args[j+1]);
1097  args[j+1] = 0;
1098  e = args[j]-args[j+1];
1099  }
1100  }
1101  if (e.is_vector()) {
1102  // g1(x,p) <= g2(x,p)
1103  ret.push_back(e);
1104  casadi_assert_dev(!type_known || con.type==OPTI_GENERIC_INEQUALITY);
1105  type_known = true;
1107  con.flipped = flipped;
1108  } else {
1109  // A(x,p) >= b(p)
1110  MX a = args[j+1];
1111  MX b = args[j];
1112  e = a-b;
1113 
1114  casadi_assert(e.size1()==e.size2(),
1115  "Matrix inequalities must be square. Did you mean element-wise inequality instead?");
1116  if (a.is_scalar()) a*= MX::eye(e.size1());
1117  if (b.is_scalar()) b*= MX::eye(e.size1());
1118  e = a-b;
1119 
1120  ret.push_back(e);
1121  casadi_assert_dev(!type_known || con.type==OPTI_PSD);
1122  type_known = true;
1123  con.type = OPTI_PSD;
1124  }
1125  }
1126 
1127  if (con.type==OPTI_GENERIC_INEQUALITY) {
1128  con.canon = veccat(ret);
1129  con.lb = -inf*DM::ones(con.canon.sparsity());
1130  con.ub = DM::zeros(con.canon.sparsity());
1131  con.n = ret.size();
1132  if (!con.linear_scale.is_scalar()) {
1133  con.linear_scale = repmat(con.linear_scale, ret.size(), 1);
1134  }
1135  } else {
1136  con.canon = diagcat(ret);
1137  con.n = ret.size();
1138  }
1139  return con;
1140  } else if (c.is_op(OP_EQ)) { // Inequalities
1141  casadi_assert(!is_parametric(c.dep(0)) || !is_parametric(c.dep(1)),
1142  "Constraint must contain decision variables.");
1143  MX e = c.dep(0)-c.dep(1);
1144  if (is_parametric(c.dep(0))) {
1145  con.canon = c.dep(1)*DM::ones(e.sparsity());
1146  con.lb = c.dep(0)*DM::ones(e.sparsity());
1147  con.type = OPTI_EQUALITY;
1148  casadi_assert(c.dep(0).size1()<=c.dep(1).size1() && c.dep(0).size2()<=c.dep(1).size2(),
1149  "Constraint shape mismatch.");
1150  } else if (is_parametric(c.dep(1))) {
1151  con.canon = c.dep(0)*DM::ones(e.sparsity());
1152  con.lb = c.dep(1)*DM::ones(e.sparsity());
1153  con.type = OPTI_EQUALITY;
1154  casadi_assert(c.dep(1).size1()<=c.dep(0).size1() && c.dep(1).size2()<=c.dep(0).size2(),
1155  "Constraint shape mismatch.");
1156  } else {
1157  con.lb = DM::zeros(e.sparsity());
1158  con.canon = e;
1160  }
1161  con.ub = con.lb;
1162  return con;
1163  } else { // Something else
1164  con.type = OPTI_UNKNOWN;
1165  con.canon = c;
1166  return con;
1167  }
1168 
1169 }
1170 
1172  casadi_assert(solved(),
1173  "This action is forbidden since you have not solved the Opti stack yet "
1174  "(with calling 'solve').");
1175 }
1176 
1178  casadi_assert(!problem_dirty(),
1179  "This action is forbidden since you have not baked the Opti stack yet "
1180  "(with calling 'solve').");
1181 }
1182 
1184  casadi_assert_dev(g_.empty());
1185  casadi_assert_dev(f_.is_empty());
1186 }
1187 
1188 void OptiNode::minimize(const MX& f, double linear_scale) {
1189  assert_only_opti_nondual(f);
1191  casadi_assert(f.is_scalar(), "Objective must be scalar, got " + f.dim() + ".");
1192  f_ = f;
1193  f_linear_scale_ = linear_scale;
1194 }
1195 
1196 void OptiNode::subject_to(const MX& g, const DM& linear_scale, const Dict& options) {
1197  assert_only_opti_nondual(g);
1199  g_.push_back(g);
1200 
1201  casadi_assert(!g.is_empty(), "You passed an empty expression to `subject_to`. "
1202  "Make sure the number of rows and columns is non-zero. "
1203  "Got " + g.dim(true) + ".");
1204  casadi_assert(g.nnz()>0, "You passed a fully sparse expression to `subject_to`. "
1205  "Make sure the expression has at least one nonzero. "
1206  "Got " + g.dim(true) + ".");
1207  casadi_assert(!g.is_constant(), "You passed a constant to `subject_to`. "
1208  "You need a symbol to form a constraint.");
1209 
1210  // Store the meta-data
1211  set_meta_con(g, canon_expr(g, linear_scale));
1212  register_dual(meta_con(g));
1213 
1214  for (auto && it : options) {
1215  if (it.first=="stacktrace") {
1216  meta_con(g).extra["stacktrace"] = it.second.to_dict_vector();
1217  meta(meta_con(g).dual_canon).extra["stacktrace"] = it.second.to_dict_vector();
1218  } else if (it.first=="meta") {
1219  update_user_dict(g, it.second.to_dict());
1220  } else {
1221  casadi_error("Unknown option: " + it.first);
1222  }
1223  }
1224 }
1225 
1228  g_.clear();
1229  store_initial_[OPTI_DUAL_G].clear();
1230  store_latest_[OPTI_DUAL_G].clear();
1231  count_dual_ = 0;
1232 }
1233 
1234 std::vector<MX> OptiNode::symvar(const MX& expr, VariableType type) const {
1235  std::vector<MX> ret;
1236  for (const auto& d : symvar(expr)) {
1237  if (meta(d).type==type) ret.push_back(d);
1238  }
1239 
1240  return ret;
1241 }
1242 
1243 void OptiNode::res(const DMDict& res) {
1244  const std::vector<double> & x_v = res.at("x").nonzeros();
1245  for (const auto &v : active_symvar(OPTI_VAR)) {
1246  casadi_int i = meta(v).i;
1247  std::vector<double> & data_v = store_latest_[OPTI_VAR][i].nonzeros();
1248  for (casadi_int i=0;i<data_v.size();++i) {
1249  casadi_int j = meta(v).start+i;
1250  data_v[i] = x_v[j]*linear_scale_[j] + linear_scale_offset_[j];
1251  }
1252  }
1253  if (res.find("lam_g")!=res.end()) {
1254  const std::vector<double> & lam_v = res.at("lam_g").nonzeros();
1255  for (const auto &v : active_symvar(OPTI_DUAL_G)) {
1256  casadi_int i = meta(v).i;
1257  std::vector<double> & data_v = store_latest_[OPTI_DUAL_G][i].nonzeros();
1258  for (casadi_int i=0;i<data_v.size();++i) {
1259  casadi_int j = meta(v).start+i;
1260  j = index_all_to_g_.at(j);
1261  if (j<0) continue;
1262  data_v[i] = lam_v.at(j)/g_linear_scale_.at(j)*f_linear_scale_;
1263  }
1264  }
1265  }
1266  res_ = res;
1267  mark_solved();
1268 }
1269 
1270 bool OptiNode::old_callback() const {
1271  if (callback_.is_null()) return false;
1272  InternalOptiCallback* cb = static_cast<InternalOptiCallback*>(callback_.get());
1273  return !cb->associated_with(this);
1274 }
1275 
1277  if (problem_dirty()) {
1278  bake();
1279  }
1280 
1281  // Verify the constraint types
1282  for (const auto& g : g_) {
1283  if (problem_type_!="conic") {
1284  if (meta_con(g).type==OPTI_PSD)
1285  casadi_error("Psd constraints not implemented yet. "
1286  "Perhaps you intended an element-wise inequality? "
1287  "In that case, make sure that the matrix is flattened (e.g. mat(:)).");
1288  }
1289  }
1290 
1291  Dict solver_options_all = solver_options_;
1292 
1293  if (solver_options_all.find("equality")==solver_options_all.end()) {
1294  solver_options_all["equality"] = equality_;
1295  }
1296 
1297  if (solver_options_all.find("discrete")==solver_options_all.end()) {
1298  solver_options_all["discrete"] = discrete_;
1299  }
1300 
1301  Dict opts = solver_options_all;
1302 
1303  // Handle callbacks
1304  if (callback && user_callback_) {
1305  callback_ = Function::create(new InternalOptiCallback(*this), Dict());
1306  opts["iteration_callback"] = callback_;
1307  }
1308 
1309  casadi_assert(!solver_name_.empty(),
1310  "You must call 'solver' on the Opti stack to select a solver. "
1311  "Suggestion: opti.solver('ipopt')");
1312 
1313  if (problem_type_=="conic") {
1314  return qpsol("solver", solver_name_, nlp_, opts);
1315  } else {
1316  return nlpsol("solver", solver_name_, nlp_, opts);
1317  }
1318 
1319 }
1320 
1321 // Solve the problem
1322 OptiSol OptiNode::solve(bool accept_limit) {
1323 
1324  if (problem_dirty()) {
1325  bake();
1326  }
1327 
1328  bool solver_update = solver_dirty() || old_callback() || (user_callback_ && callback_.is_null());
1329 
1330  if (solver_update) {
1331  solver_ = solver_construct(true);
1332  mark_solver_dirty(false);
1333  }
1334 
1335  solve_prepare();
1336  res(solve_actual(arg_));
1337 
1338  std::string ret = return_status();
1339 
1340  casadi_assert(return_success(accept_limit),
1341  "Solver failed. You may use opti.debug.value to investigate the latest values of variables."
1342  " return_status is '" + ret + "'");
1343 
1344  return copy();
1345 }
1346 
1347 // Solve the problem
1349 
1350 
1351  // Verify the constraint types
1352  for (const auto& g : g_) {
1353  if (meta_con(g).type==OPTI_UNKNOWN)
1354  casadi_error("Constraint type unknown. Use ==, >= or <= .");
1355  }
1356 
1357  if (user_callback_) {
1358  InternalOptiCallback* cb = static_cast<InternalOptiCallback*>(callback_.get());
1359  cb->reset();
1360  }
1361 
1362  // Get initial guess and parameter values
1363  arg_["x0"] = (veccat(active_values(OPTI_VAR))-linear_scale_offset_)/linear_scale_;
1364  arg_["p"] = veccat(active_values(OPTI_PAR));
1365  arg_["lam_g0"] = veccat(active_values(OPTI_DUAL_G));
1366  if (!arg_["p"].is_regular()) {
1367  std::vector<MX> s = active_symvar(OPTI_PAR);
1368  std::vector<DM> v = active_values(OPTI_PAR);
1369  for (casadi_int i=0;i<s.size();++i) {
1370  casadi_assert(v[i].is_regular(),
1371  "You have forgotten to assign a value to a parameter ('set_value'), "
1372  "or have set it to NaN/Inf:\n" + describe(s[i], 1));
1373  }
1374  }
1375 
1376 
1377  // Evaluate bounds for given parameter values
1378  DMDict arg;
1379  arg["p"] = arg_["p"];
1380  DMDict res = bounds_(arg);
1381  arg_["lbg"] = res["lbg"];
1382  arg_["ubg"] = res["ubg"];
1383 
1384  stats_.clear();
1385 }
1386 
1388  return solver_(arg);
1389 }
1390 
1391 bool override_num(const std::map<casadi_int, MX> & temp, std::vector<DM>& num, casadi_int i) {
1392  // Override when values are supplied
1393  auto it = temp.find(i);
1394  if (it==temp.end()) {
1395  return true;
1396  } else {
1397  Slice all;
1398  DM t = static_cast<DM>(it->second);
1399  num.back().set(t, false, all, all);
1400  }
1401  return false;
1402 }
1403 
1404 
1405 DM OptiNode::value(const MX& expr, const std::vector<MX>& values, bool scaled) const {
1406 
1407  std::shared_ptr<ValueHelper> vh;
1408  if (!helpers_->incache(expr, vh)) {
1409  vh = std::make_shared<ValueHelper>();
1410  std::vector<MX> x = symvar(expr, OPTI_VAR);
1411  std::vector<MX> p = symvar(expr, OPTI_PAR);
1412  std::vector<MX> lam = symvar(expr, OPTI_DUAL_G);
1413  vh->x = x;
1414  vh->p = p;
1415  vh->lam = lam;
1416  vh->helper = Function("helper", std::vector<MX>{veccat(x), veccat(p), veccat(lam)}, {expr});
1417  if (vh->helper.has_free())
1418  casadi_error("This expression has symbols that are not defined "
1419  "within Opti using variable/parameter.");
1420  helpers_->tocache_if_missing(expr, vh);
1421  }
1422 
1423  const std::vector<MX>& x = vh->x;
1424  const std::vector<MX>& p = vh->p;
1425  const std::vector<MX>& lam = vh->lam;
1426  const Function& helper = vh->helper;
1427 
1428  std::map<VariableType, std::map<casadi_int, MX> > temp;
1429  temp[OPTI_DUAL_G] = std::map<casadi_int, MX>();
1430  for (const auto& v : values) {
1431  casadi_assert_dev(v.is_op(OP_EQ));
1432  casadi_int i = meta(v.dep(1)).i;
1433  casadi_assert_dev(v.dep(0).is_constant());
1434  temp[meta(v.dep(1)).type][i] = v.dep(0);
1435  }
1436 
1437  bool undecided_vars = false;
1438  std::vector<DM> x_num;
1439  for (const auto& e : x) {
1440  casadi_int i = meta(e).i;
1441  x_num.push_back(store_latest_.at(OPTI_VAR).at(i));
1442  undecided_vars |= override_num(temp[OPTI_VAR], x_num, i);
1443  if (scaled) {
1444  x_num.back() = x_num.back()/store_linear_scale_.at(OPTI_VAR)[meta(e).i] -
1445  store_linear_scale_offset_.at(OPTI_VAR)[meta(e).i];
1446  }
1447  }
1448 
1449  std::vector<DM> lam_num;
1450  for (const auto& e : lam) {
1451  casadi_int i = meta(e).i;
1452  casadi_assert(i<store_latest_.at(OPTI_DUAL_G).size(),
1453  "This expression has a dual for a constraint that is not given to Opti:\n" +
1454  describe(e, 1));
1455  lam_num.push_back(store_latest_.at(OPTI_DUAL_G).at(i));
1456  undecided_vars |= override_num(temp[OPTI_DUAL_G], lam_num, i);
1457  }
1458 
1459  std::vector<DM> p_num;
1460  for (const auto& e : p) {
1461  casadi_int i = meta(e).i;
1462  p_num.push_back(store_initial_.at(OPTI_PAR).at(i));
1463  override_num(temp[OPTI_PAR], p_num, i);
1464  casadi_assert(p_num.back().is_regular(),
1465  "This expression depends on a parameter with unset value:\n"+
1466  describe(e, 1));
1467  }
1468 
1469  if (undecided_vars) {
1470  assert_solved();
1471  for (const auto& e : x)
1472  casadi_assert(symbol_active_[meta(e).count],
1473  "This expression has symbols that do not appear in the constraints and objective:\n" +
1474  describe(e, 1));
1475  for (const auto& e : lam)
1476  casadi_assert(symbol_active_[meta(e).count],
1477  "This expression has a dual for a constraint that is not given to Opti:\n" +
1478  describe(e, 1));
1479  }
1480 
1481  std::vector<DM> arg = helper(std::vector<DM>{veccat(x_num), veccat(p_num), veccat(lam_num)});
1482  return arg[0];
1483 }
1484 
1485 void OptiNode::assert_active_symbol(const MX& m) const {
1486  assert_has(m);
1487  assert_baked();
1488  casadi_assert(symbol_active_[meta(m).count], "Opti symbol is not used in Solver."
1489  " It does not make sense to assign a value to it:\n" + describe(m, 1));
1490 }
1491 
1492 void OptiNode::set_initial(const std::vector<MX>& assignments) {
1493  for (const auto& v : assignments) {
1494  casadi_assert_dev(v.is_op(OP_EQ));
1495  casadi_assert_dev(v.dep(0).is_constant());
1496  if (has(v.dep(1)))
1497  set_initial(v.dep(1), static_cast<DM>(v.dep(0)));
1498  }
1499 }
1500 
1501 void OptiNode::set_domain(const MX& x, const std::string& domain) {
1502  mark_solved(false);
1504  casadi_assert(x.is_valid_input(), "First argument to set_domain should be a variable.");
1505  DomainType type;
1506  if (domain=="real") {
1507  type = OPTI_DOMAIN_REAL;
1508  } else if (domain=="integer") {
1509  type = OPTI_DOMAIN_INTEGER;
1510  } else {
1511  casadi_error("Unknown domain '" + domain + "'. Known values are 'real', 'integer'.");
1512  }
1513  for (const auto& prim : x.primitives()) {
1514  MetaVar& m = meta(prim);
1515  m.domain = type;
1516  }
1517 }
1518 
1519 void OptiNode::set_value(const std::vector<MX>& assignments) {
1520  for (const auto& v : assignments) {
1521  casadi_assert_dev(v.is_op(OP_EQ));
1522  casadi_assert_dev(v.dep(0).is_constant());
1523  if (has(v.dep(1)))
1524  set_value(v.dep(1), static_cast<DM>(v.dep(0)));
1525  }
1526 }
1527 
1528 void OptiNode::set_value_internal(const MX& x, const DM& v,
1529  std::map< VariableType, std::vector<DM> >& store) {
1530  mark_solved(false);
1531  casadi_assert_dev(v.is_regular());
1532  if (x.is_symbolic()) {
1533  DM& target = store[meta(x).type][meta(x).i];
1534  Slice all;
1535  target.set(v, false, all, all);
1536  return;
1537  }
1538 
1539  // Obtain symbolic primitives
1540  std::vector<MX> symbols = MX::symvar(x);
1541  MX symbols_cat = veccat(symbols);
1542 
1543  std::string failmessage = "You cannot set initial/value of an arbitrary expression. "
1544  "Use symbols or simple mappings of symbols.";
1545 
1546  // Assert x is linear in its symbolic primitives
1547  for (bool b : which_depends(x, symbols_cat, 2, false)) casadi_assert(!b, failmessage);
1548 
1549  // Evaluate jacobian of expr wrt symbols
1550  Dict opts = {{"compact", true}};
1551  Function Jf("Jf", std::vector<MX>{}, std::vector<MX>{jacobian(x, veccat(symbols), opts)});
1552  DM J = Jf(std::vector<DM>{})[0];
1553  Sparsity sp_JT = J.T().sparsity();
1554 
1555  Function Ff("Ff", symbols, {x});
1556  DM E = Ff(std::vector<DM>(symbols.size(), 0))[0];
1557  std::vector<double>& e = E.nonzeros();
1558 
1559  // Cast the v input into the expected sparsity
1560  Slice all;
1561  DM value(x.sparsity());
1562  value.set(v, false, all, all);
1563 
1564  // Purge empty rows
1565  std::vector<casadi_int> filled_rows = sum2(J).get_row();
1566  J = J(filled_rows, all); // NOLINT(cppcoreguidelines-slicing)
1567 
1568  // Get rows and columns of the mapping
1569  std::vector<casadi_int> row, col;
1570  J.sparsity().get_triplet(row, col);
1571  const std::vector<double>& scaling = J.nonzeros();
1572  const std::vector<double>& data_original = value.nonzeros();
1573 
1574  std::vector<double> data; data.reserve(value.nnz());
1575  for (casadi_int i=0;i<value.nnz();++i) {
1576  double v = data_original[i];
1577  casadi_int nz = sp_JT.colind()[i+1]-sp_JT.colind()[i];
1578  casadi_assert(nz<=1, failmessage);
1579  if (nz) {
1580  data.push_back(v);
1581  } else {
1582  casadi_assert(v==e[i], "In initial/value assignment: "
1583  "inconsistent numerical values. At nonzero " + str(i) + ", lhs has "
1584  + str(e[i]) + ", while rhs has " + str(v) + ".");
1585  }
1586  }
1587 
1588  // Contiguous workspace for nonzeros of all involved symbols
1589  std::vector<double> temp(symbols_cat.nnz(), casadi::nan);
1590  for (casadi_int k=0;k<data.size();++k) {
1591  double& lhs = temp[col[k]];
1592  double rhs = data[row[k]]/scaling[row[k]];
1593  if (std::isnan(lhs)) {
1594  // Assign in the workspace
1595  lhs = rhs;
1596  } else {
1597  casadi_assert(lhs==rhs, "Initial/value assignment with mapping is ambiguous.");
1598  }
1599  }
1600 
1601  casadi_int offset = 0;
1602  for (const auto & s : symbols) {
1603  DM& target = store[meta(s).type][meta(s).i];
1604  std::vector<double>& data = target.nonzeros();
1605  // Loop over nonzeros in each symbol
1606  for (casadi_int i=0;i<s.nnz();++i) {
1607  // Copy from the workspace (barring fields that were not set)
1608  double v = temp[offset+i];
1609  if (!std::isnan(v)) data[i] = v;
1610  }
1611  offset+=s.nnz();
1612  }
1613 
1614 }
1615 
1616 void OptiNode::set_initial(const MX& x, const DM& v) {
1617  for (const auto & s : MX::symvar(x))
1618  casadi_assert(meta(s).type!=OPTI_PAR,
1619  "You cannot set an initial value for a parameter. Did you mean 'set_value'?");
1620  set_value_internal(x, v, store_initial_);
1621 }
1622 
1623 void OptiNode::set_value(const MX& x, const DM& v) {
1624  for (const auto & s : MX::symvar(x))
1625  casadi_assert(meta(s).type!=OPTI_VAR,
1626  "You cannot set a value for a variable. Did you mean 'set_initial'?");
1627  set_value_internal(x, v, store_initial_);
1628 }
1629 
1630 void OptiNode::set_linear_scale(const MX& x, const DM& scale, const DM& offset) {
1631  for (const auto & s : MX::symvar(x))
1632  casadi_assert(meta(s).type!=OPTI_PAR,
1633  "You cannot set a scale value for a parameter.");
1634  casadi_assert(scale.is_scalar() || scale.size()==x.size(),
1635  "Dimension mismatch in linear_scale. Expected " + x.dim() + ", got " + scale.dim()+ ".");
1636  set_value_internal(x, scale, store_linear_scale_);
1637  casadi_assert(offset.is_scalar() || offset.size()==x.size(),
1638  "Dimension mismatch in linear_scale offset. Expected " + x.dim() +
1639  ", got " + scale.dim()+ ".");
1640  set_value_internal(x, offset, store_linear_scale_offset_);
1641 }
1642 
1643 std::vector<MX> OptiNode::active_symvar(VariableType type) const {
1644  if (symbol_active_.empty()) return std::vector<MX>{};
1645  std::vector<MX> ret;
1646  for (const auto& s : symbols_) {
1647  if (symbol_active_[meta(s).count] && meta(s).type==type)
1648  ret.push_back(s);
1649  }
1650  return ret;
1651 }
1652 
1653 std::vector<MX> OptiNode::symvar(VariableType type) const {
1654  if (symbols_.empty()) return std::vector<MX>{};
1655  std::vector<MX> ret;
1656  for (const auto& s : symbols_) {
1657  if (meta(s).type==type)
1658  ret.push_back(s);
1659  }
1660  return ret;
1661 }
1662 
1663 std::vector<DM> OptiNode::active_values(VariableType type) const {
1664  return active_values(type, store_initial_);
1665 }
1666 
1668  const std::map< VariableType, std::vector<DM> >& store) const {
1669  if (symbol_active_.empty()) return std::vector<DM>{};
1670  std::vector<DM> ret;
1671  for (const auto& s : symbols_) {
1672  if (symbol_active_[meta(s).count] && meta(s).type==type) {
1673  ret.push_back(store.at(meta(s).type)[meta(s).i]);
1674  }
1675  }
1676  return ret;
1677 }
1678 
1679 Function OptiNode::to_function(const std::string& name,
1680  const std::vector<MX>& args, const std::vector<MX>& res,
1681  const std::vector<std::string>& name_in,
1682  const std::vector<std::string>& name_out,
1683  const Dict& opts) {
1684  if (problem_dirty()) return baked_copy().to_function(name, args, res, name_in, name_out, opts);
1685 
1686  Function solver = solver_construct(false);
1687 
1688  // Get initial guess and parameter values
1689  std::vector<MX> x0, p, lam_g;
1693 
1694  casadi_int k = 0;
1695  for (const auto& a : args) {
1696  casadi_assert(a.is_valid_input(), "Argument " + str(k) + " is not purely symbolic.");
1697  k++;
1698  for (const auto& prim : a.primitives()) {
1699  if (!symbol_active_[meta(prim).count]) continue;
1700  casadi_int i = meta(prim).active_i;
1701  if (meta(prim).type==OPTI_VAR) {
1702  x0.at(i) = prim;
1703  } else if (meta(prim).type==OPTI_PAR) {
1704  p.at(i) = prim;
1705  } else if (meta(prim).type==OPTI_DUAL_G) {
1706  lam_g.at(i) = prim;
1707  } else {
1708  casadi_error("Unknown");
1709  }
1710  }
1711  }
1712  MXDict arg;
1713  arg["p"] = veccat(p);
1714 
1715  // Evaluate bounds for given parameter values
1716  MXDict r = bounds_(arg);
1717  arg["x0"] = veccat(x0);
1718  arg["lam_g0"] = veccat(lam_g);
1719  arg["lbg"] = r["lbg"];
1720  arg["ubg"] = r["ubg"];
1721 
1722  r = solver(arg);
1723 
1724  std::vector<MX> helper_in = {veccat(active_symvar(OPTI_VAR)),
1725  veccat(active_symvar(OPTI_PAR)),
1726  veccat(active_symvar(OPTI_DUAL_G))};
1727  Function helper("helper", helper_in, {res});
1728 
1729  std::vector<MX> arg_in = helper(std::vector<MX>{r.at("x"), arg["p"], r.at("lam_g")});
1730 
1731  return Function(name, args, arg_in, name_in, name_out, opts);
1732 
1733 }
1734 
1735 void OptiNode::disp(std::ostream &stream, bool more) const {
1736 
1737 }
1738 
1739 casadi_int OptiNode::instance_number() const {
1740  return instance_number_;
1741 }
1742 
1743 void OptiNode::show_infeasibilities(double tol, const Dict& opts) const {
1744  stats();
1745  std::vector<double> lbg_ = value(lbg()).get_elements();
1746  std::vector<double> ubg_ = value(ubg()).get_elements();
1747  std::vector<double> g_scaled_ = value(nlp_.at("g"), std::vector<MX>(), true).get_elements();
1748  std::vector<double> lbg_scaled_ = value(bounds_lbg_, std::vector<MX>(), true).get_elements();
1749  std::vector<double> ubg_scaled_ = value(bounds_ubg_, std::vector<MX>(), true).get_elements();
1750 
1751 
1752  std::vector<double> g_ = value(g()).get_elements();
1753  uout() << "Violated constraints (tol " << tol << "), in order of declaration:" << std::endl;
1754 
1755  for (casadi_int i=0;i<g_.size();++i) {
1756  double err = std::max(g_[i]-ubg_[i], lbg_[i]-g_[i]);
1757  double err_scaled = std::max(g_scaled_[i]-ubg_scaled_[i], lbg_scaled_[i]-g_scaled_[i]);
1758  if (err>=tol) {
1759  uout() << "------- i = " << i+GlobalOptions::start_index;
1760  uout() << "/" << g_.size();
1761 
1762  if (reduced_) {
1763  if (is_simple_[i]) {
1764  if (GlobalOptions::start_index==0) {
1765  uout() << " reduced to bound on x[" << g_index_reduce_x_.at(i) << "]";
1766  } else {
1767  uout() << " reduced to bound on x(" << g_index_reduce_x_.at(i)+1 << ")";
1768  }
1769  } else {
1770  uout() << " reduced to g[" << g_index_reduce_g_.at(i) << "]";
1771  }
1772  }
1773 
1774  uout() << " ------ " << std::endl;
1775  uout() << lbg_[i] << " <= " << g_[i] << " <= " << ubg_[i];
1776  uout() << " (viol " << err << ")" << std::endl;
1777  if (g_[i]!=g_scaled_[i]) {
1778  uout() << lbg_scaled_[i] << " <= " << g_scaled_[i] << " <= " << ubg_scaled_[i];
1779  uout() << " (scaled) (viol " << err_scaled << ")" << std::endl;
1780  }
1781  uout() << g_describe(i, opts) << std::endl;
1782  }
1783  }
1784 }
1785 
1786 } // namespace casadi
static std::unique_ptr< std::istream > ifstream_ptr(const std::string &path, std::ios_base::openmode mode=std::ios_base::in, bool fail=true)
Definition: filesystem.cpp:135
FunctionInternal(const std::string &name)
Constructor.
Function object.
Definition: function.hpp:60
FunctionInternal * get() const
Definition: function.cpp:505
const std::vector< std::string > & name_in() const
Get input scheme.
Definition: function.cpp:1113
const std::string & name() const
Name of the function.
Definition: function.cpp:1504
static Function create(FunctionInternal *node)
Create from node.
Definition: function.cpp:488
Dict stats(int mem=0) const
Get all statistics obtained at the end of the last evaluate call.
Definition: function.cpp:1080
const std::vector< std::string > & name_out() const
Get output scheme.
Definition: function.cpp:1117
casadi_int numel() const
Get the number of elements.
bool is_dense() const
Check if the matrix expression is dense.
bool is_empty(bool both=false) const
Check if the sparsity is empty, i.e. if one of the dimensions is zero.
std::pair< casadi_int, casadi_int > size() const
Get the shape.
bool is_vector() const
Check if the matrix is a row or column vector.
casadi_int nnz() const
Get the number of (structural) non-zero elements.
casadi_int size2() const
Get the second dimension (i.e. number of columns)
casadi_int size1() const
Get the first dimension (i.e. number of rows)
std::string dim(bool with_nz=false) const
Get string representation of dimensions.
static MatType ones(casadi_int nrow=1, casadi_int ncol=1)
Create a dense matrix or a matrix with specified sparsity with all entries one.
static MX sym(const std::string &name, casadi_int nrow=1, casadi_int ncol=1)
Create an nrow-by-ncol symbolic primitive.
const casadi_int * colind() const
Get the sparsity pattern. See the Sparsity class for details.
static MatType zeros(casadi_int nrow=1, casadi_int ncol=1)
Create a dense matrix or a matrix with specified sparsity with all entries zero.
bool is_scalar(bool scalar_and_dense=false) const
Check if the matrix expression is scalar.
bool is_null() const
Is a null pointer?
static casadi_int start_index
MX - Matrix expression.
Definition: mx.hpp:92
bool is_valid_input() const
Check if matrix can be used to define function inputs.
Definition: mx.cpp:954
const Sparsity & sparsity() const
Get the sparsity pattern.
Definition: mx.cpp:612
std::string name() const
Get the name.
Definition: mx.cpp:791
static std::vector< MX > symvar(const MX &x)
Definition: mx.cpp:2041
bool is_constant() const
Check if constant.
Definition: mx.cpp:799
static MX eye(casadi_int n)
Identity matrix.
Definition: mx.cpp:600
MXNode * get() const
Get a const pointer to the node.
Definition: mx.cpp:564
bool is_op(casadi_int op) const
Is it a certain operation.
Definition: mx.cpp:823
std::vector< MX > primitives() const
Get primitives.
Definition: mx.cpp:962
MX dep(casadi_int ch=0) const
Get the nth dependency as MX.
Definition: mx.cpp:783
bool is_symbolic() const
Check if symbolic.
Definition: mx.cpp:795
std::vector< Scalar > & nonzeros()
Matrix< Scalar > T() const
Transpose the matrix.
const Sparsity & sparsity() const
Const access the sparsity - reference to data member.
void set(const Matrix< Scalar > &m, bool ind1, const Slice &rr)
static Matrix< double > nan(const Sparsity &sp)
create a matrix with all nan
bool is_regular() const
Checks if expression does not contain NaN or Inf.
std::vector< Scalar > get_elements() const
Get all elements.
MX x_lookup(casadi_index i) const
Definition: optistack.cpp:609
std::string describe(const MX &x, casadi_index indent=0, const Dict &opts=Dict()) const
Definition: optistack.cpp:663
MX g_lookup(casadi_index i) const
Definition: optistack.cpp:641
std::string x_describe(casadi_index i, const Dict &opts=Dict()) const
Definition: optistack.cpp:649
std::string g_describe(casadi_index i, const Dict &opts=Dict()) const
Definition: optistack.cpp:656
A simplified interface for NLP modeling/solving.
Function solver_construct(bool callback=true)
Dict user_dict(const MX &m) const
casadi_int g_index_reduce_x(casadi_int i) const
std::vector< MX > value_variables() const
get assignment expressions for latest values
std::vector< MX > initial() const
get assignment expressions for initial values
std::vector< MX > active_symvar(VariableType type) const
std::string describe(const MX &x, casadi_int indent=0, const Dict &opts=Dict()) const
MX g() const
Get all (scalarised) constraint expressions as a column vector.
MetaCon get_meta_con(const MX &m) const
Get meta-data of symbol (for internal use only)
OptiAdvanced baked_copy() const
MX dual(const MX &m) const
get the dual variable
std::vector< DM > active_values(VariableType type) const
MX x() const
Get all (scalarised) decision variables as a symbolic column vector.
void minimize(const MX &f, double linear_scale=1)
Set objective.
casadi_int nx() const
Number of (scalarised) decision variables.
MX variable(casadi_int n=1, casadi_int m=1, const std::string &attribute="full")
Create a decision variable (symbol)
std::string x_describe(casadi_int i, const Dict &opts=Dict()) const
void bake()
Fix the structure of the optimization problem.
casadi_int instance_number() const
DM value(const MX &x, const std::vector< MX > &values=std::vector< MX >(), bool scaled=false) const
void disp(std::ostream &stream, bool more=false) const override
Print representation.
void set_domain(const MX &x, const std::string &domain)
Set domain of variable.
OptiSol solve(bool accept_limit)
Crunch the numbers; solve the problem.
casadi_int np() const
Number of (scalarised) parameters.
bool has_callback_class() const
MX g_lookup(casadi_int i) const
casadi_int ng() const
Number of (scalarised) constraints.
MetaVar get_meta(const MX &m) const
Get meta-data of symbol (for internal use only)
void subject_to()
Clear constraints.
std::vector< MX > symvar() const
void update_user_dict(const MX &m, const Dict &meta)
add meta-data of an expression
void set_meta(const MX &m, const MetaVar &meta)
Set meta-data of an expression.
MX parameter(casadi_int n=1, casadi_int m=1, const std::string &attribute="full")
Create a parameter (symbol); fixed during optimization.
bool is_parametric(const MX &expr) const
return true if expression is only dependant on Opti parameters, not variables
void assert_active_symbol(const MX &m) const
bool return_success(bool accept_limit) const
Did the solver return successfully?
std::vector< MX > value_parameters() const
bool problem_dirty() const
Function to_function(const std::string &name, const std::vector< MX > &args, const std::vector< MX > &res, const std::vector< std::string > &name_in, const std::vector< std::string > &name_out, const Dict &opts)
Create a CasADi Function from the Opti solver.
Opti copy() const
Copy.
DM x_linear_scale_offset() const
MX x_lookup(casadi_int i) const
casadi_int g_index_reduce_g(casadi_int i) const
void mark_problem_dirty(bool flag=true)
OptiNode(const std::string &problem_type)
Create Opti Context.
std::string return_status() const
Get return status of solver.
void set_initial(const MX &x, const DM &v)
void mark_solver_dirty(bool flag=true)
MX p() const
Get all (scalarised) parameters as a symbolic column vector.
casadi_int g_index_unreduce_g(casadi_int i) const
void set_value(const MX &x, const DM &v)
Set value of parameter.
double f_linear_scale() const
MX lam_g() const
Get dual variables as a symbolic column vector.
void set_linear_scale(const MX &x, const DM &scale, const DM &offset)
Set scale of a decision variable.
std::string g_describe(casadi_int i, const Dict &opts=Dict()) const
friend class InternalOptiCallback
void solver(const std::string &solver, const Dict &plugin_options=Dict(), const Dict &solver_options=Dict())
Solver.
MX f() const
Get objective expression.
void mark_solved(bool flag=true)
Function scale_helper(const Function &h) const
Scale a helper function constructed via opti.x, opti.g, ...
Function casadi_solver() const
Get the underlying CasADi solver of the Opti stack.
static OptiNode * create(const std::string &problem_type)
MetaCon canon_expr(const MX &expr, const DM &linear_scale=1) const
Interpret an expression (for internal use only)
void show_infeasibilities(double tol=0, const Dict &opts=Dict()) const
DMDict solve_actual(const DMDict &args)
Dict stats() const
Get statistics.
void set_meta_con(const MX &m, const MetaCon &meta)
Set meta-data of an expression.
A simplified interface for NLP modeling/solving.
Definition: optistack.hpp:662
A simplified interface for NLP modeling/solving.
Definition: optistack.hpp:90
Function scale_helper(const Function &h) const
Scale a helper function constructed via opti.x, opti.g, ...
Definition: optistack.cpp:254
Function to_function(const std::string &name, const std::vector< MX > &args, const std::vector< MX > &res, const Dict &opts=Dict())
Create a CasADi Function from the Opti solver.
Definition: optistack.cpp:435
static Opti create(OptiNode *node)
Definition: optistack.cpp:86
void clear_mem()
Clear all memory (called from destructor)
Class representing a Slice.
Definition: slice.hpp:48
General sparsity class.
Definition: sparsity.hpp:106
casadi_int size1() const
Get the number of rows.
Definition: sparsity.cpp:124
static Sparsity dense(casadi_int nrow, casadi_int ncol=1)
Create a dense rectangular sparsity pattern *.
Definition: sparsity.cpp:1028
casadi_int nnz() const
Get the number of (structural) non-zeros.
Definition: sparsity.cpp:148
casadi_int size2() const
Get the number of columns.
Definition: sparsity.cpp:128
static Sparsity lower(casadi_int n)
Create a lower triangular square sparsity pattern *.
Definition: sparsity.cpp:1065
Function qpsol(const std::string &name, const std::string &solver, const SXDict &qp, const Dict &opts)
Definition: conic.cpp:261
Function nlpsol(const std::string &name, const std::string &solver, const SXDict &nlp, const Dict &opts)
Definition: nlpsol.cpp:195
casadi_int nlpsol_n_out()
Number of NLP solver outputs.
Definition: nlpsol.cpp:342
std::vector< std::string > nlpsol_out()
Get NLP solver output scheme of NLP solvers.
Definition: nlpsol.cpp:285
The casadi namespace.
Definition: archiver.cpp:28
std::map< std::string, MX > MXDict
Definition: mx.hpp:1110
bool override_num(const std::map< casadi_int, MX > &temp, std::vector< DM > &num, casadi_int i)
T get_from_dict(const std::map< std::string, T > &d, const std::string &key, const T &default_value)
std::string description(Category v)
double if_else_zero(double x, double y)
Conditional assignment.
Definition: calculus.hpp:295
void assign_vector(const std::vector< S > &s, std::vector< D > &d)
@ OPTI_VAR
Definition: optistack.hpp:496
@ OPTI_DUAL_G
Definition: optistack.hpp:498
@ OPTI_PAR
Definition: optistack.hpp:497
double sign(double x)
Sign function, note that sign(nan) == nan.
Definition: calculus.hpp:270
std::vector< casadi_int > find(const std::vector< T > &v)
find nonzeros
@ OPTI_DOMAIN_INTEGER
Definition: optistack.hpp:502
@ OPTI_DOMAIN_REAL
Definition: optistack.hpp:501
std::string str(const T &v)
String representation, any type.
GenericType::Dict Dict
C++ equivalent of Python's dict or MATLAB's struct.
const double inf
infinity
Definition: calculus.hpp:50
bool any(const std::vector< bool > &v)
Check if any arguments are true.
Definition: casadi_misc.cpp:88
@ OPTI_DOUBLE_INEQUALITY
Definition: optistack.hpp:492
@ OPTI_INEQUALITY
Definition: optistack.hpp:491
@ OPTI_GENERIC_INEQUALITY
Definition: optistack.hpp:489
@ OPTI_EQUALITY
Definition: optistack.hpp:490
@ OPTI_GENERIC_EQUALITY
Definition: optistack.hpp:488
@ OPTI_UNKNOWN
Definition: optistack.hpp:494
@ OPTI_PSD
Definition: optistack.hpp:493
const double nan
Not a number.
Definition: calculus.hpp:53
bool all(const std::vector< bool > &v)
Check if all arguments are true.
Definition: casadi_misc.cpp:81
Matrix< double > DM
Definition: dm_fwd.hpp:33
bool is_regular(const std::vector< T > &v)
Checks if array does not contain NaN or Inf.
std::ostream & uout()
std::map< std::string, DM > DMDict
Definition: dm_fwd.hpp:36
@ OP_LT
Definition: calculus.hpp:70
@ OP_EQ
Definition: calculus.hpp:70
@ OP_NORM2
Definition: calculus.hpp:178
@ OP_LE
Definition: calculus.hpp:70
@ OP_NORMF
Definition: calculus.hpp:178
std::string filename(const std::string &path)
Definition: ghc.cpp:55
ConstraintType type
Definition: optistack.hpp:515
casadi_int n
Definition: optistack.hpp:518
casadi_int active_i
Definition: optistack.hpp:533
std::string attribute
Definition: optistack.hpp:526
DomainType domain
Definition: optistack.hpp:530
VariableType type
Definition: optistack.hpp:529
casadi_int count
Definition: optistack.hpp:531
casadi_int i
Definition: optistack.hpp:532
casadi_int m
Definition: optistack.hpp:528
casadi_int n
Definition: optistack.hpp:527