diff --git a/AUTHORS.html b/AUTHORS.html index f915e97d2..805693948 100644 --- a/AUTHORS.html +++ b/AUTHORS.html @@ -39,7 +39,7 @@
Ipopt Documentation -   +  
diff --git a/AmplTNLP_8hpp.html b/AmplTNLP_8hpp.html index 51e3881a8..8d6425f7e 100644 --- a/AmplTNLP_8hpp.html +++ b/AmplTNLP_8hpp.html @@ -39,7 +39,7 @@
Ipopt Documentation -   +  
diff --git a/AmplTNLP_8hpp_source.html b/AmplTNLP_8hpp_source.html index 7c9b09b2a..1af0b964a 100644 --- a/AmplTNLP_8hpp_source.html +++ b/AmplTNLP_8hpp_source.html @@ -39,7 +39,7 @@
Ipopt Documentation -   +  
@@ -413,372 +413,393 @@
317{
318public:
321
- -
325 const SmartPtr<const Journalist>& jnlst,
-
326 const SmartPtr<RegisteredOptions> regoptions,
-
327 const SmartPtr<OptionsList> options,
-
328 const char* const* argv,
-
329 SmartPtr<AmplSuffixHandler> suffix_handler = NULL,
-
330 bool allow_discrete = false,
-
331 SmartPtr<AmplOptionsList> ampl_options_list = NULL,
-
332 const char* ampl_option_string = NULL,
-
333 const char* ampl_invokation_string = NULL,
-
334 const char* ampl_banner_string = NULL,
-
335 std::string* nl_file_content = NULL
-
336 );
-
337
- - -
344 const SmartPtr<const Journalist>& jnlst,
-
345 const SmartPtr<OptionsList> options,
-
346 char**& argv,
-
347 SmartPtr<AmplSuffixHandler> suffix_handler = NULL,
-
348 bool allow_discrete = false,
-
349 SmartPtr<AmplOptionsList> ampl_options_list = NULL,
-
350 const char* ampl_option_string = NULL,
-
351 const char* ampl_invokation_string = NULL,
-
352 const char* ampl_banner_string = NULL,
-
353 std::string* nl_file_content = NULL
-
354 );
-
355
-
357 virtual ~AmplTNLP();
-
359
-
361 DECLARE_STD_EXCEPTION(NONPOSITIVE_SCALING_FACTOR);
-
362
-
365 virtual bool get_nlp_info(
-
366 Index& n,
-
367 Index& m,
-
368 Index& nnz_jac_g,
-
369 Index& nnz_h_lag,
-
370 IndexStyleEnum& index_style
-
371 );
-
372
- -
374 Index n,
-
375 StringMetaDataMapType& var_string_md,
-
376 IntegerMetaDataMapType& var_integer_md,
-
377 NumericMetaDataMapType& var_numeric_md,
-
378 Index m,
-
379 StringMetaDataMapType& con_string_md,
-
380 IntegerMetaDataMapType& con_integer_md,
-
381 NumericMetaDataMapType& con_numeric_md
-
382 );
-
383
-
385 virtual bool get_bounds_info(
-
386 Index n,
-
387 Number* x_l,
-
388 Number* x_u,
-
389 Index m,
-
390 Number* g_l,
-
391 Number* g_u
-
392 );
-
393
- -
395 Index m,
-
396 LinearityType* const_types
-
397 );
-
398
-
399 virtual bool get_starting_point(
-
400 Index n,
-
401 bool init_x,
-
402 Number* x,
-
403 bool init_z,
-
404 Number* z_L,
-
405 Number* z_U,
-
406 Index m,
-
407 bool init_lambda,
-
408 Number* lambda
-
409 );
-
410
-
411 virtual bool eval_f(
-
412 Index n,
-
413 const Number* x,
-
414 bool new_x,
-
415 Number& obj_value
-
416 );
-
417
-
418 virtual bool eval_grad_f(
-
419 Index n,
-
420 const Number* x,
-
421 bool new_x,
-
422 Number* grad_f
-
423 );
-
424
-
425 virtual bool eval_g(
-
426 Index n,
-
427 const Number* x,
-
428 bool new_x,
-
429 Index m,
-
430 Number* g
-
431 );
-
432
-
433 virtual bool eval_jac_g(
-
434 Index n,
-
435 const Number* x,
-
436 bool new_x,
-
437 Index m,
-
438 Index nele_jac,
-
439 Index* iRow,
-
440 Index* jCol,
-
441 Number* values
-
442 );
-
443
-
444 virtual bool eval_h(
-
445 Index n,
-
446 const Number* x,
-
447 bool new_x,
-
448 Number obj_factor,
-
449 Index m,
-
450 const Number* lambda,
-
451 bool new_lambda,
-
452 Index nele_hess,
-
453 Index* iRow,
-
454 Index* jCol,
-
455 Number* values
-
456 );
-
457
- -
459 Number& obj_scaling,
-
460 bool& use_x_scaling,
-
461 Index n,
-
462 Number* x_scaling,
-
463 bool& use_g_scaling,
-
464 Index m,
-
465 Number* g_scaling
-
466 );
-
468
-
471 virtual void finalize_solution(
-
472 SolverReturn status,
-
473 Index n,
-
474 const Number* x,
-
475 const Number* z_L,
-
476 const Number* z_U,
-
477 Index m,
-
478 const Number* g,
-
479 const Number* lambda,
-
480 Number obj_value,
-
481 const IpoptData* ip_data,
- -
483 );
-
485
- - -
490 Index num_nonlin_vars,
-
491 Index* pos_nonlin_vars
-
492 );
-
494
-
497
-
- -
499 {
-
500 return asl_;
-
501 }
-
+ +
325 const SmartPtr<const Journalist>& jnlst,
+
326 const SmartPtr<RegisteredOptions> regoptions,
+
327 const SmartPtr<OptionsList> options,
+
328 const char* const* argv,
+
329 SmartPtr<AmplSuffixHandler> suffix_handler = NULL,
+
330 bool allow_discrete = false,
+
331 SmartPtr<AmplOptionsList> ampl_options_list = NULL,
+
332 const char* ampl_option_string = NULL,
+
333 const char* ampl_invokation_string = NULL,
+
334 const char* ampl_banner_string = NULL,
+
335 std::string* nl_file_content = NULL,
+
336 bool checkinterrupt = false
+
337 );
+
338
+ + +
345 const SmartPtr<const Journalist>& jnlst,
+
346 const SmartPtr<OptionsList> options,
+
347 char**& argv,
+
348 SmartPtr<AmplSuffixHandler> suffix_handler = NULL,
+
349 bool allow_discrete = false,
+
350 SmartPtr<AmplOptionsList> ampl_options_list = NULL,
+
351 const char* ampl_option_string = NULL,
+
352 const char* ampl_invokation_string = NULL,
+
353 const char* ampl_banner_string = NULL,
+
354 std::string* nl_file_content = NULL
+
355 );
+
356
+
358 virtual ~AmplTNLP();
+
360
+
362 DECLARE_STD_EXCEPTION(NONPOSITIVE_SCALING_FACTOR);
+
363
+
366 virtual bool get_nlp_info(
+
367 Index& n,
+
368 Index& m,
+
369 Index& nnz_jac_g,
+
370 Index& nnz_h_lag,
+
371 IndexStyleEnum& index_style
+
372 );
+
373
+ +
375 Index n,
+
376 StringMetaDataMapType& var_string_md,
+
377 IntegerMetaDataMapType& var_integer_md,
+
378 NumericMetaDataMapType& var_numeric_md,
+
379 Index m,
+
380 StringMetaDataMapType& con_string_md,
+
381 IntegerMetaDataMapType& con_integer_md,
+
382 NumericMetaDataMapType& con_numeric_md
+
383 );
+
384
+
386 virtual bool get_bounds_info(
+
387 Index n,
+
388 Number* x_l,
+
389 Number* x_u,
+
390 Index m,
+
391 Number* g_l,
+
392 Number* g_u
+
393 );
+
394
+ +
396 Index m,
+
397 LinearityType* const_types
+
398 );
+
399
+
400 virtual bool get_starting_point(
+
401 Index n,
+
402 bool init_x,
+
403 Number* x,
+
404 bool init_z,
+
405 Number* z_L,
+
406 Number* z_U,
+
407 Index m,
+
408 bool init_lambda,
+
409 Number* lambda
+
410 );
+
411
+
412 virtual bool eval_f(
+
413 Index n,
+
414 const Number* x,
+
415 bool new_x,
+
416 Number& obj_value
+
417 );
+
418
+
419 virtual bool eval_grad_f(
+
420 Index n,
+
421 const Number* x,
+
422 bool new_x,
+
423 Number* grad_f
+
424 );
+
425
+
426 virtual bool eval_g(
+
427 Index n,
+
428 const Number* x,
+
429 bool new_x,
+
430 Index m,
+
431 Number* g
+
432 );
+
433
+
434 virtual bool eval_jac_g(
+
435 Index n,
+
436 const Number* x,
+
437 bool new_x,
+
438 Index m,
+
439 Index nele_jac,
+
440 Index* iRow,
+
441 Index* jCol,
+
442 Number* values
+
443 );
+
444
+
445 virtual bool eval_h(
+
446 Index n,
+
447 const Number* x,
+
448 bool new_x,
+
449 Number obj_factor,
+
450 Index m,
+
451 const Number* lambda,
+
452 bool new_lambda,
+
453 Index nele_hess,
+
454 Index* iRow,
+
455 Index* jCol,
+
456 Number* values
+
457 );
+
458
+ +
460 Number& obj_scaling,
+
461 bool& use_x_scaling,
+
462 Index n,
+
463 Number* x_scaling,
+
464 bool& use_g_scaling,
+
465 Index m,
+
466 Number* g_scaling
+
467 );
+
469
+ +
473 AlgorithmMode mode,
+
474 Index iter,
+
475 Number obj_value,
+
476 Number inf_pr,
+
477 Number inf_du,
+
478 Number mu,
+
479 Number d_norm,
+
480 Number regularization_size,
+
481 Number alpha_du,
+
482 Number alpha_pr,
+
483 Index ls_trials,
+
484 const IpoptData* ip_data,
+ +
486 );
+
487
+
488 virtual void finalize_solution(
+
489 SolverReturn status,
+
490 Index n,
+
491 const Number* x,
+
492 const Number* z_L,
+
493 const Number* z_U,
+
494 Index m,
+
495 const Number* g,
+
496 const Number* lambda,
+
497 Number obj_value,
+
498 const IpoptData* ip_data,
+ +
500 );
502
-
507 // ToDo Maybe this should be at a different place, or collect the numbers itself?
- -
509 const std::string& message
-
510 ) const;
+ + +
507 Index num_nonlin_vars,
+
508 Index* pos_nonlin_vars
+
509 );
511
- -
518 Index& nlvb_,
-
519 Index& nlvbi_,
-
520 Index& nlvc_,
-
521 Index& nlvci_,
-
522 Index& nlvo_,
-
523 Index& nlvoi_,
-
524 Index& nbv_,
-
525 Index& niv_
-
526 ) const;
+
514
+
+ +
516 {
+
517 return asl_;
+
518 }
+
+
519
+
524 // ToDo Maybe this should be at a different place, or collect the numbers itself?
+ +
526 const std::string& message
+
527 ) const;
528
- -
538 Index obj_no
-
539 );
-
540
-
- -
547 const std::string& tag,
-
548 const std::vector<std::string>& meta_data
-
549 )
-
550 {
-
551 var_string_md_[tag] = meta_data;
-
552 }
-
-
553
-
- -
555 const std::string& tag,
-
556 const std::vector<Index>& meta_data
-
557 )
-
558 {
-
559 var_integer_md_[tag] = meta_data;
-
560 }
-
-
561
-
- -
563 const std::string& tag,
-
564 const std::vector<Number>& meta_data
-
565 )
-
566 {
-
567 var_numeric_md_[tag] = meta_data;
-
568 }
-
-
569
-
- -
571 const std::string& tag,
-
572 const std::vector<std::string>& meta_data
-
573 )
-
574 {
-
575 con_string_md_[tag] = meta_data;
-
576 }
-
-
577
-
- -
579 const std::string& tag,
-
580 const std::vector<Index>& meta_data
-
581 )
-
582 {
-
583 con_integer_md_[tag] = meta_data;
-
584 }
-
-
585
-
- -
587 const std::string& tag,
-
588 const std::vector<Number>& meta_data
-
589 )
-
590 {
-
591 con_numeric_md_[tag] = meta_data;
-
592 }
+ +
535 Index& nlvb_,
+
536 Index& nlvbi_,
+
537 Index& nlvc_,
+
538 Index& nlvci_,
+
539 Index& nlvo_,
+
540 Index& nlvoi_,
+
541 Index& nbv_,
+
542 Index& niv_
+
543 ) const;
+
545
+ +
555 Index obj_no
+
556 );
+
557
+
+ +
564 const std::string& tag,
+
565 const std::vector<std::string>& meta_data
+
566 )
+
567 {
+
568 var_string_md_[tag] = meta_data;
+
569 }
+
+
570
+
+ +
572 const std::string& tag,
+
573 const std::vector<Index>& meta_data
+
574 )
+
575 {
+
576 var_integer_md_[tag] = meta_data;
+
577 }
+
+
578
+
+ +
580 const std::string& tag,
+
581 const std::vector<Number>& meta_data
+
582 )
+
583 {
+
584 var_numeric_md_[tag] = meta_data;
+
585 }
+
+
586
+
+ +
588 const std::string& tag,
+
589 const std::vector<std::string>& meta_data
+
590 )
+
591 {
+
592 con_string_md_[tag] = meta_data;
+
593 }
594
-
- -
597 {
-
598 return suffix_handler_;
-
599 }
-
-
600
-
601private:
-
612
- -
614
- -
617 const AmplTNLP&
-
618 );
-
619
- -
622 const AmplTNLP&
-
623 );
-
625
- -
627 const SmartPtr<RegisteredOptions> regoptions,
-
628 const SmartPtr<OptionsList> options,
-
629 const char* const* argv,
-
630 bool allow_discrete /* = false */,
-
631 SmartPtr<AmplOptionsList> ampl_options_list /* = NULL */,
-
632 const char* ampl_option_string /* = NULL */,
-
633 const char* ampl_invokation_string /* = NULL */,
-
634 const char* ampl_banner_string /* = NULL */,
-
635 std::string* nl_file_content /* = NULL */
-
636 );
-
637
-
638protected:
- -
641
-
643 ASL_pfgh* asl_;
-
644
- -
647
-
650
- -
652 /* the rest of the problem size data is available easily through the ampl variables */
+
+ +
596 const std::string& tag,
+
597 const std::vector<Index>& meta_data
+
598 )
+
599 {
+
600 con_integer_md_[tag] = meta_data;
+
601 }
+
+
602
+
+ +
604 const std::string& tag,
+
605 const std::vector<Number>& meta_data
+
606 )
+
607 {
+
608 con_numeric_md_[tag] = meta_data;
+
609 }
+
+
611
+
+ +
614 {
+
615 return suffix_handler_;
+
616 }
+
+
617
+
618private:
+
629
+ +
631
+ +
634 const AmplTNLP&
+
635 );
+
636
+ +
639 const AmplTNLP&
+
640 );
+
642
+ +
644 const SmartPtr<RegisteredOptions> regoptions,
+
645 const SmartPtr<OptionsList> options,
+
646 const char* const* argv,
+
647 bool allow_discrete /* = false */,
+
648 SmartPtr<AmplOptionsList> ampl_options_list /* = NULL */,
+
649 const char* ampl_option_string /* = NULL */,
+
650 const char* ampl_invokation_string /* = NULL */,
+
651 const char* ampl_banner_string /* = NULL */,
+
652 std::string* nl_file_content /* = NULL */
+
653 );
654
- - - - - - -
663
-
666
- - - - +
655protected:
+ +
658
+
660 ASL_pfgh* asl_;
+
661
+ +
664
+
667
+ +
669 /* the rest of the problem size data is available easily through the ampl variables */
+
671
+ + + + + +
680
-
683
-
685 void* nerror_;
-
686
- -
689
- -
692 const Number* x,
-
693 Number& obj_val
-
694 );
-
695
- -
698 const Number* x,
-
699 Index m,
-
700 Number* g = NULL
-
701 );
-
702
- -
707 bool new_x,
-
708 Index n,
-
709 const Number* x
-
710 );
+ + + + +
697
+ +
700
+
702 void* nerror_;
+
703
+ +
706
+ +
711
- -
718 const SmartPtr<RegisteredOptions> regoptions,
-
719 const SmartPtr<OptionsList>& options,
-
720 SmartPtr<AmplOptionsList>& ampl_options_list,
-
721 const char* ampl_option_string,
-
722 const char* ampl_invokation_string,
-
723 const char* ampl_banner_string,
-
724 const char* const* argv
-
725 );
-
726
- -
- -
734 const SmartPtr<OptionsList>& options,
-
735 SmartPtr<AmplOptionsList>& ampl_options_list,
-
736 const char* ampl_option_string,
-
737 const char* ampl_invokation_string,
-
738 const char* ampl_banner_string,
-
739 // cppcheck-suppress constParameter
-
740 char**& argv
-
741 )
-
742 {
-
743 return get_options(NULL, options, ampl_options_list, ampl_option_string, ampl_invokation_string, ampl_banner_string, argv);
-
744 }
-
-
745
- -
748 void* nerror
-
749 );
-
750
- -
753
- - - - - - -
761};
-
-
762
-
763} // namespace Ipopt
-
764
-
765#endif
+ +
714 const Number* x,
+
715 Number& obj_val
+
716 );
+
717
+ +
720 const Number* x,
+
721 Index m,
+
722 Number* g = NULL
+
723 );
+
724
+ +
729 bool new_x,
+
730 Index n,
+
731 const Number* x
+
732 );
+
733
+ +
740 const SmartPtr<RegisteredOptions> regoptions,
+
741 const SmartPtr<OptionsList>& options,
+
742 SmartPtr<AmplOptionsList>& ampl_options_list,
+
743 const char* ampl_option_string,
+
744 const char* ampl_invokation_string,
+
745 const char* ampl_banner_string,
+
746 const char* const* argv
+
747 );
+
748
+ +
+ +
756 const SmartPtr<OptionsList>& options,
+
757 SmartPtr<AmplOptionsList>& ampl_options_list,
+
758 const char* ampl_option_string,
+
759 const char* ampl_invokation_string,
+
760 const char* ampl_banner_string,
+
761 // cppcheck-suppress constParameter
+
762 char**& argv
+
763 )
+
764 {
+
765 return get_options(NULL, options, ampl_options_list, ampl_option_string, ampl_invokation_string, ampl_banner_string, argv);
+
766 }
+
+
767
+ +
770 void* nerror
+
771 );
+
772
+ +
775
+ + + + + + +
783};
+
+
784
+
785} // namespace Ipopt
+
786
+
787#endif
+
AlgorithmMode
enum to indicate the mode in which the algorithm is
#define IPOPT_DEPRECATED
macro to declare symbols as deprecated
Definition IpTypes.h:25
@@ -846,71 +867,74 @@
Ampl Interface, implemented as a TNLP.
Definition AmplTNLP.hpp:317
-
void * Oinfo_ptr_
Pointer to the Oinfo structure.
Definition AmplTNLP.hpp:682
-
SmartPtr< AmplSuffixHandler > get_suffix_handler()
Method for returning the suffix handler.
Definition AmplTNLP.hpp:596
+
void * Oinfo_ptr_
Pointer to the Oinfo structure.
Definition AmplTNLP.hpp:699
+
SmartPtr< AmplSuffixHandler > get_suffix_handler()
Method for returning the suffix handler.
Definition AmplTNLP.hpp:613
virtual bool eval_jac_g(Index n, const Number *x, bool new_x, Index m, Index nele_jac, Index *iRow, Index *jCol, Number *values)
Method to request either the sparsity structure or the values of the Jacobian of the constraints.
-
SmartPtr< AmplSuffixHandler > suffix_handler_
Suffix Handler.
Definition AmplTNLP.hpp:688
-
StringMetaDataMapType con_string_md_
Definition AmplTNLP.hpp:758
-
void set_string_metadata_for_con(const std::string &tag, const std::vector< std::string > &meta_data)
Definition AmplTNLP.hpp:570
-
Number obj_sign_
Sign of the objective fn (1 for min, -1 for max)
Definition AmplTNLP.hpp:646
-
Number * z_L_sol_
Definition AmplTNLP.hpp:657
+
SmartPtr< AmplSuffixHandler > suffix_handler_
Suffix Handler.
Definition AmplTNLP.hpp:705
+
StringMetaDataMapType con_string_md_
Definition AmplTNLP.hpp:780
+
void set_string_metadata_for_con(const std::string &tag, const std::vector< std::string > &meta_data)
Definition AmplTNLP.hpp:587
+
Number obj_sign_
Sign of the objective fn (1 for min, -1 for max)
Definition AmplTNLP.hpp:663
+
bool interrupted_
pointer to flag to check whether to interrupt signal was set
Definition AmplTNLP.hpp:710
+
Number * z_L_sol_
Definition AmplTNLP.hpp:674
virtual Index get_number_of_nonlinear_variables()
Return the number of variables that appear nonlinearly in the objective function or in at least one c...
AmplTNLP(const AmplTNLP &)
Copy Constructor.
virtual bool get_nlp_info(Index &n, Index &m, Index &nnz_jac_g, Index &nnz_h_lag, IndexStyleEnum &index_style)
Method to request the initial information about the problem.
-
ASL_pfgh * AmplSolverObject()
Return the ampl solver object (ASL*)
Definition AmplTNLP.hpp:498
-
Index nz_h_full_
number of nonzeros in the full_x Hessian
Definition AmplTNLP.hpp:651
+
ASL_pfgh * AmplSolverObject()
Return the ampl solver object (ASL*)
Definition AmplTNLP.hpp:515
+
Index nz_h_full_
number of nonzeros in the full_x Hessian
Definition AmplTNLP.hpp:668
void gutsOfConstructor(const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, const char *const *argv, bool allow_discrete, SmartPtr< AmplOptionsList > ampl_options_list, const char *ampl_option_string, const char *ampl_invokation_string, const char *ampl_banner_string, std::string *nl_file_content)
-
IntegerMetaDataMapType var_integer_md_
Definition AmplTNLP.hpp:756
+
IntegerMetaDataMapType var_integer_md_
Definition AmplTNLP.hpp:778
DECLARE_STD_EXCEPTION(NONPOSITIVE_SCALING_FACTOR)
Exceptions.
-
StringMetaDataMapType var_string_md_
meta data to pass on to TNLP
Definition AmplTNLP.hpp:755
-
bool hesset_called_
whether we have called hesset
Definition AmplTNLP.hpp:676
+
StringMetaDataMapType var_string_md_
meta data to pass on to TNLP
Definition AmplTNLP.hpp:777
+
bool hesset_called_
whether we have called hesset
Definition AmplTNLP.hpp:693
bool apply_new_x(bool new_x, Index n, const Number *x)
Internal function to update the internal and ampl state if the x value changes.
AmplTNLP()
Default Constructor.
IPOPT_DEPRECATED AmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< OptionsList > options, char **&argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL)
Constructor without RegisteredOptions.
-
SmartPtr< const Journalist > jnlst_
Journalist.
Definition AmplTNLP.hpp:640
+
SmartPtr< const Journalist > jnlst_
Journalist.
Definition AmplTNLP.hpp:657
virtual void finalize_solution(SolverReturn status, Index n, const Number *x, const Number *z_L, const Number *z_U, Index m, const Number *g, const Number *lambda, Number obj_value, const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq)
This method is called when the algorithm has finished (successfully or not) so the TNLP can digest th...
-
Number * x_sol_
Definition AmplTNLP.hpp:656
+
Number * x_sol_
Definition AmplTNLP.hpp:673
virtual bool get_scaling_parameters(Number &obj_scaling, bool &use_x_scaling, Index n, Number *x_scaling, bool &use_g_scaling, Index m, Number *g_scaling)
Method to request scaling parameters.
virtual bool eval_g(Index n, const Number *x, bool new_x, Index m, Number *g)
Method to request the constraint values.
virtual bool eval_grad_f(Index n, const Number *x, bool new_x, Number *grad_f)
Method to request the gradient of the objective function.
-
NumericMetaDataMapType var_numeric_md_
Definition AmplTNLP.hpp:757
+
AmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, const char *const *argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL, bool checkinterrupt=false)
Constructor.
+
NumericMetaDataMapType var_numeric_md_
Definition AmplTNLP.hpp:779
+
virtual bool intermediate_callback(AlgorithmMode mode, Index iter, Number obj_value, Number inf_pr, Number inf_du, Number mu, Number d_norm, Number regularization_size, Number alpha_du, Number alpha_pr, Index ls_trials, const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq)
Intermediate Callback method for the user.
virtual bool get_list_of_nonlinear_variables(Index num_nonlin_vars, Index *pos_nonlin_vars)
Return the indices of all nonlinear variables.
- +
virtual bool get_starting_point(Index n, bool init_x, Number *x, bool init_z, Number *z_L, Number *z_U, Index m, bool init_lambda, Number *lambda)
Method to request the starting point before iterating.
virtual bool get_constraints_linearity(Index m, LinearityType *const_types)
Method to request the constraints linearity.
-
NumericMetaDataMapType con_numeric_md_
Definition AmplTNLP.hpp:760
-
void set_numeric_metadata_for_con(const std::string &tag, const std::vector< Number > &meta_data)
Definition AmplTNLP.hpp:586
+
NumericMetaDataMapType con_numeric_md_
Definition AmplTNLP.hpp:782
+
void set_numeric_metadata_for_con(const std::string &tag, const std::vector< Number > &meta_data)
Definition AmplTNLP.hpp:603
bool internal_conval(const Number *x, Index m, Number *g=NULL)
Make the constraint call to ampl.
void get_discrete_info(Index &nlvb_, Index &nlvbi_, Index &nlvc_, Index &nlvci_, Index &nlvo_, Index &nlvoi_, Index &nbv_, Index &niv_) const
Give the number of binary and integer variables.
char * get_options(const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > &options, SmartPtr< AmplOptionsList > &ampl_options_list, const char *ampl_option_string, const char *ampl_invokation_string, const char *ampl_banner_string, const char *const *argv)
Method for obtaining the name of the NL file and the options set from AMPL.
virtual bool eval_h(Index n, const Number *x, bool new_x, Number obj_factor, Index m, const Number *lambda, bool new_lambda, Index nele_hess, Index *iRow, Index *jCol, Number *values)
Method to request either the sparsity structure or the values of the Hessian of the Lagrangian.
-
void set_string_metadata_for_var(const std::string &tag, const std::vector< std::string > &meta_data)
Definition AmplTNLP.hpp:546
-
IPOPT_DEPRECATED char * get_options(const SmartPtr< OptionsList > &options, SmartPtr< AmplOptionsList > &ampl_options_list, const char *ampl_option_string, const char *ampl_invokation_string, const char *ampl_banner_string, char **&argv)
Method for obtaining the name of the NL file and the options set from AMPL.
Definition AmplTNLP.hpp:733
+
void set_string_metadata_for_var(const std::string &tag, const std::vector< std::string > &meta_data)
Definition AmplTNLP.hpp:563
+
IPOPT_DEPRECATED char * get_options(const SmartPtr< OptionsList > &options, SmartPtr< AmplOptionsList > &ampl_options_list, const char *ampl_option_string, const char *ampl_invokation_string, const char *ampl_banner_string, char **&argv)
Method for obtaining the name of the NL file and the options set from AMPL.
Definition AmplTNLP.hpp:755
virtual ~AmplTNLP()
Default destructor.
void write_solution_file(const std::string &message) const
Write the solution file.
virtual bool eval_f(Index n, const Number *x, bool new_x, Number &obj_value)
Method to request the value of the objective function.
virtual bool get_bounds_info(Index n, Number *x_l, Number *x_u, Index m, Number *g_l, Number *g_u)
returns bounds of the nlp.
-
bool conval_called_with_current_x_
whether the constraint values have been calculated with the current x set to false in apply_new_x,...
Definition AmplTNLP.hpp:674
-
Number * lambda_sol_
Definition AmplTNLP.hpp:660
-
void set_numeric_metadata_for_var(const std::string &tag, const std::vector< Number > &meta_data)
Definition AmplTNLP.hpp:562
+
bool conval_called_with_current_x_
whether the constraint values have been calculated with the current x set to false in apply_new_x,...
Definition AmplTNLP.hpp:691
+
Number * lambda_sol_
Definition AmplTNLP.hpp:677
+
void set_numeric_metadata_for_var(const std::string &tag, const std::vector< Number > &meta_data)
Definition AmplTNLP.hpp:579
void call_hesset()
calls hesset ASL function
-
Number * g_sol_
Definition AmplTNLP.hpp:659
-
void set_integer_metadata_for_var(const std::string &tag, const std::vector< Index > &meta_data)
Definition AmplTNLP.hpp:554
-
void * nerror_
nerror flag passed to ampl calls - set to NULL to halt on error
Definition AmplTNLP.hpp:685
-
Number * z_U_sol_
Definition AmplTNLP.hpp:658
-
bool objval_called_with_current_x_
whether the objective value has been calculated with the current x
Definition AmplTNLP.hpp:670
+
Number * g_sol_
Definition AmplTNLP.hpp:676
+
void set_integer_metadata_for_var(const std::string &tag, const std::vector< Index > &meta_data)
Definition AmplTNLP.hpp:571
+
void * nerror_
nerror flag passed to ampl calls - set to NULL to halt on error
Definition AmplTNLP.hpp:702
+
Number * z_U_sol_
Definition AmplTNLP.hpp:675
+
bool objval_called_with_current_x_
whether the objective value has been calculated with the current x
Definition AmplTNLP.hpp:687
virtual bool get_var_con_metadata(Index n, StringMetaDataMapType &var_string_md, IntegerMetaDataMapType &var_integer_md, NumericMetaDataMapType &var_numeric_md, Index m, StringMetaDataMapType &con_string_md, IntegerMetaDataMapType &con_integer_md, NumericMetaDataMapType &con_numeric_md)
Method to request meta data for the variables and the constraints.
+
bool checkinterrupt_
whether to register handler for interrupt signals
Definition AmplTNLP.hpp:708
bool internal_objval(const Number *x, Number &obj_val)
Make the objective call to ampl.
-
void set_integer_metadata_for_con(const std::string &tag, const std::vector< Index > &meta_data)
Definition AmplTNLP.hpp:578
-
bool set_active_objective_called_
whether set_active_objective has been called
Definition AmplTNLP.hpp:678
-
AmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, const char *const *argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL)
Constructor.
+
void set_integer_metadata_for_con(const std::string &tag, const std::vector< Index > &meta_data)
Definition AmplTNLP.hpp:595
+
bool set_active_objective_called_
whether set_active_objective has been called
Definition AmplTNLP.hpp:695
void operator=(const AmplTNLP &)
Default Assignment Operator.
-
IntegerMetaDataMapType con_integer_md_
Definition AmplTNLP.hpp:759
+
IntegerMetaDataMapType con_integer_md_
Definition AmplTNLP.hpp:781
void set_active_objective(Index obj_no)
A method for setting the index of the objective function to be considered.
bool nerror_ok(void *nerror)
whether the ampl nerror code is ok
-
ASL_pfgh * asl_
pointer to the main ASL structure
Definition AmplTNLP.hpp:643
+
ASL_pfgh * asl_
pointer to the main ASL structure
Definition AmplTNLP.hpp:660
Class for all IPOPT specific calculated quantities.
-
Class to organize all the data required by the algorithm.
+
Class to organize all the data required by the algorithm.
Storing the reference count of all the smart pointers that currently reference it.
Template class for Smart Pointers.
Base class for all NLP's that use standard triplet matrix form and dense vectors.
Definition IpTNLP.hpp:48
@@ -920,7 +944,7 @@
std::map< std::string, std::vector< std::string > > StringMetaDataMapType
Definition IpTNLP.hpp:70
This file contains a base class for all exceptions and a set of macros to help with exceptions.
-
SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
+
SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
SolverReturn
enum for the return from the optimize algorithm
ipindex Index
Type of all indices of vectors, matrices etc.
Definition IpTypes.hpp:20
ipnumber Number
Type of all numbers.
Definition IpTypes.hpp:17
diff --git a/ChangeLog_8md.html b/ChangeLog_8md.html index 8a487ae38..00c7e5ead 100644 --- a/ChangeLog_8md.html +++ b/ChangeLog_8md.html @@ -39,7 +39,7 @@
Ipopt Documentation -   +  
diff --git a/FAQ.html b/FAQ.html index dd4430e62..d9675e148 100644 --- a/FAQ.html +++ b/FAQ.html @@ -39,7 +39,7 @@
Ipopt Documentation -   +  
diff --git a/IMPL.html b/IMPL.html index db4a981b2..2708f2a72 100644 --- a/IMPL.html +++ b/IMPL.html @@ -39,7 +39,7 @@
Ipopt Documentation -   +  
diff --git a/INSTALL.html b/INSTALL.html index d01d7c9f8..ba50ecedf 100644 --- a/INSTALL.html +++ b/INSTALL.html @@ -39,7 +39,7 @@
Ipopt Documentation -   +  
@@ -212,18 +212,18 @@

  • Compile the HSL code separately either before or after the Ipopt code and use the shared library loading mechanism. See the documentation distributed with the HSL package for information on how to do so.
  • Attention
    The build system of Ipopt currently requires that MA27 is part of a HSL library, if a HSL library is provided.
    -

    Next to the HSL source packages, also prebuild libraries of HSL for macOS and Windows are available in the libHSL package from https://licences.stfc.ac.uk/product/libhsl and the Coin-HSL package from https://licences.stfc.ac.uk/product/coin-hsl. Both can be used by Ipopt when using the shared library loading mechanism described below.

    +

    Next to the HSL source packages, also prebuild libraries of HSL for macOS and Windows are available in the libHSL package from https://licences.stfc.ac.uk/products/Software/HSL/LibHSL and the Coin-HSL package from https://licences.stfc.ac.uk/products/Software/HSL/coinhsl. Both can be used by Ipopt when using the shared library loading mechanism described below.

    Note
    Whereas it is essential to have at least one linear solver, the package MC19 could be omitted (with the consequence that you cannot use this method for scaling the linear systems arising inside the Ipopt algorithm). By default, MC19 is only used to scale the linear system when using one of the HSL solvers, but it can also be switched on for other linear solvers (which usually have internal scaling mechanisms). Further, also the package MA28 can be omitted, since it is used only in the experimental dependency detector, which is not used by default.
    If you are an academic or a student, we recommend you download the HSL Full package as this ensures you have access to the full range of solvers. MA57 can be considerably faster than MA27 on some problems.
    -If you have a precompiled library containing the HSL codes, you can specify the directory containing the CoinHslConfig.h header file and the linker flags for this library with the flags --with-hsl-cflags and --with-hsl-lflags flags, respectively, when running configure of Ipopt (see Compiling and Installing Ipopt). The JuliaHSL libs can not be used with --with-hsl-lflags, as they do not contain the necessary header files.
    +If you have a precompiled library containing the HSL codes, you can specify the directory containing the CoinHslConfig.h header file and the linker flags for this library with the flags --with-hsl-cflags and --with-hsl-lflags flags, respectively, when running configure of Ipopt (see Compiling and Installing Ipopt). The libHSL libs can not be used with --with-hsl-lflags, as they do not contain the necessary header files.
    The linear solvers MA57, HSL_MA77, HSL_MA86, HSL_MA97 can make use of the matrix ordering algorithms implemented in METIS. ThirdParty-HSL will look automatically for a METIS installation in your system and should work with both METIS 4 and METIS 5.

    Providing a HSL library at runtime

    Alternatively to linking against HSL routines when Ipopt is build, Ipopt can also load a shared library with MA27, MA57, HSL_MA77, HSL_MA86, HSL_MA97, or MC19 at runtime. This means, if you obtain one of those solvers after you compiled Ipopt, you don't need to recompile Ipopt to use it. Instead, you can just place a shared library onto your system and ensure that Ipopt can find it at runtime. Option hsllib can be set to the name of the library from which to load HSL routines if a HSL solver is selected. The name can contain a path; otherwise, the shared library search path (e.g., LD_LIBRARY_PATH) will be used.

    -

    Prebuild HSL libraries are available from https://licences.stfc.ac.uk/product/julia-hsl (see also above).

    +

    Prebuild HSL libraries are available from https://licences.stfc.ac.uk/products/Software/HSL/LibHSL (see also above).

    MUMPS Linear Solver

    You can also use the (public domain) sparse linear solver MUMPS. Please visit the MUMPS home page for more information about the solver. MUMPS is provided as Fortran 90 and C source code. You need to have a Fortran 90 compiler (e.g., the GNU compiler gfortran) to be able to use it.

    diff --git a/INTERFACES.html b/INTERFACES.html index 9bf58dfd7..fe3702131 100644 --- a/INTERFACES.html +++ b/INTERFACES.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -916,8 +916,8 @@

    using namespace Ipopt;
    int main(
    -
    int /*argv*/,
    -
    char** /*argc*/
    +
    int /*argc*/,
    +
    char** /*argv*/
    )
    {
    // Create a new instance of your nlp
    @@ -1165,7 +1165,7 @@

    return true;
    }
    Class for all IPOPT specific calculated quantities.
    -
    Class to organize all the data required by the algorithm.
    +
    Class to organize all the data required by the algorithm.
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    ipnumber Number
    Type of all numbers.
    Definition IpTypes.hpp:17

    Ipopt::TNLP::get_scaling_parameters

    diff --git a/IpAdaptiveMuUpdate_8hpp.html b/IpAdaptiveMuUpdate_8hpp.html index b78bb2dd2..e5862f1b2 100644 --- a/IpAdaptiveMuUpdate_8hpp.html +++ b/IpAdaptiveMuUpdate_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpAdaptiveMuUpdate_8hpp_source.html b/IpAdaptiveMuUpdate_8hpp_source.html index df8bdfbcb..bea8a8f2e 100644 --- a/IpAdaptiveMuUpdate_8hpp_source.html +++ b/IpAdaptiveMuUpdate_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpAlgBuilder_8hpp.html b/IpAlgBuilder_8hpp.html index 6c4d290c2..5a054c260 100644 --- a/IpAlgBuilder_8hpp.html +++ b/IpAlgBuilder_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpAlgBuilder_8hpp_source.html b/IpAlgBuilder_8hpp_source.html index ca3ad6483..c6b94f083 100644 --- a/IpAlgBuilder_8hpp_source.html +++ b/IpAlgBuilder_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpAlgStrategy_8hpp.html b/IpAlgStrategy_8hpp.html index eddd6c069..49bc33c7d 100644 --- a/IpAlgStrategy_8hpp.html +++ b/IpAlgStrategy_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpAlgStrategy_8hpp_source.html b/IpAlgStrategy_8hpp_source.html index 132f17e06..18d31d079 100644 --- a/IpAlgStrategy_8hpp_source.html +++ b/IpAlgStrategy_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -285,7 +285,7 @@
    virtual ~AlgorithmStrategyObject()
    Destructor.
    AlgorithmStrategyObject()
    Default Constructor.
    Class for all IPOPT specific calculated quantities.
    -
    Class to organize all the data required by the algorithm.
    +
    Class to organize all the data required by the algorithm.
    This is the abstract base class for classes that map the traditional NLP into something that is more ...
    Class responsible for all message output.
    This class stores a list of user set options.
    @@ -293,7 +293,7 @@
    Template class for Smart Pointers.
    #define IPOPTLIB_EXPORT
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    bool IsValid(const SmartPtr< U > &smart_ptr)
    +
    bool IsValid(const SmartPtr< U > &smart_ptr)
    diff --git a/IpAlgTypes_8hpp.html b/IpAlgTypes_8hpp.html index 90d4e1a9a..60d20dad3 100644 --- a/IpAlgTypes_8hpp.html +++ b/IpAlgTypes_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpAlgTypes_8hpp_source.html b/IpAlgTypes_8hpp_source.html index 6f30763aa..a35e0fdcd 100644 --- a/IpAlgTypes_8hpp_source.html +++ b/IpAlgTypes_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpAlgorithmRegOp_8hpp.html b/IpAlgorithmRegOp_8hpp.html index eb97e9932..c98734dbb 100644 --- a/IpAlgorithmRegOp_8hpp.html +++ b/IpAlgorithmRegOp_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpAlgorithmRegOp_8hpp_source.html b/IpAlgorithmRegOp_8hpp_source.html index 3af2b2b2f..37fb87833 100644 --- a/IpAlgorithmRegOp_8hpp_source.html +++ b/IpAlgorithmRegOp_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpAugRestoSystemSolver_8hpp.html b/IpAugRestoSystemSolver_8hpp.html index 27d4c25c6..730dc778d 100644 --- a/IpAugRestoSystemSolver_8hpp.html +++ b/IpAugRestoSystemSolver_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpAugRestoSystemSolver_8hpp_source.html b/IpAugRestoSystemSolver_8hpp_source.html index 2cfd8a7fe..ed412a11f 100644 --- a/IpAugRestoSystemSolver_8hpp_source.html +++ b/IpAugRestoSystemSolver_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpAugSystemSolver_8hpp.html b/IpAugSystemSolver_8hpp.html index 00bbd5ef1..8bdf265a0 100644 --- a/IpAugSystemSolver_8hpp.html +++ b/IpAugSystemSolver_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpAugSystemSolver_8hpp_source.html b/IpAugSystemSolver_8hpp_source.html index 5678dc4fe..cdf054def 100644 --- a/IpAugSystemSolver_8hpp_source.html +++ b/IpAugSystemSolver_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpBacktrackingLSAcceptor_8hpp.html b/IpBacktrackingLSAcceptor_8hpp.html index f80ee19a2..0d5e4cdcb 100644 --- a/IpBacktrackingLSAcceptor_8hpp.html +++ b/IpBacktrackingLSAcceptor_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpBacktrackingLSAcceptor_8hpp_source.html b/IpBacktrackingLSAcceptor_8hpp_source.html index 8cc5d4713..92973443a 100644 --- a/IpBacktrackingLSAcceptor_8hpp_source.html +++ b/IpBacktrackingLSAcceptor_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpBacktrackingLineSearch_8hpp.html b/IpBacktrackingLineSearch_8hpp.html index cc5f9f47b..7693db48e 100644 --- a/IpBacktrackingLineSearch_8hpp.html +++ b/IpBacktrackingLineSearch_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpBacktrackingLineSearch_8hpp_source.html b/IpBacktrackingLineSearch_8hpp_source.html index f04c2c0f3..dcfd8546d 100644 --- a/IpBacktrackingLineSearch_8hpp_source.html +++ b/IpBacktrackingLineSearch_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpBlas_8hpp.html b/IpBlas_8hpp.html index e5c85c126..6bf6c30dd 100644 --- a/IpBlas_8hpp.html +++ b/IpBlas_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpBlas_8hpp_source.html b/IpBlas_8hpp_source.html index 5f7f47c91..2bf062b27 100644 --- a/IpBlas_8hpp_source.html +++ b/IpBlas_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpCGPenaltyCq_8hpp.html b/IpCGPenaltyCq_8hpp.html index 8ba271a42..1e03fc053 100644 --- a/IpCGPenaltyCq_8hpp.html +++ b/IpCGPenaltyCq_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpCGPenaltyCq_8hpp_source.html b/IpCGPenaltyCq_8hpp_source.html index 614e0b315..a8636fdbf 100644 --- a/IpCGPenaltyCq_8hpp_source.html +++ b/IpCGPenaltyCq_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -253,8 +253,8 @@
    Templated class which stores one entry for the CachedResult class.
    Base class for additional calculated quantities that is special to a particular type of algorithm,...
    Class for all IPOPT specific calculated quantities.
    -
    Class to organize all the data required by the algorithm.
    -
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    +
    Class to organize all the data required by the algorithm.
    +
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    This is the abstract base class for classes that map the traditional NLP into something that is more ...
    Class responsible for all message output.
    This class stores a list of user set options.
    diff --git a/IpCGPenaltyData_8hpp.html b/IpCGPenaltyData_8hpp.html index 82c8e02c6..108e81bf1 100644 --- a/IpCGPenaltyData_8hpp.html +++ b/IpCGPenaltyData_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpCGPenaltyData_8hpp_source.html b/IpCGPenaltyData_8hpp_source.html index 468e3f353..c0ff78060 100644 --- a/IpCGPenaltyData_8hpp_source.html +++ b/IpCGPenaltyData_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -529,15 +529,15 @@
    void set_delta_cgfast(SmartPtr< IteratesVector > &delta_fast)
    Set the delta_cgfast.
    Templated class which stores one entry for the CachedResult class.
    -
    Base class for additional data that is special to a particular type of algorithm, such as the CG pena...
    +
    Base class for additional data that is special to a particular type of algorithm, such as the CG pena...
    Class responsible for all message output.
    This class stores a list of user set options.
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    -
    bool IsValid(const SmartPtr< U > &smart_ptr)
    +
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    +
    bool IsValid(const SmartPtr< U > &smart_ptr)
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    ipnumber Number
    Type of all numbers.
    Definition IpTypes.hpp:17
    -
    bool IsNull(const SmartPtr< U > &smart_ptr)
    +
    bool IsNull(const SmartPtr< U > &smart_ptr)
    diff --git a/IpCGPenaltyLSAcceptor_8hpp.html b/IpCGPenaltyLSAcceptor_8hpp.html index 97ed1f445..8f631ff9a 100644 --- a/IpCGPenaltyLSAcceptor_8hpp.html +++ b/IpCGPenaltyLSAcceptor_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpCGPenaltyLSAcceptor_8hpp_source.html b/IpCGPenaltyLSAcceptor_8hpp_source.html index 1575e16cf..65ea2fa76 100644 --- a/IpCGPenaltyLSAcceptor_8hpp_source.html +++ b/IpCGPenaltyLSAcceptor_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -380,7 +380,7 @@
    Templated class which stores one entry for the CachedResult class.
    -
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    +
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    This class stores a list of user set options.
    Class for the Piecewise Penalty.
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    diff --git a/IpCGPenaltyRegOp_8hpp.html b/IpCGPenaltyRegOp_8hpp.html index f34c1797e..d2962f9b1 100644 --- a/IpCGPenaltyRegOp_8hpp.html +++ b/IpCGPenaltyRegOp_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpCGPenaltyRegOp_8hpp_source.html b/IpCGPenaltyRegOp_8hpp_source.html index 38a6ba32b..bc7d509ec 100644 --- a/IpCGPenaltyRegOp_8hpp_source.html +++ b/IpCGPenaltyRegOp_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpCGPerturbationHandler_8hpp.html b/IpCGPerturbationHandler_8hpp.html index 6249fd522..f82ef0420 100644 --- a/IpCGPerturbationHandler_8hpp.html +++ b/IpCGPerturbationHandler_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpCGPerturbationHandler_8hpp_source.html b/IpCGPerturbationHandler_8hpp_source.html index 0771c1140..a6dd40daa 100644 --- a/IpCGPerturbationHandler_8hpp_source.html +++ b/IpCGPerturbationHandler_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -217,7 +217,7 @@
    static void RegisterOptions(SmartPtr< RegisteredOptions > roptions)
    Templated class which stores one entry for the CachedResult class.
    -
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    +
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    This class stores a list of user set options.
    Class for handling the perturbation factors delta_x, delta_s, delta_c, and delta_d in the primal dual...
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    diff --git a/IpCGSearchDirCalc_8hpp.html b/IpCGSearchDirCalc_8hpp.html index 2ddc93485..9c177b8b1 100644 --- a/IpCGSearchDirCalc_8hpp.html +++ b/IpCGSearchDirCalc_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpCGSearchDirCalc_8hpp_source.html b/IpCGSearchDirCalc_8hpp_source.html index 7f82be1a9..04421e0d5 100644 --- a/IpCGSearchDirCalc_8hpp_source.html +++ b/IpCGSearchDirCalc_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -239,7 +239,7 @@
    virtual ~CGSearchDirCalculator()
    Destructor.
    Templated class which stores one entry for the CachedResult class.
    -
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    +
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    This class stores a list of user set options.
    Base class for computing the search direction for the line search.
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    diff --git a/IpCachedResults_8hpp.html b/IpCachedResults_8hpp.html index 54bacf3ca..8556abf0d 100644 --- a/IpCachedResults_8hpp.html +++ b/IpCachedResults_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpCachedResults_8hpp_source.html b/IpCachedResults_8hpp_source.html index b05d2472d..90932cf49 100644 --- a/IpCachedResults_8hpp_source.html +++ b/IpCachedResults_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpCompoundMatrix_8hpp.html b/IpCompoundMatrix_8hpp.html index 43651a41d..a7608b9dc 100644 --- a/IpCompoundMatrix_8hpp.html +++ b/IpCompoundMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpCompoundMatrix_8hpp_source.html b/IpCompoundMatrix_8hpp_source.html index a0b8ee80a..05bb71368 100644 --- a/IpCompoundMatrix_8hpp_source.html +++ b/IpCompoundMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -494,8 +494,8 @@
    Vector Base Class.
    Definition IpVector.hpp:48
    #define IPOPTLIB_EXPORT
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    bool IsValid(const SmartPtr< U > &smart_ptr)
    -
    U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    +
    bool IsValid(const SmartPtr< U > &smart_ptr)
    +
    U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    EJournalCategory
    Category Selection Enum.
    EJournalLevel
    Print Level Enum.
    diff --git a/IpCompoundSymMatrix_8hpp.html b/IpCompoundSymMatrix_8hpp.html index ebc434803..02da3b836 100644 --- a/IpCompoundSymMatrix_8hpp.html +++ b/IpCompoundSymMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpCompoundSymMatrix_8hpp_source.html b/IpCompoundSymMatrix_8hpp_source.html index 07d9952aa..e7426fae1 100644 --- a/IpCompoundSymMatrix_8hpp_source.html +++ b/IpCompoundSymMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -418,13 +418,13 @@
    Vector Base Class.
    Definition IpVector.hpp:48
    #define IPOPTLIB_EXPORT
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    bool IsValid(const SmartPtr< U > &smart_ptr)
    -
    U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    +
    bool IsValid(const SmartPtr< U > &smart_ptr)
    +
    U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    EJournalCategory
    Category Selection Enum.
    EJournalLevel
    Print Level Enum.
    ipnumber Number
    Type of all numbers.
    Definition IpTypes.hpp:17
    -
    bool IsNull(const SmartPtr< U > &smart_ptr)
    +
    bool IsNull(const SmartPtr< U > &smart_ptr)
    diff --git a/IpCompoundVector_8hpp.html b/IpCompoundVector_8hpp.html index 2018f4027..4d391d830 100644 --- a/IpCompoundVector_8hpp.html +++ b/IpCompoundVector_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpCompoundVector_8hpp_source.html b/IpCompoundVector_8hpp_source.html index 59a6ccf1e..21ceeb4e6 100644 --- a/IpCompoundVector_8hpp_source.html +++ b/IpCompoundVector_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -505,8 +505,8 @@
    Vector Base Class.
    Definition IpVector.hpp:48
    #define IPOPTLIB_EXPORT
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    bool IsValid(const SmartPtr< U > &smart_ptr)
    -
    U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    +
    bool IsValid(const SmartPtr< U > &smart_ptr)
    +
    U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    EJournalCategory
    Category Selection Enum.
    EJournalLevel
    Print Level Enum.
    diff --git a/IpConvCheck_8hpp.html b/IpConvCheck_8hpp.html index e2177f61e..6b494faef 100644 --- a/IpConvCheck_8hpp.html +++ b/IpConvCheck_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpConvCheck_8hpp_source.html b/IpConvCheck_8hpp_source.html index 2fb1b9c75..d8a7e795e 100644 --- a/IpConvCheck_8hpp_source.html +++ b/IpConvCheck_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpDebug_8hpp.html b/IpDebug_8hpp.html index bbfd510c1..1c0d5d320 100644 --- a/IpDebug_8hpp.html +++ b/IpDebug_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpDebug_8hpp_source.html b/IpDebug_8hpp_source.html index 96e6903bb..e4d78f211 100644 --- a/IpDebug_8hpp_source.html +++ b/IpDebug_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpDefaultIterateInitializer_8hpp.html b/IpDefaultIterateInitializer_8hpp.html index a9611ca40..e65e4f199 100644 --- a/IpDefaultIterateInitializer_8hpp.html +++ b/IpDefaultIterateInitializer_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpDefaultIterateInitializer_8hpp_source.html b/IpDefaultIterateInitializer_8hpp_source.html index dbdf5008e..0457fead4 100644 --- a/IpDefaultIterateInitializer_8hpp_source.html +++ b/IpDefaultIterateInitializer_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -264,7 +264,7 @@
    virtual bool SetInitialIterates()
    Compute the initial iterates and set the into the curr field of the ip_data object.
    static void RegisterOptions(SmartPtr< RegisteredOptions > reg_options)
    Class for all IPOPT specific calculated quantities.
    -
    Class to organize all the data required by the algorithm.
    +
    Class to organize all the data required by the algorithm.
    This is the abstract base class for classes that map the traditional NLP into something that is more ...
    Base class for all methods for initializing the iterates.
    Class responsible for all message output.
    diff --git a/IpDenseGenMatrix_8hpp.html b/IpDenseGenMatrix_8hpp.html index 6a26f95a0..02cf0d478 100644 --- a/IpDenseGenMatrix_8hpp.html +++ b/IpDenseGenMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpDenseGenMatrix_8hpp_source.html b/IpDenseGenMatrix_8hpp_source.html index d7a44cf27..d698fd317 100644 --- a/IpDenseGenMatrix_8hpp_source.html +++ b/IpDenseGenMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpDenseSymMatrix_8hpp.html b/IpDenseSymMatrix_8hpp.html index d2a6c7d9a..a38617097 100644 --- a/IpDenseSymMatrix_8hpp.html +++ b/IpDenseSymMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpDenseSymMatrix_8hpp_source.html b/IpDenseSymMatrix_8hpp_source.html index e4729539c..22113f377 100644 --- a/IpDenseSymMatrix_8hpp_source.html +++ b/IpDenseSymMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpDenseVector_8hpp.html b/IpDenseVector_8hpp.html index da4b9b557..d850acb5b 100644 --- a/IpDenseVector_8hpp.html +++ b/IpDenseVector_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpDenseVector_8hpp_source.html b/IpDenseVector_8hpp_source.html index 881cb39f1..db05348b2 100644 --- a/IpDenseVector_8hpp_source.html +++ b/IpDenseVector_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpDiagMatrix_8hpp.html b/IpDiagMatrix_8hpp.html index df318501c..f7c9e0a02 100644 --- a/IpDiagMatrix_8hpp.html +++ b/IpDiagMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpDiagMatrix_8hpp_source.html b/IpDiagMatrix_8hpp_source.html index be158b378..0a7152cee 100644 --- a/IpDiagMatrix_8hpp_source.html +++ b/IpDiagMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpEqMultCalculator_8hpp.html b/IpEqMultCalculator_8hpp.html index 203ce8f91..b4e47a854 100644 --- a/IpEqMultCalculator_8hpp.html +++ b/IpEqMultCalculator_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpEqMultCalculator_8hpp_source.html b/IpEqMultCalculator_8hpp_source.html index d28bbc758..28dfd2fbd 100644 --- a/IpEqMultCalculator_8hpp_source.html +++ b/IpEqMultCalculator_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpEquilibrationScaling_8hpp.html b/IpEquilibrationScaling_8hpp.html index e5e14b9f5..d3c967aca 100644 --- a/IpEquilibrationScaling_8hpp.html +++ b/IpEquilibrationScaling_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpEquilibrationScaling_8hpp_source.html b/IpEquilibrationScaling_8hpp_source.html index 47d33d014..194c707a1 100644 --- a/IpEquilibrationScaling_8hpp_source.html +++ b/IpEquilibrationScaling_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpExactHessianUpdater_8hpp.html b/IpExactHessianUpdater_8hpp.html index c06b45902..c761e070c 100644 --- a/IpExactHessianUpdater_8hpp.html +++ b/IpExactHessianUpdater_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpExactHessianUpdater_8hpp_source.html b/IpExactHessianUpdater_8hpp_source.html index caee7e4a3..96f10d274 100644 --- a/IpExactHessianUpdater_8hpp_source.html +++ b/IpExactHessianUpdater_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpException_8hpp.html b/IpException_8hpp.html index 861c5385b..50c2dee57 100644 --- a/IpException_8hpp.html +++ b/IpException_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpException_8hpp_source.html b/IpException_8hpp_source.html index 1c1877c2b..ffd9d7f1e 100644 --- a/IpException_8hpp_source.html +++ b/IpException_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpExpandedMultiVectorMatrix_8hpp.html b/IpExpandedMultiVectorMatrix_8hpp.html index 2927a53c6..bd49fe50c 100644 --- a/IpExpandedMultiVectorMatrix_8hpp.html +++ b/IpExpandedMultiVectorMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpExpandedMultiVectorMatrix_8hpp_source.html b/IpExpandedMultiVectorMatrix_8hpp_source.html index 4a690838c..b343a35da 100644 --- a/IpExpandedMultiVectorMatrix_8hpp_source.html +++ b/IpExpandedMultiVectorMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpExpansionMatrix_8hpp.html b/IpExpansionMatrix_8hpp.html index 51b562157..5a64508e9 100644 --- a/IpExpansionMatrix_8hpp.html +++ b/IpExpansionMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpExpansionMatrix_8hpp_source.html b/IpExpansionMatrix_8hpp_source.html index 6d5cf772d..4b4537609 100644 --- a/IpExpansionMatrix_8hpp_source.html +++ b/IpExpansionMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpFilterLSAcceptor_8hpp.html b/IpFilterLSAcceptor_8hpp.html index a7bdb739c..7775f3949 100644 --- a/IpFilterLSAcceptor_8hpp.html +++ b/IpFilterLSAcceptor_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpFilterLSAcceptor_8hpp_source.html b/IpFilterLSAcceptor_8hpp_source.html index 05002af10..8ed0ab12e 100644 --- a/IpFilterLSAcceptor_8hpp_source.html +++ b/IpFilterLSAcceptor_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpFilter_8hpp.html b/IpFilter_8hpp.html index bb55c5198..13f25338c 100644 --- a/IpFilter_8hpp.html +++ b/IpFilter_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpFilter_8hpp_source.html b/IpFilter_8hpp_source.html index 4421d7077..d691b6f37 100644 --- a/IpFilter_8hpp_source.html +++ b/IpFilter_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpGenAugSystemSolver_8hpp.html b/IpGenAugSystemSolver_8hpp.html index a560f6041..63e202656 100644 --- a/IpGenAugSystemSolver_8hpp.html +++ b/IpGenAugSystemSolver_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpGenAugSystemSolver_8hpp_source.html b/IpGenAugSystemSolver_8hpp_source.html index 93bfa810e..af19b661f 100644 --- a/IpGenAugSystemSolver_8hpp_source.html +++ b/IpGenAugSystemSolver_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpGenKKTSolverInterface_8hpp.html b/IpGenKKTSolverInterface_8hpp.html index 1bc98c391..6064cb5d6 100644 --- a/IpGenKKTSolverInterface_8hpp.html +++ b/IpGenKKTSolverInterface_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpGenKKTSolverInterface_8hpp_source.html b/IpGenKKTSolverInterface_8hpp_source.html index fa1deba67..3face12e4 100644 --- a/IpGenKKTSolverInterface_8hpp_source.html +++ b/IpGenKKTSolverInterface_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpGenTMatrix_8hpp.html b/IpGenTMatrix_8hpp.html index 723bff738..f1fee1396 100644 --- a/IpGenTMatrix_8hpp.html +++ b/IpGenTMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpGenTMatrix_8hpp_source.html b/IpGenTMatrix_8hpp_source.html index 0a0629a6b..d889aa11c 100644 --- a/IpGenTMatrix_8hpp_source.html +++ b/IpGenTMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpGradientScaling_8hpp.html b/IpGradientScaling_8hpp.html index 41e563863..9a9297b68 100644 --- a/IpGradientScaling_8hpp.html +++ b/IpGradientScaling_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpGradientScaling_8hpp_source.html b/IpGradientScaling_8hpp_source.html index 15e32d793..145b9ac1b 100644 --- a/IpGradientScaling_8hpp_source.html +++ b/IpGradientScaling_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpHessianUpdater_8hpp.html b/IpHessianUpdater_8hpp.html index 4a31c4a77..646305a82 100644 --- a/IpHessianUpdater_8hpp.html +++ b/IpHessianUpdater_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpHessianUpdater_8hpp_source.html b/IpHessianUpdater_8hpp_source.html index d2d0e3b67..58b11f069 100644 --- a/IpHessianUpdater_8hpp_source.html +++ b/IpHessianUpdater_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpIdentityMatrix_8hpp.html b/IpIdentityMatrix_8hpp.html index 83b636219..d65ddb71c 100644 --- a/IpIdentityMatrix_8hpp.html +++ b/IpIdentityMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpIdentityMatrix_8hpp_source.html b/IpIdentityMatrix_8hpp_source.html index 3ed063797..7c92b8942 100644 --- a/IpIdentityMatrix_8hpp_source.html +++ b/IpIdentityMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInexactAlgBuilder_8hpp.html b/IpInexactAlgBuilder_8hpp.html index 4822729ac..e73f589e1 100644 --- a/IpInexactAlgBuilder_8hpp.html +++ b/IpInexactAlgBuilder_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInexactAlgBuilder_8hpp_source.html b/IpInexactAlgBuilder_8hpp_source.html index a5eda60dc..2bbce51f9 100644 --- a/IpInexactAlgBuilder_8hpp_source.html +++ b/IpInexactAlgBuilder_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInexactCq_8hpp.html b/IpInexactCq_8hpp.html index 47836ba91..01078cc56 100644 --- a/IpInexactCq_8hpp.html +++ b/IpInexactCq_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInexactCq_8hpp_source.html b/IpInexactCq_8hpp_source.html index c5ddc0c24..6a2411583 100644 --- a/IpInexactCq_8hpp_source.html +++ b/IpInexactCq_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -269,8 +269,8 @@
    Class to organize all the additional data required by the Chen-Goldfarb penalty function algorithm.
    Base class for additional calculated quantities that is special to a particular type of algorithm,...
    Class for all IPOPT specific calculated quantities.
    -
    Class to organize all the data required by the algorithm.
    -
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    +
    Class to organize all the data required by the algorithm.
    +
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    This is the abstract base class for classes that map the traditional NLP into something that is more ...
    Class responsible for all message output.
    This class stores a list of user set options.
    diff --git a/IpInexactData_8hpp.html b/IpInexactData_8hpp.html index 923046f16..9d4f9e02b 100644 --- a/IpInexactData_8hpp.html +++ b/IpInexactData_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInexactData_8hpp_source.html b/IpInexactData_8hpp_source.html index 33c32c5d4..c13c58739 100644 --- a/IpInexactData_8hpp_source.html +++ b/IpInexactData_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -335,12 +335,12 @@
    bool compute_normal_
    current normal step computation flag
    void set_curr_nu(Number nu)
    -
    Base class for additional data that is special to a particular type of algorithm, such as the CG pena...
    +
    Base class for additional data that is special to a particular type of algorithm, such as the CG pena...
    Class responsible for all message output.
    This class stores a list of user set options.
    Template class for Smart Pointers.
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    +
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    ipnumber Number
    Type of all numbers.
    Definition IpTypes.hpp:17
    diff --git a/IpInexactDoglegNormal_8hpp.html b/IpInexactDoglegNormal_8hpp.html index fc2acd709..d9dc21072 100644 --- a/IpInexactDoglegNormal_8hpp.html +++ b/IpInexactDoglegNormal_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInexactDoglegNormal_8hpp_source.html b/IpInexactDoglegNormal_8hpp_source.html index 30f64a6de..31bc5f20b 100644 --- a/IpInexactDoglegNormal_8hpp_source.html +++ b/IpInexactDoglegNormal_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInexactLSAcceptor_8hpp.html b/IpInexactLSAcceptor_8hpp.html index 96b4bc1f1..ddee5fcb6 100644 --- a/IpInexactLSAcceptor_8hpp.html +++ b/IpInexactLSAcceptor_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInexactLSAcceptor_8hpp_source.html b/IpInexactLSAcceptor_8hpp_source.html index 36e00ede6..4cfc0654b 100644 --- a/IpInexactLSAcceptor_8hpp_source.html +++ b/IpInexactLSAcceptor_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -325,7 +325,7 @@
    virtual void PrepareRestoPhaseStart()
    Method that is called before the restoration phase is called.
    Number last_nu_low_
    Value of lower penalty parameter at beginning of the iteration.
    -
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    +
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    This class stores a list of user set options.
    Template class for Smart Pointers.
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    diff --git a/IpInexactNewtonNormal_8hpp.html b/IpInexactNewtonNormal_8hpp.html index d50a1474f..0834a548e 100644 --- a/IpInexactNewtonNormal_8hpp.html +++ b/IpInexactNewtonNormal_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInexactNewtonNormal_8hpp_source.html b/IpInexactNewtonNormal_8hpp_source.html index c6ae36d4a..bb4ae4d89 100644 --- a/IpInexactNewtonNormal_8hpp_source.html +++ b/IpInexactNewtonNormal_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -206,7 +206,7 @@
    void operator=(const InexactNewtonNormalStep &)
    Overloaded Assignment Operator.
    static void RegisterOptions(SmartPtr< RegisteredOptions > roptions)
    -
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    +
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    This class stores a list of user set options.
    Template class for Smart Pointers.
    Vector Base Class.
    Definition IpVector.hpp:48
    diff --git a/IpInexactNormalStepCalc_8hpp.html b/IpInexactNormalStepCalc_8hpp.html index eb7b80157..b97446016 100644 --- a/IpInexactNormalStepCalc_8hpp.html +++ b/IpInexactNormalStepCalc_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInexactNormalStepCalc_8hpp_source.html b/IpInexactNormalStepCalc_8hpp_source.html index 2820cc10e..589f0acb9 100644 --- a/IpInexactNormalStepCalc_8hpp_source.html +++ b/IpInexactNormalStepCalc_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -198,7 +198,7 @@
    InexactData & InexData()
    Method to easily access Inexact data.
    virtual bool ComputeNormalStep(SmartPtr< Vector > &normal_x, SmartPtr< Vector > &normal_s)=0
    Method for computing the normal step.
    -
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    +
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    This class stores a list of user set options.
    Template class for Smart Pointers.
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    diff --git a/IpInexactNormalTerminationTester_8hpp.html b/IpInexactNormalTerminationTester_8hpp.html index d57f3c669..439be1738 100644 --- a/IpInexactNormalTerminationTester_8hpp.html +++ b/IpInexactNormalTerminationTester_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInexactNormalTerminationTester_8hpp_source.html b/IpInexactNormalTerminationTester_8hpp_source.html index 99d994833..2bd0ada95 100644 --- a/IpInexactNormalTerminationTester_8hpp_source.html +++ b/IpInexactNormalTerminationTester_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInexactPDSolver_8hpp.html b/IpInexactPDSolver_8hpp.html index 694ffebc8..fcf3b797b 100644 --- a/IpInexactPDSolver_8hpp.html +++ b/IpInexactPDSolver_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInexactPDSolver_8hpp_source.html b/IpInexactPDSolver_8hpp_source.html index e0c725b40..cb65688ce 100644 --- a/IpInexactPDSolver_8hpp_source.html +++ b/IpInexactPDSolver_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -246,7 +246,7 @@
    InexactData & InexData()
    Method to easily access Inexact data.
    Number tcc_theta_mu_exponent_
    mu exponent when multiplied to theta in the tangential component condition
    -
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    +
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    Specialized CompoundVector class specifically for the algorithm iterates.
    Matrix Base Class.
    Definition IpMatrix.hpp:28
    This class stores a list of user set options.
    diff --git a/IpInexactPDTerminationTester_8hpp.html b/IpInexactPDTerminationTester_8hpp.html index 346702094..db8e632a9 100644 --- a/IpInexactPDTerminationTester_8hpp.html +++ b/IpInexactPDTerminationTester_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInexactPDTerminationTester_8hpp_source.html b/IpInexactPDTerminationTester_8hpp_source.html index 128940bbf..1dc893065 100644 --- a/IpInexactPDTerminationTester_8hpp_source.html +++ b/IpInexactPDTerminationTester_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInexactRegOp_8hpp.html b/IpInexactRegOp_8hpp.html index d3791e756..ccb25a961 100644 --- a/IpInexactRegOp_8hpp.html +++ b/IpInexactRegOp_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInexactRegOp_8hpp_source.html b/IpInexactRegOp_8hpp_source.html index 240e5dfee..058228b40 100644 --- a/IpInexactRegOp_8hpp_source.html +++ b/IpInexactRegOp_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInexactSearchDirCalc_8hpp.html b/IpInexactSearchDirCalc_8hpp.html index 0117338f5..0b933673e 100644 --- a/IpInexactSearchDirCalc_8hpp.html +++ b/IpInexactSearchDirCalc_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInexactSearchDirCalc_8hpp_source.html b/IpInexactSearchDirCalc_8hpp_source.html index 59c4483e6..0f9b477d3 100644 --- a/IpInexactSearchDirCalc_8hpp_source.html +++ b/IpInexactSearchDirCalc_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -227,7 +227,7 @@
    InexactSearchDirCalculator(SmartPtr< InexactNormalStepCalculator > normal_step_calculator, SmartPtr< InexactPDSolver > inexact_pd_solver)
    Constructor.
    SmartPtr< InexactNormalStepCalculator > normal_step_calculator_
    -
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    +
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    This class stores a list of user set options.
    Base class for computing the search direction for the line search.
    Template class for Smart Pointers.
    diff --git a/IpInexactTSymScalingMethod_8hpp.html b/IpInexactTSymScalingMethod_8hpp.html index 66413df20..09f95bdc9 100644 --- a/IpInexactTSymScalingMethod_8hpp.html +++ b/IpInexactTSymScalingMethod_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInexactTSymScalingMethod_8hpp_source.html b/IpInexactTSymScalingMethod_8hpp_source.html index 7bcb9b461..f7cd0d4a9 100644 --- a/IpInexactTSymScalingMethod_8hpp_source.html +++ b/IpInexactTSymScalingMethod_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInterfacesRegOp_8hpp.html b/IpInterfacesRegOp_8hpp.html index fc8a7e70e..08e820b99 100644 --- a/IpInterfacesRegOp_8hpp.html +++ b/IpInterfacesRegOp_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpInterfacesRegOp_8hpp_source.html b/IpInterfacesRegOp_8hpp_source.html index 050325df9..33e4228c6 100644 --- a/IpInterfacesRegOp_8hpp_source.html +++ b/IpInterfacesRegOp_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpIpoptAlg_8hpp.html b/IpIpoptAlg_8hpp.html index 69b796b58..c3b2650ae 100644 --- a/IpIpoptAlg_8hpp.html +++ b/IpIpoptAlg_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpIpoptAlg_8hpp_source.html b/IpIpoptAlg_8hpp_source.html index 7d861825e..030533476 100644 --- a/IpIpoptAlg_8hpp_source.html +++ b/IpIpoptAlg_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpIpoptApplication_8hpp.html b/IpIpoptApplication_8hpp.html index 2e915acef..3e0ac4a66 100644 --- a/IpIpoptApplication_8hpp.html +++ b/IpIpoptApplication_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpIpoptApplication_8hpp_source.html b/IpIpoptApplication_8hpp_source.html index b8e3e67fb..faddaab7a 100644 --- a/IpIpoptApplication_8hpp_source.html +++ b/IpIpoptApplication_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -372,7 +372,7 @@
    static void RegisterOptions(SmartPtr< RegisteredOptions > roptions)
    virtual SmartPtr< Journalist > Jnlst()
    Get the Journalist for printing output.
    Class for all IPOPT specific calculated quantities.
    -
    Class to organize all the data required by the algorithm.
    +
    Class to organize all the data required by the algorithm.
    This is the abstract base class for classes that map the traditional NLP into something that is more ...
    This class stores a list of user set options.
    Storing the reference count of all the smart pointers that currently reference it.
    @@ -380,7 +380,7 @@
    This class collects statistics about an optimization run, such as iteration count,...
    #define IPOPTLIB_EXPORT
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    +
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    EJournalLevel
    Print Level Enum.
    diff --git a/IpIpoptCalculatedQuantities_8hpp.html b/IpIpoptCalculatedQuantities_8hpp.html index 3a4d0b8a4..de5abf17d 100644 --- a/IpIpoptCalculatedQuantities_8hpp.html +++ b/IpIpoptCalculatedQuantities_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpIpoptCalculatedQuantities_8hpp_source.html b/IpIpoptCalculatedQuantities_8hpp_source.html index 80215d0a7..db3a99c52 100644 --- a/IpIpoptCalculatedQuantities_8hpp_source.html +++ b/IpIpoptCalculatedQuantities_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -952,7 +952,7 @@ -
    bool IsValid(const SmartPtr< U > &smart_ptr)
    +
    bool IsValid(const SmartPtr< U > &smart_ptr)
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    ipnumber Number
    Type of all numbers.
    Definition IpTypes.hpp:17
    diff --git a/IpIpoptData_8hpp.html b/IpIpoptData_8hpp.html index e64f9d03c..21f565cd1 100644 --- a/IpIpoptData_8hpp.html +++ b/IpIpoptData_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -115,6 +115,8 @@ #include "IpIteratesVector.hpp"
    #include "IpRegOptions.hpp"
    #include "IpTimingStatistics.hpp"
    +#include <sstream>
    +#include <iomanip>

    Go to the source code of this file.

    diff --git a/IpIpoptData_8hpp_source.html b/IpIpoptData_8hpp_source.html index 46e9b2850..de9db3a9c 100644 --- a/IpIpoptData_8hpp_source.html +++ b/IpIpoptData_8hpp_source.html @@ -39,7 +39,7 @@ + + + + + + diff --git a/IpUtils_8hpp.js b/IpUtils_8hpp.js index 849e4b1a2..cf409fe6e 100644 --- a/IpUtils_8hpp.js +++ b/IpUtils_8hpp.js @@ -12,6 +12,8 @@ var IpUtils_8hpp = [ "CpuTime", "IpUtils_8hpp.html#a43215400b0003aefcf90d79f41a808c2", null ], [ "SysTime", "IpUtils_8hpp.html#a62d4e6e8a001e92805f1604fdb89acd8", null ], [ "WallclockTime", "IpUtils_8hpp.html#ac6fbf9279d6af95abd5cd59b8d4e4c6d", null ], + [ "RegisterInterruptHandler", "IpUtils_8hpp.html#a67b597ce79fdd866ca80f49e553439ea", null ], + [ "UnregisterInterruptHandler", "IpUtils_8hpp.html#abd79708db843db3ec1a195cf1e1d7f82", null ], [ "Compare_le", "IpUtils_8hpp.html#a744080523cc4ae02aa31f3b73804ca9c", null ], [ "Snprintf", "IpUtils_8hpp.html#ac43c90f593330c83645a501860780f46", null ], [ "ComputeMemIncrease", "IpUtils_8hpp.html#ada77edb2d8946eb154f298386514c6a3", null ] diff --git a/IpUtils_8hpp_source.html b/IpUtils_8hpp_source.html index 943887a63..050cefead 100644 --- a/IpUtils_8hpp_source.html +++ b/IpUtils_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -122,764 +122,778 @@
    13#include "IpRegOptions.hpp"
    15
    -
    16namespace Ipopt
    -
    17{
    +
    16#include <sstream>
    +
    17#include <iomanip>
    18
    -
    19/* Forward declaration */
    -
    20class IpoptNLP;
    +
    19namespace Ipopt
    +
    20{
    21
    -
    - -
    30{
    -
    31public:
    -
    34
    -
    - -
    36 { }
    -
    +
    22/* Forward declaration */
    +
    23class IpoptNLP;
    +
    24
    +
    + +
    33{
    +
    34public:
    37
    -
    - -
    40 { }
    -
    -
    42
    -
    48 virtual bool Initialize(
    -
    49 const Journalist& jnlst,
    -
    50 const OptionsList& options,
    -
    51 const std::string& prefix
    -
    52 ) = 0;
    -
    53
    -
    55 virtual bool InitializeDataStructures() = 0;
    +
    + +
    39 { }
    +
    +
    40
    +
    + +
    43 { }
    +
    +
    45
    +
    51 virtual bool Initialize(
    +
    52 const Journalist& jnlst,
    +
    53 const OptionsList& options,
    +
    54 const std::string& prefix
    +
    55 ) = 0;
    56
    -
    62 virtual void AcceptTrialPoint() = 0;
    -
    63
    -
    64private:
    -
    75
    - - -
    78 );
    -
    79
    - - -
    83 );
    -
    85};
    -
    -
    86
    -
    - -
    98{
    -
    99public:
    -
    102
    - -
    104 SmartPtr<IpoptAdditionalData> add_data = NULL
    -
    105 );
    -
    106
    -
    108 virtual ~IpoptData();
    -
    110
    - -
    113 IpoptNLP& ip_nlp,
    -
    114 bool want_x,
    -
    115 bool want_y_c,
    -
    116 bool want_y_d,
    -
    117 bool want_z_L,
    -
    118 bool want_z_U
    -
    119 );
    -
    120
    - -
    127 const Journalist& jnlst,
    -
    128 const OptionsList& options,
    -
    129 const std::string& prefix
    -
    130 );
    -
    131
    +
    58 virtual bool InitializeDataStructures() = 0;
    +
    59
    +
    65 virtual void AcceptTrialPoint() = 0;
    +
    66
    +
    67private:
    +
    78
    + + +
    81 );
    +
    82
    + + +
    86 );
    +
    88};
    +
    +
    89
    +
    + +
    101{
    +
    102public:
    +
    105
    + +
    107 SmartPtr<IpoptAdditionalData> add_data = NULL
    +
    108 );
    +
    109
    +
    111 virtual ~IpoptData();
    +
    113
    + +
    116 IpoptNLP& ip_nlp,
    +
    117 bool want_x,
    +
    118 bool want_y_c,
    +
    119 bool want_y_d,
    +
    120 bool want_z_L,
    +
    121 bool want_z_U
    +
    122 );
    +
    123
    + +
    130 const Journalist& jnlst,
    +
    131 const OptionsList& options,
    +
    132 const std::string& prefix
    +
    133 );
    134
    -
    135 inline SmartPtr<const IteratesVector> curr() const;
    -
    136
    -
    142 // SmartPtr<IteratesVector> curr_container() const;
    -
    144 inline SmartPtr<const IteratesVector> trial() const;
    -
    145
    -
    151 //SmartPtr<IteratesVector> trial_container() const;
    -
    158 inline
    -
    159 void set_trial(
    - -
    161 );
    -
    162 /* ToDo: I may need to add versions of set_trial like the
    -
    163 * following, but I am not sure
    -
    164 */
    -
    165 // void set_trial(const SmartPtr<IteratesVector>& trial_iterates);
    -
    166 // void set_trial(SmartPtr<const IteratesVector>& trial_iterates);
    -
    167
    - -
    172 Number alpha,
    -
    173 const Vector& delta_x,
    -
    174 const Vector& delta_s
    -
    175 );
    - -
    181 Number alpha,
    -
    182 const Vector& delta_y_c,
    -
    183 const Vector& delta_y_d
    -
    184 );
    - -
    190 Number alpha,
    -
    191 const Vector& delta_z_L,
    -
    192 const Vector& delta_z_U,
    -
    193 const Vector& delta_v_L,
    -
    194 const Vector& delta_v_U
    -
    195 );
    -
    196
    -
    198 inline SmartPtr<const IteratesVector> delta() const;
    +
    137
    +
    138 inline SmartPtr<const IteratesVector> curr() const;
    +
    139
    +
    145 // SmartPtr<IteratesVector> curr_container() const;
    +
    147 inline SmartPtr<const IteratesVector> trial() const;
    +
    148
    +
    154 //SmartPtr<IteratesVector> trial_container() const;
    +
    161 inline
    +
    162 void set_trial(
    + +
    164 );
    +
    165 /* ToDo: I may need to add versions of set_trial like the
    +
    166 * following, but I am not sure
    +
    167 */
    +
    168 // void set_trial(const SmartPtr<IteratesVector>& trial_iterates);
    +
    169 // void set_trial(SmartPtr<const IteratesVector>& trial_iterates);
    +
    170
    + +
    175 Number alpha,
    +
    176 const Vector& delta_x,
    +
    177 const Vector& delta_s
    +
    178 );
    + +
    184 Number alpha,
    +
    185 const Vector& delta_y_c,
    +
    186 const Vector& delta_y_d
    +
    187 );
    + +
    193 Number alpha,
    +
    194 const Vector& delta_z_L,
    +
    195 const Vector& delta_z_U,
    +
    196 const Vector& delta_v_L,
    +
    197 const Vector& delta_v_U
    +
    198 );
    199
    -
    206 inline
    -
    207 void set_delta(
    - -
    209 );
    -
    210
    -
    219 inline
    -
    220 void set_delta(
    - -
    222 );
    -
    223
    -
    225 inline SmartPtr<const IteratesVector> delta_aff() const;
    +
    201 inline SmartPtr<const IteratesVector> delta() const;
    +
    202
    +
    209 inline
    +
    210 void set_delta(
    + +
    212 );
    +
    213
    +
    222 inline
    +
    223 void set_delta(
    + +
    225 );
    226
    -
    233 inline
    -
    234 void set_delta_aff(
    -
    235 SmartPtr<IteratesVector>& delta_aff
    -
    236 );
    -
    237
    -
    - -
    240 {
    -
    241 return W_;
    -
    242 }
    -
    -
    243
    -
    -
    245 void Set_W(
    - -
    247 )
    -
    248 {
    -
    249 W_ = W;
    -
    250 }
    -
    -
    251
    -
    261
    -
    -
    271 bool HaveDeltas() const
    -
    272 {
    -
    273 return have_deltas_;
    -
    274 }
    -
    -
    275
    -
    - -
    285 bool have_deltas
    -
    286 )
    -
    287 {
    -
    288 have_deltas_ = have_deltas;
    -
    289 }
    -
    -
    291
    -
    301
    -
    -
    311 bool HaveAffineDeltas() const
    -
    312 {
    -
    313 return have_affine_deltas_;
    -
    314 }
    -
    -
    315
    -
    - -
    325 bool have_affine_deltas
    -
    326 )
    -
    327 {
    -
    328 have_affine_deltas_ = have_affine_deltas;
    -
    329 }
    -
    -
    331
    +
    228 inline SmartPtr<const IteratesVector> delta_aff() const;
    +
    229
    +
    236 inline
    +
    237 void set_delta_aff(
    +
    238 SmartPtr<IteratesVector>& delta_aff
    +
    239 );
    +
    240
    +
    + +
    243 {
    +
    244 return W_;
    +
    245 }
    +
    +
    246
    +
    +
    248 void Set_W(
    + +
    250 )
    +
    251 {
    +
    252 W_ = W;
    +
    253 }
    +
    +
    254
    +
    264
    +
    +
    274 bool HaveDeltas() const
    +
    275 {
    +
    276 return have_deltas_;
    +
    277 }
    +
    +
    278
    +
    + +
    288 bool have_deltas
    +
    289 )
    +
    290 {
    +
    291 have_deltas_ = have_deltas;
    +
    292 }
    +
    +
    294
    +
    304
    +
    +
    314 bool HaveAffineDeltas() const
    +
    315 {
    +
    316 return have_affine_deltas_;
    +
    317 }
    +
    +
    318
    +
    + +
    328 bool have_affine_deltas
    +
    329 )
    +
    330 {
    +
    331 have_affine_deltas_ = have_affine_deltas;
    +
    332 }
    +
    334
    -
    335 inline
    -
    336 void CopyTrialToCurrent();
    337
    - -
    341
    -
    - -
    345 {
    -
    346 return iter_count_;
    -
    347 }
    -
    -
    - -
    349 Index iter_count
    -
    350 )
    -
    351 {
    -
    352 iter_count_ = iter_count;
    -
    353 }
    -
    -
    354
    -
    - -
    356 {
    -
    357 DBG_ASSERT(mu_initialized_);
    -
    358 return curr_mu_;
    -
    359 }
    -
    -
    -
    360 void Set_mu(
    -
    361 Number mu
    -
    362 )
    -
    363 {
    -
    364 curr_mu_ = mu;
    -
    365 mu_initialized_ = true;
    -
    366 }
    -
    -
    -
    367 bool MuInitialized() const
    -
    368 {
    -
    369 return mu_initialized_;
    -
    370 }
    -
    -
    371
    -
    - -
    373 {
    -
    374 DBG_ASSERT(tau_initialized_);
    -
    375 return curr_tau_;
    -
    376 }
    -
    -
    - -
    378 Number tau
    -
    379 )
    -
    380 {
    -
    381 curr_tau_ = tau;
    -
    382 tau_initialized_ = true;
    -
    383 }
    -
    -
    -
    384 bool TauInitialized() const
    -
    385 {
    -
    386 return tau_initialized_;
    -
    387 }
    -
    -
    388
    -
    - -
    390 bool free_mu_mode
    -
    391 )
    -
    392 {
    -
    393 free_mu_mode_ = free_mu_mode;
    -
    394 }
    -
    -
    -
    395 bool FreeMuMode() const
    -
    396 {
    -
    397 return free_mu_mode_;
    -
    398 }
    -
    -
    399
    -
    - -
    404 bool flag
    -
    405 )
    -
    406 {
    -
    407 tiny_step_flag_ = flag;
    -
    408 }
    -
    -
    - -
    410 {
    -
    411 return tiny_step_flag_;
    -
    412 }
    -
    -
    414
    -
    423
    -
    -
    424 Number tol() const
    -
    425 {
    -
    426 DBG_ASSERT(initialize_called_);
    -
    427 return tol_;
    -
    428 }
    -
    -
    - -
    440 Number tol
    -
    441 )
    -
    442 {
    -
    443 tol_ = tol;
    -
    444 }
    -
    -
    446
    - -
    - -
    456 {
    -
    457 return timing_statistics_.OverallAlgorithm().StartCpuTime();
    -
    458 }
    -
    -
    459
    -
    - -
    463 {
    -
    464 return info_regu_x_;
    -
    465 }
    -
    -
    - -
    467 Number regu_x
    -
    468 )
    -
    469 {
    -
    470 info_regu_x_ = regu_x;
    -
    471 }
    -
    -
    - -
    473 {
    -
    474 return info_alpha_primal_;
    -
    475 }
    -
    -
    - -
    477 Number alpha_primal
    -
    478 )
    -
    479 {
    -
    480 info_alpha_primal_ = alpha_primal;
    -
    481 }
    -
    -
    - -
    483 {
    -
    484 return info_alpha_primal_char_;
    -
    485 }
    -
    -
    - -
    487 char info_alpha_primal_char
    -
    488 )
    -
    489 {
    -
    490 info_alpha_primal_char_ = info_alpha_primal_char;
    -
    491 }
    -
    -
    - -
    493 {
    -
    494 return info_alpha_dual_;
    -
    495 }
    -
    -
    - -
    497 Number alpha_dual
    -
    498 )
    -
    499 {
    -
    500 info_alpha_dual_ = alpha_dual;
    -
    501 }
    -
    -
    - -
    503 {
    -
    504 return info_ls_count_;
    -
    505 }
    -
    -
    - -
    507 Index ls_count
    -
    508 )
    -
    509 {
    -
    510 info_ls_count_ = ls_count;
    -
    511 }
    -
    -
    -
    512 bool info_skip_output() const
    -
    513 {
    -
    514 return info_skip_output_;
    -
    515 }
    -
    -
    - -
    517 const std::string& add_str
    -
    518 )
    -
    519 {
    -
    520 info_string_ += add_str;
    -
    521 }
    -
    -
    -
    522 const std::string& info_string() const
    -
    523 {
    -
    524 return info_string_;
    -
    525 }
    -
    -
    - -
    530 bool info_skip_output
    -
    531 )
    -
    532 {
    -
    533 info_skip_output_ = info_skip_output;
    +
    338 inline
    +
    339 void CopyTrialToCurrent();
    +
    340
    + +
    344
    +
    + +
    348 {
    +
    349 return iter_count_;
    +
    350 }
    +
    +
    + +
    352 Index iter_count
    +
    353 )
    +
    354 {
    +
    355 iter_count_ = iter_count;
    +
    356 }
    +
    +
    357
    +
    + +
    359 {
    +
    360 DBG_ASSERT(mu_initialized_);
    +
    361 return curr_mu_;
    +
    362 }
    +
    +
    +
    363 void Set_mu(
    +
    364 Number mu
    +
    365 )
    +
    366 {
    +
    367 curr_mu_ = mu;
    +
    368 mu_initialized_ = true;
    +
    369 }
    +
    +
    +
    370 bool MuInitialized() const
    +
    371 {
    +
    372 return mu_initialized_;
    +
    373 }
    +
    +
    374
    +
    + +
    376 {
    +
    377 DBG_ASSERT(tau_initialized_);
    +
    378 return curr_tau_;
    +
    379 }
    +
    +
    + +
    381 Number tau
    +
    382 )
    +
    383 {
    +
    384 curr_tau_ = tau;
    +
    385 tau_initialized_ = true;
    +
    386 }
    +
    +
    +
    387 bool TauInitialized() const
    +
    388 {
    +
    389 return tau_initialized_;
    +
    390 }
    +
    +
    391
    +
    + +
    393 bool free_mu_mode
    +
    394 )
    +
    395 {
    +
    396 free_mu_mode_ = free_mu_mode;
    +
    397 }
    +
    +
    +
    398 bool FreeMuMode() const
    +
    399 {
    +
    400 return free_mu_mode_;
    +
    401 }
    +
    +
    402
    +
    + +
    407 bool flag
    +
    408 )
    +
    409 {
    +
    410 tiny_step_flag_ = flag;
    +
    411 }
    +
    +
    + +
    413 {
    +
    414 return tiny_step_flag_;
    +
    415 }
    +
    +
    417
    +
    426
    +
    +
    427 Number tol() const
    +
    428 {
    +
    429 DBG_ASSERT(initialize_called_);
    +
    430 return tol_;
    +
    431 }
    +
    +
    + +
    443 Number tol
    +
    444 )
    +
    445 {
    +
    446 tol_ = tol;
    +
    447 }
    +
    +
    449
    + +
    + +
    459 {
    +
    460 return timing_statistics_.OverallAlgorithm().StartCpuTime();
    +
    461 }
    +
    +
    462
    +
    + +
    466 {
    +
    467 return info_regu_x_;
    +
    468 }
    +
    +
    + +
    470 Number regu_x
    +
    471 )
    +
    472 {
    +
    473 info_regu_x_ = regu_x;
    +
    474 }
    +
    +
    + +
    476 {
    +
    477 return info_alpha_primal_;
    +
    478 }
    +
    +
    + +
    480 Number alpha_primal
    +
    481 )
    +
    482 {
    +
    483 info_alpha_primal_ = alpha_primal;
    +
    484 }
    +
    +
    + +
    486 {
    +
    487 return info_alpha_primal_char_;
    +
    488 }
    +
    +
    + +
    490 char info_alpha_primal_char
    +
    491 )
    +
    492 {
    +
    493 info_alpha_primal_char_ = info_alpha_primal_char;
    +
    494 }
    +
    +
    + +
    496 {
    +
    497 return info_alpha_dual_;
    +
    498 }
    +
    +
    + +
    500 Number alpha_dual
    +
    501 )
    +
    502 {
    +
    503 info_alpha_dual_ = alpha_dual;
    +
    504 }
    +
    +
    + +
    506 {
    +
    507 return info_ls_count_;
    +
    508 }
    +
    +
    + +
    510 Index ls_count
    +
    511 )
    +
    512 {
    +
    513 info_ls_count_ = ls_count;
    +
    514 }
    +
    +
    +
    515 bool info_skip_output() const
    +
    516 {
    +
    517 return info_skip_output_;
    +
    518 }
    +
    +
    + +
    520 const std::string& add_str
    +
    521 )
    +
    522 {
    +
    523 info_string_ += add_str;
    +
    524 }
    +
    +
    + +
    527 const std::string& add_str,
    +
    528 double value
    +
    529 )
    +
    530 {
    +
    531 std::ostringstream sstream;
    +
    532 sstream << add_str << '=' << std::setw(8) << std::setprecision(2) << std::scientific << value;
    +
    533 info_string_ += sstream.str();
    534 }
    -
    535
    -
    - -
    538 {
    -
    539 return info_last_output_;
    -
    540 }
    +
    +
    535 const std::string& info_string() const
    +
    536 {
    +
    537 return info_string_;
    +
    538 }
    - -
    543 Number info_last_output
    + +
    543 bool info_skip_output
    544 )
    545 {
    -
    546 info_last_output_ = info_last_output;
    +
    546 info_skip_output_ = info_skip_output;
    547 }
    548
    -
    - -
    553 {
    -
    554 return info_iters_since_header_;
    -
    555 }
    -
    -
    - -
    560 {
    -
    561 info_iters_since_header_++;
    -
    562 }
    -
    -
    - -
    567 int info_iters_since_header
    -
    568 )
    -
    569 {
    -
    570 info_iters_since_header_ = info_iters_since_header;
    -
    571 }
    -
    -
    572
    -
    - -
    575 {
    -
    576 info_regu_x_ = 0;
    -
    577 info_alpha_primal_ = 0;
    -
    578 info_alpha_dual_ = 0.;
    -
    579 info_alpha_primal_char_ = ' ';
    -
    580 info_skip_output_ = false;
    -
    581 info_string_.erase();
    -
    582 }
    -
    -
    584
    -
    - -
    587 {
    -
    588 return timing_statistics_;
    -
    589 }
    -
    -
    590
    -
    - -
    596 {
    -
    597 return timing_statistics_;
    -
    598 }
    -
    -
    599
    -
    - -
    602 {
    -
    603 return IsValid(add_data_);
    -
    604 }
    -
    -
    605
    -
    - -
    608 {
    -
    609 return *add_data_;
    -
    610 }
    -
    -
    611
    -
    - - -
    615 )
    -
    616 {
    -
    617 // cppcheck-suppress assertWithSideEffect
    -
    618 DBG_ASSERT(!HaveAddData());
    -
    619 add_data_ = add_data;
    -
    620 }
    -
    -
    621
    -
    - -
    624 Number pd_pert_x,
    -
    625 Number pd_pert_s,
    -
    626 Number pd_pert_c,
    -
    627 Number pd_pert_d
    +
    + +
    551 {
    +
    552 return info_last_output_;
    +
    553 }
    +
    +
    + +
    556 Number info_last_output
    +
    557 )
    +
    558 {
    +
    559 info_last_output_ = info_last_output;
    +
    560 }
    +
    +
    561
    +
    + +
    566 {
    +
    567 return info_iters_since_header_;
    +
    568 }
    +
    +
    + +
    573 {
    +
    574 info_iters_since_header_++;
    +
    575 }
    +
    +
    + +
    580 int info_iters_since_header
    +
    581 )
    +
    582 {
    +
    583 info_iters_since_header_ = info_iters_since_header;
    +
    584 }
    +
    +
    585
    +
    + +
    588 {
    +
    589 info_regu_x_ = 0;
    +
    590 info_alpha_primal_ = 0;
    +
    591 info_alpha_dual_ = 0.;
    +
    592 info_alpha_primal_char_ = ' ';
    +
    593 info_skip_output_ = false;
    +
    594 info_string_.erase();
    +
    595 }
    +
    +
    597
    +
    + +
    600 {
    +
    601 return timing_statistics_;
    +
    602 }
    +
    +
    603
    +
    + +
    609 {
    +
    610 return timing_statistics_;
    +
    611 }
    +
    +
    612
    +
    + +
    615 {
    +
    616 return IsValid(add_data_);
    +
    617 }
    +
    +
    618
    +
    + +
    621 {
    +
    622 return *add_data_;
    +
    623 }
    +
    +
    624
    +
    + +
    628 )
    629 {
    -
    630 pd_pert_x_ = pd_pert_x;
    -
    631 pd_pert_s_ = pd_pert_s;
    -
    632 pd_pert_c_ = pd_pert_c;
    -
    633 pd_pert_d_ = pd_pert_d;
    -
    634 }
    -
    -
    635
    -
    - -
    638 Number& pd_pert_x,
    -
    639 Number& pd_pert_s,
    -
    640 Number& pd_pert_c,
    -
    641 Number& pd_pert_d
    -
    642 )
    -
    643 {
    -
    644 pd_pert_x = pd_pert_x_;
    -
    645 pd_pert_s = pd_pert_s_;
    -
    646 pd_pert_c = pd_pert_c_;
    -
    647 pd_pert_d = pd_pert_d_;
    -
    648 }
    -
    -
    649
    -
    650 static void RegisterOptions(
    -
    651 const SmartPtr<RegisteredOptions>& roptions
    -
    652 );
    -
    653
    -
    654private:
    -
    657
    - -
    659
    - +
    630 // cppcheck-suppress assertWithSideEffect
    +
    631 DBG_ASSERT(!HaveAddData());
    +
    632 add_data_ = add_data;
    +
    633 }
    +
    +
    634
    +
    + +
    637 Number pd_pert_x,
    +
    638 Number pd_pert_s,
    +
    639 Number pd_pert_c,
    +
    640 Number pd_pert_d
    +
    641 )
    +
    642 {
    +
    643 pd_pert_x_ = pd_pert_x;
    +
    644 pd_pert_s_ = pd_pert_s;
    +
    645 pd_pert_c_ = pd_pert_c;
    +
    646 pd_pert_d_ = pd_pert_d;
    +
    647 }
    +
    +
    648
    +
    + +
    651 Number& pd_pert_x,
    +
    652 Number& pd_pert_s,
    +
    653 Number& pd_pert_c,
    +
    654 Number& pd_pert_d
    +
    655 )
    +
    656 {
    +
    657 pd_pert_x = pd_pert_x_;
    +
    658 pd_pert_s = pd_pert_s_;
    +
    659 pd_pert_c = pd_pert_c_;
    +
    660 pd_pert_d = pd_pert_d_;
    +
    661 }
    +
    662
    - -
    665
    - -
    676 // ToDo we could cue off of a null delta_
    - -
    679
    - -
    695 // ToDo we could cue off of a null delta_aff_
    - -
    698
    - -
    701
    - - -
    705
    - - -
    709
    - -
    712
    - -
    717
    -
    726
    - -
    729
    -
    732
    - - -
    737
    -
    740
    - - - - - - -
    755 std::string info_string_;
    - - -
    763
    - -
    766
    - -
    769
    - -
    774
    - - - - +
    663 static void RegisterOptions(
    +
    664 const SmartPtr<RegisteredOptions>& roptions
    +
    665 );
    +
    666
    +
    667private:
    +
    670
    + +
    672
    + +
    675
    + +
    678
    + +
    689 // ToDo we could cue off of a null delta_
    + +
    692
    + +
    708 // ToDo we could cue off of a null delta_aff_
    + +
    711
    + +
    714
    + + +
    718
    + + +
    722
    + +
    725
    + +
    730
    +
    739
    + +
    742
    +
    745
    + + +
    750
    +
    753
    + + + + + + +
    768 std::string info_string_;
    + + +
    776
    + +
    779
    +
    782
    -
    793
    - -
    795 const IpoptData&
    -
    796 );
    -
    797
    - -
    800 const IpoptData&
    -
    801 );
    -
    803
    -
    804#if IPOPT_CHECKLEVEL > 0
    -
    809 TaggedObject::Tag debug_curr_tag_;
    -
    810 TaggedObject::Tag debug_trial_tag_;
    -
    811 TaggedObject::Tag debug_delta_tag_;
    -
    812 TaggedObject::Tag debug_delta_aff_tag_;
    -
    813 TaggedObject::Tag debug_curr_tag_sum_;
    -
    814 TaggedObject::Tag debug_trial_tag_sum_;
    -
    815 TaggedObject::Tag debug_delta_tag_sum_;
    -
    816 TaggedObject::Tag debug_delta_aff_tag_sum_;
    -
    818#endif
    -
    819
    -
    820};
    -
    -
    821
    -
    - -
    823{
    -
    824 DBG_ASSERT(IsNull(curr_) || (curr_->GetTag() == debug_curr_tag_ && curr_->GetTagSum() == debug_curr_tag_sum_) );
    -
    825
    -
    826 return curr_;
    -
    827}
    -
    -
    828
    -
    - -
    830{
    -
    831 DBG_ASSERT(IsNull(trial_) || (trial_->GetTag() == debug_trial_tag_ && trial_->GetTagSum() == debug_trial_tag_sum_) );
    + +
    787
    + + + + +
    795
    +
    806
    + +
    808 const IpoptData&
    +
    809 );
    +
    810
    + +
    813 const IpoptData&
    +
    814 );
    +
    816
    +
    817#if IPOPT_CHECKLEVEL > 0
    +
    822 TaggedObject::Tag debug_curr_tag_;
    +
    823 TaggedObject::Tag debug_trial_tag_;
    +
    824 TaggedObject::Tag debug_delta_tag_;
    +
    825 TaggedObject::Tag debug_delta_aff_tag_;
    +
    826 TaggedObject::Tag debug_curr_tag_sum_;
    +
    827 TaggedObject::Tag debug_trial_tag_sum_;
    +
    828 TaggedObject::Tag debug_delta_tag_sum_;
    +
    829 TaggedObject::Tag debug_delta_aff_tag_sum_;
    +
    831#endif
    832
    -
    833 return trial_;
    -
    834}
    -
    -
    835
    -
    - -
    837{
    -
    838 DBG_ASSERT(IsNull(delta_) || (delta_->GetTag() == debug_delta_tag_ && delta_->GetTagSum() == debug_delta_tag_sum_) );
    -
    839
    -
    840 return delta_;
    -
    841}
    -
    -
    842
    -
    - -
    844{
    -
    845 DBG_ASSERT(IsNull(delta_aff_) || (delta_aff_->GetTag() == debug_delta_aff_tag_ && delta_aff_->GetTagSum() == debug_delta_aff_tag_sum_) );
    -
    846
    -
    847 return delta_aff_;
    -
    848}
    -
    -
    849
    -
    850inline
    -
    - -
    852{
    -
    853 curr_ = trial_;
    -
    854#if IPOPT_CHECKLEVEL > 0
    +
    833};
    +
    +
    834
    +
    + +
    836{
    +
    837 DBG_ASSERT(IsNull(curr_) || (curr_->GetTag() == debug_curr_tag_ && curr_->GetTagSum() == debug_curr_tag_sum_) );
    +
    838
    +
    839 return curr_;
    +
    840}
    +
    +
    841
    +
    + +
    843{
    +
    844 DBG_ASSERT(IsNull(trial_) || (trial_->GetTag() == debug_trial_tag_ && trial_->GetTagSum() == debug_trial_tag_sum_) );
    +
    845
    +
    846 return trial_;
    +
    847}
    +
    +
    848
    +
    + +
    850{
    +
    851 DBG_ASSERT(IsNull(delta_) || (delta_->GetTag() == debug_delta_tag_ && delta_->GetTagSum() == debug_delta_tag_sum_) );
    +
    852
    +
    853 return delta_;
    +
    854}
    +
    855
    -
    856 if (IsValid(curr_))
    -
    857 {
    -
    858 debug_curr_tag_ = curr_->GetTag();
    -
    859 debug_curr_tag_sum_ = curr_->GetTagSum();
    -
    860 }
    -
    861 else
    -
    862 {
    -
    863 debug_curr_tag_ = 0;
    -
    864 debug_curr_tag_sum_ = 0;
    -
    865 }
    -
    866#endif
    -
    867
    -
    868}
    -
    -
    869
    -
    870inline
    -
    - - -
    873)
    -
    874{
    - -
    876
    -
    877#if IPOPT_CHECKLEVEL > 0
    -
    878 // verify the correct space
    -
    879 DBG_ASSERT(trial_->OwnerSpace() == static_cast<VectorSpace*>(GetRawPtr(iterates_space_)));
    -
    880 if (IsValid(trial))
    -
    881 {
    -
    882 debug_trial_tag_ = trial->GetTag();
    -
    883 debug_trial_tag_sum_ = trial->GetTagSum();
    -
    884 }
    -
    885 else
    -
    886 {
    -
    887 debug_trial_tag_ = 0;
    -
    888 debug_trial_tag_sum_ = 0;
    -
    889 }
    -
    890#endif
    -
    891
    -
    892 trial = NULL;
    -
    893}
    -
    -
    894
    -
    895inline
    -
    - - -
    898)
    -
    899{
    - -
    901#if IPOPT_CHECKLEVEL > 0
    -
    902
    -
    903 if (IsValid(delta))
    -
    904 {
    -
    905 debug_delta_tag_ = delta->GetTag();
    -
    906 debug_delta_tag_sum_ = delta->GetTagSum();
    -
    907 }
    -
    908 else
    -
    909 {
    -
    910 debug_delta_tag_ = 0;
    -
    911 debug_delta_tag_sum_ = 0;
    -
    912 }
    -
    913#endif
    -
    914
    -
    915 delta = NULL;
    -
    916}
    -
    -
    917
    -
    918inline
    -
    - - -
    921)
    -
    922{
    -
    923 delta_ = delta;
    -
    924#if IPOPT_CHECKLEVEL > 0
    -
    925
    -
    926 if (IsValid(delta))
    -
    927 {
    -
    928 debug_delta_tag_ = delta->GetTag();
    -
    929 debug_delta_tag_sum_ = delta->GetTagSum();
    -
    930 }
    -
    931 else
    -
    932 {
    -
    933 debug_delta_tag_ = 0;
    -
    934 debug_delta_tag_sum_ = 0;
    -
    935 }
    -
    936#endif
    -
    937
    -
    938 delta = NULL;
    -
    939}
    -
    -
    940
    -
    941inline
    -
    - -
    943 SmartPtr<IteratesVector>& delta_aff
    -
    944)
    -
    945{
    - -
    947#if IPOPT_CHECKLEVEL > 0
    -
    948
    -
    949 if (IsValid(delta_aff))
    -
    950 {
    -
    951 debug_delta_aff_tag_ = delta_aff->GetTag();
    -
    952 debug_delta_aff_tag_sum_ = delta_aff->GetTagSum();
    -
    953 }
    -
    954 else
    -
    955 {
    -
    956 debug_delta_aff_tag_ = 0;
    -
    957 debug_delta_aff_tag_sum_ = delta_aff->GetTagSum();
    -
    958 }
    -
    959#endif
    -
    960
    -
    961 delta_aff = NULL;
    -
    962}
    -
    -
    963
    -
    964} // namespace Ipopt
    -
    965
    -
    966#endif
    +
    + +
    857{
    +
    858 DBG_ASSERT(IsNull(delta_aff_) || (delta_aff_->GetTag() == debug_delta_aff_tag_ && delta_aff_->GetTagSum() == debug_delta_aff_tag_sum_) );
    +
    859
    +
    860 return delta_aff_;
    +
    861}
    +
    +
    862
    +
    863inline
    +
    + +
    865{
    +
    866 curr_ = trial_;
    +
    867#if IPOPT_CHECKLEVEL > 0
    +
    868
    +
    869 if (IsValid(curr_))
    +
    870 {
    +
    871 debug_curr_tag_ = curr_->GetTag();
    +
    872 debug_curr_tag_sum_ = curr_->GetTagSum();
    +
    873 }
    +
    874 else
    +
    875 {
    +
    876 debug_curr_tag_ = 0;
    +
    877 debug_curr_tag_sum_ = 0;
    +
    878 }
    +
    879#endif
    +
    880
    +
    881}
    +
    +
    882
    +
    883inline
    +
    + + +
    886)
    +
    887{
    + +
    889
    +
    890#if IPOPT_CHECKLEVEL > 0
    +
    891 // verify the correct space
    +
    892 DBG_ASSERT(trial_->OwnerSpace() == static_cast<VectorSpace*>(GetRawPtr(iterates_space_)));
    +
    893 if (IsValid(trial))
    +
    894 {
    +
    895 debug_trial_tag_ = trial->GetTag();
    +
    896 debug_trial_tag_sum_ = trial->GetTagSum();
    +
    897 }
    +
    898 else
    +
    899 {
    +
    900 debug_trial_tag_ = 0;
    +
    901 debug_trial_tag_sum_ = 0;
    +
    902 }
    +
    903#endif
    +
    904
    +
    905 trial = NULL;
    +
    906}
    +
    +
    907
    +
    908inline
    +
    + + +
    911)
    +
    912{
    + +
    914#if IPOPT_CHECKLEVEL > 0
    +
    915
    +
    916 if (IsValid(delta))
    +
    917 {
    +
    918 debug_delta_tag_ = delta->GetTag();
    +
    919 debug_delta_tag_sum_ = delta->GetTagSum();
    +
    920 }
    +
    921 else
    +
    922 {
    +
    923 debug_delta_tag_ = 0;
    +
    924 debug_delta_tag_sum_ = 0;
    +
    925 }
    +
    926#endif
    +
    927
    +
    928 delta = NULL;
    +
    929}
    +
    +
    930
    +
    931inline
    +
    + + +
    934)
    +
    935{
    +
    936 delta_ = delta;
    +
    937#if IPOPT_CHECKLEVEL > 0
    +
    938
    +
    939 if (IsValid(delta))
    +
    940 {
    +
    941 debug_delta_tag_ = delta->GetTag();
    +
    942 debug_delta_tag_sum_ = delta->GetTagSum();
    +
    943 }
    +
    944 else
    +
    945 {
    +
    946 debug_delta_tag_ = 0;
    +
    947 debug_delta_tag_sum_ = 0;
    +
    948 }
    +
    949#endif
    +
    950
    +
    951 delta = NULL;
    +
    952}
    +
    +
    953
    +
    954inline
    +
    + +
    956 SmartPtr<IteratesVector>& delta_aff
    +
    957)
    +
    958{
    + +
    960#if IPOPT_CHECKLEVEL > 0
    +
    961
    +
    962 if (IsValid(delta_aff))
    +
    963 {
    +
    964 debug_delta_aff_tag_ = delta_aff->GetTag();
    +
    965 debug_delta_aff_tag_sum_ = delta_aff->GetTagSum();
    +
    966 }
    +
    967 else
    +
    968 {
    +
    969 debug_delta_aff_tag_ = 0;
    +
    970 debug_delta_aff_tag_sum_ = delta_aff->GetTagSum();
    +
    971 }
    +
    972#endif
    +
    973
    +
    974 delta_aff = NULL;
    +
    975}
    +
    +
    976
    +
    977} // namespace Ipopt
    +
    978
    +
    979#endif
    #define DBG_ASSERT(test)
    Definition IpDebug.hpp:27
    @@ -887,115 +901,116 @@
    #define IPOPT_DEPRECATED
    macro to declare symbols as deprecated
    Definition IpTypes.h:25
    -
    Base class for additional data that is special to a particular type of algorithm, such as the CG pena...
    -
    IpoptAdditionalData()
    Default Constructor.
    +
    Base class for additional data that is special to a particular type of algorithm, such as the CG pena...
    +
    IpoptAdditionalData()
    Default Constructor.
    IpoptAdditionalData(const IpoptAdditionalData &)
    Copy Constructor.
    void operator=(const IpoptAdditionalData &)
    Default Assignment Operator.
    virtual bool Initialize(const Journalist &jnlst, const OptionsList &options, const std::string &prefix)=0
    This method is called to initialize the global algorithmic parameters.
    virtual bool InitializeDataStructures()=0
    Initialize Data Structures at the beginning.
    -
    virtual ~IpoptAdditionalData()
    Destructor.
    +
    virtual ~IpoptAdditionalData()
    Destructor.
    virtual void AcceptTrialPoint()=0
    Do whatever is necessary to accept a trial point as current iterate.
    -
    Class to organize all the data required by the algorithm.
    -
    TimingStatistics timing_statistics_
    TimingStatistics object collecting all Ipopt timing statistics.
    - -
    Number info_alpha_primal() const
    - -
    Index info_ls_count_
    Number of backtracking trial steps.
    +
    Class to organize all the data required by the algorithm.
    +
    TimingStatistics timing_statistics_
    TimingStatistics object collecting all Ipopt timing statistics.
    + +
    Number info_alpha_primal() const
    + +
    Index info_ls_count_
    Number of backtracking trial steps.
    void operator=(const IpoptData &)
    Default Assignment Operator.
    -
    bool HaveAddData()
    Check if additional data has been set.
    -
    Number info_regu_x() const
    -
    std::string info_string_
    any string of characters for the end of the output line
    -
    const std::string & info_string() const
    -
    void set_delta_aff(SmartPtr< IteratesVector > &delta_aff)
    Set the affine delta.
    -
    void Append_info_string(const std::string &add_str)
    -
    void setPDPert(Number pd_pert_x, Number pd_pert_s, Number pd_pert_c, Number pd_pert_d)
    Set the perturbation of the primal-dual system.
    -
    bool free_mu_mode_
    flag indicating whether the algorithm is in the free mu mode
    -
    void Set_info_last_output(Number info_last_output)
    sets time when the last summary output line was printed
    -
    SmartPtr< const SymMatrix > W()
    Hessian or Hessian approximation (do not hold on to it, it might be changed)
    - -
    void Set_info_regu_x(Number regu_x)
    -
    void Set_W(SmartPtr< const SymMatrix > W)
    Set Hessian approximation.
    -
    SmartPtr< const IteratesVector > trial_
    Main iteration variables (trial calculations)
    -
    SmartPtr< const IteratesVector > delta_aff_
    -
    void Inc_info_iters_since_header()
    increases number of iteration summaries actually printed since last summary header was printed
    -
    bool have_deltas_
    The following flag is set to true, if some other part of the algorithm (like the method for computing...
    -
    bool initialize_called_
    flag indicating if Initialize method has been called (for debugging)
    -
    Index info_ls_count() const
    +
    bool HaveAddData()
    Check if additional data has been set.
    +
    Number info_regu_x() const
    +
    std::string info_string_
    any string of characters for the end of the output line
    +
    const std::string & info_string() const
    +
    void set_delta_aff(SmartPtr< IteratesVector > &delta_aff)
    Set the affine delta.
    +
    void Append_info_string(const std::string &add_str)
    +
    void setPDPert(Number pd_pert_x, Number pd_pert_s, Number pd_pert_c, Number pd_pert_d)
    Set the perturbation of the primal-dual system.
    +
    bool free_mu_mode_
    flag indicating whether the algorithm is in the free mu mode
    +
    void Set_info_last_output(Number info_last_output)
    sets time when the last summary output line was printed
    +
    SmartPtr< const SymMatrix > W()
    Hessian or Hessian approximation (do not hold on to it, it might be changed)
    + +
    void Set_info_regu_x(Number regu_x)
    +
    void Set_W(SmartPtr< const SymMatrix > W)
    Set Hessian approximation.
    +
    SmartPtr< const IteratesVector > trial_
    Main iteration variables (trial calculations)
    +
    SmartPtr< const IteratesVector > delta_aff_
    +
    void Inc_info_iters_since_header()
    increases number of iteration summaries actually printed since last summary header was printed
    +
    bool have_deltas_
    The following flag is set to true, if some other part of the algorithm (like the method for computing...
    +
    bool initialize_called_
    flag indicating if Initialize method has been called (for debugging)
    +
    Index info_ls_count() const
    void SetTrialEqMultipliersFromStep(Number alpha, const Vector &delta_y_c, const Vector &delta_y_d)
    Set the values of the trial values for the equality constraint multipliers (y_c and y_d) from provide...
    -
    void SetHaveDeltas(bool have_deltas)
    Method for setting the HaveDeltas flag.
    -
    Number curr_tau() const
    -
    int info_iters_since_header_
    number of iteration summaries actually printed since last summary header was printed
    -
    TimingStatistics & TimingStats()
    Return Timing Statistics Object.
    -
    bool HaveDeltas() const
    Returns true, if the primal-dual step have been already computed for the current iteration.
    -
    Number info_alpha_dual_
    Dual step size.
    -
    SmartPtr< const IteratesVector > delta() const
    get the current delta
    -
    void Set_info_ls_count(Index ls_count)
    -
    SmartPtr< IpoptAdditionalData > add_data_
    Object for the data specific for the Chen-Goldfarb penalty method algorithm.
    -
    bool have_affine_deltas_
    The following flag is set to true, if some other part of the algorithm (like the method for computing...
    -
    SmartPtr< const IteratesVector > curr_
    Main iteration variables (current iteration)
    -
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    +
    void SetHaveDeltas(bool have_deltas)
    Method for setting the HaveDeltas flag.
    +
    Number curr_tau() const
    +
    int info_iters_since_header_
    number of iteration summaries actually printed since last summary header was printed
    +
    TimingStatistics & TimingStats()
    Return Timing Statistics Object.
    +
    bool HaveDeltas() const
    Returns true, if the primal-dual step have been already computed for the current iteration.
    +
    Number info_alpha_dual_
    Dual step size.
    +
    void Append_info_string(const std::string &add_str, double value)
    +
    SmartPtr< const IteratesVector > delta() const
    get the current delta
    +
    void Set_info_ls_count(Index ls_count)
    +
    SmartPtr< IpoptAdditionalData > add_data_
    Object for the data specific for the Chen-Goldfarb penalty method algorithm.
    +
    bool have_affine_deltas_
    The following flag is set to true, if some other part of the algorithm (like the method for computing...
    +
    SmartPtr< const IteratesVector > curr_
    Main iteration variables (current iteration)
    +
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    void SetTrialPrimalVariablesFromStep(Number alpha, const Vector &delta_x, const Vector &delta_s)
    Set the values of the primal trial variables (x and s) from provided Step with step length alpha.
    void AcceptTrialPoint()
    Set the current iterate values from the trial values.
    -
    Number info_alpha_primal_
    Primal step size.
    -
    void CopyTrialToCurrent()
    Copy the trial values to the current values.
    -
    void Set_info_alpha_primal_char(char info_alpha_primal_char)
    - -
    Number info_alpha_dual() const
    +
    Number info_alpha_primal_
    Primal step size.
    +
    void CopyTrialToCurrent()
    Copy the trial values to the current values.
    +
    void Set_info_alpha_primal_char(char info_alpha_primal_char)
    + +
    Number info_alpha_dual() const
    IpoptData(const IpoptData &)
    Copy Constructor.
    -
    void Set_tiny_step_flag(bool flag)
    Setting the flag that indicates if a tiny step (below machine precision) has been detected.
    -
    Index iter_count() const
    -
    SmartPtr< const IteratesVector > curr() const
    Current point.
    -
    void Set_info_alpha_dual(Number alpha_dual)
    -
    void ResetInfo()
    Reset all info fields.
    +
    void Set_tiny_step_flag(bool flag)
    Setting the flag that indicates if a tiny step (below machine precision) has been detected.
    +
    Index iter_count() const
    +
    SmartPtr< const IteratesVector > curr() const
    Current point.
    +
    void Set_info_alpha_dual(Number alpha_dual)
    +
    void ResetInfo()
    Reset all info fields.
    void SetTrialBoundMultipliersFromStep(Number alpha, const Vector &delta_z_L, const Vector &delta_z_U, const Vector &delta_v_L, const Vector &delta_v_U)
    Set the value of the trial values for the bound multipliers (z_L, z_U, v_L, v_U) from provided step w...
    -
    void Set_iter_count(Index iter_count)
    -
    Number curr_tau_
    current fraction to the boundary parameter
    -
    SmartPtr< const IteratesVector > trial() const
    Get the current point in a copied container that is non-const.
    -
    bool HaveAffineDeltas() const
    Returns true, if the affine-scaling step have been already computed for the current iteration.
    -
    int info_iters_since_header()
    gives number of iteration summaries actually printed since last summary header was printed
    -
    bool tiny_step_flag_
    flag indicating if a tiny step has been detected
    -
    void Set_info_iters_since_header(int info_iters_since_header)
    sets number of iteration summaries actually printed since last summary header was printed
    -
    SmartPtr< IteratesVectorSpace > iterates_space_
    VectorSpace for all the iterates.
    -
    void Set_tau(Number tau)
    -
    bool info_skip_output() const
    -
    Number tol_
    Overall convergence tolerance.
    -
    Number curr_mu_
    current barrier parameter
    -
    void Set_info_skip_output(bool info_skip_output)
    Set this to true, if the next time when output is written, the summary line should not be printed.
    -
    Number tol() const
    Overall convergence tolerance.
    -
    bool FreeMuMode() const
    -
    char info_alpha_primal_char_
    Info character for primal step size.
    -
    bool have_prototypes_
    flag for debugging whether we have already curr_ values available (from which new Vectors can be gene...
    -
    void Set_tol(Number tol)
    Set a new value for the tolerance.
    -
    bool info_skip_output_
    true, if next summary output line should not be printed (eg after restoration phase).
    -
    void SetFreeMuMode(bool free_mu_mode)
    +
    void Set_iter_count(Index iter_count)
    +
    Number curr_tau_
    current fraction to the boundary parameter
    +
    SmartPtr< const IteratesVector > trial() const
    Get the current point in a copied container that is non-const.
    +
    bool HaveAffineDeltas() const
    Returns true, if the affine-scaling step have been already computed for the current iteration.
    +
    int info_iters_since_header()
    gives number of iteration summaries actually printed since last summary header was printed
    +
    bool tiny_step_flag_
    flag indicating if a tiny step has been detected
    +
    void Set_info_iters_since_header(int info_iters_since_header)
    sets number of iteration summaries actually printed since last summary header was printed
    +
    SmartPtr< IteratesVectorSpace > iterates_space_
    VectorSpace for all the iterates.
    +
    void Set_tau(Number tau)
    +
    bool info_skip_output() const
    +
    Number tol_
    Overall convergence tolerance.
    +
    Number curr_mu_
    current barrier parameter
    +
    void Set_info_skip_output(bool info_skip_output)
    Set this to true, if the next time when output is written, the summary line should not be printed.
    +
    Number tol() const
    Overall convergence tolerance.
    +
    bool FreeMuMode() const
    +
    char info_alpha_primal_char_
    Info character for primal step size.
    +
    bool have_prototypes_
    flag for debugging whether we have already curr_ values available (from which new Vectors can be gene...
    +
    void Set_tol(Number tol)
    Set a new value for the tolerance.
    +
    bool info_skip_output_
    true, if next summary output line should not be printed (eg after restoration phase).
    +
    void SetFreeMuMode(bool free_mu_mode)
    static void RegisterOptions(const SmartPtr< RegisteredOptions > &roptions)
    -
    IPOPT_DEPRECATED Number cpu_time_start() const
    Cpu time counter at the beginning of the optimization.
    +
    IPOPT_DEPRECATED Number cpu_time_start() const
    Cpu time counter at the beginning of the optimization.
    virtual ~IpoptData()
    Destructor.
    bool InitializeDataStructures(IpoptNLP &ip_nlp, bool want_x, bool want_y_c, bool want_y_d, bool want_z_L, bool want_z_U)
    Initialize Data Structures.
    - -
    char info_alpha_primal_char() const
    -
    SmartPtr< const IteratesVector > delta_
    + +
    char info_alpha_primal_char() const
    +
    SmartPtr< const IteratesVector > delta_
    bool Initialize(const Journalist &jnlst, const OptionsList &options, const std::string &prefix)
    This method must be called to initialize the global algorithmic parameters.
    -
    Number info_last_output_
    time when the last summary output line was printed
    -
    Index iter_count_
    iteration count
    -
    Number info_last_output()
    gives time when the last summary output line was printed
    -
    void set_delta(SmartPtr< IteratesVector > &delta)
    Set the current delta.
    -
    Number curr_mu() const
    -
    SmartPtr< const SymMatrix > W_
    Hessian (approximation) - might be changed elsewhere!
    +
    Number info_last_output_
    time when the last summary output line was printed
    +
    Index iter_count_
    iteration count
    +
    Number info_last_output()
    gives time when the last summary output line was printed
    +
    void set_delta(SmartPtr< IteratesVector > &delta)
    Set the current delta.
    +
    Number curr_mu() const
    +
    SmartPtr< const SymMatrix > W_
    Hessian (approximation) - might be changed elsewhere!
    IpoptData(SmartPtr< IpoptAdditionalData > add_data=NULL)
    Constructor.
    -
    void Set_mu(Number mu)
    -
    bool MuInitialized() const
    -
    void SetHaveAffineDeltas(bool have_affine_deltas)
    Method for setting the HaveDeltas flag.
    -
    void Set_info_alpha_primal(Number alpha_primal)
    -
    const TimingStatistics & TimingStats() const
    Return Timing Statistics Object.
    - -
    void set_trial(SmartPtr< IteratesVector > &trial)
    Get Trial point in a copied container that is non-const.
    -
    void getPDPert(Number &pd_pert_x, Number &pd_pert_s, Number &pd_pert_c, Number &pd_pert_d)
    Get the current perturbation of the primal-dual system.
    -
    bool TauInitialized() const
    -
    SmartPtr< const IteratesVector > delta_aff() const
    Affine Delta.
    -
    Number info_regu_x_
    Size of regularization for the Hessian.
    -
    void SetAddData(SmartPtr< IpoptAdditionalData > add_data)
    Set a new pointer for additional Ipopt data.
    - +
    void Set_mu(Number mu)
    +
    bool MuInitialized() const
    +
    void SetHaveAffineDeltas(bool have_affine_deltas)
    Method for setting the HaveDeltas flag.
    +
    void Set_info_alpha_primal(Number alpha_primal)
    +
    const TimingStatistics & TimingStats() const
    Return Timing Statistics Object.
    + +
    void set_trial(SmartPtr< IteratesVector > &trial)
    Get Trial point in a copied container that is non-const.
    +
    void getPDPert(Number &pd_pert_x, Number &pd_pert_s, Number &pd_pert_c, Number &pd_pert_d)
    Get the current perturbation of the primal-dual system.
    +
    bool TauInitialized() const
    +
    SmartPtr< const IteratesVector > delta_aff() const
    Affine Delta.
    +
    Number info_regu_x_
    Size of regularization for the Hessian.
    +
    void SetAddData(SmartPtr< IpoptAdditionalData > add_data)
    Set a new pointer for additional Ipopt data.
    +
    This is the abstract base class for classes that map the traditional NLP into something that is more ...
    Class responsible for all message output.
    This class stores a list of user set options.
    @@ -1007,12 +1022,12 @@
    Vector Base Class.
    Definition IpVector.hpp:48
    #define IPOPTLIB_EXPORT
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    -
    bool IsValid(const SmartPtr< U > &smart_ptr)
    -
    U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    +
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    +
    bool IsValid(const SmartPtr< U > &smart_ptr)
    +
    U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    ipnumber Number
    Type of all numbers.
    Definition IpTypes.hpp:17
    -
    bool IsNull(const SmartPtr< U > &smart_ptr)
    +
    bool IsNull(const SmartPtr< U > &smart_ptr)
    diff --git a/IpIpoptNLP_8hpp.html b/IpIpoptNLP_8hpp.html index f02c4aec9..40eb4b279 100644 --- a/IpIpoptNLP_8hpp.html +++ b/IpIpoptNLP_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpIpoptNLP_8hpp_source.html b/IpIpoptNLP_8hpp_source.html index 4c8dd04dc..5dc28cd35 100644 --- a/IpIpoptNLP_8hpp_source.html +++ b/IpIpoptNLP_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -355,7 +355,7 @@
    AlgorithmMode
    enum to indicate the mode in which the algorithm is
    Class for all IPOPT specific calculated quantities.
    -
    Class to organize all the data required by the algorithm.
    +
    Class to organize all the data required by the algorithm.
    This is the abstract base class for classes that map the traditional NLP into something that is more ...
    virtual SmartPtr< const SymMatrix > uninitialized_h()=0
    Provides a Hessian matrix from the correct matrix space with uninitialized values.
    virtual SmartPtr< const Matrix > Px_U() const =0
    Permutation matrix (x_U_ -> x.
    @@ -408,7 +408,7 @@
    Vector Base Class.
    Definition IpVector.hpp:48
    #define IPOPTLIB_EXPORT
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    bool IsValid(const SmartPtr< U > &smart_ptr)
    +
    bool IsValid(const SmartPtr< U > &smart_ptr)
    SolverReturn
    enum for the return from the optimize algorithm
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    ipnumber Number
    Type of all numbers.
    Definition IpTypes.hpp:17
    diff --git a/IpIterateInitializer_8hpp.html b/IpIterateInitializer_8hpp.html index 59920d700..983bd754a 100644 --- a/IpIterateInitializer_8hpp.html +++ b/IpIterateInitializer_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpIterateInitializer_8hpp_source.html b/IpIterateInitializer_8hpp_source.html index bd50181e8..9516dd053 100644 --- a/IpIterateInitializer_8hpp_source.html +++ b/IpIterateInitializer_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpIteratesVector_8hpp.html b/IpIteratesVector_8hpp.html index 73f8b8ebd..a27247036 100644 --- a/IpIteratesVector_8hpp.html +++ b/IpIteratesVector_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpIteratesVector_8hpp_source.html b/IpIteratesVector_8hpp_source.html index aa5a3bb14..9f9aeea04 100644 --- a/IpIteratesVector_8hpp_source.html +++ b/IpIteratesVector_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -920,8 +920,8 @@
    Vector Base Class.
    Definition IpVector.hpp:48
    #define IPOPTLIB_EXPORT
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    -
    bool IsValid(const SmartPtr< U > &smart_ptr)
    +
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    +
    bool IsValid(const SmartPtr< U > &smart_ptr)
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    diff --git a/IpIterationOutput_8hpp.html b/IpIterationOutput_8hpp.html index 9b26dfadd..8e84706a5 100644 --- a/IpIterationOutput_8hpp.html +++ b/IpIterationOutput_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpIterationOutput_8hpp_source.html b/IpIterationOutput_8hpp_source.html index 8cf209db6..d507e2dff 100644 --- a/IpIterationOutput_8hpp_source.html +++ b/IpIterationOutput_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpIterativePardisoSolverInterface_8hpp.html b/IpIterativePardisoSolverInterface_8hpp.html index c7024e94d..6502dadd1 100644 --- a/IpIterativePardisoSolverInterface_8hpp.html +++ b/IpIterativePardisoSolverInterface_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpIterativePardisoSolverInterface_8hpp_source.html b/IpIterativePardisoSolverInterface_8hpp_source.html index 01880c5ed..3f5d3daaf 100644 --- a/IpIterativePardisoSolverInterface_8hpp_source.html +++ b/IpIterativePardisoSolverInterface_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -347,7 +347,7 @@
    Class for all Chen-Goldfarb penalty method specific calculated quantities.
    Class to organize all the additional data required by the Chen-Goldfarb penalty function algorithm.
    -
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    +
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    Interface to the linear solver Pardiso, derived from SparseSymLinearSolverInterface.
    SmartPtr< IterativeSolverTerminationTester > normal_tester_
    Termination tester for normal step computation.
    diff --git a/IpIterativeSolverTerminationTester_8hpp.html b/IpIterativeSolverTerminationTester_8hpp.html index 9e0a8c790..f3b2aab42 100644 --- a/IpIterativeSolverTerminationTester_8hpp.html +++ b/IpIterativeSolverTerminationTester_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpIterativeSolverTerminationTester_8hpp_source.html b/IpIterativeSolverTerminationTester_8hpp_source.html index 9b9a6a884..8f0a22f1d 100644 --- a/IpIterativeSolverTerminationTester_8hpp_source.html +++ b/IpIterativeSolverTerminationTester_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -224,7 +224,7 @@
    Class for all Chen-Goldfarb penalty method specific calculated quantities.
    Class to organize all the additional data required by the Chen-Goldfarb penalty function algorithm.
    -
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    +
    IpoptAdditionalData & AdditionalData()
    Get access to additional data object.
    This base class is for the termination tests for the iterative linear solver in the inexact version o...
    virtual Index GetSolverIterations() const =0
    Return the number of iterative solver iteration from the most recent solve.
    virtual bool InitializeSolve()=0
    Method for initializing for the next iterative solve.
    diff --git a/IpIterativeWsmpSolverInterface_8hpp.html b/IpIterativeWsmpSolverInterface_8hpp.html index 7b3ac9712..fbb776828 100644 --- a/IpIterativeWsmpSolverInterface_8hpp.html +++ b/IpIterativeWsmpSolverInterface_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpIterativeWsmpSolverInterface_8hpp_source.html b/IpIterativeWsmpSolverInterface_8hpp_source.html index d6bb2d9b7..749df7005 100644 --- a/IpIterativeWsmpSolverInterface_8hpp_source.html +++ b/IpIterativeWsmpSolverInterface_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpJournalist_8hpp.html b/IpJournalist_8hpp.html index b34cca7dd..0a7300032 100644 --- a/IpJournalist_8hpp.html +++ b/IpJournalist_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpJournalist_8hpp_source.html b/IpJournalist_8hpp_source.html index ea044828a..f9c56740e 100644 --- a/IpJournalist_8hpp_source.html +++ b/IpJournalist_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLapack_8hpp.html b/IpLapack_8hpp.html index 93f299d6c..150feaa44 100644 --- a/IpLapack_8hpp.html +++ b/IpLapack_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLapack_8hpp_source.html b/IpLapack_8hpp_source.html index cacf0fe4f..59b0d48b0 100644 --- a/IpLapack_8hpp_source.html +++ b/IpLapack_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLeastSquareMults_8hpp.html b/IpLeastSquareMults_8hpp.html index d3f02fabb..f6b564fd5 100644 --- a/IpLeastSquareMults_8hpp.html +++ b/IpLeastSquareMults_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLeastSquareMults_8hpp_source.html b/IpLeastSquareMults_8hpp_source.html index fbceae16a..06aa55c9d 100644 --- a/IpLeastSquareMults_8hpp_source.html +++ b/IpLeastSquareMults_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLibraryLoader_8hpp.html b/IpLibraryLoader_8hpp.html index 08469eaca..28a72c60b 100644 --- a/IpLibraryLoader_8hpp.html +++ b/IpLibraryLoader_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLibraryLoader_8hpp_source.html b/IpLibraryLoader_8hpp_source.html index 10b5fff20..490e586ab 100644 --- a/IpLibraryLoader_8hpp_source.html +++ b/IpLibraryLoader_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLimMemQuasiNewtonUpdater_8hpp.html b/IpLimMemQuasiNewtonUpdater_8hpp.html index eb365332b..7fa457332 100644 --- a/IpLimMemQuasiNewtonUpdater_8hpp.html +++ b/IpLimMemQuasiNewtonUpdater_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLimMemQuasiNewtonUpdater_8hpp_source.html b/IpLimMemQuasiNewtonUpdater_8hpp_source.html index 730fe7d7a..d6a6bf8dc 100644 --- a/IpLimMemQuasiNewtonUpdater_8hpp_source.html +++ b/IpLimMemQuasiNewtonUpdater_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLineSearch_8hpp.html b/IpLineSearch_8hpp.html index a043cf66e..a3abd61bb 100644 --- a/IpLineSearch_8hpp.html +++ b/IpLineSearch_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLineSearch_8hpp_source.html b/IpLineSearch_8hpp_source.html index 2ea7f2a32..96675bc8a 100644 --- a/IpLineSearch_8hpp_source.html +++ b/IpLineSearch_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLinearSolversRegOp_8hpp.html b/IpLinearSolversRegOp_8hpp.html index c0b6676b6..4262ad569 100644 --- a/IpLinearSolversRegOp_8hpp.html +++ b/IpLinearSolversRegOp_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLinearSolversRegOp_8hpp_source.html b/IpLinearSolversRegOp_8hpp_source.html index b966b9228..e7e4ff863 100644 --- a/IpLinearSolversRegOp_8hpp_source.html +++ b/IpLinearSolversRegOp_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLinearSolvers_8h.html b/IpLinearSolvers_8h.html index 7a8c87512..ea1de67b9 100644 --- a/IpLinearSolvers_8h.html +++ b/IpLinearSolvers_8h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLinearSolvers_8h_source.html b/IpLinearSolvers_8h_source.html index 9b7500032..432d93e9e 100644 --- a/IpLinearSolvers_8h_source.html +++ b/IpLinearSolvers_8h_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLoqoMuOracle_8hpp.html b/IpLoqoMuOracle_8hpp.html index 0bf567fff..58064c546 100644 --- a/IpLoqoMuOracle_8hpp.html +++ b/IpLoqoMuOracle_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLoqoMuOracle_8hpp_source.html b/IpLoqoMuOracle_8hpp_source.html index 86d83dcb3..7dae20477 100644 --- a/IpLoqoMuOracle_8hpp_source.html +++ b/IpLoqoMuOracle_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLowRankAugSystemSolver_8hpp.html b/IpLowRankAugSystemSolver_8hpp.html index 4b8bd96bd..65305d271 100644 --- a/IpLowRankAugSystemSolver_8hpp.html +++ b/IpLowRankAugSystemSolver_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLowRankAugSystemSolver_8hpp_source.html b/IpLowRankAugSystemSolver_8hpp_source.html index f56130659..20b00e692 100644 --- a/IpLowRankAugSystemSolver_8hpp_source.html +++ b/IpLowRankAugSystemSolver_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLowRankSSAugSystemSolver_8hpp.html b/IpLowRankSSAugSystemSolver_8hpp.html index 195863e86..c46259649 100644 --- a/IpLowRankSSAugSystemSolver_8hpp.html +++ b/IpLowRankSSAugSystemSolver_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLowRankSSAugSystemSolver_8hpp_source.html b/IpLowRankSSAugSystemSolver_8hpp_source.html index 018588c0b..c26b8901d 100644 --- a/IpLowRankSSAugSystemSolver_8hpp_source.html +++ b/IpLowRankSSAugSystemSolver_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLowRankUpdateSymMatrix_8hpp.html b/IpLowRankUpdateSymMatrix_8hpp.html index e4e0f2952..691bb781a 100644 --- a/IpLowRankUpdateSymMatrix_8hpp.html +++ b/IpLowRankUpdateSymMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpLowRankUpdateSymMatrix_8hpp_source.html b/IpLowRankUpdateSymMatrix_8hpp_source.html index 60bd25d9a..db1ef0348 100644 --- a/IpLowRankUpdateSymMatrix_8hpp_source.html +++ b/IpLowRankUpdateSymMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -399,7 +399,7 @@
    void ObjectChanged()
    Objects derived from TaggedObject MUST call this method every time their internal state changes to up...
    Vector Base Class.
    Definition IpVector.hpp:48
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    bool IsValid(const SmartPtr< U > &smart_ptr)
    +
    bool IsValid(const SmartPtr< U > &smart_ptr)
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    EJournalCategory
    Category Selection Enum.
    EJournalLevel
    Print Level Enum.
    diff --git a/IpMa27TSolverInterface_8hpp.html b/IpMa27TSolverInterface_8hpp.html index fc5f32247..84279d05a 100644 --- a/IpMa27TSolverInterface_8hpp.html +++ b/IpMa27TSolverInterface_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMa27TSolverInterface_8hpp_source.html b/IpMa27TSolverInterface_8hpp_source.html index 1ab6a8581..2da812e31 100644 --- a/IpMa27TSolverInterface_8hpp_source.html +++ b/IpMa27TSolverInterface_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMa28TDependencyDetector_8hpp.html b/IpMa28TDependencyDetector_8hpp.html index 708fc6b37..21112139d 100644 --- a/IpMa28TDependencyDetector_8hpp.html +++ b/IpMa28TDependencyDetector_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMa28TDependencyDetector_8hpp_source.html b/IpMa28TDependencyDetector_8hpp_source.html index 6dac94a9e..454f103bb 100644 --- a/IpMa28TDependencyDetector_8hpp_source.html +++ b/IpMa28TDependencyDetector_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMa57TSolverInterface_8hpp.html b/IpMa57TSolverInterface_8hpp.html index 467245859..175fb3ad2 100644 --- a/IpMa57TSolverInterface_8hpp.html +++ b/IpMa57TSolverInterface_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMa57TSolverInterface_8hpp_source.html b/IpMa57TSolverInterface_8hpp_source.html index ef80100ad..bcb5a6a5d 100644 --- a/IpMa57TSolverInterface_8hpp_source.html +++ b/IpMa57TSolverInterface_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMa77SolverInterface_8hpp.html b/IpMa77SolverInterface_8hpp.html index 78a224409..e8bc576a7 100644 --- a/IpMa77SolverInterface_8hpp.html +++ b/IpMa77SolverInterface_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMa77SolverInterface_8hpp_source.html b/IpMa77SolverInterface_8hpp_source.html index 673d01de3..bdbd36052 100644 --- a/IpMa77SolverInterface_8hpp_source.html +++ b/IpMa77SolverInterface_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMa86SolverInterface_8hpp.html b/IpMa86SolverInterface_8hpp.html index 858c32241..ed600a6bd 100644 --- a/IpMa86SolverInterface_8hpp.html +++ b/IpMa86SolverInterface_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMa86SolverInterface_8hpp_source.html b/IpMa86SolverInterface_8hpp_source.html index 3d7e3c578..ce39ea3c7 100644 --- a/IpMa86SolverInterface_8hpp_source.html +++ b/IpMa86SolverInterface_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMa97SolverInterface_8hpp.html b/IpMa97SolverInterface_8hpp.html index d85e51874..3ee6f9cca 100644 --- a/IpMa97SolverInterface_8hpp.html +++ b/IpMa97SolverInterface_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMa97SolverInterface_8hpp_source.html b/IpMa97SolverInterface_8hpp_source.html index af3c00d90..3346460f7 100644 --- a/IpMa97SolverInterface_8hpp_source.html +++ b/IpMa97SolverInterface_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMatrix_8hpp.html b/IpMatrix_8hpp.html index 9ced83890..310c1df7d 100644 --- a/IpMatrix_8hpp.html +++ b/IpMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMatrix_8hpp_source.html b/IpMatrix_8hpp_source.html index f7dbc8805..0d4b6b62e 100644 --- a/IpMatrix_8hpp_source.html +++ b/IpMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMc19TSymScalingMethod_8hpp.html b/IpMc19TSymScalingMethod_8hpp.html index e53bfce68..3f17d71a2 100644 --- a/IpMc19TSymScalingMethod_8hpp.html +++ b/IpMc19TSymScalingMethod_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMc19TSymScalingMethod_8hpp_source.html b/IpMc19TSymScalingMethod_8hpp_source.html index 6385af2cd..5a4c38a19 100644 --- a/IpMc19TSymScalingMethod_8hpp_source.html +++ b/IpMc19TSymScalingMethod_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMonotoneMuUpdate_8hpp.html b/IpMonotoneMuUpdate_8hpp.html index fff20f081..f315df7cd 100644 --- a/IpMonotoneMuUpdate_8hpp.html +++ b/IpMonotoneMuUpdate_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMonotoneMuUpdate_8hpp_source.html b/IpMonotoneMuUpdate_8hpp_source.html index 5ba09429b..dd69e15cb 100644 --- a/IpMonotoneMuUpdate_8hpp_source.html +++ b/IpMonotoneMuUpdate_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMuOracle_8hpp.html b/IpMuOracle_8hpp.html index 9e7dcd6e6..c61fb1621 100644 --- a/IpMuOracle_8hpp.html +++ b/IpMuOracle_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMuOracle_8hpp_source.html b/IpMuOracle_8hpp_source.html index 7532f9a42..4018523c2 100644 --- a/IpMuOracle_8hpp_source.html +++ b/IpMuOracle_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMuUpdate_8hpp.html b/IpMuUpdate_8hpp.html index 4a81ea3dd..25b702068 100644 --- a/IpMuUpdate_8hpp.html +++ b/IpMuUpdate_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMuUpdate_8hpp_source.html b/IpMuUpdate_8hpp_source.html index 65a1da5be..33b81485c 100644 --- a/IpMuUpdate_8hpp_source.html +++ b/IpMuUpdate_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMultiVectorMatrix_8hpp.html b/IpMultiVectorMatrix_8hpp.html index 5567a8d2e..872e32766 100644 --- a/IpMultiVectorMatrix_8hpp.html +++ b/IpMultiVectorMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMultiVectorMatrix_8hpp_source.html b/IpMultiVectorMatrix_8hpp_source.html index 43b679b45..bf5230efc 100644 --- a/IpMultiVectorMatrix_8hpp_source.html +++ b/IpMultiVectorMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -406,8 +406,8 @@
    Vector Base Class.
    Definition IpVector.hpp:48
    #define IPOPTLIB_EXPORT
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    bool IsValid(const SmartPtr< U > &smart_ptr)
    -
    U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    +
    bool IsValid(const SmartPtr< U > &smart_ptr)
    +
    U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    EJournalCategory
    Category Selection Enum.
    EJournalLevel
    Print Level Enum.
    diff --git a/IpMumpsSolverInterface_8hpp.html b/IpMumpsSolverInterface_8hpp.html index 66ceed20a..69ff98560 100644 --- a/IpMumpsSolverInterface_8hpp.html +++ b/IpMumpsSolverInterface_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpMumpsSolverInterface_8hpp_source.html b/IpMumpsSolverInterface_8hpp_source.html index 087bddb86..bc82ede02 100644 --- a/IpMumpsSolverInterface_8hpp_source.html +++ b/IpMumpsSolverInterface_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpNLPBoundsRemover_8hpp.html b/IpNLPBoundsRemover_8hpp.html index f385b6706..e8b82aca1 100644 --- a/IpNLPBoundsRemover_8hpp.html +++ b/IpNLPBoundsRemover_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpNLPBoundsRemover_8hpp_source.html b/IpNLPBoundsRemover_8hpp_source.html index 22e22b2d3..a6d1c3c25 100644 --- a/IpNLPBoundsRemover_8hpp_source.html +++ b/IpNLPBoundsRemover_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -348,7 +348,7 @@
    AlgorithmMode
    enum to indicate the mode in which the algorithm is
    Class for all IPOPT specific calculated quantities.
    -
    Class to organize all the data required by the algorithm.
    +
    Class to organize all the data required by the algorithm.
    Specialized CompoundVector class specifically for the algorithm iterates.
    Matrix Base Class.
    Definition IpMatrix.hpp:28
    This is an adapter for an NLP that converts variable bound constraints to inequality constraints.
    diff --git a/IpNLPScaling_8hpp.html b/IpNLPScaling_8hpp.html index f9185c38a..2a780b28f 100644 --- a/IpNLPScaling_8hpp.html +++ b/IpNLPScaling_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpNLPScaling_8hpp_source.html b/IpNLPScaling_8hpp_source.html index a683bfa9d..ead090257 100644 --- a/IpNLPScaling_8hpp_source.html +++ b/IpNLPScaling_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpNLP_8hpp.html b/IpNLP_8hpp.html index ffb11f691..55fbff772 100644 --- a/IpNLP_8hpp.html +++ b/IpNLP_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpNLP_8hpp_source.html b/IpNLP_8hpp_source.html index 99fa1a8f6..aed472064 100644 --- a/IpNLP_8hpp_source.html +++ b/IpNLP_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -343,7 +343,7 @@
    Templated class which stores one entry for the CachedResult class.
    Class for all IPOPT specific calculated quantities.
    -
    Class to organize all the data required by the algorithm.
    +
    Class to organize all the data required by the algorithm.
    Specialized CompoundVector class specifically for the algorithm iterates.
    Matrix Base Class.
    Definition IpMatrix.hpp:28
    Traditional NLP.
    Definition IpNLP.hpp:42
    diff --git a/IpObserver_8hpp.html b/IpObserver_8hpp.html index d808a68fe..9bb4062b6 100644 --- a/IpObserver_8hpp.html +++ b/IpObserver_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpObserver_8hpp_source.html b/IpObserver_8hpp_source.html index 74e4aeb33..c8149db24 100644 --- a/IpObserver_8hpp_source.html +++ b/IpObserver_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpOptErrorConvCheck_8hpp.html b/IpOptErrorConvCheck_8hpp.html index 32d59639e..ca46fb375 100644 --- a/IpOptErrorConvCheck_8hpp.html +++ b/IpOptErrorConvCheck_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpOptErrorConvCheck_8hpp_source.html b/IpOptErrorConvCheck_8hpp_source.html index 6cd53d99f..4d0a01172 100644 --- a/IpOptErrorConvCheck_8hpp_source.html +++ b/IpOptErrorConvCheck_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpOptionsList_8hpp.html b/IpOptionsList_8hpp.html index 67c04c99d..68e010b87 100644 --- a/IpOptionsList_8hpp.html +++ b/IpOptionsList_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpOptionsList_8hpp_source.html b/IpOptionsList_8hpp_source.html index 0c92cf352..189a8db9f 100644 --- a/IpOptionsList_8hpp_source.html +++ b/IpOptionsList_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpOrigIpoptNLP_8hpp.html b/IpOrigIpoptNLP_8hpp.html index 5ef26ca67..3b38663a9 100644 --- a/IpOrigIpoptNLP_8hpp.html +++ b/IpOrigIpoptNLP_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpOrigIpoptNLP_8hpp_source.html b/IpOrigIpoptNLP_8hpp_source.html index 507a58027..560214fd1 100644 --- a/IpOrigIpoptNLP_8hpp_source.html +++ b/IpOrigIpoptNLP_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -573,7 +573,7 @@
    Templated class for Cached Results.
    Class for all IPOPT specific calculated quantities.
    -
    Class to organize all the data required by the algorithm.
    +
    Class to organize all the data required by the algorithm.
    This is the abstract base class for classes that map the traditional NLP into something that is more ...
    Specialized CompoundVector class specifically for the algorithm iterates.
    Class responsible for all message output.
    diff --git a/IpOrigIterationOutput_8hpp.html b/IpOrigIterationOutput_8hpp.html index eb7cdc640..d7274b729 100644 --- a/IpOrigIterationOutput_8hpp.html +++ b/IpOrigIterationOutput_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpOrigIterationOutput_8hpp_source.html b/IpOrigIterationOutput_8hpp_source.html index 0d12ea8b5..4278d3436 100644 --- a/IpOrigIterationOutput_8hpp_source.html +++ b/IpOrigIterationOutput_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpPDFullSpaceSolver_8hpp.html b/IpPDFullSpaceSolver_8hpp.html index bd51f1a35..272f431f5 100644 --- a/IpPDFullSpaceSolver_8hpp.html +++ b/IpPDFullSpaceSolver_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpPDFullSpaceSolver_8hpp_source.html b/IpPDFullSpaceSolver_8hpp_source.html index 1a3b46dab..95cb71e3d 100644 --- a/IpPDFullSpaceSolver_8hpp_source.html +++ b/IpPDFullSpaceSolver_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpPDPerturbationHandler_8hpp.html b/IpPDPerturbationHandler_8hpp.html index e1642cdb0..da8032d8b 100644 --- a/IpPDPerturbationHandler_8hpp.html +++ b/IpPDPerturbationHandler_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpPDPerturbationHandler_8hpp_source.html b/IpPDPerturbationHandler_8hpp_source.html index 9b2969fab..3dd829bd8 100644 --- a/IpPDPerturbationHandler_8hpp_source.html +++ b/IpPDPerturbationHandler_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpPDSearchDirCalc_8hpp.html b/IpPDSearchDirCalc_8hpp.html index ddbd7c0f4..220c8a046 100644 --- a/IpPDSearchDirCalc_8hpp.html +++ b/IpPDSearchDirCalc_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpPDSearchDirCalc_8hpp_source.html b/IpPDSearchDirCalc_8hpp_source.html index 146274313..05ddab313 100644 --- a/IpPDSearchDirCalc_8hpp_source.html +++ b/IpPDSearchDirCalc_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpPDSystemSolver_8hpp.html b/IpPDSystemSolver_8hpp.html index 5fd25695f..5aaf12968 100644 --- a/IpPDSystemSolver_8hpp.html +++ b/IpPDSystemSolver_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpPDSystemSolver_8hpp_source.html b/IpPDSystemSolver_8hpp_source.html index 5dd2a7921..a02f31ed2 100644 --- a/IpPDSystemSolver_8hpp_source.html +++ b/IpPDSystemSolver_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpPardisoMKLSolverInterface_8hpp.html b/IpPardisoMKLSolverInterface_8hpp.html index 9107d4bec..f5552a28b 100644 --- a/IpPardisoMKLSolverInterface_8hpp.html +++ b/IpPardisoMKLSolverInterface_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpPardisoMKLSolverInterface_8hpp_source.html b/IpPardisoMKLSolverInterface_8hpp_source.html index 83c293998..9ee588e93 100644 --- a/IpPardisoMKLSolverInterface_8hpp_source.html +++ b/IpPardisoMKLSolverInterface_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpPardisoSolverInterface_8hpp.html b/IpPardisoSolverInterface_8hpp.html index d7b676907..3a014c263 100644 --- a/IpPardisoSolverInterface_8hpp.html +++ b/IpPardisoSolverInterface_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpPardisoSolverInterface_8hpp_source.html b/IpPardisoSolverInterface_8hpp_source.html index c67746061..c01f26faf 100644 --- a/IpPardisoSolverInterface_8hpp_source.html +++ b/IpPardisoSolverInterface_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpPenaltyLSAcceptor_8hpp.html b/IpPenaltyLSAcceptor_8hpp.html index 4422a3a88..901a28463 100644 --- a/IpPenaltyLSAcceptor_8hpp.html +++ b/IpPenaltyLSAcceptor_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpPenaltyLSAcceptor_8hpp_source.html b/IpPenaltyLSAcceptor_8hpp_source.html index a78cd99b1..d9630b955 100644 --- a/IpPenaltyLSAcceptor_8hpp_source.html +++ b/IpPenaltyLSAcceptor_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpPiecewisePenalty_8hpp.html b/IpPiecewisePenalty_8hpp.html index c53b91aab..88b718946 100644 --- a/IpPiecewisePenalty_8hpp.html +++ b/IpPiecewisePenalty_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpPiecewisePenalty_8hpp_source.html b/IpPiecewisePenalty_8hpp_source.html index 929ac445d..0c014cd58 100644 --- a/IpPiecewisePenalty_8hpp_source.html +++ b/IpPiecewisePenalty_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpProbingMuOracle_8hpp.html b/IpProbingMuOracle_8hpp.html index 032dadc18..d69abcc5a 100644 --- a/IpProbingMuOracle_8hpp.html +++ b/IpProbingMuOracle_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpProbingMuOracle_8hpp_source.html b/IpProbingMuOracle_8hpp_source.html index 156768b0c..5092ddd7e 100644 --- a/IpProbingMuOracle_8hpp_source.html +++ b/IpProbingMuOracle_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpQualityFunctionMuOracle_8hpp.html b/IpQualityFunctionMuOracle_8hpp.html index e241bf66b..ba55da42a 100644 --- a/IpQualityFunctionMuOracle_8hpp.html +++ b/IpQualityFunctionMuOracle_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpQualityFunctionMuOracle_8hpp_source.html b/IpQualityFunctionMuOracle_8hpp_source.html index d7b725f3a..49e96f3b2 100644 --- a/IpQualityFunctionMuOracle_8hpp_source.html +++ b/IpQualityFunctionMuOracle_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpReferenced_8hpp.html b/IpReferenced_8hpp.html index 7d6cd602d..3cb9e3c95 100644 --- a/IpReferenced_8hpp.html +++ b/IpReferenced_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpReferenced_8hpp_source.html b/IpReferenced_8hpp_source.html index 7a28fad73..6d18a9774 100644 --- a/IpReferenced_8hpp_source.html +++ b/IpReferenced_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpRegOptions_8hpp.html b/IpRegOptions_8hpp.html index c5ed29d14..cec348120 100644 --- a/IpRegOptions_8hpp.html +++ b/IpRegOptions_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpRegOptions_8hpp_source.html b/IpRegOptions_8hpp_source.html index 3532f09de..45f1e4fbd 100644 --- a/IpRegOptions_8hpp_source.html +++ b/IpRegOptions_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -1268,7 +1268,7 @@
    std::set< SmartPtr< RegisteredCategory >, RegisteredCategory::ComparePriority > RegCategoriesByPriority
    #define IPOPTLIB_EXPORT
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    bool IsValid(const SmartPtr< U > &smart_ptr)
    +
    bool IsValid(const SmartPtr< U > &smart_ptr)
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    RegisteredOptionType
    diff --git a/IpRestoConvCheck_8hpp.html b/IpRestoConvCheck_8hpp.html index 8797138d4..4efdbc571 100644 --- a/IpRestoConvCheck_8hpp.html +++ b/IpRestoConvCheck_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpRestoConvCheck_8hpp_source.html b/IpRestoConvCheck_8hpp_source.html index 5bcaa1b56..1cf1b8ad8 100644 --- a/IpRestoConvCheck_8hpp_source.html +++ b/IpRestoConvCheck_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpRestoFilterConvCheck_8hpp.html b/IpRestoFilterConvCheck_8hpp.html index ceb37200d..f616029a7 100644 --- a/IpRestoFilterConvCheck_8hpp.html +++ b/IpRestoFilterConvCheck_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpRestoFilterConvCheck_8hpp_source.html b/IpRestoFilterConvCheck_8hpp_source.html index 57cc6af3f..14eda174e 100644 --- a/IpRestoFilterConvCheck_8hpp_source.html +++ b/IpRestoFilterConvCheck_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpRestoIpoptNLP_8hpp.html b/IpRestoIpoptNLP_8hpp.html index 1db58f3d7..3ef54f166 100644 --- a/IpRestoIpoptNLP_8hpp.html +++ b/IpRestoIpoptNLP_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpRestoIpoptNLP_8hpp_source.html b/IpRestoIpoptNLP_8hpp_source.html index 9b2a300c0..adab4b41b 100644 --- a/IpRestoIpoptNLP_8hpp_source.html +++ b/IpRestoIpoptNLP_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -551,7 +551,7 @@
    AlgorithmMode
    enum to indicate the mode in which the algorithm is
    Class for all IPOPT specific calculated quantities.
    -
    Class to organize all the data required by the algorithm.
    +
    Class to organize all the data required by the algorithm.
    This is the abstract base class for classes that map the traditional NLP into something that is more ...
    Specialized CompoundVector class specifically for the algorithm iterates.
    Class responsible for all message output.
    @@ -650,9 +650,9 @@
    Template class for Smart Pointers.
    Vector Base Class.
    Definition IpVector.hpp:48
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    +
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    HessianApproximationType
    enumeration for the Hessian information type.
    -
    U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    +
    U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    SolverReturn
    enum for the return from the optimize algorithm
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    ipnumber Number
    Type of all numbers.
    Definition IpTypes.hpp:17
    diff --git a/IpRestoIterateInitializer_8hpp.html b/IpRestoIterateInitializer_8hpp.html index 44fab1b95..46b975437 100644 --- a/IpRestoIterateInitializer_8hpp.html +++ b/IpRestoIterateInitializer_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpRestoIterateInitializer_8hpp_source.html b/IpRestoIterateInitializer_8hpp_source.html index 549469c8c..54f87049c 100644 --- a/IpRestoIterateInitializer_8hpp_source.html +++ b/IpRestoIterateInitializer_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpRestoIterationOutput_8hpp.html b/IpRestoIterationOutput_8hpp.html index 8253b9248..409ba72a6 100644 --- a/IpRestoIterationOutput_8hpp.html +++ b/IpRestoIterationOutput_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpRestoIterationOutput_8hpp_source.html b/IpRestoIterationOutput_8hpp_source.html index 50f7e10cb..1b10d8d29 100644 --- a/IpRestoIterationOutput_8hpp_source.html +++ b/IpRestoIterationOutput_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpRestoMinC__1Nrm_8hpp.html b/IpRestoMinC__1Nrm_8hpp.html index e36edaa62..f4742823b 100644 --- a/IpRestoMinC__1Nrm_8hpp.html +++ b/IpRestoMinC__1Nrm_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpRestoMinC__1Nrm_8hpp_source.html b/IpRestoMinC__1Nrm_8hpp_source.html index 3b20fc1d9..bb0a80173 100644 --- a/IpRestoMinC__1Nrm_8hpp_source.html +++ b/IpRestoMinC__1Nrm_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpRestoPenaltyConvCheck_8hpp.html b/IpRestoPenaltyConvCheck_8hpp.html index 520ba8273..ec3ff3257 100644 --- a/IpRestoPenaltyConvCheck_8hpp.html +++ b/IpRestoPenaltyConvCheck_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpRestoPenaltyConvCheck_8hpp_source.html b/IpRestoPenaltyConvCheck_8hpp_source.html index b02971502..69bfdb247 100644 --- a/IpRestoPenaltyConvCheck_8hpp_source.html +++ b/IpRestoPenaltyConvCheck_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpRestoPhase_8hpp.html b/IpRestoPhase_8hpp.html index 7bc4f7cf3..beff4658b 100644 --- a/IpRestoPhase_8hpp.html +++ b/IpRestoPhase_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpRestoPhase_8hpp_source.html b/IpRestoPhase_8hpp_source.html index 7bd74c6eb..79776cd92 100644 --- a/IpRestoPhase_8hpp_source.html +++ b/IpRestoPhase_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpRestoRestoPhase_8hpp.html b/IpRestoRestoPhase_8hpp.html index 6724c786d..58ca18ab4 100644 --- a/IpRestoRestoPhase_8hpp.html +++ b/IpRestoRestoPhase_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpRestoRestoPhase_8hpp_source.html b/IpRestoRestoPhase_8hpp_source.html index 2956e8cdd..b07a6f263 100644 --- a/IpRestoRestoPhase_8hpp_source.html +++ b/IpRestoRestoPhase_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpReturnCodes_8h.html b/IpReturnCodes_8h.html index 2cbb0ad99..c7e860f1a 100644 --- a/IpReturnCodes_8h.html +++ b/IpReturnCodes_8h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpReturnCodes_8h_source.html b/IpReturnCodes_8h_source.html index 360508204..8ba467389 100644 --- a/IpReturnCodes_8h_source.html +++ b/IpReturnCodes_8h_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpReturnCodes_8hpp.html b/IpReturnCodes_8hpp.html index 5a2318c13..f7fc72129 100644 --- a/IpReturnCodes_8hpp.html +++ b/IpReturnCodes_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpReturnCodes_8hpp_source.html b/IpReturnCodes_8hpp_source.html index 106097b8a..915b4c5d0 100644 --- a/IpReturnCodes_8hpp_source.html +++ b/IpReturnCodes_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpReturnCodes__inc_8h.html b/IpReturnCodes__inc_8h.html index 2307c4957..27d6c0395 100644 --- a/IpReturnCodes__inc_8h.html +++ b/IpReturnCodes__inc_8h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpReturnCodes__inc_8h_source.html b/IpReturnCodes__inc_8h_source.html index 30b327689..ba24ce87f 100644 --- a/IpReturnCodes__inc_8h_source.html +++ b/IpReturnCodes__inc_8h_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpScaledMatrix_8hpp.html b/IpScaledMatrix_8hpp.html index 2ee409135..ed9acc1fb 100644 --- a/IpScaledMatrix_8hpp.html +++ b/IpScaledMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpScaledMatrix_8hpp_source.html b/IpScaledMatrix_8hpp_source.html index 7ac5d8920..4f4ba559f 100644 --- a/IpScaledMatrix_8hpp_source.html +++ b/IpScaledMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -410,9 +410,9 @@
    Vector Base Class.
    Definition IpVector.hpp:48
    #define IPOPTLIB_EXPORT
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    -
    bool IsValid(const SmartPtr< U > &smart_ptr)
    -
    U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    +
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    +
    bool IsValid(const SmartPtr< U > &smart_ptr)
    +
    U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    EJournalCategory
    Category Selection Enum.
    EJournalLevel
    Print Level Enum.
    diff --git a/IpSearchDirCalculator_8hpp.html b/IpSearchDirCalculator_8hpp.html index e00887938..64a218ddc 100644 --- a/IpSearchDirCalculator_8hpp.html +++ b/IpSearchDirCalculator_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpSearchDirCalculator_8hpp_source.html b/IpSearchDirCalculator_8hpp_source.html index b009a0033..88b4afb92 100644 --- a/IpSearchDirCalculator_8hpp_source.html +++ b/IpSearchDirCalculator_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpSlackBasedTSymScalingMethod_8hpp.html b/IpSlackBasedTSymScalingMethod_8hpp.html index 2cc4bd3c7..aa3275e72 100644 --- a/IpSlackBasedTSymScalingMethod_8hpp.html +++ b/IpSlackBasedTSymScalingMethod_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpSlackBasedTSymScalingMethod_8hpp_source.html b/IpSlackBasedTSymScalingMethod_8hpp_source.html index 1e8a3bd75..15db023e6 100644 --- a/IpSlackBasedTSymScalingMethod_8hpp_source.html +++ b/IpSlackBasedTSymScalingMethod_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpSmartPtr_8hpp.html b/IpSmartPtr_8hpp.html index 55882d4f1..41929db52 100644 --- a/IpSmartPtr_8hpp.html +++ b/IpSmartPtr_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpSmartPtr_8hpp_source.html b/IpSmartPtr_8hpp_source.html index 1a363c1aa..d0e5991d1 100644 --- a/IpSmartPtr_8hpp_source.html +++ b/IpSmartPtr_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -567,262 +567,263 @@
    641 if( ptr_->ReferenceCount() == 0 )
    642 {
    643 delete ptr_;
    -
    644 }
    -
    645 }
    -
    646}
    -
    - -
    647
    -
    648template<class U>
    -
    - - -
    651)
    -
    652{
    -
    653#ifdef IP_DEBUG_SMARTPTR
    - -
    655 "T* GetRawPtr(const SmartPtr<T>& smart_ptr)",
    -
    656 0);
    -
    657#endif
    -
    658
    -
    659 return smart_ptr.ptr_;
    -
    660}
    -
    -
    661
    -
    662template<class U>
    -
    - - -
    665)
    -
    666{
    -
    667 // compiler should implicitly cast
    -
    668 return GetRawPtr(smart_ptr);
    -
    669}
    -
    -
    670
    -
    671template<class U>
    -
    - - -
    674)
    -
    675{
    -
    676 return !IsNull(smart_ptr);
    -
    677}
    -
    -
    678
    -
    679template<class U>
    -
    - - -
    682)
    -
    683{
    -
    684#ifdef IP_DEBUG_SMARTPTR
    - -
    686 "bool IsNull(const SmartPtr<T>& smart_ptr)",
    -
    687 0);
    -
    688#endif
    -
    689
    -
    690 return (smart_ptr.ptr_ == 0);
    -
    691}
    -
    -
    692
    -
    693template<class U1, class U2>
    -
    - -
    695 const U1* lhs,
    -
    696 const U2* rhs
    -
    697)
    -
    698{
    -
    699#ifdef IP_DEBUG_SMARTPTR
    - -
    701 "bool ComparePtrs(const U1* lhs, const U2* rhs)",
    - -
    703#endif
    -
    704
    -
    705 // Even if lhs and rhs point to the same object
    -
    706 // with different interfaces U1 and U2, we cannot guarantee that
    -
    707 // the value of the pointers will be equivalent. We can
    -
    708 // guarantee this if we convert to ReferencedObject* (see also #162)
    -
    709 const ReferencedObject* v_lhs = lhs;
    -
    710 const ReferencedObject* v_rhs = rhs;
    -
    711
    -
    712 return v_lhs == v_rhs;
    -
    713}
    -
    -
    714
    -
    715template<class U1, class U2>
    -
    - -
    717 const SmartPtr<U1>& lhs,
    -
    718 const SmartPtr<U2>& rhs
    -
    719)
    -
    720{
    -
    721#ifdef IP_DEBUG_SMARTPTR
    - -
    723 "bool operator==(const SmartPtr<U1>& lhs, const SmartPtr<U2>& rhs)",
    - -
    725#endif
    -
    726
    - - - -
    730}
    -
    -
    731
    -
    732template<class U1, class U2>
    -
    - -
    734 const SmartPtr<U1>& lhs,
    -
    735 U2* raw_rhs
    -
    736)
    -
    737{
    -
    738#ifdef IP_DEBUG_SMARTPTR
    - -
    740 "bool operator==(SmartPtr<U1>& lhs, U2* rhs)",
    - -
    742#endif
    -
    743
    - - -
    746}
    -
    -
    747
    -
    748template<class U1, class U2>
    -
    - -
    750 U1* raw_lhs,
    -
    751 const SmartPtr<U2>& rhs
    -
    752)
    -
    753{
    -
    754#ifdef IP_DEBUG_SMARTPTR
    - -
    756 "bool operator==(U1* raw_lhs, SmartPtr<U2>& rhs)",
    - -
    758#endif
    -
    759
    -
    760 const U2* raw_rhs = GetRawPtr(rhs);
    - -
    762}
    -
    -
    763
    -
    764template<class U1, class U2>
    -
    - -
    766 const SmartPtr<U1>& lhs,
    -
    767 const SmartPtr<U2>& rhs
    -
    768)
    -
    769{
    -
    770#ifdef IP_DEBUG_SMARTPTR
    - -
    772 "bool operator!=(const SmartPtr<U1>& lhs, const SmartPtr<U2>& rhs)",
    - -
    774#endif
    -
    775
    -
    776 bool retValue = operator==(lhs, rhs);
    -
    777 return !retValue;
    -
    778}
    -
    -
    779
    -
    780template<class U1, class U2>
    -
    - -
    782 const SmartPtr<U1>& lhs,
    -
    783 U2* raw_rhs
    -
    784)
    -
    785{
    -
    786#ifdef IP_DEBUG_SMARTPTR
    - -
    788 "bool operator!=(SmartPtr<U1>& lhs, U2* rhs)",
    - -
    790#endif
    -
    791
    - -
    793 return !retValue;
    -
    794}
    -
    -
    795
    -
    796template<class U1, class U2>
    -
    - -
    798 U1* raw_lhs,
    -
    799 const SmartPtr<U2>& rhs
    -
    800)
    -
    801{
    -
    802#ifdef IP_DEBUG_SMARTPTR
    - -
    804 "bool operator!=(U1* raw_lhs, SmartPtr<U2>& rhs)",
    - -
    806#endif
    -
    807
    - -
    809 return !retValue;
    -
    810}
    -
    -
    811
    -
    812template<class T>
    -
    -
    813void swap(
    -
    814 SmartPtr<T>& a,
    - -
    816)
    -
    817{
    -
    818#ifdef IP_DEBUG_REFERENCED
    - -
    820 a = b;
    -
    821 b = tmp;
    -
    822#else
    -
    823 std::swap(a.prt_, b.ptr_);
    -
    824#endif
    -
    825}
    -
    -
    826
    -
    827template<class T>
    -
    - -
    829 const SmartPtr<T>& lhs,
    -
    830 const SmartPtr<T>& rhs
    -
    831)
    -
    832{
    -
    833 return lhs.ptr_ < rhs.ptr_;
    -
    834}
    -
    -
    835
    -
    836template<class T>
    -
    - -
    838 const SmartPtr<T>& lhs,
    -
    839 const SmartPtr<T>& rhs
    -
    840)
    -
    841{
    -
    842 return rhs < lhs;
    -
    843}
    -
    -
    844
    -
    -
    845template<class T> bool operator<=(
    -
    846 const SmartPtr<T>& lhs,
    -
    847 const SmartPtr<T>& rhs
    -
    848)
    -
    849{
    -
    850 return !(rhs < lhs);
    -
    851}
    -
    -
    852
    -
    -
    853template<class T> bool operator>=(
    -
    854 const SmartPtr<T>& lhs,
    -
    855 const SmartPtr<T>& rhs
    -
    856)
    -
    857{
    -
    858 return !(lhs < rhs);
    -
    859}
    -
    -
    860
    -
    861} // namespace Ipopt
    -
    862
    -
    863#undef ipopt_dbg_smartptr_verbosity
    -
    864
    -
    865#endif
    +
    644 ptr_ = 0;
    +
    645 }
    +
    646 }
    +
    647}
    + + +
    648
    +
    649template<class U>
    +
    + + +
    652)
    +
    653{
    +
    654#ifdef IP_DEBUG_SMARTPTR
    + +
    656 "T* GetRawPtr(const SmartPtr<T>& smart_ptr)",
    +
    657 0);
    +
    658#endif
    +
    659
    +
    660 return smart_ptr.ptr_;
    +
    661}
    +
    +
    662
    +
    663template<class U>
    +
    + + +
    666)
    +
    667{
    +
    668 // compiler should implicitly cast
    +
    669 return GetRawPtr(smart_ptr);
    +
    670}
    +
    +
    671
    +
    672template<class U>
    +
    + + +
    675)
    +
    676{
    +
    677 return !IsNull(smart_ptr);
    +
    678}
    +
    +
    679
    +
    680template<class U>
    +
    + + +
    683)
    +
    684{
    +
    685#ifdef IP_DEBUG_SMARTPTR
    + +
    687 "bool IsNull(const SmartPtr<T>& smart_ptr)",
    +
    688 0);
    +
    689#endif
    +
    690
    +
    691 return (smart_ptr.ptr_ == 0);
    +
    692}
    +
    +
    693
    +
    694template<class U1, class U2>
    +
    + +
    696 const U1* lhs,
    +
    697 const U2* rhs
    +
    698)
    +
    699{
    +
    700#ifdef IP_DEBUG_SMARTPTR
    + +
    702 "bool ComparePtrs(const U1* lhs, const U2* rhs)",
    + +
    704#endif
    +
    705
    +
    706 // Even if lhs and rhs point to the same object
    +
    707 // with different interfaces U1 and U2, we cannot guarantee that
    +
    708 // the value of the pointers will be equivalent. We can
    +
    709 // guarantee this if we convert to ReferencedObject* (see also #162)
    +
    710 const ReferencedObject* v_lhs = lhs;
    +
    711 const ReferencedObject* v_rhs = rhs;
    +
    712
    +
    713 return v_lhs == v_rhs;
    +
    714}
    +
    +
    715
    +
    716template<class U1, class U2>
    +
    + +
    718 const SmartPtr<U1>& lhs,
    +
    719 const SmartPtr<U2>& rhs
    +
    720)
    +
    721{
    +
    722#ifdef IP_DEBUG_SMARTPTR
    + +
    724 "bool operator==(const SmartPtr<U1>& lhs, const SmartPtr<U2>& rhs)",
    + +
    726#endif
    +
    727
    + + + +
    731}
    +
    +
    732
    +
    733template<class U1, class U2>
    +
    + +
    735 const SmartPtr<U1>& lhs,
    +
    736 U2* raw_rhs
    +
    737)
    +
    738{
    +
    739#ifdef IP_DEBUG_SMARTPTR
    + +
    741 "bool operator==(SmartPtr<U1>& lhs, U2* rhs)",
    + +
    743#endif
    +
    744
    + + +
    747}
    +
    +
    748
    +
    749template<class U1, class U2>
    +
    + +
    751 U1* raw_lhs,
    +
    752 const SmartPtr<U2>& rhs
    +
    753)
    +
    754{
    +
    755#ifdef IP_DEBUG_SMARTPTR
    + +
    757 "bool operator==(U1* raw_lhs, SmartPtr<U2>& rhs)",
    + +
    759#endif
    +
    760
    +
    761 const U2* raw_rhs = GetRawPtr(rhs);
    + +
    763}
    +
    +
    764
    +
    765template<class U1, class U2>
    +
    + +
    767 const SmartPtr<U1>& lhs,
    +
    768 const SmartPtr<U2>& rhs
    +
    769)
    +
    770{
    +
    771#ifdef IP_DEBUG_SMARTPTR
    + +
    773 "bool operator!=(const SmartPtr<U1>& lhs, const SmartPtr<U2>& rhs)",
    + +
    775#endif
    +
    776
    +
    777 bool retValue = operator==(lhs, rhs);
    +
    778 return !retValue;
    +
    779}
    +
    +
    780
    +
    781template<class U1, class U2>
    +
    + +
    783 const SmartPtr<U1>& lhs,
    +
    784 U2* raw_rhs
    +
    785)
    +
    786{
    +
    787#ifdef IP_DEBUG_SMARTPTR
    + +
    789 "bool operator!=(SmartPtr<U1>& lhs, U2* rhs)",
    + +
    791#endif
    +
    792
    + +
    794 return !retValue;
    +
    795}
    +
    +
    796
    +
    797template<class U1, class U2>
    +
    + +
    799 U1* raw_lhs,
    +
    800 const SmartPtr<U2>& rhs
    +
    801)
    +
    802{
    +
    803#ifdef IP_DEBUG_SMARTPTR
    + +
    805 "bool operator!=(U1* raw_lhs, SmartPtr<U2>& rhs)",
    + +
    807#endif
    +
    808
    + +
    810 return !retValue;
    +
    811}
    +
    +
    812
    +
    813template<class T>
    +
    +
    814void swap(
    +
    815 SmartPtr<T>& a,
    + +
    817)
    +
    818{
    +
    819#ifdef IP_DEBUG_REFERENCED
    + +
    821 a = b;
    +
    822 b = tmp;
    +
    823#else
    +
    824 std::swap(a.prt_, b.ptr_);
    +
    825#endif
    +
    826}
    +
    +
    827
    +
    828template<class T>
    +
    + +
    830 const SmartPtr<T>& lhs,
    +
    831 const SmartPtr<T>& rhs
    +
    832)
    +
    833{
    +
    834 return lhs.ptr_ < rhs.ptr_;
    +
    835}
    +
    +
    836
    +
    837template<class T>
    +
    + +
    839 const SmartPtr<T>& lhs,
    +
    840 const SmartPtr<T>& rhs
    +
    841)
    +
    842{
    +
    843 return rhs < lhs;
    +
    844}
    +
    +
    845
    +
    +
    846template<class T> bool operator<=(
    +
    847 const SmartPtr<T>& lhs,
    +
    848 const SmartPtr<T>& rhs
    +
    849)
    +
    850{
    +
    851 return !(rhs < lhs);
    +
    852}
    +
    +
    853
    +
    +
    854template<class T> bool operator>=(
    +
    855 const SmartPtr<T>& lhs,
    +
    856 const SmartPtr<T>& rhs
    +
    857)
    +
    858{
    +
    859 return !(lhs < rhs);
    +
    860}
    +
    +
    861
    +
    862} // namespace Ipopt
    +
    863
    +
    864#undef ipopt_dbg_smartptr_verbosity
    +
    865
    +
    866#endif
    @@ -858,24 +859,24 @@
    Pseudo-class, from which everything has to inherit that wants to use be registered as a Referencer fo...
    Template class for Smart Pointers.
    T & operator*() const
    Overloaded dereference operator, allows the user to dereference the contained pointer.
    -
    friend bool operator!=(const SmartPtr< U1 > &lhs, U2 *raw_rhs)
    Overloaded in-equality comparison operator, allows the user to compare the value of a SmartPtr with a...
    +
    friend bool operator!=(const SmartPtr< U1 > &lhs, U2 *raw_rhs)
    Overloaded in-equality comparison operator, allows the user to compare the value of a SmartPtr with a...
    SmartPtr< T > & SetFromSmartPtr_(const SmartPtr< T > &rhs)
    Set the value of the internal raw pointer from a SmartPtr, releasing the previously referenced object...
    SmartPtr()
    Default constructor, initialized to NULL.
    SmartPtr(const SmartPtr< U > &copy)
    Copy constructor, initialized from copy of type U.
    -
    friend U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    Returns the raw pointer contained.
    -
    friend SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    Returns a const pointer.
    -
    friend bool operator!=(U1 *lhs, const SmartPtr< U2 > &raw_rhs)
    Overloaded in-equality comparison operator, allows the user to compare the value of a SmartPtr with a...
    -
    friend bool IsNull(const SmartPtr< U > &smart_ptr)
    Returns true if the SmartPtr is NULL.
    -
    friend bool operator!=(const SmartPtr< U1 > &lhs, const SmartPtr< U2 > &rhs)
    Overloaded in-equality comparison operator, allows the user to compare the value of two SmartPtrs.
    +
    friend U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    Returns the raw pointer contained.
    +
    friend SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    Returns a const pointer.
    +
    friend bool operator!=(U1 *lhs, const SmartPtr< U2 > &raw_rhs)
    Overloaded in-equality comparison operator, allows the user to compare the value of a SmartPtr with a...
    +
    friend bool IsNull(const SmartPtr< U > &smart_ptr)
    Returns true if the SmartPtr is NULL.
    +
    friend bool operator!=(const SmartPtr< U1 > &lhs, const SmartPtr< U2 > &rhs)
    Overloaded in-equality comparison operator, allows the user to compare the value of two SmartPtrs.
    friend bool operator<(const SmartPtr< U > &lhs, const SmartPtr< U > &rhs)
    Overloaded less-than comparison operator, allows the user to compare the value of two SmartPtrs.
    -
    friend bool operator==(const SmartPtr< U1 > &lhs, const SmartPtr< U2 > &rhs)
    Overloaded equality comparison operator, allows the user to compare the value of two SmartPtrs.
    -
    friend bool operator==(U1 *lhs, const SmartPtr< U2 > &raw_rhs)
    Overloaded equality comparison operator, allows the user to compare the value of a raw pointer with a...
    -
    friend bool operator==(const SmartPtr< U1 > &lhs, U2 *raw_rhs)
    Overloaded equality comparison operator, allows the user to compare the value of a SmartPtr with a ra...
    +
    friend bool operator==(const SmartPtr< U1 > &lhs, const SmartPtr< U2 > &rhs)
    Overloaded equality comparison operator, allows the user to compare the value of two SmartPtrs.
    +
    friend bool operator==(U1 *lhs, const SmartPtr< U2 > &raw_rhs)
    Overloaded equality comparison operator, allows the user to compare the value of a raw pointer with a...
    +
    friend bool operator==(const SmartPtr< U1 > &lhs, U2 *raw_rhs)
    Overloaded equality comparison operator, allows the user to compare the value of a SmartPtr with a ra...
    SmartPtr(T *ptr)
    Constructor, initialized from T* ptr.
    SmartPtr< T > & operator=(const SmartPtr< T > &rhs)
    Overloaded equals operator, allows the user to set the value of the SmartPtr from another SmartPtr.
    ~SmartPtr()
    Destructor, automatically decrements the reference count and deletes the object if necessary.
    SmartPtr< T > & operator=(T *rhs)
    Overloaded equals operator, allows the user to set the value of the SmartPtr from a raw pointer.
    -
    friend bool IsValid(const SmartPtr< U > &smart_ptr)
    Returns true if the SmartPtr is NOT NULL.
    +
    friend bool IsValid(const SmartPtr< U > &smart_ptr)
    Returns true if the SmartPtr is NOT NULL.
    void ReleasePointer_()
    Release the currently referenced object.
    SmartPtr< T > & SetFromRawPtr_(T *rhs)
    Set the value of the internal raw pointer from another raw pointer, releasing the previously referenc...
    SmartPtr< T > & operator=(const SmartPtr< U > &rhs)
    Overloaded equals operator, allows the user to set the value of the SmartPtr from another SmartPtr of...
    @@ -883,18 +884,18 @@
    T * operator->() const
    Overloaded arrow operator, allows the user to call methods using the contained pointer.
    T * ptr_
    Actual raw pointer to the object.
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    -
    bool IsValid(const SmartPtr< U > &smart_ptr)
    -
    U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    -
    bool ComparePointers(const U1 *lhs, const U2 *rhs)
    -
    bool operator<=(const SmartPtr< T > &lhs, const SmartPtr< T > &rhs)
    -
    bool operator!=(const SmartPtr< U1 > &lhs, const SmartPtr< U2 > &rhs)
    -
    void swap(SmartPtr< T > &a, SmartPtr< T > &b)
    -
    bool operator>(const SmartPtr< T > &lhs, const SmartPtr< T > &rhs)
    -
    bool IsNull(const SmartPtr< U > &smart_ptr)
    -
    bool operator>=(const SmartPtr< T > &lhs, const SmartPtr< T > &rhs)
    -
    bool operator<(const SmartPtr< T > &lhs, const SmartPtr< T > &rhs)
    -
    bool operator==(const SmartPtr< U1 > &lhs, const SmartPtr< U2 > &rhs)
    +
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    +
    bool IsValid(const SmartPtr< U > &smart_ptr)
    +
    U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    +
    bool ComparePointers(const U1 *lhs, const U2 *rhs)
    +
    bool operator<=(const SmartPtr< T > &lhs, const SmartPtr< T > &rhs)
    +
    bool operator!=(const SmartPtr< U1 > &lhs, const SmartPtr< U2 > &rhs)
    +
    void swap(SmartPtr< T > &a, SmartPtr< T > &b)
    +
    bool operator>(const SmartPtr< T > &lhs, const SmartPtr< T > &rhs)
    +
    bool IsNull(const SmartPtr< U > &smart_ptr)
    +
    bool operator>=(const SmartPtr< T > &lhs, const SmartPtr< T > &rhs)
    +
    bool operator<(const SmartPtr< T > &lhs, const SmartPtr< T > &rhs)
    +
    bool operator==(const SmartPtr< U1 > &lhs, const SmartPtr< U2 > &rhs)
    diff --git a/IpSolveStatistics_8hpp.html b/IpSolveStatistics_8hpp.html index 921495f50..71a3146c7 100644 --- a/IpSolveStatistics_8hpp.html +++ b/IpSolveStatistics_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpSolveStatistics_8hpp_source.html b/IpSolveStatistics_8hpp_source.html index c5b7950c7..47975ec10 100644 --- a/IpSolveStatistics_8hpp_source.html +++ b/IpSolveStatistics_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpSparseSymLinearSolverInterface_8hpp.html b/IpSparseSymLinearSolverInterface_8hpp.html index d081f4768..8b974310b 100644 --- a/IpSparseSymLinearSolverInterface_8hpp.html +++ b/IpSparseSymLinearSolverInterface_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpSparseSymLinearSolverInterface_8hpp_source.html b/IpSparseSymLinearSolverInterface_8hpp_source.html index e8457a6b7..13f6a6029 100644 --- a/IpSparseSymLinearSolverInterface_8hpp_source.html +++ b/IpSparseSymLinearSolverInterface_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpSpralSolverInterface_8hpp.html b/IpSpralSolverInterface_8hpp.html index 6a874a781..5629651b3 100644 --- a/IpSpralSolverInterface_8hpp.html +++ b/IpSpralSolverInterface_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpSpralSolverInterface_8hpp_source.html b/IpSpralSolverInterface_8hpp_source.html index 7281143a9..e61fafee6 100644 --- a/IpSpralSolverInterface_8hpp_source.html +++ b/IpSpralSolverInterface_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpStdAugSystemSolver_8hpp.html b/IpStdAugSystemSolver_8hpp.html index ec3bbc068..26e2537d1 100644 --- a/IpStdAugSystemSolver_8hpp.html +++ b/IpStdAugSystemSolver_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpStdAugSystemSolver_8hpp_source.html b/IpStdAugSystemSolver_8hpp_source.html index b83c1686a..c30689f84 100644 --- a/IpStdAugSystemSolver_8hpp_source.html +++ b/IpStdAugSystemSolver_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpStdCInterface_8h.html b/IpStdCInterface_8h.html index f2560676b..b4aa15cb2 100644 --- a/IpStdCInterface_8h.html +++ b/IpStdCInterface_8h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpStdCInterface_8h_source.html b/IpStdCInterface_8h_source.html index 106970ec5..65c39c5d7 100644 --- a/IpStdCInterface_8h_source.html +++ b/IpStdCInterface_8h_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpStdInterfaceTNLP_8hpp.html b/IpStdInterfaceTNLP_8hpp.html index 3886388d3..b96f6bb12 100644 --- a/IpStdInterfaceTNLP_8hpp.html +++ b/IpStdInterfaceTNLP_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpStdInterfaceTNLP_8hpp_source.html b/IpStdInterfaceTNLP_8hpp_source.html index 98a97c5ba..c7d7b92f5 100644 --- a/IpStdInterfaceTNLP_8hpp_source.html +++ b/IpStdInterfaceTNLP_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -397,7 +397,7 @@
    Templated class which stores one entry for the CachedResult class.
    Class for all IPOPT specific calculated quantities.
    -
    Class to organize all the data required by the algorithm.
    +
    Class to organize all the data required by the algorithm.
    Implementation of a TNLP for the Standard C interface.
    const Number * x_U_
    Pointer to Number array containing upper bounds for variables.
    IpoptCalculatedQuantities * ip_cq_
    diff --git a/IpSumMatrix_8hpp.html b/IpSumMatrix_8hpp.html index 36856b76c..76da5de00 100644 --- a/IpSumMatrix_8hpp.html +++ b/IpSumMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpSumMatrix_8hpp_source.html b/IpSumMatrix_8hpp_source.html index fd7682f42..3070af6a9 100644 --- a/IpSumMatrix_8hpp_source.html +++ b/IpSumMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpSumSymMatrix_8hpp.html b/IpSumSymMatrix_8hpp.html index 638d29fe6..12213be69 100644 --- a/IpSumSymMatrix_8hpp.html +++ b/IpSumSymMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpSumSymMatrix_8hpp_source.html b/IpSumSymMatrix_8hpp_source.html index d24ac232e..2dd1f76d0 100644 --- a/IpSumSymMatrix_8hpp_source.html +++ b/IpSumSymMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpSymLinearSolver_8hpp.html b/IpSymLinearSolver_8hpp.html index 56817ba4c..4f52e7b5d 100644 --- a/IpSymLinearSolver_8hpp.html +++ b/IpSymLinearSolver_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpSymLinearSolver_8hpp_source.html b/IpSymLinearSolver_8hpp_source.html index 846179b92..b43b5ee60 100644 --- a/IpSymLinearSolver_8hpp_source.html +++ b/IpSymLinearSolver_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpSymMatrix_8hpp.html b/IpSymMatrix_8hpp.html index 6ecaa095f..e6dbf834c 100644 --- a/IpSymMatrix_8hpp.html +++ b/IpSymMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpSymMatrix_8hpp_source.html b/IpSymMatrix_8hpp_source.html index e87d0bc12..0a7e308c7 100644 --- a/IpSymMatrix_8hpp_source.html +++ b/IpSymMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpSymScaledMatrix_8hpp.html b/IpSymScaledMatrix_8hpp.html index 8aad317e4..2996ce661 100644 --- a/IpSymScaledMatrix_8hpp.html +++ b/IpSymScaledMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpSymScaledMatrix_8hpp_source.html b/IpSymScaledMatrix_8hpp_source.html index 888fa8be1..01326c720 100644 --- a/IpSymScaledMatrix_8hpp_source.html +++ b/IpSymScaledMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -373,9 +373,9 @@
    Vector Base Class.
    Definition IpVector.hpp:48
    #define IPOPTLIB_EXPORT
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    -
    bool IsValid(const SmartPtr< U > &smart_ptr)
    -
    U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    +
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    +
    bool IsValid(const SmartPtr< U > &smart_ptr)
    +
    U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    EJournalCategory
    Category Selection Enum.
    EJournalLevel
    Print Level Enum.
    diff --git a/IpSymTMatrix_8hpp.html b/IpSymTMatrix_8hpp.html index e09e04d6c..3ab6228f3 100644 --- a/IpSymTMatrix_8hpp.html +++ b/IpSymTMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpSymTMatrix_8hpp_source.html b/IpSymTMatrix_8hpp_source.html index 732ac1d9d..2cc44dd69 100644 --- a/IpSymTMatrix_8hpp_source.html +++ b/IpSymTMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTDependencyDetector_8hpp.html b/IpTDependencyDetector_8hpp.html index a89e06a78..41ae7eedb 100644 --- a/IpTDependencyDetector_8hpp.html +++ b/IpTDependencyDetector_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTDependencyDetector_8hpp_source.html b/IpTDependencyDetector_8hpp_source.html index 5b6976f1d..383e71824 100644 --- a/IpTDependencyDetector_8hpp_source.html +++ b/IpTDependencyDetector_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTNLPAdapter_8hpp.html b/IpTNLPAdapter_8hpp.html index 8e563eabc..0bd035e27 100644 --- a/IpTNLPAdapter_8hpp.html +++ b/IpTNLPAdapter_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTNLPAdapter_8hpp_source.html b/IpTNLPAdapter_8hpp_source.html index 0cc9a77b7..2d1477d71 100644 --- a/IpTNLPAdapter_8hpp_source.html +++ b/IpTNLPAdapter_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -569,7 +569,7 @@
    #define IPOPT_DEPRECATED
    macro to declare symbols as deprecated
    Definition IpTypes.h:25
    Templated class which stores one entry for the CachedResult class.
    Class for all IPOPT specific calculated quantities.
    -
    Class to organize all the data required by the algorithm.
    +
    Class to organize all the data required by the algorithm.
    Specialized CompoundVector class specifically for the algorithm iterates.
    Matrix Base Class.
    Definition IpMatrix.hpp:28
    Traditional NLP.
    Definition IpNLP.hpp:42
    @@ -705,7 +705,7 @@
    Vector Base Class.
    Definition IpVector.hpp:48
    #define IPOPTLIB_EXPORT
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    +
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    HessianApproximationType
    enumeration for the Hessian information type.
    SolverReturn
    enum for the return from the optimize algorithm
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    diff --git a/IpTNLPReducer_8hpp.html b/IpTNLPReducer_8hpp.html index 6f4e8245a..11cbdd608 100644 --- a/IpTNLPReducer_8hpp.html +++ b/IpTNLPReducer_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTNLPReducer_8hpp_source.html b/IpTNLPReducer_8hpp_source.html index d41699a46..168047439 100644 --- a/IpTNLPReducer_8hpp_source.html +++ b/IpTNLPReducer_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -329,7 +329,7 @@
    Templated class which stores one entry for the CachedResult class.
    Class for all IPOPT specific calculated quantities.
    -
    Class to organize all the data required by the algorithm.
    +
    Class to organize all the data required by the algorithm.
    Specialized CompoundVector class specifically for the algorithm iterates.
    This is a wrapper around a given TNLP class that takes out a list of constraints that are given to th...
    Index n_x_fix_
    Number of variables that are to be fixed to initial value.
    diff --git a/IpTNLP_8hpp.html b/IpTNLP_8hpp.html index b1afd7fda..72d64d3b6 100644 --- a/IpTNLP_8hpp.html +++ b/IpTNLP_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTNLP_8hpp_source.html b/IpTNLP_8hpp_source.html index e87acab9e..57396ab2c 100644 --- a/IpTNLP_8hpp_source.html +++ b/IpTNLP_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -526,7 +526,7 @@
    Templated class which stores one entry for the CachedResult class.
    Class for all IPOPT specific calculated quantities.
    -
    Class to organize all the data required by the algorithm.
    +
    Class to organize all the data required by the algorithm.
    Specialized CompoundVector class specifically for the algorithm iterates.
    Storing the reference count of all the smart pointers that currently reference it.
    Base class for all NLP's that use standard triplet matrix form and dense vectors.
    Definition IpTNLP.hpp:48
    diff --git a/IpTSymDependencyDetector_8hpp.html b/IpTSymDependencyDetector_8hpp.html index 87b2f6016..f91e9d8d5 100644 --- a/IpTSymDependencyDetector_8hpp.html +++ b/IpTSymDependencyDetector_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTSymDependencyDetector_8hpp_source.html b/IpTSymDependencyDetector_8hpp_source.html index 2acd15e3e..bc18fb109 100644 --- a/IpTSymDependencyDetector_8hpp_source.html +++ b/IpTSymDependencyDetector_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTSymLinearSolver_8hpp.html b/IpTSymLinearSolver_8hpp.html index a83de886c..cff0c9d7e 100644 --- a/IpTSymLinearSolver_8hpp.html +++ b/IpTSymLinearSolver_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTSymLinearSolver_8hpp_source.html b/IpTSymLinearSolver_8hpp_source.html index 7e617e64c..716d29889 100644 --- a/IpTSymLinearSolver_8hpp_source.html +++ b/IpTSymLinearSolver_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTSymScalingMethod_8hpp.html b/IpTSymScalingMethod_8hpp.html index 6a853ef0c..1701e2347 100644 --- a/IpTSymScalingMethod_8hpp.html +++ b/IpTSymScalingMethod_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTSymScalingMethod_8hpp_source.html b/IpTSymScalingMethod_8hpp_source.html index 6193274a3..cc887a0af 100644 --- a/IpTSymScalingMethod_8hpp_source.html +++ b/IpTSymScalingMethod_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTaggedObject_8hpp.html b/IpTaggedObject_8hpp.html index f3ff9c1df..aecbc55aa 100644 --- a/IpTaggedObject_8hpp.html +++ b/IpTaggedObject_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTaggedObject_8hpp_source.html b/IpTaggedObject_8hpp_source.html index 72bbb3868..7c6de75af 100644 --- a/IpTaggedObject_8hpp_source.html +++ b/IpTaggedObject_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTimedTask_8hpp.html b/IpTimedTask_8hpp.html index f753d392a..614d22b52 100644 --- a/IpTimedTask_8hpp.html +++ b/IpTimedTask_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTimedTask_8hpp_source.html b/IpTimedTask_8hpp_source.html index c7fa9899b..5d10a866d 100644 --- a/IpTimedTask_8hpp_source.html +++ b/IpTimedTask_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTimingStatistics_8hpp.html b/IpTimingStatistics_8hpp.html index 5996170e6..e10752f80 100644 --- a/IpTimingStatistics_8hpp.html +++ b/IpTimingStatistics_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTimingStatistics_8hpp_source.html b/IpTimingStatistics_8hpp_source.html index e71475dad..a76fdf203 100644 --- a/IpTimingStatistics_8hpp_source.html +++ b/IpTimingStatistics_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTransposeMatrix_8hpp.html b/IpTransposeMatrix_8hpp.html index e7f9e96b3..b5d1a686e 100644 --- a/IpTransposeMatrix_8hpp.html +++ b/IpTransposeMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTransposeMatrix_8hpp_source.html b/IpTransposeMatrix_8hpp_source.html index 23167b556..235768917 100644 --- a/IpTransposeMatrix_8hpp_source.html +++ b/IpTransposeMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -319,8 +319,8 @@
    virtual void MultVectorImpl(Number alpha, const Vector &x, Number beta, Vector &y) const
    Matrix-vector multiply.
    Vector Base Class.
    Definition IpVector.hpp:48
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    -
    bool IsValid(const SmartPtr< U > &smart_ptr)
    +
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    +
    bool IsValid(const SmartPtr< U > &smart_ptr)
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    EJournalCategory
    Category Selection Enum.
    EJournalLevel
    Print Level Enum.
    diff --git a/IpTripletHelper_8hpp.html b/IpTripletHelper_8hpp.html index 66bac82ef..421f9252e 100644 --- a/IpTripletHelper_8hpp.html +++ b/IpTripletHelper_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTripletHelper_8hpp_source.html b/IpTripletHelper_8hpp_source.html index d0df731ab..a693e88aa 100644 --- a/IpTripletHelper_8hpp_source.html +++ b/IpTripletHelper_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTripletToCSRConverter_8hpp.html b/IpTripletToCSRConverter_8hpp.html index b8c38cb95..745ddba75 100644 --- a/IpTripletToCSRConverter_8hpp.html +++ b/IpTripletToCSRConverter_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTripletToCSRConverter_8hpp_source.html b/IpTripletToCSRConverter_8hpp_source.html index 5c53687b9..b87f5dd81 100644 --- a/IpTripletToCSRConverter_8hpp_source.html +++ b/IpTripletToCSRConverter_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTypes_8h.html b/IpTypes_8h.html index 9e918dafd..4d51e99e3 100644 --- a/IpTypes_8h.html +++ b/IpTypes_8h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTypes_8h_source.html b/IpTypes_8h_source.html index 66a897d2a..e4a7b8765 100644 --- a/IpTypes_8h_source.html +++ b/IpTypes_8h_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTypes_8hpp.html b/IpTypes_8hpp.html index 8a31f6c50..1cadbd5b7 100644 --- a/IpTypes_8hpp.html +++ b/IpTypes_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpTypes_8hpp_source.html b/IpTypes_8hpp_source.html index e3fd8bddf..21467ac38 100644 --- a/IpTypes_8hpp_source.html +++ b/IpTypes_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpUserScaling_8hpp.html b/IpUserScaling_8hpp.html index da04cccc8..bacf3befe 100644 --- a/IpUserScaling_8hpp.html +++ b/IpUserScaling_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpUserScaling_8hpp_source.html b/IpUserScaling_8hpp_source.html index 55751d1d3..e2c259583 100644 --- a/IpUserScaling_8hpp_source.html +++ b/IpUserScaling_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpUtils_8hpp.html b/IpUtils_8hpp.html index 3bd6fbcce..a1b27f6f3 100644 --- a/IpUtils_8hpp.html +++ b/IpUtils_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -163,6 +163,12 @@
    IPOPTLIB_EXPORT Number Ipopt::WallclockTime ()
     method determining wallclock time since first call
     
    IPOPTLIB_EXPORT bool Ipopt::RegisterInterruptHandler (void(*handle_interrupt)(void), bool *interrupt_flag, unsigned int abortlimit=std::numeric_limits< unsigned int >::max())
     register handler for interrupt signals
     
    IPOPTLIB_EXPORT bool Ipopt::UnregisterInterruptHandler (void)
     unregister previously registered handler for interrupt signals
     
    IPOPTLIB_EXPORT bool Ipopt::Compare_le (Number lhs, Number rhs, Number BasVal)
     Method for comparing two numbers within machine precision.
     
    Ipopt Documentation -   +  
    @@ -214,56 +214,64 @@
    99
    102
    - -
    110 Number lhs,
    -
    111 Number rhs,
    - -
    113);
    -
    114
    -
    116#ifdef __GNUC__
    - -
    118#endif
    - -
    120 char* str,
    -
    121 long size,
    -
    122 const char* format,
    -
    123 ...
    -
    124);
    -
    125
    -
    135template<typename T>
    -
    - -
    137 T& len,
    -
    138 double recommended,
    -
    139 T min,
    -
    140 const char* context
    -
    141)
    -
    142{
    -
    143 if( recommended >= std::numeric_limits<T>::max() )
    -
    144 {
    -
    145 // increase len to the maximum possible, if that is still an increase
    -
    146 if( len < std::numeric_limits<T>::max() )
    -
    147 {
    -
    148 len = std::numeric_limits<T>::max();
    -
    149 }
    -
    150 else
    -
    151 {
    - -
    153 std::stringstream what;
    -
    154 what << "Cannot allocate more than " << std::numeric_limits<T>::max()*sizeof(T) << " bytes for " << context << " due to limitation on integer type";
    -
    155 throw std::overflow_error(what.str());
    -
    156 }
    -
    157 }
    -
    158 else
    -
    159 {
    -
    160 len = Max(min, (T) recommended);
    -
    161 }
    -
    162}
    + +
    112 void (*handle_interrupt)(void),
    +
    113 bool* interrupt_flag,
    +
    114 unsigned int abortlimit = std::numeric_limits<unsigned int>::max()
    +
    115);
    +
    116
    + +
    123
    + +
    131 Number lhs,
    +
    132 Number rhs,
    + +
    134);
    +
    135
    +
    137#ifdef __GNUC__
    + +
    139#endif
    + +
    141 char* str,
    +
    142 long size,
    +
    143 const char* format,
    +
    144 ...
    +
    145);
    +
    146
    +
    156template<typename T>
    +
    + +
    158 T& len,
    +
    159 double recommended,
    +
    160 T min,
    +
    161 const char* context
    +
    162)
    +
    163{
    +
    164 if( recommended >= std::numeric_limits<T>::max() )
    +
    165 {
    +
    166 // increase len to the maximum possible, if that is still an increase
    +
    167 if( len < std::numeric_limits<T>::max() )
    +
    168 {
    +
    169 len = std::numeric_limits<T>::max();
    +
    170 }
    +
    171 else
    +
    172 {
    + +
    174 std::stringstream what;
    +
    175 what << "Cannot allocate more than " << std::numeric_limits<T>::max()*sizeof(T) << " bytes for " << context << " due to limitation on integer type";
    +
    176 throw std::overflow_error(what.str());
    +
    177 }
    +
    178 }
    +
    179 else
    +
    180 {
    +
    181 len = Max(min, (T) recommended);
    +
    182 }
    +
    183}
    -
    163
    -
    164} //namespace Ipopt
    -
    165
    -
    166#endif
    +
    184
    +
    185} //namespace Ipopt
    +
    186
    +
    187#endif
    #define DBG_ASSERT(test)
    Definition IpDebug.hpp:27
    @@ -272,16 +280,18 @@
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    IPOPTLIB_EXPORT Number CpuTime()
    method determining CPU time
    IPOPTLIB_EXPORT Number SysTime()
    method determining system time
    +
    IPOPTLIB_EXPORT bool RegisterInterruptHandler(void(*handle_interrupt)(void), bool *interrupt_flag, unsigned int abortlimit=std::numeric_limits< unsigned int >::max())
    register handler for interrupt signals
    IPOPTLIB_EXPORT bool IsFiniteNumber(Number val)
    Function returning true iff the argument is a valid double number (not NaN or Inf).
    IPOPTLIB_EXPORT bool Compare_le(Number lhs, Number rhs, Number BasVal)
    Method for comparing two numbers within machine precision.
    IPOPTLIB_EXPORT void IpResetRandom01()
    Function resetting the random number generator.
    T Max(T a, T b)
    Definition IpUtils.hpp:23
    T Min(T a, T b)
    Definition IpUtils.hpp:53
    ipnumber Number
    Type of all numbers.
    Definition IpTypes.hpp:17
    +
    IPOPTLIB_EXPORT bool UnregisterInterruptHandler(void)
    unregister previously registered handler for interrupt signals
    IPOPTLIB_EXPORT int Snprintf(char *str, long size, const char *format,...)
    Method for printing a formatted output to a string with given size.
    IPOPTLIB_EXPORT Number WallclockTime()
    method determining wallclock time since first call
    IPOPTLIB_EXPORT Number IpRandom01()
    Function returning a random number between 0 and 1.
    -
    void ComputeMemIncrease(T &len, double recommended, T min, const char *context)
    Method to calculate new length for a memory increase based on a recommendation and limits in integer ...
    Definition IpUtils.hpp:136
    +
    void ComputeMemIncrease(T &len, double recommended, T min, const char *context)
    Method to calculate new length for a memory increase based on a recommendation and limits in integer ...
    Definition IpUtils.hpp:157
    diff --git a/IpVector_8hpp.html b/IpVector_8hpp.html index 4cf3ffc66..c590703d1 100644 --- a/IpVector_8hpp.html +++ b/IpVector_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpVector_8hpp_source.html b/IpVector_8hpp_source.html index 14ea5e8d9..b5dc87d88 100644 --- a/IpVector_8hpp_source.html +++ b/IpVector_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -998,7 +998,7 @@
    Number Dot(const Vector &x) const
    Computes inner product of vector x with this (DDOT)
    Definition IpVector.hpp:618
    #define IPOPTLIB_EXPORT
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    bool IsValid(const SmartPtr< U > &smart_ptr)
    +
    bool IsValid(const SmartPtr< U > &smart_ptr)
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    EJournalCategory
    Category Selection Enum.
    EJournalLevel
    Print Level Enum.
    diff --git a/IpWarmStartIterateInitializer_8hpp.html b/IpWarmStartIterateInitializer_8hpp.html index e0cd8889e..dbe829c99 100644 --- a/IpWarmStartIterateInitializer_8hpp.html +++ b/IpWarmStartIterateInitializer_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpWarmStartIterateInitializer_8hpp_source.html b/IpWarmStartIterateInitializer_8hpp_source.html index 2a9319307..d285f3209 100644 --- a/IpWarmStartIterateInitializer_8hpp_source.html +++ b/IpWarmStartIterateInitializer_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpWsmpSolverInterface_8hpp.html b/IpWsmpSolverInterface_8hpp.html index 0ba24245a..d134dda70 100644 --- a/IpWsmpSolverInterface_8hpp.html +++ b/IpWsmpSolverInterface_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpWsmpSolverInterface_8hpp_source.html b/IpWsmpSolverInterface_8hpp_source.html index cdb431bc9..bd8bdb623 100644 --- a/IpWsmpSolverInterface_8hpp_source.html +++ b/IpWsmpSolverInterface_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpZeroMatrix_8hpp.html b/IpZeroMatrix_8hpp.html index adc9c5451..290742fae 100644 --- a/IpZeroMatrix_8hpp.html +++ b/IpZeroMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpZeroMatrix_8hpp_source.html b/IpZeroMatrix_8hpp_source.html index f34b9c7fc..5017786c3 100644 --- a/IpZeroMatrix_8hpp_source.html +++ b/IpZeroMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpZeroSymMatrix_8hpp.html b/IpZeroSymMatrix_8hpp.html index 46d30e0aa..ba6fa0a26 100644 --- a/IpZeroSymMatrix_8hpp.html +++ b/IpZeroSymMatrix_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpZeroSymMatrix_8hpp_source.html b/IpZeroSymMatrix_8hpp_source.html index 22130bf08..7289cf512 100644 --- a/IpZeroSymMatrix_8hpp_source.html +++ b/IpZeroSymMatrix_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpoptConfig_8h.html b/IpoptConfig_8h.html index c78d1bb38..ac91726f8 100644 --- a/IpoptConfig_8h.html +++ b/IpoptConfig_8h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/IpoptConfig_8h_source.html b/IpoptConfig_8h_source.html index 20054c4eb..df6fb6c59 100644 --- a/IpoptConfig_8h_source.html +++ b/IpoptConfig_8h_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/Ipopt_8java.html b/Ipopt_8java.html index b7fb80516..5adf8b4c1 100644 --- a/Ipopt_8java.html +++ b/Ipopt_8java.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/Ipopt_8java_source.html b/Ipopt_8java_source.html index cc730b652..3affcd87e 100644 --- a/Ipopt_8java_source.html +++ b/Ipopt_8java_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/LICENSE.html b/LICENSE.html index bf6d3746c..f957a7ae3 100644 --- a/LICENSE.html +++ b/LICENSE.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/OPTIONS.html b/OPTIONS.html index 241675142..8dfe3aa74 100644 --- a/OPTIONS.html +++ b/OPTIONS.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -1583,6 +1583,9 @@

    ▸ mumps_dep_tol (advanced): Threshold to consider a pivot at zero in detection of linearly dependent constraints with MUMPS.

    This is CNTL(3) in MUMPS. The valid range for this real option is unrestricted and its default value is 0.

    +

    ▸ mumps_mpi_communicator (advanced): MPI communicator used for matrix operations

    +

    This sets the MPI communicator. MPI_COMM_WORLD is the default. Any other value should be the return value from MPI_Comm_c2f. The valid range for this integer option is unrestricted and its default value is -987654. This option is only available if MUMPS's libseq/mpi.h is not used.

    +

    MA28 Linear Solver

    ▸ ma28_pivtol: Pivot tolerance for linear solver MA28.

    diff --git a/OUTPUT.html b/OUTPUT.html index b17177cdd..9a8135e1a 100644 --- a/OUTPUT.html +++ b/OUTPUT.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SPECIALS.html b/SPECIALS.html index 2014e837d..06a82ea33 100644 --- a/SPECIALS.html +++ b/SPECIALS.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensAlgorithm_8hpp.html b/SensAlgorithm_8hpp.html index 49a5ca15e..96aa65117 100644 --- a/SensAlgorithm_8hpp.html +++ b/SensAlgorithm_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensAlgorithm_8hpp_source.html b/SensAlgorithm_8hpp_source.html index 04ede1a03..8d1a7ea9a 100644 --- a/SensAlgorithm_8hpp_source.html +++ b/SensAlgorithm_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensAmplTNLP_8hpp.html b/SensAmplTNLP_8hpp.html index 406a12df0..43f8d06cf 100644 --- a/SensAmplTNLP_8hpp.html +++ b/SensAmplTNLP_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensAmplTNLP_8hpp_source.html b/SensAmplTNLP_8hpp_source.html index 073c7b2bb..b21a4584c 100644 --- a/SensAmplTNLP_8hpp_source.html +++ b/SensAmplTNLP_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -156,7 +156,7 @@
    41{
    45public:
    - +
    48 const SmartPtr<const Journalist>& jnlst,
    49 const SmartPtr<RegisteredOptions> regoptions,
    50 const SmartPtr<OptionsList> options,
    @@ -167,117 +167,118 @@
    55 const char* ampl_option_string = NULL,
    56 const char* ampl_invokation_string = NULL,
    57 const char* ampl_banner_string = NULL,
    -
    58 std::string* nl_file_content = NULL
    -
    59 );
    -
    60
    -
    61 virtual ~SensAmplTNLP();
    -
    62
    -
    64 virtual bool get_bounds_info(
    -
    65 Index n,
    -
    66 Number* x_l,
    -
    67 Number* x_u,
    -
    68 Index m,
    -
    69 Number* g_l,
    -
    70 Number* g_u
    -
    71 );
    -
    72
    - -
    74 Index idx,
    - -
    76 );
    -
    77
    -
    78 virtual void finalize_metadata(
    -
    79 Index n,
    -
    80 const StringMetaDataMapType& var_string_md,
    -
    81 const IntegerMetaDataMapType& var_integer_md,
    -
    82 const NumericMetaDataMapType& var_numeric_md,
    -
    83 Index m,
    -
    84 const StringMetaDataMapType& con_string_md,
    -
    85 const IntegerMetaDataMapType& con_integer_md,
    -
    86 const NumericMetaDataMapType& con_numeric_md
    -
    87 );
    -
    88
    -
    89 virtual void finalize_solution(
    -
    90 SolverReturn status,
    -
    91 Index n,
    -
    92 const Number* x,
    -
    93 const Number* z_L,
    -
    94 const Number* z_U,
    -
    95 Index m,
    -
    96 const Number* g,
    -
    97 const Number* lambda,
    -
    98 Number obj_value,
    -
    99 const IpoptData* ip_data,
    - -
    101 );
    -
    102
    - -
    104 const char* suffix_name
    -
    105 );
    -
    106
    -
    107 std::vector<int> get_index_suffix_vec(
    -
    108 const char* suffix_name
    -
    109 );
    -
    110
    - -
    112 const char* suffix_name
    -
    113 );
    -
    114
    -
    115 std::vector<Number> get_number_suffix_vec(
    -
    116 const char* suffix_name
    -
    117 );
    -
    118
    - -
    120 const char* suffix_name
    -
    121 );
    -
    122
    - -
    124 const char* suffix_name
    -
    125 );
    -
    126
    - -
    128 const char* suffix_name
    -
    129 );
    -
    130
    - -
    132 Index n,
    -
    133 StringMetaDataMapType& var_string_md,
    -
    134 IntegerMetaDataMapType& var_integer_md,
    -
    135 NumericMetaDataMapType& var_numeric_md,
    -
    136 Index m,
    -
    137 StringMetaDataMapType& con_string_md,
    -
    138 IntegerMetaDataMapType& con_integer_md,
    -
    139 NumericMetaDataMapType& con_numeric_md
    -
    140 );
    -
    141
    -
    142private:
    -
    143
    -
    145 // Number* x_L;
    -
    146 // Number* x_U;
    - - -
    149
    - -
    151
    - - -
    154
    - - - -
    159
    -
    160 std::vector<SmartPtr<IteratesVector> > sens_sol_;
    -
    161};
    +
    58 std::string* nl_file_content = NULL,
    +
    59 bool checkinterrupt = false
    +
    60 );
    +
    61
    +
    62 virtual ~SensAmplTNLP();
    +
    63
    +
    65 virtual bool get_bounds_info(
    +
    66 Index n,
    +
    67 Number* x_l,
    +
    68 Number* x_u,
    +
    69 Index m,
    +
    70 Number* g_l,
    +
    71 Number* g_u
    +
    72 );
    +
    73
    + +
    75 Index idx,
    + +
    77 );
    +
    78
    +
    79 virtual void finalize_metadata(
    +
    80 Index n,
    +
    81 const StringMetaDataMapType& var_string_md,
    +
    82 const IntegerMetaDataMapType& var_integer_md,
    +
    83 const NumericMetaDataMapType& var_numeric_md,
    +
    84 Index m,
    +
    85 const StringMetaDataMapType& con_string_md,
    +
    86 const IntegerMetaDataMapType& con_integer_md,
    +
    87 const NumericMetaDataMapType& con_numeric_md
    +
    88 );
    +
    89
    +
    90 virtual void finalize_solution(
    +
    91 SolverReturn status,
    +
    92 Index n,
    +
    93 const Number* x,
    +
    94 const Number* z_L,
    +
    95 const Number* z_U,
    +
    96 Index m,
    +
    97 const Number* g,
    +
    98 const Number* lambda,
    +
    99 Number obj_value,
    +
    100 const IpoptData* ip_data,
    + +
    102 );
    +
    103
    + +
    105 const char* suffix_name
    +
    106 );
    +
    107
    +
    108 std::vector<int> get_index_suffix_vec(
    +
    109 const char* suffix_name
    +
    110 );
    +
    111
    + +
    113 const char* suffix_name
    +
    114 );
    +
    115
    +
    116 std::vector<Number> get_number_suffix_vec(
    +
    117 const char* suffix_name
    +
    118 );
    +
    119
    + +
    121 const char* suffix_name
    +
    122 );
    +
    123
    + +
    125 const char* suffix_name
    +
    126 );
    +
    127
    + +
    129 const char* suffix_name
    +
    130 );
    +
    131
    + +
    133 Index n,
    +
    134 StringMetaDataMapType& var_string_md,
    +
    135 IntegerMetaDataMapType& var_integer_md,
    +
    136 NumericMetaDataMapType& var_numeric_md,
    +
    137 Index m,
    +
    138 StringMetaDataMapType& con_string_md,
    +
    139 IntegerMetaDataMapType& con_integer_md,
    +
    140 NumericMetaDataMapType& con_numeric_md
    +
    141 );
    +
    142
    +
    143private:
    +
    144
    +
    146 // Number* x_L;
    +
    147 // Number* x_U;
    + + +
    150
    + +
    152
    + + +
    155
    + + + +
    160
    +
    161 std::vector<SmartPtr<IteratesVector> > sens_sol_;
    +
    162};
    -
    162
    -
    163}
    -
    164
    -
    165#endif
    +
    163
    +
    164}
    +
    165
    +
    166#endif
    Ampl Interface, implemented as a TNLP.
    Definition AmplTNLP.hpp:317
    Class for all IPOPT specific calculated quantities.
    -
    Class to organize all the data required by the algorithm.
    +
    Class to organize all the data required by the algorithm.
    This is the base class for all exceptions.
    SUFFIX_EMPTY(std::string msg, std::string fname, Ipopt::Index line)
    @@ -285,28 +286,28 @@
    void operator=(const SUFFIX_EMPTY &)
    - - + +
    void set_sens_solution(Index idx, SmartPtr< IteratesVector > sens_sol)
    -
    SmartPtr< const Journalist > jnlst_
    local copy of current lower and upper bounds - needed for parameter change
    -
    SensAmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, char **&argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL)
    This class is the Sens-wrapper for the ampltnlp, adapts the get bounds function and some others to ou...
    - +
    SmartPtr< const Journalist > jnlst_
    local copy of current lower and upper bounds - needed for parameter change
    +
    std::vector< int > get_index_suffix_vec(const char *suffix_name)
    virtual void finalize_metadata(Index n, const StringMetaDataMapType &var_string_md, const IntegerMetaDataMapType &var_integer_md, const NumericMetaDataMapType &var_numeric_md, Index m, const StringMetaDataMapType &con_string_md, const IntegerMetaDataMapType &con_integer_md, const NumericMetaDataMapType &con_numeric_md)
    This method returns any metadata collected during the run of the algorithm.
    std::vector< Number > get_number_suffix_vec(const char *suffix_name)
    - + +
    SensAmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, char **&argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL, bool checkinterrupt=false)
    This class is the Sens-wrapper for the ampltnlp, adapts the get bounds function and some others to ou...
    virtual ~SensAmplTNLP()
    const int * get_index_suffix(const char *suffix_name)
    virtual void finalize_solution(SolverReturn status, Index n, const Number *x, const Number *z_L, const Number *z_U, Index m, const Number *g, const Number *lambda, Number obj_value, const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq)
    This method is called when the algorithm has finished (successfully or not) so the TNLP can digest th...
    -
    Index n_sens_steps_
    important Options
    - +
    Index n_sens_steps_
    important Options
    +
    std::vector< int > get_index_suffix_constr_vec(const char *suffix_name)
    virtual bool get_var_con_metadata(Index n, StringMetaDataMapType &var_string_md, IntegerMetaDataMapType &var_integer_md, NumericMetaDataMapType &var_numeric_md, Index m, StringMetaDataMapType &con_string_md, IntegerMetaDataMapType &con_integer_md, NumericMetaDataMapType &con_numeric_md)
    Method to request meta data for the variables and the constraints.
    const Number * get_number_suffix_constr(const char *suffix_name)
    virtual bool get_bounds_info(Index n, Number *x_l, Number *x_u, Index m, Number *g_l, Number *g_u)
    returns bounds of the nlp.
    const Number * get_number_suffix(const char *suffix_name)
    -
    std::vector< SmartPtr< IteratesVector > > sens_sol_
    -
    SmartPtr< OptionsList > options_
    +
    std::vector< SmartPtr< IteratesVector > > sens_sol_
    +
    SmartPtr< OptionsList > options_
    const int * get_index_suffix_constr(const char *suffix_name)
    Template class for Smart Pointers.
    std::map< std::string, std::vector< Index > > IntegerMetaDataMapType
    Definition IpTNLP.hpp:71
    diff --git a/SensApplication_8hpp.html b/SensApplication_8hpp.html index f79a2eb71..23cd7ff80 100644 --- a/SensApplication_8hpp.html +++ b/SensApplication_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensApplication_8hpp_source.html b/SensApplication_8hpp_source.html index d9bf60e15..338162d35 100644 --- a/SensApplication_8hpp_source.html +++ b/SensApplication_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -361,8 +361,8 @@
    Template class for Smart Pointers.
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    -
    U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    +
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    +
    U * GetRawPtr(const SmartPtr< U > &smart_ptr)
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    ipnumber Number
    Type of all numbers.
    Definition IpTypes.hpp:17
    SensAlgorithmExitStatus
    Definition SensUtils.hpp:22
    diff --git a/SensBacksolver_8hpp.html b/SensBacksolver_8hpp.html index 3892c6186..652a29fd6 100644 --- a/SensBacksolver_8hpp.html +++ b/SensBacksolver_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensBacksolver_8hpp_source.html b/SensBacksolver_8hpp_source.html index 3755aae2e..c7ce9c9b5 100644 --- a/SensBacksolver_8hpp_source.html +++ b/SensBacksolver_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensBuilder_8hpp.html b/SensBuilder_8hpp.html index 8457b2499..99ebe4953 100644 --- a/SensBuilder_8hpp.html +++ b/SensBuilder_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensBuilder_8hpp_source.html b/SensBuilder_8hpp_source.html index 14d28e91f..c7af90ba9 100644 --- a/SensBuilder_8hpp_source.html +++ b/SensBuilder_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -166,7 +166,7 @@
    #define DECLARE_STD_SIPOPT_EXCEPTION(__except_type)
    Definition SensUtils.hpp:50
    Class for all IPOPT specific calculated quantities.
    -
    Class to organize all the data required by the algorithm.
    +
    Class to organize all the data required by the algorithm.
    This is the abstract base class for classes that map the traditional NLP into something that is more ...
    Class responsible for all message output.
    This class stores a list of user set options.
    diff --git a/SensDenseGenSchurDriver_8hpp.html b/SensDenseGenSchurDriver_8hpp.html index 8bd365b30..62cd7d54b 100644 --- a/SensDenseGenSchurDriver_8hpp.html +++ b/SensDenseGenSchurDriver_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensDenseGenSchurDriver_8hpp_source.html b/SensDenseGenSchurDriver_8hpp_source.html index 37bf7b5f7..94fc5107c 100644 --- a/SensDenseGenSchurDriver_8hpp_source.html +++ b/SensDenseGenSchurDriver_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensIndexPCalculator_8hpp.html b/SensIndexPCalculator_8hpp.html index 58b2ce694..c19dc32f2 100644 --- a/SensIndexPCalculator_8hpp.html +++ b/SensIndexPCalculator_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensIndexPCalculator_8hpp_source.html b/SensIndexPCalculator_8hpp_source.html index 3d8c1f0ac..6d6208f6c 100644 --- a/SensIndexPCalculator_8hpp_source.html +++ b/SensIndexPCalculator_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensIndexSchurData_8hpp.html b/SensIndexSchurData_8hpp.html index c3d57f882..f7759d8d0 100644 --- a/SensIndexSchurData_8hpp.html +++ b/SensIndexSchurData_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensIndexSchurData_8hpp_source.html b/SensIndexSchurData_8hpp_source.html index 6ab1e0c9f..40852b36c 100644 --- a/SensIndexSchurData_8hpp_source.html +++ b/SensIndexSchurData_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensMeasurement_8hpp.html b/SensMeasurement_8hpp.html index 5b50e73e6..0482f6ce7 100644 --- a/SensMeasurement_8hpp.html +++ b/SensMeasurement_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensMeasurement_8hpp_source.html b/SensMeasurement_8hpp_source.html index 21bb6b57f..6bb293acf 100644 --- a/SensMeasurement_8hpp_source.html +++ b/SensMeasurement_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensMetadataMeasurement_8hpp.html b/SensMetadataMeasurement_8hpp.html index 707abfa2d..7e46ebdc4 100644 --- a/SensMetadataMeasurement_8hpp.html +++ b/SensMetadataMeasurement_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensMetadataMeasurement_8hpp_source.html b/SensMetadataMeasurement_8hpp_source.html index 5e13e3f7d..a5a8ba3bc 100644 --- a/SensMetadataMeasurement_8hpp_source.html +++ b/SensMetadataMeasurement_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensPCalculator_8hpp.html b/SensPCalculator_8hpp.html index da0f01cff..b154e3ea7 100644 --- a/SensPCalculator_8hpp.html +++ b/SensPCalculator_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensPCalculator_8hpp_source.html b/SensPCalculator_8hpp_source.html index 52bce8674..d41bd7005 100644 --- a/SensPCalculator_8hpp_source.html +++ b/SensPCalculator_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -269,8 +269,8 @@
    SmartPtr< SensBacksolver > backsolver_
    Template class for Smart Pointers.
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    -
    bool IsValid(const SmartPtr< U > &smart_ptr)
    +
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    +
    bool IsValid(const SmartPtr< U > &smart_ptr)
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    EJournalCategory
    Category Selection Enum.
    EJournalLevel
    Print Level Enum.
    diff --git a/SensReducedHessianCalculator_8hpp.html b/SensReducedHessianCalculator_8hpp.html index ecdac0ffa..8587ad320 100644 --- a/SensReducedHessianCalculator_8hpp.html +++ b/SensReducedHessianCalculator_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensReducedHessianCalculator_8hpp_source.html b/SensReducedHessianCalculator_8hpp_source.html index d7e55acf1..265a835c0 100644 --- a/SensReducedHessianCalculator_8hpp_source.html +++ b/SensReducedHessianCalculator_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensRegOp_8hpp.html b/SensRegOp_8hpp.html index c741bdd0d..0368df7c4 100644 --- a/SensRegOp_8hpp.html +++ b/SensRegOp_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensRegOp_8hpp_source.html b/SensRegOp_8hpp_source.html index 3abde149a..9e0534244 100644 --- a/SensRegOp_8hpp_source.html +++ b/SensRegOp_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensSchurData_8hpp.html b/SensSchurData_8hpp.html index daf90e318..c1c845a53 100644 --- a/SensSchurData_8hpp.html +++ b/SensSchurData_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensSchurData_8hpp_source.html b/SensSchurData_8hpp_source.html index 1e450d720..3b1aeaaf0 100644 --- a/SensSchurData_8hpp_source.html +++ b/SensSchurData_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -311,7 +311,7 @@
    Template class for Smart Pointers.
    Vector Base Class.
    Definition IpVector.hpp:48
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    bool IsValid(const SmartPtr< U > &smart_ptr)
    +
    bool IsValid(const SmartPtr< U > &smart_ptr)
    ipindex Index
    Type of all indices of vectors, matrices etc.
    Definition IpTypes.hpp:20
    EJournalCategory
    Category Selection Enum.
    EJournalLevel
    Print Level Enum.
    diff --git a/SensSchurDriver_8hpp.html b/SensSchurDriver_8hpp.html index 98b4258e8..2a4d3556f 100644 --- a/SensSchurDriver_8hpp.html +++ b/SensSchurDriver_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensSchurDriver_8hpp_source.html b/SensSchurDriver_8hpp_source.html index 3e7df1358..981e88f26 100644 --- a/SensSchurDriver_8hpp_source.html +++ b/SensSchurDriver_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -253,7 +253,7 @@
    virtual SmartPtr< SchurData > data_B_nonconst()
    Template class for Smart Pointers.
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    +
    SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
    diff --git a/SensSimpleBacksolver_8hpp.html b/SensSimpleBacksolver_8hpp.html index eba686894..b44341c39 100644 --- a/SensSimpleBacksolver_8hpp.html +++ b/SensSimpleBacksolver_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensSimpleBacksolver_8hpp_source.html b/SensSimpleBacksolver_8hpp_source.html index cecfebd89..2bb9745c3 100644 --- a/SensSimpleBacksolver_8hpp_source.html +++ b/SensSimpleBacksolver_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensStdStepCalc_8hpp.html b/SensStdStepCalc_8hpp.html index 7a06038d0..03a5d63a4 100644 --- a/SensStdStepCalc_8hpp.html +++ b/SensStdStepCalc_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensStdStepCalc_8hpp_source.html b/SensStdStepCalc_8hpp_source.html index 25ec8f222..156792d94 100644 --- a/SensStdStepCalc_8hpp_source.html +++ b/SensStdStepCalc_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensStepCalc_8hpp.html b/SensStepCalc_8hpp.html index bf723a472..85e7090a3 100644 --- a/SensStepCalc_8hpp.html +++ b/SensStepCalc_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensStepCalc_8hpp_source.html b/SensStepCalc_8hpp_source.html index 976c53759..eaa9700d1 100644 --- a/SensStepCalc_8hpp_source.html +++ b/SensStepCalc_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -221,7 +221,7 @@
    virtual SmartPtr< IteratesVector > GetSensitivityVector()=0
    return the sensitivity vector
    Template class for Smart Pointers.
    This file contains a base class for all exceptions and a set of macros to help with exceptions.
    -
    bool IsValid(const SmartPtr< U > &smart_ptr)
    +
    bool IsValid(const SmartPtr< U > &smart_ptr)
    diff --git a/SensSuffixHandler_8hpp.html b/SensSuffixHandler_8hpp.html index dc99c9aab..6b730b0a3 100644 --- a/SensSuffixHandler_8hpp.html +++ b/SensSuffixHandler_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensSuffixHandler_8hpp_source.html b/SensSuffixHandler_8hpp_source.html index 150a946ab..c7c4fb61c 100644 --- a/SensSuffixHandler_8hpp_source.html +++ b/SensSuffixHandler_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensUtils_8hpp.html b/SensUtils_8hpp.html index 8bc81e299..bc2674700 100644 --- a/SensUtils_8hpp.html +++ b/SensUtils_8hpp.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/SensUtils_8hpp_source.html b/SensUtils_8hpp_source.html index 9e9dd0bca..02681409a 100644 --- a/SensUtils_8hpp_source.html +++ b/SensUtils_8hpp_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/annotated.html b/annotated.html index 41099dab9..c755b7990 100644 --- a/annotated.html +++ b/annotated.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/citelist.html b/citelist.html index b279a2c9a..6f8c4b0de 100644 --- a/citelist.html +++ b/citelist.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1AdaptiveMuUpdate-members.html b/classIpopt_1_1AdaptiveMuUpdate-members.html index 532f2917c..d6ac60d1d 100644 --- a/classIpopt_1_1AdaptiveMuUpdate-members.html +++ b/classIpopt_1_1AdaptiveMuUpdate-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1AdaptiveMuUpdate.html b/classIpopt_1_1AdaptiveMuUpdate.html index b377147f4..99428293c 100644 --- a/classIpopt_1_1AdaptiveMuUpdate.html +++ b/classIpopt_1_1AdaptiveMuUpdate.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1AlgorithmBuilder-members.html b/classIpopt_1_1AlgorithmBuilder-members.html index 0615cdccf..d1b05fa77 100644 --- a/classIpopt_1_1AlgorithmBuilder-members.html +++ b/classIpopt_1_1AlgorithmBuilder-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1AlgorithmBuilder.html b/classIpopt_1_1AlgorithmBuilder.html index 441f62441..59651377b 100644 --- a/classIpopt_1_1AlgorithmBuilder.html +++ b/classIpopt_1_1AlgorithmBuilder.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1AlgorithmStrategyObject-members.html b/classIpopt_1_1AlgorithmStrategyObject-members.html index b7d88b8f1..e8af7c380 100644 --- a/classIpopt_1_1AlgorithmStrategyObject-members.html +++ b/classIpopt_1_1AlgorithmStrategyObject-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1AlgorithmStrategyObject.html b/classIpopt_1_1AlgorithmStrategyObject.html index 4809b11f2..28a9eb938 100644 --- a/classIpopt_1_1AlgorithmStrategyObject.html +++ b/classIpopt_1_1AlgorithmStrategyObject.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -131,11 +131,11 @@ - + - + @@ -145,7 +145,7 @@ - + @@ -153,23 +153,23 @@ - + - + - + - + @@ -177,7 +177,7 @@ - + @@ -188,7 +188,7 @@ - + @@ -204,7 +204,7 @@ - + @@ -216,7 +216,7 @@ - + diff --git a/classIpopt_1_1AmplOptionsList-members.html b/classIpopt_1_1AmplOptionsList-members.html index d71f5b122..8b6e4e21f 100644 --- a/classIpopt_1_1AmplOptionsList-members.html +++ b/classIpopt_1_1AmplOptionsList-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1AmplOptionsList.html b/classIpopt_1_1AmplOptionsList.html index b4b9ef629..393fe5eaa 100644 --- a/classIpopt_1_1AmplOptionsList.html +++ b/classIpopt_1_1AmplOptionsList.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1AmplOptionsList_1_1AmplOption-members.html b/classIpopt_1_1AmplOptionsList_1_1AmplOption-members.html index 824ccdb83..ab31fabe0 100644 --- a/classIpopt_1_1AmplOptionsList_1_1AmplOption-members.html +++ b/classIpopt_1_1AmplOptionsList_1_1AmplOption-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1AmplOptionsList_1_1AmplOption.html b/classIpopt_1_1AmplOptionsList_1_1AmplOption.html index 2940f3bdf..20d80c5e4 100644 --- a/classIpopt_1_1AmplOptionsList_1_1AmplOption.html +++ b/classIpopt_1_1AmplOptionsList_1_1AmplOption.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1AmplOptionsList_1_1PrivatInfo-members.html b/classIpopt_1_1AmplOptionsList_1_1PrivatInfo-members.html index 312a716c6..398be9175 100644 --- a/classIpopt_1_1AmplOptionsList_1_1PrivatInfo-members.html +++ b/classIpopt_1_1AmplOptionsList_1_1PrivatInfo-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1AmplOptionsList_1_1PrivatInfo.html b/classIpopt_1_1AmplOptionsList_1_1PrivatInfo.html index dcf570ed5..fd2b65651 100644 --- a/classIpopt_1_1AmplOptionsList_1_1PrivatInfo.html +++ b/classIpopt_1_1AmplOptionsList_1_1PrivatInfo.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1AmplSuffixHandler-members.html b/classIpopt_1_1AmplSuffixHandler-members.html index 23151ea98..01c9f4a32 100644 --- a/classIpopt_1_1AmplSuffixHandler-members.html +++ b/classIpopt_1_1AmplSuffixHandler-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1AmplSuffixHandler.html b/classIpopt_1_1AmplSuffixHandler.html index 1a8853f72..91be3f888 100644 --- a/classIpopt_1_1AmplSuffixHandler.html +++ b/classIpopt_1_1AmplSuffixHandler.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1AmplTNLP-members.html b/classIpopt_1_1AmplTNLP-members.html index 45296ea2b..37561b2d7 100644 --- a/classIpopt_1_1AmplTNLP-members.html +++ b/classIpopt_1_1AmplTNLP-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -112,7 +112,7 @@ - + @@ -120,44 +120,46 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/classIpopt_1_1AmplTNLP.html b/classIpopt_1_1AmplTNLP.html index 64a4bd2a9..1271982a6 100644 --- a/classIpopt_1_1AmplTNLP.html +++ b/classIpopt_1_1AmplTNLP.html @@ -39,7 +39,7 @@ - - - + + + @@ -191,6 +191,9 @@ + + + @@ -243,9 +246,6 @@ - - - @@ -308,6 +308,12 @@ + + + + + + @@ -394,8 +400,8 @@

    Definition at line 316 of file AmplTNLP.hpp.

    Constructor & Destructor Documentation

    - -

    ◆ AmplTNLP() [1/4]

    + +

    ◆ AmplTNLP() [1/4]

    @@ -464,7 +470,13 @@

    - + + + + + + + @@ -476,6 +488,24 @@

    Since
    3.14.0
    +
    Parameters
    +

    AddRef(const Referencer *referencer) constIpopt::ReferencedObjectinline
    AmplSolverObject()Ipopt::AmplTNLPinline
    AmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, const char *const *argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL)Ipopt::AmplTNLP
    AmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, const char *const *argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL, bool checkinterrupt=false)Ipopt::AmplTNLP
    AmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< OptionsList > options, char **&argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL)Ipopt::AmplTNLP
    AmplTNLP()Ipopt::AmplTNLPprivate
    AmplTNLP(const AmplTNLP &)Ipopt::AmplTNLPprivate
    asl_Ipopt::AmplTNLPprotected
    C_STYLE enum valueIpopt::TNLP
    call_hesset()Ipopt::AmplTNLPprotected
    con_integer_md_Ipopt::AmplTNLPprotected
    con_numeric_md_Ipopt::AmplTNLPprotected
    con_string_md_Ipopt::AmplTNLPprotected
    conval_called_with_current_x_Ipopt::AmplTNLPprotected
    DECLARE_STD_EXCEPTION(NONPOSITIVE_SCALING_FACTOR)Ipopt::AmplTNLP
    Ipopt::TNLP::DECLARE_STD_EXCEPTION(INVALID_TNLP)Ipopt::TNLP
    eval_f(Index n, const Number *x, bool new_x, Number &obj_value)Ipopt::AmplTNLPvirtual
    eval_g(Index n, const Number *x, bool new_x, Index m, Number *g)Ipopt::AmplTNLPvirtual
    eval_grad_f(Index n, const Number *x, bool new_x, Number *grad_f)Ipopt::AmplTNLPvirtual
    eval_h(Index n, const Number *x, bool new_x, Number obj_factor, Index m, const Number *lambda, bool new_lambda, Index nele_hess, Index *iRow, Index *jCol, Number *values)Ipopt::AmplTNLPvirtual
    eval_jac_g(Index n, const Number *x, bool new_x, Index m, Index nele_jac, Index *iRow, Index *jCol, Number *values)Ipopt::AmplTNLPvirtual
    finalize_metadata(Index n, const StringMetaDataMapType &var_string_md, const IntegerMetaDataMapType &var_integer_md, const NumericMetaDataMapType &var_numeric_md, Index m, const StringMetaDataMapType &con_string_md, const IntegerMetaDataMapType &con_integer_md, const NumericMetaDataMapType &con_numeric_md)Ipopt::TNLPinlinevirtual
    finalize_solution(SolverReturn status, Index n, const Number *x, const Number *z_L, const Number *z_U, Index m, const Number *g, const Number *lambda, Number obj_value, const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq)Ipopt::AmplTNLPvirtual
    FORTRAN_STYLE enum valueIpopt::TNLP
    g_sol_Ipopt::AmplTNLPprotected
    get_bounds_info(Index n, Number *x_l, Number *x_u, Index m, Number *g_l, Number *g_u)Ipopt::AmplTNLPvirtual
    get_constraints_linearity(Index m, LinearityType *const_types)Ipopt::AmplTNLPvirtual
    get_curr_iterate(const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq, bool scaled, Index n, Number *x, Number *z_L, Number *z_U, Index m, Number *g, Number *lambda) constIpopt::TNLP
    get_curr_violations(const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq, bool scaled, Index n, Number *x_L_violation, Number *x_U_violation, Number *compl_x_L, Number *compl_x_U, Number *grad_lag_x, Index m, Number *nlp_constraint_violation, Number *compl_g) constIpopt::TNLP
    get_discrete_info(Index &nlvb_, Index &nlvbi_, Index &nlvc_, Index &nlvci_, Index &nlvo_, Index &nlvoi_, Index &nbv_, Index &niv_) constIpopt::AmplTNLP
    get_list_of_nonlinear_variables(Index num_nonlin_vars, Index *pos_nonlin_vars)Ipopt::AmplTNLPvirtual
    get_nlp_info(Index &n, Index &m, Index &nnz_jac_g, Index &nnz_h_lag, IndexStyleEnum &index_style)Ipopt::AmplTNLPvirtual
    get_number_of_nonlinear_variables()Ipopt::AmplTNLPvirtual
    get_options(const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > &options, SmartPtr< AmplOptionsList > &ampl_options_list, const char *ampl_option_string, const char *ampl_invokation_string, const char *ampl_banner_string, const char *const *argv)Ipopt::AmplTNLPprotected
    get_options(const SmartPtr< OptionsList > &options, SmartPtr< AmplOptionsList > &ampl_options_list, const char *ampl_option_string, const char *ampl_invokation_string, const char *ampl_banner_string, char **&argv)Ipopt::AmplTNLPinlineprotected
    get_scaling_parameters(Number &obj_scaling, bool &use_x_scaling, Index n, Number *x_scaling, bool &use_g_scaling, Index m, Number *g_scaling)Ipopt::AmplTNLPvirtual
    get_starting_point(Index n, bool init_x, Number *x, bool init_z, Number *z_L, Number *z_U, Index m, bool init_lambda, Number *lambda)Ipopt::AmplTNLPvirtual
    get_suffix_handler()Ipopt::AmplTNLPinline
    get_var_con_metadata(Index n, StringMetaDataMapType &var_string_md, IntegerMetaDataMapType &var_integer_md, NumericMetaDataMapType &var_numeric_md, Index m, StringMetaDataMapType &con_string_md, IntegerMetaDataMapType &con_integer_md, NumericMetaDataMapType &con_numeric_md)Ipopt::AmplTNLPvirtual
    get_variables_linearity(Index n, LinearityType *var_types)Ipopt::TNLPinlinevirtual
    get_warm_start_iterate(IteratesVector &warm_start_iterate)Ipopt::TNLPinlinevirtual
    gutsOfConstructor(const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, const char *const *argv, bool allow_discrete, SmartPtr< AmplOptionsList > ampl_options_list, const char *ampl_option_string, const char *ampl_invokation_string, const char *ampl_banner_string, std::string *nl_file_content)Ipopt::AmplTNLPprivate
    hesset_called_Ipopt::AmplTNLPprotected
    IndexStyleEnum enum nameIpopt::TNLP
    IntegerMetaDataMapType typedefIpopt::TNLP
    intermediate_callback(AlgorithmMode mode, Index iter, Number obj_value, Number inf_pr, Number inf_du, Number mu, Number d_norm, Number regularization_size, Number alpha_du, Number alpha_pr, Index ls_trials, const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq)Ipopt::TNLPinlinevirtual
    internal_conval(const Number *x, Index m, Number *g=NULL)Ipopt::AmplTNLPprotected
    internal_objval(const Number *x, Number &obj_val)Ipopt::AmplTNLPprotected
    checkinterrupt_Ipopt::AmplTNLPprotected
    con_integer_md_Ipopt::AmplTNLPprotected
    con_numeric_md_Ipopt::AmplTNLPprotected
    con_string_md_Ipopt::AmplTNLPprotected
    conval_called_with_current_x_Ipopt::AmplTNLPprotected
    DECLARE_STD_EXCEPTION(NONPOSITIVE_SCALING_FACTOR)Ipopt::AmplTNLP
    Ipopt::TNLP::DECLARE_STD_EXCEPTION(INVALID_TNLP)Ipopt::TNLP
    eval_f(Index n, const Number *x, bool new_x, Number &obj_value)Ipopt::AmplTNLPvirtual
    eval_g(Index n, const Number *x, bool new_x, Index m, Number *g)Ipopt::AmplTNLPvirtual
    eval_grad_f(Index n, const Number *x, bool new_x, Number *grad_f)Ipopt::AmplTNLPvirtual
    eval_h(Index n, const Number *x, bool new_x, Number obj_factor, Index m, const Number *lambda, bool new_lambda, Index nele_hess, Index *iRow, Index *jCol, Number *values)Ipopt::AmplTNLPvirtual
    eval_jac_g(Index n, const Number *x, bool new_x, Index m, Index nele_jac, Index *iRow, Index *jCol, Number *values)Ipopt::AmplTNLPvirtual
    finalize_metadata(Index n, const StringMetaDataMapType &var_string_md, const IntegerMetaDataMapType &var_integer_md, const NumericMetaDataMapType &var_numeric_md, Index m, const StringMetaDataMapType &con_string_md, const IntegerMetaDataMapType &con_integer_md, const NumericMetaDataMapType &con_numeric_md)Ipopt::TNLPinlinevirtual
    finalize_solution(SolverReturn status, Index n, const Number *x, const Number *z_L, const Number *z_U, Index m, const Number *g, const Number *lambda, Number obj_value, const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq)Ipopt::AmplTNLPvirtual
    FORTRAN_STYLE enum valueIpopt::TNLP
    g_sol_Ipopt::AmplTNLPprotected
    get_bounds_info(Index n, Number *x_l, Number *x_u, Index m, Number *g_l, Number *g_u)Ipopt::AmplTNLPvirtual
    get_constraints_linearity(Index m, LinearityType *const_types)Ipopt::AmplTNLPvirtual
    get_curr_iterate(const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq, bool scaled, Index n, Number *x, Number *z_L, Number *z_U, Index m, Number *g, Number *lambda) constIpopt::TNLP
    get_curr_violations(const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq, bool scaled, Index n, Number *x_L_violation, Number *x_U_violation, Number *compl_x_L, Number *compl_x_U, Number *grad_lag_x, Index m, Number *nlp_constraint_violation, Number *compl_g) constIpopt::TNLP
    get_discrete_info(Index &nlvb_, Index &nlvbi_, Index &nlvc_, Index &nlvci_, Index &nlvo_, Index &nlvoi_, Index &nbv_, Index &niv_) constIpopt::AmplTNLP
    get_list_of_nonlinear_variables(Index num_nonlin_vars, Index *pos_nonlin_vars)Ipopt::AmplTNLPvirtual
    get_nlp_info(Index &n, Index &m, Index &nnz_jac_g, Index &nnz_h_lag, IndexStyleEnum &index_style)Ipopt::AmplTNLPvirtual
    get_number_of_nonlinear_variables()Ipopt::AmplTNLPvirtual
    get_options(const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > &options, SmartPtr< AmplOptionsList > &ampl_options_list, const char *ampl_option_string, const char *ampl_invokation_string, const char *ampl_banner_string, const char *const *argv)Ipopt::AmplTNLPprotected
    get_options(const SmartPtr< OptionsList > &options, SmartPtr< AmplOptionsList > &ampl_options_list, const char *ampl_option_string, const char *ampl_invokation_string, const char *ampl_banner_string, char **&argv)Ipopt::AmplTNLPinlineprotected
    get_scaling_parameters(Number &obj_scaling, bool &use_x_scaling, Index n, Number *x_scaling, bool &use_g_scaling, Index m, Number *g_scaling)Ipopt::AmplTNLPvirtual
    get_starting_point(Index n, bool init_x, Number *x, bool init_z, Number *z_L, Number *z_U, Index m, bool init_lambda, Number *lambda)Ipopt::AmplTNLPvirtual
    get_suffix_handler()Ipopt::AmplTNLPinline
    get_var_con_metadata(Index n, StringMetaDataMapType &var_string_md, IntegerMetaDataMapType &var_integer_md, NumericMetaDataMapType &var_numeric_md, Index m, StringMetaDataMapType &con_string_md, IntegerMetaDataMapType &con_integer_md, NumericMetaDataMapType &con_numeric_md)Ipopt::AmplTNLPvirtual
    get_variables_linearity(Index n, LinearityType *var_types)Ipopt::TNLPinlinevirtual
    get_warm_start_iterate(IteratesVector &warm_start_iterate)Ipopt::TNLPinlinevirtual
    gutsOfConstructor(const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, const char *const *argv, bool allow_discrete, SmartPtr< AmplOptionsList > ampl_options_list, const char *ampl_option_string, const char *ampl_invokation_string, const char *ampl_banner_string, std::string *nl_file_content)Ipopt::AmplTNLPprivate
    hesset_called_Ipopt::AmplTNLPprotected
    IndexStyleEnum enum nameIpopt::TNLP
    IntegerMetaDataMapType typedefIpopt::TNLP
    intermediate_callback(AlgorithmMode mode, Index iter, Number obj_value, Number inf_pr, Number inf_du, Number mu, Number d_norm, Number regularization_size, Number alpha_du, Number alpha_pr, Index ls_trials, const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq)Ipopt::AmplTNLPvirtual
    internal_conval(const Number *x, Index m, Number *g=NULL)Ipopt::AmplTNLPprotected
    internal_objval(const Number *x, Number &obj_val)Ipopt::AmplTNLPprotected
    interrupted_Ipopt::AmplTNLPprotected
    jnlst_Ipopt::AmplTNLPprotected
    lambda_sol_Ipopt::AmplTNLPprotected
    LINEAR enum valueIpopt::TNLP
    Ipopt Documentation -   +  
    @@ -147,9 +147,9 @@
     Method for returning the suffix handler.
     
    Constructors/Destructors
     AmplTNLP (const SmartPtr< const Journalist > &jnlst, const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, const char *const *argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL)
     Constructor.
     
     AmplTNLP (const SmartPtr< const Journalist > &jnlst, const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, const char *const *argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL, bool checkinterrupt=false)
     Constructor.
     
    IPOPT_DEPRECATED AmplTNLP (const SmartPtr< const Journalist > &jnlst, const SmartPtr< OptionsList > options, char **&argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL)
     Constructor without RegisteredOptions.
     
     Method to request scaling parameters.
     
    Solution Methods
    virtual bool intermediate_callback (AlgorithmMode mode, Index iter, Number obj_value, Number inf_pr, Number inf_du, Number mu, Number d_norm, Number regularization_size, Number alpha_du, Number alpha_pr, Index ls_trials, const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq)
     Intermediate Callback method for the user.
     
    virtual void finalize_solution (SolverReturn status, Index n, const Number *x, const Number *z_L, const Number *z_U, Index m, const Number *g, const Number *lambda, Number obj_value, const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq)
     This method is called when the algorithm has finished (successfully or not) so the TNLP can digest the outcome, e.g., store/write the solution, if any.
     
    virtual void finalize_metadata (Index n, const StringMetaDataMapType &var_string_md, const IntegerMetaDataMapType &var_integer_md, const NumericMetaDataMapType &var_numeric_md, Index m, const StringMetaDataMapType &con_string_md, const IntegerMetaDataMapType &con_integer_md, const NumericMetaDataMapType &con_numeric_md)
     This method returns any metadata collected during the run of the algorithm.
     
    virtual bool intermediate_callback (AlgorithmMode mode, Index iter, Number obj_value, Number inf_pr, Number inf_du, Number mu, Number d_norm, Number regularization_size, Number alpha_du, Number alpha_pr, Index ls_trials, const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq)
     Intermediate Callback method for the user.
     
    bool get_curr_iterate (const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq, bool scaled, Index n, Number *x, Number *z_L, Number *z_U, Index m, Number *g, Number *lambda) const
     Get primal and dual variable values of the current iterate.
     
    SmartPtr< AmplSuffixHandlersuffix_handler_
     Suffix Handler.
     
    bool checkinterrupt_
     whether to register handler for interrupt signals
     
    bool interrupted_
     pointer to flag to check whether to interrupt signal was set
     
    StringMetaDataMapType var_string_md_
     meta data to pass on to TNLP
     
    std::string * nl_file_content = NULL nl_file_content = NULL,
    bool checkinterrupt = false 
    + + + + + + + + + + + + +
    jnlstJournalist
    regoptionsOptions handler
    optionsOptions
    argvcommand line arguments with .nl file
    suffix_handleroptional suffix handler
    allow_discretewhether to print warning when discrete variables appear
    ampl_options_listAMPL options list
    ampl_option_stringAMPL options strings
    ampl_invokation_stringAMPL invokation string
    ampl_banner_stringAMPL banner
    nl_file_contentalternative .nl input
    checkinterruptwhether to check for interrupt signals
    + + +
    Since
    3.14.17
    @@ -1493,6 +1523,116 @@

    Ipopt::TNLP.

    + + + +

    ◆ intermediate_callback()

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    virtual bool Ipopt::AmplTNLP::intermediate_callback (AlgorithmMode mode,
    Index iter,
    Number obj_value,
    Number inf_pr,
    Number inf_du,
    Number mu,
    Number d_norm,
    Number regularization_size,
    Number alpha_du,
    Number alpha_pr,
    Index ls_trials,
    const IpoptDataip_data,
    IpoptCalculatedQuantitiesip_cq 
    )
    +
    +virtual
    +
    + +

    Intermediate Callback method for the user.

    +

    This method is called once per iteration (during the convergence check), and can be used to obtain information about the optimization status while Ipopt solves the problem, and also to request a premature termination.

    +

    The information provided by the entities in the argument list correspond to what Ipopt prints in the iteration summary (see also Ipopt Output), except for inf_pr, which by default corresponds to the original problem in the log but to the scaled internal problem in this callback. Further information can be obtained from the ip_data and ip_cq objects. The current iterate and violations of feasibility and optimality can be accessed via the methods Ipopt::TNLP::get_curr_iterate() and Ipopt::TNLP::get_curr_violations(). These methods translate values for the internal representation of the problem from ip_data and ip_cq objects into the TNLP representation.

    +
    Returns
    If this method returns false, Ipopt will terminate with the User_Requested_Stop status.
    +

    It is not required to implement (overload) this method. The default implementation always returns true.

    + +

    Reimplemented from Ipopt::TNLP.

    +
    @@ -1719,7 +1859,7 @@

    Definition at line 498 of file AmplTNLP.hpp.

    +

    Definition at line 515 of file AmplTNLP.hpp.

    @@ -1866,7 +2006,7 @@

    -

    Definition at line 546 of file AmplTNLP.hpp.

    +

    Definition at line 563 of file AmplTNLP.hpp.

    @@ -1904,7 +2044,7 @@

    -

    Definition at line 554 of file AmplTNLP.hpp.

    +

    Definition at line 571 of file AmplTNLP.hpp.

    @@ -1942,7 +2082,7 @@

    -

    Definition at line 562 of file AmplTNLP.hpp.

    +

    Definition at line 579 of file AmplTNLP.hpp.

    @@ -1980,7 +2120,7 @@

    -

    Definition at line 570 of file AmplTNLP.hpp.

    +

    Definition at line 587 of file AmplTNLP.hpp.

    @@ -2018,7 +2158,7 @@

    -

    Definition at line 578 of file AmplTNLP.hpp.

    +

    Definition at line 595 of file AmplTNLP.hpp.

    @@ -2056,7 +2196,7 @@

    -

    Definition at line 586 of file AmplTNLP.hpp.

    +

    Definition at line 603 of file AmplTNLP.hpp.

    @@ -2085,7 +2225,7 @@

    Definition at line 596 of file AmplTNLP.hpp.

    +

    Definition at line 613 of file AmplTNLP.hpp.

    @@ -2470,7 +2610,7 @@

    Returns
    a pointer to a char* with the name of the stub
    Deprecated:
    Use get_options() with RegisteredOptions argument instead.
    -

    Definition at line 733 of file AmplTNLP.hpp.

    +

    Definition at line 755 of file AmplTNLP.hpp.

    @@ -2552,7 +2692,7 @@

    Journalist.

    -

    Definition at line 640 of file AmplTNLP.hpp.

    +

    Definition at line 657 of file AmplTNLP.hpp.

    @@ -2578,7 +2718,7 @@

    Definition at line 643 of file AmplTNLP.hpp.

    +

    Definition at line 660 of file AmplTNLP.hpp.

    @@ -2604,7 +2744,7 @@

    Definition at line 646 of file AmplTNLP.hpp.

    +

    Definition at line 663 of file AmplTNLP.hpp.

    @@ -2630,7 +2770,7 @@

    Definition at line 651 of file AmplTNLP.hpp.

    +

    Definition at line 668 of file AmplTNLP.hpp.

    @@ -2654,7 +2794,7 @@

    -

    Definition at line 656 of file AmplTNLP.hpp.

    +

    Definition at line 673 of file AmplTNLP.hpp.

    @@ -2678,7 +2818,7 @@

    -

    Definition at line 657 of file AmplTNLP.hpp.

    +

    Definition at line 674 of file AmplTNLP.hpp.

    @@ -2702,7 +2842,7 @@

    -

    Definition at line 658 of file AmplTNLP.hpp.

    +

    Definition at line 675 of file AmplTNLP.hpp.

    @@ -2726,7 +2866,7 @@

    -

    Definition at line 659 of file AmplTNLP.hpp.

    +

    Definition at line 676 of file AmplTNLP.hpp.

    @@ -2750,7 +2890,7 @@

    -

    Definition at line 660 of file AmplTNLP.hpp.

    +

    Definition at line 677 of file AmplTNLP.hpp.

    @@ -2774,7 +2914,7 @@

    -

    Definition at line 661 of file AmplTNLP.hpp.

    +

    Definition at line 678 of file AmplTNLP.hpp.

    @@ -2801,7 +2941,7 @@

    Definition at line 670 of file AmplTNLP.hpp.

    +

    Definition at line 687 of file AmplTNLP.hpp.

    @@ -2827,7 +2967,7 @@

    Definition at line 674 of file AmplTNLP.hpp.

    +

    Definition at line 691 of file AmplTNLP.hpp.

    @@ -2853,7 +2993,7 @@

    Definition at line 676 of file AmplTNLP.hpp.

    +

    Definition at line 693 of file AmplTNLP.hpp.

    @@ -2879,7 +3019,7 @@

    Definition at line 678 of file AmplTNLP.hpp.

    +

    Definition at line 695 of file AmplTNLP.hpp.

    @@ -2905,7 +3045,7 @@

    Definition at line 682 of file AmplTNLP.hpp.

    +

    Definition at line 699 of file AmplTNLP.hpp.

    @@ -2931,7 +3071,7 @@

    Definition at line 685 of file AmplTNLP.hpp.

    +

    Definition at line 702 of file AmplTNLP.hpp.

    @@ -2957,7 +3097,59 @@

    Definition at line 688 of file AmplTNLP.hpp.

    +

    Definition at line 705 of file AmplTNLP.hpp.

    + + + + +

    ◆ checkinterrupt_

    + +
    +
    + + + + + +
    + + + + +
    bool Ipopt::AmplTNLP::checkinterrupt_
    +
    +protected
    +
    + +

    whether to register handler for interrupt signals

    + +

    Definition at line 708 of file AmplTNLP.hpp.

    + +
    +
    + +

    ◆ interrupted_

    + +
    +
    + + + + + +
    + + + + +
    bool Ipopt::AmplTNLP::interrupted_
    +
    +protected
    +
    + +

    pointer to flag to check whether to interrupt signal was set

    + +

    Definition at line 710 of file AmplTNLP.hpp.

    @@ -2983,7 +3175,7 @@

    TNLP

    -

    Definition at line 755 of file AmplTNLP.hpp.

    +

    Definition at line 777 of file AmplTNLP.hpp.

    @@ -3007,7 +3199,7 @@

    -

    Definition at line 756 of file AmplTNLP.hpp.

    +

    Definition at line 778 of file AmplTNLP.hpp.

    @@ -3031,7 +3223,7 @@

    -

    Definition at line 757 of file AmplTNLP.hpp.

    +

    Definition at line 779 of file AmplTNLP.hpp.

    @@ -3055,7 +3247,7 @@

    -

    Definition at line 758 of file AmplTNLP.hpp.

    +

    Definition at line 780 of file AmplTNLP.hpp.

    @@ -3079,7 +3271,7 @@

    -

    Definition at line 759 of file AmplTNLP.hpp.

    +

    Definition at line 781 of file AmplTNLP.hpp.

    @@ -3103,7 +3295,7 @@

    -

    Definition at line 760 of file AmplTNLP.hpp.

    +

    Definition at line 782 of file AmplTNLP.hpp.

    diff --git a/classIpopt_1_1AmplTNLP.js b/classIpopt_1_1AmplTNLP.js index 11eb9047e..7331cb7e5 100644 --- a/classIpopt_1_1AmplTNLP.js +++ b/classIpopt_1_1AmplTNLP.js @@ -1,6 +1,6 @@ var classIpopt_1_1AmplTNLP = [ - [ "AmplTNLP", "classIpopt_1_1AmplTNLP.html#aed410ab6bd273ede77050a36bd85c240", null ], + [ "AmplTNLP", "classIpopt_1_1AmplTNLP.html#a68f7a8e7314fc848ebdb190393121fe7", null ], [ "AmplTNLP", "classIpopt_1_1AmplTNLP.html#a5bf35981f12a6386e5f823fe3b99f299", null ], [ "~AmplTNLP", "classIpopt_1_1AmplTNLP.html#a9b8a0ff63aa5addfecbe7f54dff43acd", null ], [ "AmplTNLP", "classIpopt_1_1AmplTNLP.html#a5a577627e4c83061a05787930724620f", null ], @@ -17,6 +17,7 @@ var classIpopt_1_1AmplTNLP = [ "eval_jac_g", "classIpopt_1_1AmplTNLP.html#a05342a7a193a9451c09837b3de387fb8", null ], [ "eval_h", "classIpopt_1_1AmplTNLP.html#a944ad51b4e14545324e0e4513e0c89ae", null ], [ "get_scaling_parameters", "classIpopt_1_1AmplTNLP.html#a60b0eb2bb08619261e4d0e292ad0e854", null ], + [ "intermediate_callback", "classIpopt_1_1AmplTNLP.html#a6f25c70227d6ddadf6f691781007c944", null ], [ "finalize_solution", "classIpopt_1_1AmplTNLP.html#a5f110edd912d943a85f3af2d7bb98bb3", null ], [ "get_number_of_nonlinear_variables", "classIpopt_1_1AmplTNLP.html#a2535706fb770ebda7b50219b11352c92", null ], [ "get_list_of_nonlinear_variables", "classIpopt_1_1AmplTNLP.html#a725d09f0beca55ea55a06df68f38d72a", null ], @@ -57,6 +58,8 @@ var classIpopt_1_1AmplTNLP = [ "Oinfo_ptr_", "classIpopt_1_1AmplTNLP.html#a01a73e0fad4baf58f416adf5bb348dcc", null ], [ "nerror_", "classIpopt_1_1AmplTNLP.html#ace24d4a55485bb96b1763db1443f9abe", null ], [ "suffix_handler_", "classIpopt_1_1AmplTNLP.html#a09ae1a3052a19988433941e250151428", null ], + [ "checkinterrupt_", "classIpopt_1_1AmplTNLP.html#ad564603d07c46119004ef35c84fe8964", null ], + [ "interrupted_", "classIpopt_1_1AmplTNLP.html#a207103b08555ac8ebb38d0cf818e0a46", null ], [ "var_string_md_", "classIpopt_1_1AmplTNLP.html#a498921760ac6aded9abe4333a26ec459", null ], [ "var_integer_md_", "classIpopt_1_1AmplTNLP.html#a38037bb2d1b0204f809f24eb10066ae2", null ], [ "var_numeric_md_", "classIpopt_1_1AmplTNLP.html#a6d0b2f3e6d8d565b16d04484cd1efe56", null ], diff --git a/classIpopt_1_1AugRestoSystemSolver-members.html b/classIpopt_1_1AugRestoSystemSolver-members.html index 57ff58044..a54ed4eab 100644 --- a/classIpopt_1_1AugRestoSystemSolver-members.html +++ b/classIpopt_1_1AugRestoSystemSolver-members.html @@ -39,7 +39,7 @@

    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1AugRestoSystemSolver.html b/classIpopt_1_1AugRestoSystemSolver.html index 147b6a4c2..cb4806fb2 100644 --- a/classIpopt_1_1AugRestoSystemSolver.html +++ b/classIpopt_1_1AugRestoSystemSolver.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1AugSystemSolver-members.html b/classIpopt_1_1AugSystemSolver-members.html index cb23c6307..9abf2c63f 100644 --- a/classIpopt_1_1AugSystemSolver-members.html +++ b/classIpopt_1_1AugSystemSolver-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1AugSystemSolver.html b/classIpopt_1_1AugSystemSolver.html index e5915dbb1..3ef013852 100644 --- a/classIpopt_1_1AugSystemSolver.html +++ b/classIpopt_1_1AugSystemSolver.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -128,15 +128,15 @@ - + - + - +
    [legend]
    diff --git a/classIpopt_1_1BacktrackingLSAcceptor-members.html b/classIpopt_1_1BacktrackingLSAcceptor-members.html index 009f1989a..9b31b23e1 100644 --- a/classIpopt_1_1BacktrackingLSAcceptor-members.html +++ b/classIpopt_1_1BacktrackingLSAcceptor-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1BacktrackingLSAcceptor.html b/classIpopt_1_1BacktrackingLSAcceptor.html index b18d3bc06..6d8fac1d5 100644 --- a/classIpopt_1_1BacktrackingLSAcceptor.html +++ b/classIpopt_1_1BacktrackingLSAcceptor.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -132,9 +132,9 @@ - + - +
    [legend]
    diff --git a/classIpopt_1_1BacktrackingLineSearch-members.html b/classIpopt_1_1BacktrackingLineSearch-members.html index da1d96c67..767ba66f0 100644 --- a/classIpopt_1_1BacktrackingLineSearch-members.html +++ b/classIpopt_1_1BacktrackingLineSearch-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1BacktrackingLineSearch.html b/classIpopt_1_1BacktrackingLineSearch.html index 9e817c0e7..7be3137d0 100644 --- a/classIpopt_1_1BacktrackingLineSearch.html +++ b/classIpopt_1_1BacktrackingLineSearch.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CGPenaltyCq-members.html b/classIpopt_1_1CGPenaltyCq-members.html index ad350e215..24cdf85ab 100644 --- a/classIpopt_1_1CGPenaltyCq-members.html +++ b/classIpopt_1_1CGPenaltyCq-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CGPenaltyCq.html b/classIpopt_1_1CGPenaltyCq.html index b40912558..810eb2e95 100644 --- a/classIpopt_1_1CGPenaltyCq.html +++ b/classIpopt_1_1CGPenaltyCq.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CGPenaltyData-members.html b/classIpopt_1_1CGPenaltyData-members.html index ee6b74c6e..de95e2f38 100644 --- a/classIpopt_1_1CGPenaltyData-members.html +++ b/classIpopt_1_1CGPenaltyData-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CGPenaltyData.html b/classIpopt_1_1CGPenaltyData.html index 00380756a..9768c2a84 100644 --- a/classIpopt_1_1CGPenaltyData.html +++ b/classIpopt_1_1CGPenaltyData.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CGPenaltyLSAcceptor-members.html b/classIpopt_1_1CGPenaltyLSAcceptor-members.html index 798521400..47fae486f 100644 --- a/classIpopt_1_1CGPenaltyLSAcceptor-members.html +++ b/classIpopt_1_1CGPenaltyLSAcceptor-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CGPenaltyLSAcceptor.html b/classIpopt_1_1CGPenaltyLSAcceptor.html index f6d651f4d..c21904dcd 100644 --- a/classIpopt_1_1CGPenaltyLSAcceptor.html +++ b/classIpopt_1_1CGPenaltyLSAcceptor.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CGPerturbationHandler-members.html b/classIpopt_1_1CGPerturbationHandler-members.html index 5c98b430c..519e41b94 100644 --- a/classIpopt_1_1CGPerturbationHandler-members.html +++ b/classIpopt_1_1CGPerturbationHandler-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CGPerturbationHandler.html b/classIpopt_1_1CGPerturbationHandler.html index 6b659cd57..cc1f437a9 100644 --- a/classIpopt_1_1CGPerturbationHandler.html +++ b/classIpopt_1_1CGPerturbationHandler.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CGSearchDirCalculator-members.html b/classIpopt_1_1CGSearchDirCalculator-members.html index 51386272c..874021f2b 100644 --- a/classIpopt_1_1CGSearchDirCalculator-members.html +++ b/classIpopt_1_1CGSearchDirCalculator-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CGSearchDirCalculator.html b/classIpopt_1_1CGSearchDirCalculator.html index 608a99323..9d24e901f 100644 --- a/classIpopt_1_1CGSearchDirCalculator.html +++ b/classIpopt_1_1CGSearchDirCalculator.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CachedResults-members.html b/classIpopt_1_1CachedResults-members.html index a21d0aa54..b905497ef 100644 --- a/classIpopt_1_1CachedResults-members.html +++ b/classIpopt_1_1CachedResults-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CachedResults.html b/classIpopt_1_1CachedResults.html index 54e73c4eb..8ff580bbb 100644 --- a/classIpopt_1_1CachedResults.html +++ b/classIpopt_1_1CachedResults.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -126,7 +126,7 @@ - + @@ -138,7 +138,7 @@ - +
    [legend]
    diff --git a/classIpopt_1_1CachedResults__inherit__graph.png b/classIpopt_1_1CachedResults__inherit__graph.png index 44a1785d0..8731aa98f 100644 Binary files a/classIpopt_1_1CachedResults__inherit__graph.png and b/classIpopt_1_1CachedResults__inherit__graph.png differ diff --git a/classIpopt_1_1CompoundMatrix-members.html b/classIpopt_1_1CompoundMatrix-members.html index 290f11e79..00e25578e 100644 --- a/classIpopt_1_1CompoundMatrix-members.html +++ b/classIpopt_1_1CompoundMatrix-members.html @@ -39,7 +39,7 @@ + + @@ -454,7 +456,7 @@

    Class to organize all the data required by the algorithm.

    Internally, once this Data object has been initialized, all internal curr_ vectors must always be set (so that prototypes are available). The current values can only be set from the trial values. The trial values can be set by copying from a vector or by adding some fraction of a step to the current values. This object also stores steps, which allows to easily communicate the step from the step computation object to the line search object.

    -

    Definition at line 97 of file IpIpoptData.hpp.

    +

    Definition at line 100 of file IpIpoptData.hpp.

    Constructor & Destructor Documentation

    ◆ IpoptData() [1/2]

    @@ -648,7 +650,7 @@

    Definition at line 822 of file IpIpoptData.hpp.

    +

    Definition at line 835 of file IpIpoptData.hpp.

    @@ -678,7 +680,7 @@

    Definition at line 829 of file IpIpoptData.hpp.

    +

    Definition at line 842 of file IpIpoptData.hpp.

    @@ -710,7 +712,7 @@

    Definition at line 871 of file IpIpoptData.hpp.

    +

    Definition at line 884 of file IpIpoptData.hpp.

    @@ -859,7 +861,7 @@

    Definition at line 836 of file IpIpoptData.hpp.

    +

    Definition at line 849 of file IpIpoptData.hpp.

    @@ -890,7 +892,7 @@

    Definition at line 896 of file IpIpoptData.hpp.

    +

    Definition at line 909 of file IpIpoptData.hpp.

    @@ -921,7 +923,7 @@

    IteratesVector.

    -

    Definition at line 919 of file IpIpoptData.hpp.

    +

    Definition at line 932 of file IpIpoptData.hpp.

    @@ -950,7 +952,7 @@

    Definition at line 843 of file IpIpoptData.hpp.

    +

    Definition at line 856 of file IpIpoptData.hpp.

    @@ -981,7 +983,7 @@

    Definition at line 942 of file IpIpoptData.hpp.

    +

    Definition at line 955 of file IpIpoptData.hpp.

    @@ -1010,7 +1012,7 @@

    Definition at line 239 of file IpIpoptData.hpp.

    +

    Definition at line 242 of file IpIpoptData.hpp.

    @@ -1040,7 +1042,7 @@

    Definition at line 245 of file IpIpoptData.hpp.

    +

    Definition at line 248 of file IpIpoptData.hpp.

    @@ -1070,7 +1072,7 @@

    AcceptTrialPoint(). If the search direction is computed during the computation of the barrier parameter, the method computing the barrier parameter should call SetHaveDeltas(true) to tell the IpoptAlgorithm object that it doesn't need to recompute the primal-dual step.

    -

    Definition at line 271 of file IpIpoptData.hpp.

    +

    Definition at line 274 of file IpIpoptData.hpp.

    @@ -1101,7 +1103,7 @@

    IpoptData) at an early part of the iteration. If that flag is set to true, the IpoptAlgorithm object will not recompute the step.

    -

    Definition at line 284 of file IpIpoptData.hpp.

    +

    Definition at line 287 of file IpIpoptData.hpp.

    @@ -1131,7 +1133,7 @@

    AcceptTrialPoint(). If the search direction is computed during the computation of the barrier parameter, the method computing the barrier parameter should call SetHaveDeltas(true) to tell the line search does not have to recompute them in case it wants to do a corrector step.

    -

    Definition at line 311 of file IpIpoptData.hpp.

    +

    Definition at line 314 of file IpIpoptData.hpp.

    @@ -1162,7 +1164,7 @@

    IpoptData) at an early part of the iteration. If that flag is set to true, the IpoptAlgorithm object will not recompute the step.

    -

    Definition at line 324 of file IpIpoptData.hpp.

    +

    Definition at line 327 of file IpIpoptData.hpp.

    @@ -1191,7 +1193,7 @@

    Definition at line 851 of file IpIpoptData.hpp.

    +

    Definition at line 864 of file IpIpoptData.hpp.

    @@ -1237,7 +1239,7 @@

    -

    Definition at line 344 of file IpIpoptData.hpp.

    +

    Definition at line 347 of file IpIpoptData.hpp.

    @@ -1265,7 +1267,7 @@

    -

    Definition at line 348 of file IpIpoptData.hpp.

    +

    Definition at line 351 of file IpIpoptData.hpp.

    @@ -1292,7 +1294,7 @@

    -

    Definition at line 355 of file IpIpoptData.hpp.

    +

    Definition at line 358 of file IpIpoptData.hpp.

    @@ -1320,7 +1322,7 @@

    -

    Definition at line 360 of file IpIpoptData.hpp.

    +

    Definition at line 363 of file IpIpoptData.hpp.

    @@ -1347,7 +1349,7 @@

    -

    Definition at line 367 of file IpIpoptData.hpp.

    +

    Definition at line 370 of file IpIpoptData.hpp.

    @@ -1374,7 +1376,7 @@

    -

    Definition at line 372 of file IpIpoptData.hpp.

    +

    Definition at line 375 of file IpIpoptData.hpp.

    @@ -1402,7 +1404,7 @@

    -

    Definition at line 377 of file IpIpoptData.hpp.

    +

    Definition at line 380 of file IpIpoptData.hpp.

    @@ -1429,7 +1431,7 @@

    -

    Definition at line 384 of file IpIpoptData.hpp.

    +

    Definition at line 387 of file IpIpoptData.hpp.

    @@ -1457,7 +1459,7 @@

    -

    Definition at line 389 of file IpIpoptData.hpp.

    +

    Definition at line 392 of file IpIpoptData.hpp.

    @@ -1484,7 +1486,7 @@

    -

    Definition at line 395 of file IpIpoptData.hpp.

    +

    Definition at line 398 of file IpIpoptData.hpp.

    @@ -1514,7 +1516,7 @@

    Definition at line 403 of file IpIpoptData.hpp.

    +

    Definition at line 406 of file IpIpoptData.hpp.

    @@ -1541,7 +1543,7 @@

    -

    Definition at line 409 of file IpIpoptData.hpp.

    +

    Definition at line 412 of file IpIpoptData.hpp.

    @@ -1571,7 +1573,7 @@

    Definition at line 424 of file IpIpoptData.hpp.

    +

    Definition at line 427 of file IpIpoptData.hpp.

    @@ -1602,7 +1604,7 @@

    Definition at line 439 of file IpIpoptData.hpp.

    +

    Definition at line 442 of file IpIpoptData.hpp.

    @@ -1633,7 +1635,7 @@

    Definition at line 455 of file IpIpoptData.hpp.

    +

    Definition at line 458 of file IpIpoptData.hpp.

    @@ -1660,7 +1662,7 @@

    -

    Definition at line 462 of file IpIpoptData.hpp.

    +

    Definition at line 465 of file IpIpoptData.hpp.

    @@ -1688,7 +1690,7 @@

    -

    Definition at line 466 of file IpIpoptData.hpp.

    +

    Definition at line 469 of file IpIpoptData.hpp.

    @@ -1715,7 +1717,7 @@

    -

    Definition at line 472 of file IpIpoptData.hpp.

    +

    Definition at line 475 of file IpIpoptData.hpp.

    @@ -1743,7 +1745,7 @@

    -

    Definition at line 476 of file IpIpoptData.hpp.

    +

    Definition at line 479 of file IpIpoptData.hpp.

    @@ -1770,7 +1772,7 @@

    -

    Definition at line 482 of file IpIpoptData.hpp.

    +

    Definition at line 485 of file IpIpoptData.hpp.

    @@ -1798,7 +1800,7 @@

    -

    Definition at line 486 of file IpIpoptData.hpp.

    +

    Definition at line 489 of file IpIpoptData.hpp.

    @@ -1825,7 +1827,7 @@

    -

    Definition at line 492 of file IpIpoptData.hpp.

    +

    Definition at line 495 of file IpIpoptData.hpp.

    @@ -1853,7 +1855,7 @@

    -

    Definition at line 496 of file IpIpoptData.hpp.

    +

    Definition at line 499 of file IpIpoptData.hpp.

    @@ -1880,7 +1882,7 @@

    -

    Definition at line 502 of file IpIpoptData.hpp.

    +

    Definition at line 505 of file IpIpoptData.hpp.

    @@ -1908,7 +1910,7 @@

    -

    Definition at line 506 of file IpIpoptData.hpp.

    +

    Definition at line 509 of file IpIpoptData.hpp.

    @@ -1935,12 +1937,12 @@

    -

    Definition at line 512 of file IpIpoptData.hpp.

    +

    Definition at line 515 of file IpIpoptData.hpp.

    -

    ◆ Append_info_string()

    +

    ◆ Append_info_string() [1/2]

    @@ -1963,7 +1965,46 @@

    -

    Definition at line 516 of file IpIpoptData.hpp.

    +

    Definition at line 519 of file IpIpoptData.hpp.

    + +

    +
    + +

    ◆ Append_info_string() [2/2]

    + +
    +
    +

    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CompoundMatrix.html b/classIpopt_1_1CompoundMatrix.html index fc4983567..e638fc6a4 100644 --- a/classIpopt_1_1CompoundMatrix.html +++ b/classIpopt_1_1CompoundMatrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CompoundMatrixSpace-members.html b/classIpopt_1_1CompoundMatrixSpace-members.html index 178e0137e..b28c61d67 100644 --- a/classIpopt_1_1CompoundMatrixSpace-members.html +++ b/classIpopt_1_1CompoundMatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CompoundMatrixSpace.html b/classIpopt_1_1CompoundMatrixSpace.html index 90fa985b5..33acaa946 100644 --- a/classIpopt_1_1CompoundMatrixSpace.html +++ b/classIpopt_1_1CompoundMatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CompoundSymMatrix-members.html b/classIpopt_1_1CompoundSymMatrix-members.html index 9021004c4..27f791455 100644 --- a/classIpopt_1_1CompoundSymMatrix-members.html +++ b/classIpopt_1_1CompoundSymMatrix-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CompoundSymMatrix.html b/classIpopt_1_1CompoundSymMatrix.html index 12c1f3f88..0ebdbb996 100644 --- a/classIpopt_1_1CompoundSymMatrix.html +++ b/classIpopt_1_1CompoundSymMatrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CompoundSymMatrixSpace-members.html b/classIpopt_1_1CompoundSymMatrixSpace-members.html index a99390d12..4d520e4fb 100644 --- a/classIpopt_1_1CompoundSymMatrixSpace-members.html +++ b/classIpopt_1_1CompoundSymMatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CompoundSymMatrixSpace.html b/classIpopt_1_1CompoundSymMatrixSpace.html index 2e9a02bb0..25445e31d 100644 --- a/classIpopt_1_1CompoundSymMatrixSpace.html +++ b/classIpopt_1_1CompoundSymMatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CompoundVector-members.html b/classIpopt_1_1CompoundVector-members.html index c8df2747a..30cb7bcee 100644 --- a/classIpopt_1_1CompoundVector-members.html +++ b/classIpopt_1_1CompoundVector-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CompoundVector.html b/classIpopt_1_1CompoundVector.html index 482e9bc40..7cb7f7b55 100644 --- a/classIpopt_1_1CompoundVector.html +++ b/classIpopt_1_1CompoundVector.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CompoundVectorSpace-members.html b/classIpopt_1_1CompoundVectorSpace-members.html index 429174660..9d442ead7 100644 --- a/classIpopt_1_1CompoundVectorSpace-members.html +++ b/classIpopt_1_1CompoundVectorSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1CompoundVectorSpace.html b/classIpopt_1_1CompoundVectorSpace.html index fc2b5765c..cf38048a1 100644 --- a/classIpopt_1_1CompoundVectorSpace.html +++ b/classIpopt_1_1CompoundVectorSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ConvergenceCheck-members.html b/classIpopt_1_1ConvergenceCheck-members.html index c994c4891..86a5aff6a 100644 --- a/classIpopt_1_1ConvergenceCheck-members.html +++ b/classIpopt_1_1ConvergenceCheck-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ConvergenceCheck.html b/classIpopt_1_1ConvergenceCheck.html index 622dd1293..e9d0ef23a 100644 --- a/classIpopt_1_1ConvergenceCheck.html +++ b/classIpopt_1_1ConvergenceCheck.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DefaultIterateInitializer-members.html b/classIpopt_1_1DefaultIterateInitializer-members.html index 412bf3c60..c0490baca 100644 --- a/classIpopt_1_1DefaultIterateInitializer-members.html +++ b/classIpopt_1_1DefaultIterateInitializer-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DefaultIterateInitializer.html b/classIpopt_1_1DefaultIterateInitializer.html index 079a90b3b..54585199a 100644 --- a/classIpopt_1_1DefaultIterateInitializer.html +++ b/classIpopt_1_1DefaultIterateInitializer.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DenseGenMatrix-members.html b/classIpopt_1_1DenseGenMatrix-members.html index 9baab8f85..5ac8bb77a 100644 --- a/classIpopt_1_1DenseGenMatrix-members.html +++ b/classIpopt_1_1DenseGenMatrix-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DenseGenMatrix.html b/classIpopt_1_1DenseGenMatrix.html index df34ac8d5..8f05da7bd 100644 --- a/classIpopt_1_1DenseGenMatrix.html +++ b/classIpopt_1_1DenseGenMatrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DenseGenMatrixSpace-members.html b/classIpopt_1_1DenseGenMatrixSpace-members.html index 3d8238493..bb55f036b 100644 --- a/classIpopt_1_1DenseGenMatrixSpace-members.html +++ b/classIpopt_1_1DenseGenMatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DenseGenMatrixSpace.html b/classIpopt_1_1DenseGenMatrixSpace.html index cbf882cd6..4c5497af9 100644 --- a/classIpopt_1_1DenseGenMatrixSpace.html +++ b/classIpopt_1_1DenseGenMatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DenseGenSchurDriver-members.html b/classIpopt_1_1DenseGenSchurDriver-members.html index 7be5676e1..a5922723a 100644 --- a/classIpopt_1_1DenseGenSchurDriver-members.html +++ b/classIpopt_1_1DenseGenSchurDriver-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DenseGenSchurDriver.html b/classIpopt_1_1DenseGenSchurDriver.html index 8418132aa..a05689fa9 100644 --- a/classIpopt_1_1DenseGenSchurDriver.html +++ b/classIpopt_1_1DenseGenSchurDriver.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DenseSymMatrix-members.html b/classIpopt_1_1DenseSymMatrix-members.html index 389a9062b..4d59a2af3 100644 --- a/classIpopt_1_1DenseSymMatrix-members.html +++ b/classIpopt_1_1DenseSymMatrix-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DenseSymMatrix.html b/classIpopt_1_1DenseSymMatrix.html index 7c23b9f43..3ee3fd099 100644 --- a/classIpopt_1_1DenseSymMatrix.html +++ b/classIpopt_1_1DenseSymMatrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DenseSymMatrixSpace-members.html b/classIpopt_1_1DenseSymMatrixSpace-members.html index 982c77466..cddccea97 100644 --- a/classIpopt_1_1DenseSymMatrixSpace-members.html +++ b/classIpopt_1_1DenseSymMatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DenseSymMatrixSpace.html b/classIpopt_1_1DenseSymMatrixSpace.html index 5381f0f8d..654646e2c 100644 --- a/classIpopt_1_1DenseSymMatrixSpace.html +++ b/classIpopt_1_1DenseSymMatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DenseVector-members.html b/classIpopt_1_1DenseVector-members.html index 6f562be04..2fa9b4804 100644 --- a/classIpopt_1_1DenseVector-members.html +++ b/classIpopt_1_1DenseVector-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DenseVector.html b/classIpopt_1_1DenseVector.html index 41b517123..76d3f331b 100644 --- a/classIpopt_1_1DenseVector.html +++ b/classIpopt_1_1DenseVector.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DenseVectorSpace-members.html b/classIpopt_1_1DenseVectorSpace-members.html index 9d205150e..7376b28b7 100644 --- a/classIpopt_1_1DenseVectorSpace-members.html +++ b/classIpopt_1_1DenseVectorSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DenseVectorSpace.html b/classIpopt_1_1DenseVectorSpace.html index 1c6b41701..a8746b327 100644 --- a/classIpopt_1_1DenseVectorSpace.html +++ b/classIpopt_1_1DenseVectorSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DependentResult-members.html b/classIpopt_1_1DependentResult-members.html index de928fac5..3244820bc 100644 --- a/classIpopt_1_1DependentResult-members.html +++ b/classIpopt_1_1DependentResult-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DependentResult.html b/classIpopt_1_1DependentResult.html index d0902000f..3f6c25643 100644 --- a/classIpopt_1_1DependentResult.html +++ b/classIpopt_1_1DependentResult.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DiagMatrix-members.html b/classIpopt_1_1DiagMatrix-members.html index e33dd48d5..62514d911 100644 --- a/classIpopt_1_1DiagMatrix-members.html +++ b/classIpopt_1_1DiagMatrix-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DiagMatrix.html b/classIpopt_1_1DiagMatrix.html index 87e29c397..822ff9b05 100644 --- a/classIpopt_1_1DiagMatrix.html +++ b/classIpopt_1_1DiagMatrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DiagMatrixSpace-members.html b/classIpopt_1_1DiagMatrixSpace-members.html index f4656f384..1bcbb55cb 100644 --- a/classIpopt_1_1DiagMatrixSpace-members.html +++ b/classIpopt_1_1DiagMatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1DiagMatrixSpace.html b/classIpopt_1_1DiagMatrixSpace.html index a81744742..6ff7c7fba 100644 --- a/classIpopt_1_1DiagMatrixSpace.html +++ b/classIpopt_1_1DiagMatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1EqMultiplierCalculator-members.html b/classIpopt_1_1EqMultiplierCalculator-members.html index ac2b709c9..1cb123ff4 100644 --- a/classIpopt_1_1EqMultiplierCalculator-members.html +++ b/classIpopt_1_1EqMultiplierCalculator-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1EqMultiplierCalculator.html b/classIpopt_1_1EqMultiplierCalculator.html index 11eba203b..09b454961 100644 --- a/classIpopt_1_1EqMultiplierCalculator.html +++ b/classIpopt_1_1EqMultiplierCalculator.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1EquilibrationScaling-members.html b/classIpopt_1_1EquilibrationScaling-members.html index 50473b1a3..a28fa391a 100644 --- a/classIpopt_1_1EquilibrationScaling-members.html +++ b/classIpopt_1_1EquilibrationScaling-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1EquilibrationScaling.html b/classIpopt_1_1EquilibrationScaling.html index 65fadff55..3f86fcc14 100644 --- a/classIpopt_1_1EquilibrationScaling.html +++ b/classIpopt_1_1EquilibrationScaling.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ExactHessianUpdater-members.html b/classIpopt_1_1ExactHessianUpdater-members.html index da424c4b1..b986ea98e 100644 --- a/classIpopt_1_1ExactHessianUpdater-members.html +++ b/classIpopt_1_1ExactHessianUpdater-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ExactHessianUpdater.html b/classIpopt_1_1ExactHessianUpdater.html index bd26ba27f..90b3db4f9 100644 --- a/classIpopt_1_1ExactHessianUpdater.html +++ b/classIpopt_1_1ExactHessianUpdater.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ExpandedMultiVectorMatrix-members.html b/classIpopt_1_1ExpandedMultiVectorMatrix-members.html index cae0b906f..db3db708c 100644 --- a/classIpopt_1_1ExpandedMultiVectorMatrix-members.html +++ b/classIpopt_1_1ExpandedMultiVectorMatrix-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ExpandedMultiVectorMatrix.html b/classIpopt_1_1ExpandedMultiVectorMatrix.html index 090923373..05dad658f 100644 --- a/classIpopt_1_1ExpandedMultiVectorMatrix.html +++ b/classIpopt_1_1ExpandedMultiVectorMatrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ExpandedMultiVectorMatrixSpace-members.html b/classIpopt_1_1ExpandedMultiVectorMatrixSpace-members.html index d80e63b41..d71e523b3 100644 --- a/classIpopt_1_1ExpandedMultiVectorMatrixSpace-members.html +++ b/classIpopt_1_1ExpandedMultiVectorMatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ExpandedMultiVectorMatrixSpace.html b/classIpopt_1_1ExpandedMultiVectorMatrixSpace.html index ecfc37abb..99c798a41 100644 --- a/classIpopt_1_1ExpandedMultiVectorMatrixSpace.html +++ b/classIpopt_1_1ExpandedMultiVectorMatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ExpansionMatrix-members.html b/classIpopt_1_1ExpansionMatrix-members.html index 6b437df90..f73924b0c 100644 --- a/classIpopt_1_1ExpansionMatrix-members.html +++ b/classIpopt_1_1ExpansionMatrix-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ExpansionMatrix.html b/classIpopt_1_1ExpansionMatrix.html index df0bb948e..a96c713ed 100644 --- a/classIpopt_1_1ExpansionMatrix.html +++ b/classIpopt_1_1ExpansionMatrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ExpansionMatrixSpace-members.html b/classIpopt_1_1ExpansionMatrixSpace-members.html index 2779b3751..4f2602c1f 100644 --- a/classIpopt_1_1ExpansionMatrixSpace-members.html +++ b/classIpopt_1_1ExpansionMatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ExpansionMatrixSpace.html b/classIpopt_1_1ExpansionMatrixSpace.html index e7eeaa060..eba3f3846 100644 --- a/classIpopt_1_1ExpansionMatrixSpace.html +++ b/classIpopt_1_1ExpansionMatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1FileJournal-members.html b/classIpopt_1_1FileJournal-members.html index c12894654..113f8470e 100644 --- a/classIpopt_1_1FileJournal-members.html +++ b/classIpopt_1_1FileJournal-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1FileJournal.html b/classIpopt_1_1FileJournal.html index 98c3476f5..03fec2648 100644 --- a/classIpopt_1_1FileJournal.html +++ b/classIpopt_1_1FileJournal.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Filter-members.html b/classIpopt_1_1Filter-members.html index e662f68c6..8aa856700 100644 --- a/classIpopt_1_1Filter-members.html +++ b/classIpopt_1_1Filter-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Filter.html b/classIpopt_1_1Filter.html index 5b6e65808..f211adcac 100644 --- a/classIpopt_1_1Filter.html +++ b/classIpopt_1_1Filter.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1FilterEntry-members.html b/classIpopt_1_1FilterEntry-members.html index 93f2b55af..924b41322 100644 --- a/classIpopt_1_1FilterEntry-members.html +++ b/classIpopt_1_1FilterEntry-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1FilterEntry.html b/classIpopt_1_1FilterEntry.html index 39624b1d2..98d742ec1 100644 --- a/classIpopt_1_1FilterEntry.html +++ b/classIpopt_1_1FilterEntry.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1FilterLSAcceptor-members.html b/classIpopt_1_1FilterLSAcceptor-members.html index 753324152..deb29b35d 100644 --- a/classIpopt_1_1FilterLSAcceptor-members.html +++ b/classIpopt_1_1FilterLSAcceptor-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1FilterLSAcceptor.html b/classIpopt_1_1FilterLSAcceptor.html index 45e7a0af2..78bc9badb 100644 --- a/classIpopt_1_1FilterLSAcceptor.html +++ b/classIpopt_1_1FilterLSAcceptor.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1GenAugSystemSolver-members.html b/classIpopt_1_1GenAugSystemSolver-members.html index 06b9ee681..2145babc3 100644 --- a/classIpopt_1_1GenAugSystemSolver-members.html +++ b/classIpopt_1_1GenAugSystemSolver-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1GenAugSystemSolver.html b/classIpopt_1_1GenAugSystemSolver.html index 3e6ce6628..a1b5fa0c9 100644 --- a/classIpopt_1_1GenAugSystemSolver.html +++ b/classIpopt_1_1GenAugSystemSolver.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1GenKKTSolverInterface-members.html b/classIpopt_1_1GenKKTSolverInterface-members.html index 80497252a..57006468f 100644 --- a/classIpopt_1_1GenKKTSolverInterface-members.html +++ b/classIpopt_1_1GenKKTSolverInterface-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1GenKKTSolverInterface.html b/classIpopt_1_1GenKKTSolverInterface.html index 2aa2679b2..34a5a45f5 100644 --- a/classIpopt_1_1GenKKTSolverInterface.html +++ b/classIpopt_1_1GenKKTSolverInterface.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1GenTMatrix-members.html b/classIpopt_1_1GenTMatrix-members.html index f8c9fbb11..328d800e3 100644 --- a/classIpopt_1_1GenTMatrix-members.html +++ b/classIpopt_1_1GenTMatrix-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1GenTMatrix.html b/classIpopt_1_1GenTMatrix.html index 4837ba1f4..2600be306 100644 --- a/classIpopt_1_1GenTMatrix.html +++ b/classIpopt_1_1GenTMatrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1GenTMatrixSpace-members.html b/classIpopt_1_1GenTMatrixSpace-members.html index ff4399c28..5eeade964 100644 --- a/classIpopt_1_1GenTMatrixSpace-members.html +++ b/classIpopt_1_1GenTMatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1GenTMatrixSpace.html b/classIpopt_1_1GenTMatrixSpace.html index 560451b46..b88670cdc 100644 --- a/classIpopt_1_1GenTMatrixSpace.html +++ b/classIpopt_1_1GenTMatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1GradientScaling-members.html b/classIpopt_1_1GradientScaling-members.html index 7fd4b4fdf..0597abcdd 100644 --- a/classIpopt_1_1GradientScaling-members.html +++ b/classIpopt_1_1GradientScaling-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1GradientScaling.html b/classIpopt_1_1GradientScaling.html index 7f72ab018..1bff6cf40 100644 --- a/classIpopt_1_1GradientScaling.html +++ b/classIpopt_1_1GradientScaling.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1HessianUpdater-members.html b/classIpopt_1_1HessianUpdater-members.html index 346c710bb..596367c51 100644 --- a/classIpopt_1_1HessianUpdater-members.html +++ b/classIpopt_1_1HessianUpdater-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1HessianUpdater.html b/classIpopt_1_1HessianUpdater.html index 891cfe75c..c232637ce 100644 --- a/classIpopt_1_1HessianUpdater.html +++ b/classIpopt_1_1HessianUpdater.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -127,10 +127,10 @@ - - + + - +
    [legend]
    diff --git a/classIpopt_1_1IdentityMatrix-members.html b/classIpopt_1_1IdentityMatrix-members.html index f6edd930b..6647557ca 100644 --- a/classIpopt_1_1IdentityMatrix-members.html +++ b/classIpopt_1_1IdentityMatrix-members.html @@ -39,7 +39,7 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IdentityMatrix.html b/classIpopt_1_1IdentityMatrix.html index d7c796866..a471ffdc3 100644 --- a/classIpopt_1_1IdentityMatrix.html +++ b/classIpopt_1_1IdentityMatrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IdentityMatrixSpace-members.html b/classIpopt_1_1IdentityMatrixSpace-members.html index a5cf94b68..0b4995be8 100644 --- a/classIpopt_1_1IdentityMatrixSpace-members.html +++ b/classIpopt_1_1IdentityMatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IdentityMatrixSpace.html b/classIpopt_1_1IdentityMatrixSpace.html index 74e14b508..33f24feed 100644 --- a/classIpopt_1_1IdentityMatrixSpace.html +++ b/classIpopt_1_1IdentityMatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IndexPCalculator-members.html b/classIpopt_1_1IndexPCalculator-members.html index 526fe43e1..ba5d756d8 100644 --- a/classIpopt_1_1IndexPCalculator-members.html +++ b/classIpopt_1_1IndexPCalculator-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IndexPCalculator.html b/classIpopt_1_1IndexPCalculator.html index ea99c4cfe..dec936bbb 100644 --- a/classIpopt_1_1IndexPCalculator.html +++ b/classIpopt_1_1IndexPCalculator.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IndexSchurData-members.html b/classIpopt_1_1IndexSchurData-members.html index 5a3007cb4..ca99371ba 100644 --- a/classIpopt_1_1IndexSchurData-members.html +++ b/classIpopt_1_1IndexSchurData-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IndexSchurData.html b/classIpopt_1_1IndexSchurData.html index f83f51461..9802fc6be 100644 --- a/classIpopt_1_1IndexSchurData.html +++ b/classIpopt_1_1IndexSchurData.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactAlgorithmBuilder-members.html b/classIpopt_1_1InexactAlgorithmBuilder-members.html index 1f01debd8..dc9c789e6 100644 --- a/classIpopt_1_1InexactAlgorithmBuilder-members.html +++ b/classIpopt_1_1InexactAlgorithmBuilder-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactAlgorithmBuilder.html b/classIpopt_1_1InexactAlgorithmBuilder.html index c4bd2c44e..ce2b19a61 100644 --- a/classIpopt_1_1InexactAlgorithmBuilder.html +++ b/classIpopt_1_1InexactAlgorithmBuilder.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactCq-members.html b/classIpopt_1_1InexactCq-members.html index e4f56ce26..5fb12be1e 100644 --- a/classIpopt_1_1InexactCq-members.html +++ b/classIpopt_1_1InexactCq-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactCq.html b/classIpopt_1_1InexactCq.html index 03703142c..00e44bdbd 100644 --- a/classIpopt_1_1InexactCq.html +++ b/classIpopt_1_1InexactCq.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactData-members.html b/classIpopt_1_1InexactData-members.html index c24fc27dc..924aaf65e 100644 --- a/classIpopt_1_1InexactData-members.html +++ b/classIpopt_1_1InexactData-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactData.html b/classIpopt_1_1InexactData.html index c51cf3f3e..9fce4bbf0 100644 --- a/classIpopt_1_1InexactData.html +++ b/classIpopt_1_1InexactData.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactDoglegNormalStep-members.html b/classIpopt_1_1InexactDoglegNormalStep-members.html index 8b6163e77..fd3db0c7d 100644 --- a/classIpopt_1_1InexactDoglegNormalStep-members.html +++ b/classIpopt_1_1InexactDoglegNormalStep-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactDoglegNormalStep.html b/classIpopt_1_1InexactDoglegNormalStep.html index 15065c8ce..c74a0b03e 100644 --- a/classIpopt_1_1InexactDoglegNormalStep.html +++ b/classIpopt_1_1InexactDoglegNormalStep.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactLSAcceptor-members.html b/classIpopt_1_1InexactLSAcceptor-members.html index 30fb95b51..e3e6e07f6 100644 --- a/classIpopt_1_1InexactLSAcceptor-members.html +++ b/classIpopt_1_1InexactLSAcceptor-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactLSAcceptor.html b/classIpopt_1_1InexactLSAcceptor.html index 722e48d3e..b9d25510c 100644 --- a/classIpopt_1_1InexactLSAcceptor.html +++ b/classIpopt_1_1InexactLSAcceptor.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactNewtonNormalStep-members.html b/classIpopt_1_1InexactNewtonNormalStep-members.html index 941d66a8a..21a3c09fe 100644 --- a/classIpopt_1_1InexactNewtonNormalStep-members.html +++ b/classIpopt_1_1InexactNewtonNormalStep-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactNewtonNormalStep.html b/classIpopt_1_1InexactNewtonNormalStep.html index dba695be0..8403d0747 100644 --- a/classIpopt_1_1InexactNewtonNormalStep.html +++ b/classIpopt_1_1InexactNewtonNormalStep.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactNormalStepCalculator-members.html b/classIpopt_1_1InexactNormalStepCalculator-members.html index a362a72c3..0a56ca3a1 100644 --- a/classIpopt_1_1InexactNormalStepCalculator-members.html +++ b/classIpopt_1_1InexactNormalStepCalculator-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactNormalStepCalculator.html b/classIpopt_1_1InexactNormalStepCalculator.html index db31a3b4c..085154366 100644 --- a/classIpopt_1_1InexactNormalStepCalculator.html +++ b/classIpopt_1_1InexactNormalStepCalculator.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactNormalTerminationTester-members.html b/classIpopt_1_1InexactNormalTerminationTester-members.html index dd88f4749..0fc4ceeac 100644 --- a/classIpopt_1_1InexactNormalTerminationTester-members.html +++ b/classIpopt_1_1InexactNormalTerminationTester-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactNormalTerminationTester.html b/classIpopt_1_1InexactNormalTerminationTester.html index 01918adba..ca30d68e7 100644 --- a/classIpopt_1_1InexactNormalTerminationTester.html +++ b/classIpopt_1_1InexactNormalTerminationTester.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactPDSolver-members.html b/classIpopt_1_1InexactPDSolver-members.html index 51ac40a04..eeb6b8def 100644 --- a/classIpopt_1_1InexactPDSolver-members.html +++ b/classIpopt_1_1InexactPDSolver-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactPDSolver.html b/classIpopt_1_1InexactPDSolver.html index 69316a30a..cc23e1d06 100644 --- a/classIpopt_1_1InexactPDSolver.html +++ b/classIpopt_1_1InexactPDSolver.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactPDTerminationTester-members.html b/classIpopt_1_1InexactPDTerminationTester-members.html index 4e163e858..c4110413a 100644 --- a/classIpopt_1_1InexactPDTerminationTester-members.html +++ b/classIpopt_1_1InexactPDTerminationTester-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactPDTerminationTester.html b/classIpopt_1_1InexactPDTerminationTester.html index 2410341f7..1f3f7d424 100644 --- a/classIpopt_1_1InexactPDTerminationTester.html +++ b/classIpopt_1_1InexactPDTerminationTester.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactSearchDirCalculator-members.html b/classIpopt_1_1InexactSearchDirCalculator-members.html index 7bd00c30f..2640a90bf 100644 --- a/classIpopt_1_1InexactSearchDirCalculator-members.html +++ b/classIpopt_1_1InexactSearchDirCalculator-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactSearchDirCalculator.html b/classIpopt_1_1InexactSearchDirCalculator.html index 1418229aa..cc5a27e8d 100644 --- a/classIpopt_1_1InexactSearchDirCalculator.html +++ b/classIpopt_1_1InexactSearchDirCalculator.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactTSymScalingMethod-members.html b/classIpopt_1_1InexactTSymScalingMethod-members.html index 3dc0a4645..1b1cfc91d 100644 --- a/classIpopt_1_1InexactTSymScalingMethod-members.html +++ b/classIpopt_1_1InexactTSymScalingMethod-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1InexactTSymScalingMethod.html b/classIpopt_1_1InexactTSymScalingMethod.html index f8bf9f8c4..57ac27ac0 100644 --- a/classIpopt_1_1InexactTSymScalingMethod.html +++ b/classIpopt_1_1InexactTSymScalingMethod.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IpoptAdditionalCq-members.html b/classIpopt_1_1IpoptAdditionalCq-members.html index c097f40de..68210185d 100644 --- a/classIpopt_1_1IpoptAdditionalCq-members.html +++ b/classIpopt_1_1IpoptAdditionalCq-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IpoptAdditionalCq.html b/classIpopt_1_1IpoptAdditionalCq.html index 568da062e..9ca1de5fc 100644 --- a/classIpopt_1_1IpoptAdditionalCq.html +++ b/classIpopt_1_1IpoptAdditionalCq.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IpoptAdditionalData-members.html b/classIpopt_1_1IpoptAdditionalData-members.html index 0c9923eb1..360ae58d9 100644 --- a/classIpopt_1_1IpoptAdditionalData-members.html +++ b/classIpopt_1_1IpoptAdditionalData-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IpoptAdditionalData.html b/classIpopt_1_1IpoptAdditionalData.html index 8a9dec2b8..fc8582815 100644 --- a/classIpopt_1_1IpoptAdditionalData.html +++ b/classIpopt_1_1IpoptAdditionalData.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -179,7 +179,7 @@

    Base class for additional data that is special to a particular type of algorithm, such as the CG penalty function, or using iterative linear solvers.

    The regular IpoptData object should be given a derivation of this base class when it is created.

    -

    Definition at line 29 of file IpIpoptData.hpp.

    +

    Definition at line 32 of file IpIpoptData.hpp.

    Constructor & Destructor Documentation

    ◆ IpoptAdditionalData() [1/2]

    @@ -206,7 +206,7 @@

    Definition at line 35 of file IpIpoptData.hpp.

    +

    Definition at line 38 of file IpIpoptData.hpp.

    @@ -235,7 +235,7 @@

    Definition at line 39 of file IpIpoptData.hpp.

    +

    Definition at line 42 of file IpIpoptData.hpp.

    diff --git a/classIpopt_1_1IpoptAlgorithm-members.html b/classIpopt_1_1IpoptAlgorithm-members.html index 6e4b12631..ed9abea1f 100644 --- a/classIpopt_1_1IpoptAlgorithm-members.html +++ b/classIpopt_1_1IpoptAlgorithm-members.html @@ -39,7 +39,7 @@

    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IpoptAlgorithm.html b/classIpopt_1_1IpoptAlgorithm.html index 000f9b554..23d797144 100644 --- a/classIpopt_1_1IpoptAlgorithm.html +++ b/classIpopt_1_1IpoptAlgorithm.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IpoptApplication-members.html b/classIpopt_1_1IpoptApplication-members.html index 3570379d2..177525b23 100644 --- a/classIpopt_1_1IpoptApplication-members.html +++ b/classIpopt_1_1IpoptApplication-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IpoptApplication.html b/classIpopt_1_1IpoptApplication.html index 03756abbd..91b9146b6 100644 --- a/classIpopt_1_1IpoptApplication.html +++ b/classIpopt_1_1IpoptApplication.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IpoptCalculatedQuantities-members.html b/classIpopt_1_1IpoptCalculatedQuantities-members.html index 2998cc538..10b1022be 100644 --- a/classIpopt_1_1IpoptCalculatedQuantities-members.html +++ b/classIpopt_1_1IpoptCalculatedQuantities-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IpoptCalculatedQuantities.html b/classIpopt_1_1IpoptCalculatedQuantities.html index ab8cdd8be..88dfcff34 100644 --- a/classIpopt_1_1IpoptCalculatedQuantities.html +++ b/classIpopt_1_1IpoptCalculatedQuantities.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IpoptData-members.html b/classIpopt_1_1IpoptData-members.html index c0af88f2a..b3788ad97 100644 --- a/classIpopt_1_1IpoptData-members.html +++ b/classIpopt_1_1IpoptData-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -115,108 +115,109 @@
    AdditionalData()Ipopt::IpoptDatainline
    AddRef(const Referencer *referencer) constIpopt::ReferencedObjectinline
    Append_info_string(const std::string &add_str)Ipopt::IpoptDatainline
    CopyTrialToCurrent()Ipopt::IpoptDatainline
    cpu_time_start() constIpopt::IpoptDatainline
    curr() constIpopt::IpoptDatainline
    curr_Ipopt::IpoptDataprivate
    curr_mu() constIpopt::IpoptDatainline
    curr_mu_Ipopt::IpoptDataprivate
    curr_tau() constIpopt::IpoptDatainline
    curr_tau_Ipopt::IpoptDataprivate
    delta() constIpopt::IpoptDatainline
    delta_Ipopt::IpoptDataprivate
    delta_aff() constIpopt::IpoptDatainline
    delta_aff_Ipopt::IpoptDataprivate
    free_mu_mode_Ipopt::IpoptDataprivate
    FreeMuMode() constIpopt::IpoptDatainline
    getPDPert(Number &pd_pert_x, Number &pd_pert_s, Number &pd_pert_c, Number &pd_pert_d)Ipopt::IpoptDatainline
    have_affine_deltas_Ipopt::IpoptDataprivate
    have_deltas_Ipopt::IpoptDataprivate
    have_prototypes_Ipopt::IpoptDataprivate
    HaveAddData()Ipopt::IpoptDatainline
    HaveAffineDeltas() constIpopt::IpoptDatainline
    HaveDeltas() constIpopt::IpoptDatainline
    Inc_info_iters_since_header()Ipopt::IpoptDatainline
    info_alpha_dual() constIpopt::IpoptDatainline
    info_alpha_dual_Ipopt::IpoptDataprivate
    info_alpha_primal() constIpopt::IpoptDatainline
    info_alpha_primal_Ipopt::IpoptDataprivate
    info_alpha_primal_char() constIpopt::IpoptDatainline
    info_alpha_primal_char_Ipopt::IpoptDataprivate
    info_iters_since_header()Ipopt::IpoptDatainline
    info_iters_since_header_Ipopt::IpoptDataprivate
    info_last_output()Ipopt::IpoptDatainline
    info_last_output_Ipopt::IpoptDataprivate
    info_ls_count() constIpopt::IpoptDatainline
    info_ls_count_Ipopt::IpoptDataprivate
    info_regu_x() constIpopt::IpoptDatainline
    info_regu_x_Ipopt::IpoptDataprivate
    info_skip_output() constIpopt::IpoptDatainline
    info_skip_output_Ipopt::IpoptDataprivate
    info_string() constIpopt::IpoptDatainline
    info_string_Ipopt::IpoptDataprivate
    Initialize(const Journalist &jnlst, const OptionsList &options, const std::string &prefix)Ipopt::IpoptData
    initialize_called_Ipopt::IpoptDataprivate
    InitializeDataStructures(IpoptNLP &ip_nlp, bool want_x, bool want_y_c, bool want_y_d, bool want_z_L, bool want_z_U)Ipopt::IpoptData
    IpoptData(SmartPtr< IpoptAdditionalData > add_data=NULL)Ipopt::IpoptData
    IpoptData(const IpoptData &)Ipopt::IpoptDataprivate
    iter_count() constIpopt::IpoptDatainline
    iter_count_Ipopt::IpoptDataprivate
    iterates_space_Ipopt::IpoptDataprivate
    mu_initialized_Ipopt::IpoptDataprivate
    MuInitialized() constIpopt::IpoptDatainline
    operator=(const IpoptData &)Ipopt::IpoptDataprivate
    pd_pert_c_Ipopt::IpoptDataprivate
    pd_pert_d_Ipopt::IpoptDataprivate
    pd_pert_s_Ipopt::IpoptDataprivate
    pd_pert_x_Ipopt::IpoptDataprivate
    reference_count_Ipopt::ReferencedObjectmutableprivate
    ReferenceCount() constIpopt::ReferencedObjectinline
    ReferencedObject()Ipopt::ReferencedObjectinline
    RegisterOptions(const SmartPtr< RegisteredOptions > &roptions)Ipopt::IpoptDatastatic
    ReleaseRef(const Referencer *referencer) constIpopt::ReferencedObjectinline
    ResetInfo()Ipopt::IpoptDatainline
    set_delta(SmartPtr< IteratesVector > &delta)Ipopt::IpoptDatainline
    set_delta(SmartPtr< const IteratesVector > &delta)Ipopt::IpoptDatainline
    set_delta_aff(SmartPtr< IteratesVector > &delta_aff)Ipopt::IpoptDatainline
    Set_info_alpha_dual(Number alpha_dual)Ipopt::IpoptDatainline
    Set_info_alpha_primal(Number alpha_primal)Ipopt::IpoptDatainline
    Set_info_alpha_primal_char(char info_alpha_primal_char)Ipopt::IpoptDatainline
    Set_info_iters_since_header(int info_iters_since_header)Ipopt::IpoptDatainline
    Set_info_last_output(Number info_last_output)Ipopt::IpoptDatainline
    Set_info_ls_count(Index ls_count)Ipopt::IpoptDatainline
    Set_info_regu_x(Number regu_x)Ipopt::IpoptDatainline
    Set_info_skip_output(bool info_skip_output)Ipopt::IpoptDatainline
    Set_iter_count(Index iter_count)Ipopt::IpoptDatainline
    Set_mu(Number mu)Ipopt::IpoptDatainline
    Set_tau(Number tau)Ipopt::IpoptDatainline
    Set_tiny_step_flag(bool flag)Ipopt::IpoptDatainline
    Set_tol(Number tol)Ipopt::IpoptDatainline
    set_trial(SmartPtr< IteratesVector > &trial)Ipopt::IpoptDatainline
    Set_W(SmartPtr< const SymMatrix > W)Ipopt::IpoptDatainline
    SetAddData(SmartPtr< IpoptAdditionalData > add_data)Ipopt::IpoptDatainline
    SetFreeMuMode(bool free_mu_mode)Ipopt::IpoptDatainline
    SetHaveAffineDeltas(bool have_affine_deltas)Ipopt::IpoptDatainline
    SetHaveDeltas(bool have_deltas)Ipopt::IpoptDatainline
    setPDPert(Number pd_pert_x, Number pd_pert_s, Number pd_pert_c, Number pd_pert_d)Ipopt::IpoptDatainline
    SetTrialBoundMultipliersFromStep(Number alpha, const Vector &delta_z_L, const Vector &delta_z_U, const Vector &delta_v_L, const Vector &delta_v_U)Ipopt::IpoptData
    SetTrialEqMultipliersFromStep(Number alpha, const Vector &delta_y_c, const Vector &delta_y_d)Ipopt::IpoptData
    SetTrialPrimalVariablesFromStep(Number alpha, const Vector &delta_x, const Vector &delta_s)Ipopt::IpoptData
    tau_initialized_Ipopt::IpoptDataprivate
    TauInitialized() constIpopt::IpoptDatainline
    timing_statistics_Ipopt::IpoptDataprivate
    TimingStats()Ipopt::IpoptDatainline
    TimingStats() constIpopt::IpoptDatainline
    tiny_step_flag()Ipopt::IpoptDatainline
    tiny_step_flag_Ipopt::IpoptDataprivate
    tol() constIpopt::IpoptDatainline
    tol_Ipopt::IpoptDataprivate
    trial() constIpopt::IpoptDatainline
    trial_Ipopt::IpoptDataprivate
    W()Ipopt::IpoptDatainline
    W_Ipopt::IpoptDataprivate
    ~IpoptData()Ipopt::IpoptDatavirtual
    ~ReferencedObject()Ipopt::ReferencedObjectinlinevirtual
    Append_info_string(const std::string &add_str, double value)Ipopt::IpoptDatainline
    CopyTrialToCurrent()Ipopt::IpoptDatainline
    cpu_time_start() constIpopt::IpoptDatainline
    curr() constIpopt::IpoptDatainline
    curr_Ipopt::IpoptDataprivate
    curr_mu() constIpopt::IpoptDatainline
    curr_mu_Ipopt::IpoptDataprivate
    curr_tau() constIpopt::IpoptDatainline
    curr_tau_Ipopt::IpoptDataprivate
    delta() constIpopt::IpoptDatainline
    delta_Ipopt::IpoptDataprivate
    delta_aff() constIpopt::IpoptDatainline
    delta_aff_Ipopt::IpoptDataprivate
    free_mu_mode_Ipopt::IpoptDataprivate
    FreeMuMode() constIpopt::IpoptDatainline
    getPDPert(Number &pd_pert_x, Number &pd_pert_s, Number &pd_pert_c, Number &pd_pert_d)Ipopt::IpoptDatainline
    have_affine_deltas_Ipopt::IpoptDataprivate
    have_deltas_Ipopt::IpoptDataprivate
    have_prototypes_Ipopt::IpoptDataprivate
    HaveAddData()Ipopt::IpoptDatainline
    HaveAffineDeltas() constIpopt::IpoptDatainline
    HaveDeltas() constIpopt::IpoptDatainline
    Inc_info_iters_since_header()Ipopt::IpoptDatainline
    info_alpha_dual() constIpopt::IpoptDatainline
    info_alpha_dual_Ipopt::IpoptDataprivate
    info_alpha_primal() constIpopt::IpoptDatainline
    info_alpha_primal_Ipopt::IpoptDataprivate
    info_alpha_primal_char() constIpopt::IpoptDatainline
    info_alpha_primal_char_Ipopt::IpoptDataprivate
    info_iters_since_header()Ipopt::IpoptDatainline
    info_iters_since_header_Ipopt::IpoptDataprivate
    info_last_output()Ipopt::IpoptDatainline
    info_last_output_Ipopt::IpoptDataprivate
    info_ls_count() constIpopt::IpoptDatainline
    info_ls_count_Ipopt::IpoptDataprivate
    info_regu_x() constIpopt::IpoptDatainline
    info_regu_x_Ipopt::IpoptDataprivate
    info_skip_output() constIpopt::IpoptDatainline
    info_skip_output_Ipopt::IpoptDataprivate
    info_string() constIpopt::IpoptDatainline
    info_string_Ipopt::IpoptDataprivate
    Initialize(const Journalist &jnlst, const OptionsList &options, const std::string &prefix)Ipopt::IpoptData
    initialize_called_Ipopt::IpoptDataprivate
    InitializeDataStructures(IpoptNLP &ip_nlp, bool want_x, bool want_y_c, bool want_y_d, bool want_z_L, bool want_z_U)Ipopt::IpoptData
    IpoptData(SmartPtr< IpoptAdditionalData > add_data=NULL)Ipopt::IpoptData
    IpoptData(const IpoptData &)Ipopt::IpoptDataprivate
    iter_count() constIpopt::IpoptDatainline
    iter_count_Ipopt::IpoptDataprivate
    iterates_space_Ipopt::IpoptDataprivate
    mu_initialized_Ipopt::IpoptDataprivate
    MuInitialized() constIpopt::IpoptDatainline
    operator=(const IpoptData &)Ipopt::IpoptDataprivate
    pd_pert_c_Ipopt::IpoptDataprivate
    pd_pert_d_Ipopt::IpoptDataprivate
    pd_pert_s_Ipopt::IpoptDataprivate
    pd_pert_x_Ipopt::IpoptDataprivate
    reference_count_Ipopt::ReferencedObjectmutableprivate
    ReferenceCount() constIpopt::ReferencedObjectinline
    ReferencedObject()Ipopt::ReferencedObjectinline
    RegisterOptions(const SmartPtr< RegisteredOptions > &roptions)Ipopt::IpoptDatastatic
    ReleaseRef(const Referencer *referencer) constIpopt::ReferencedObjectinline
    ResetInfo()Ipopt::IpoptDatainline
    set_delta(SmartPtr< IteratesVector > &delta)Ipopt::IpoptDatainline
    set_delta(SmartPtr< const IteratesVector > &delta)Ipopt::IpoptDatainline
    set_delta_aff(SmartPtr< IteratesVector > &delta_aff)Ipopt::IpoptDatainline
    Set_info_alpha_dual(Number alpha_dual)Ipopt::IpoptDatainline
    Set_info_alpha_primal(Number alpha_primal)Ipopt::IpoptDatainline
    Set_info_alpha_primal_char(char info_alpha_primal_char)Ipopt::IpoptDatainline
    Set_info_iters_since_header(int info_iters_since_header)Ipopt::IpoptDatainline
    Set_info_last_output(Number info_last_output)Ipopt::IpoptDatainline
    Set_info_ls_count(Index ls_count)Ipopt::IpoptDatainline
    Set_info_regu_x(Number regu_x)Ipopt::IpoptDatainline
    Set_info_skip_output(bool info_skip_output)Ipopt::IpoptDatainline
    Set_iter_count(Index iter_count)Ipopt::IpoptDatainline
    Set_mu(Number mu)Ipopt::IpoptDatainline
    Set_tau(Number tau)Ipopt::IpoptDatainline
    Set_tiny_step_flag(bool flag)Ipopt::IpoptDatainline
    Set_tol(Number tol)Ipopt::IpoptDatainline
    set_trial(SmartPtr< IteratesVector > &trial)Ipopt::IpoptDatainline
    Set_W(SmartPtr< const SymMatrix > W)Ipopt::IpoptDatainline
    SetAddData(SmartPtr< IpoptAdditionalData > add_data)Ipopt::IpoptDatainline
    SetFreeMuMode(bool free_mu_mode)Ipopt::IpoptDatainline
    SetHaveAffineDeltas(bool have_affine_deltas)Ipopt::IpoptDatainline
    SetHaveDeltas(bool have_deltas)Ipopt::IpoptDatainline
    setPDPert(Number pd_pert_x, Number pd_pert_s, Number pd_pert_c, Number pd_pert_d)Ipopt::IpoptDatainline
    SetTrialBoundMultipliersFromStep(Number alpha, const Vector &delta_z_L, const Vector &delta_z_U, const Vector &delta_v_L, const Vector &delta_v_U)Ipopt::IpoptData
    SetTrialEqMultipliersFromStep(Number alpha, const Vector &delta_y_c, const Vector &delta_y_d)Ipopt::IpoptData
    SetTrialPrimalVariablesFromStep(Number alpha, const Vector &delta_x, const Vector &delta_s)Ipopt::IpoptData
    tau_initialized_Ipopt::IpoptDataprivate
    TauInitialized() constIpopt::IpoptDatainline
    timing_statistics_Ipopt::IpoptDataprivate
    TimingStats()Ipopt::IpoptDatainline
    TimingStats() constIpopt::IpoptDatainline
    tiny_step_flag()Ipopt::IpoptDatainline
    tiny_step_flag_Ipopt::IpoptDataprivate
    tol() constIpopt::IpoptDatainline
    tol_Ipopt::IpoptDataprivate
    trial() constIpopt::IpoptDatainline
    trial_Ipopt::IpoptDataprivate
    W()Ipopt::IpoptDatainline
    W_Ipopt::IpoptDataprivate
    ~IpoptData()Ipopt::IpoptDatavirtual
    ~ReferencedObject()Ipopt::ReferencedObjectinlinevirtual
    diff --git a/classIpopt_1_1IpoptData.html b/classIpopt_1_1IpoptData.html index 945ff43cf..70aed6457 100644 --- a/classIpopt_1_1IpoptData.html +++ b/classIpopt_1_1IpoptData.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -284,6 +284,8 @@
     
    void Append_info_string (const std::string &add_str)
     
    void Append_info_string (const std::string &add_str, double value)
     
    const std::string & info_string () const
     
    void Set_info_skip_output (bool info_skip_output)
    + + + + +
    + + + + + + + + + + + + + + + + + + +
    void Ipopt::IpoptData::Append_info_string (const std::string & add_str,
    double value 
    )
    +
    +inline
    +
    +
    Since
    3.14.17
    + +

    Definition at line 526 of file IpIpoptData.hpp.

    @@ -1990,7 +2031,7 @@

    -

    Definition at line 522 of file IpIpoptData.hpp.

    +

    Definition at line 535 of file IpIpoptData.hpp.

    @@ -2020,7 +2061,7 @@

    Definition at line 529 of file IpIpoptData.hpp.

    +

    Definition at line 542 of file IpIpoptData.hpp.

    @@ -2049,7 +2090,7 @@

    Definition at line 537 of file IpIpoptData.hpp.

    +

    Definition at line 550 of file IpIpoptData.hpp.

    @@ -2079,7 +2120,7 @@

    Definition at line 542 of file IpIpoptData.hpp.

    +

    Definition at line 555 of file IpIpoptData.hpp.

    @@ -2108,7 +2149,7 @@

    Definition at line 552 of file IpIpoptData.hpp.

    +

    Definition at line 565 of file IpIpoptData.hpp.

    @@ -2137,7 +2178,7 @@

    Definition at line 559 of file IpIpoptData.hpp.

    +

    Definition at line 572 of file IpIpoptData.hpp.

    @@ -2167,7 +2208,7 @@

    Definition at line 566 of file IpIpoptData.hpp.

    +

    Definition at line 579 of file IpIpoptData.hpp.

    @@ -2196,7 +2237,7 @@

    Definition at line 574 of file IpIpoptData.hpp.

    +

    Definition at line 587 of file IpIpoptData.hpp.

    @@ -2225,7 +2266,7 @@

    Definition at line 586 of file IpIpoptData.hpp.

    +

    Definition at line 599 of file IpIpoptData.hpp.

    @@ -2255,7 +2296,7 @@

    Since
    3.14.11
    -

    Definition at line 595 of file IpIpoptData.hpp.

    +

    Definition at line 608 of file IpIpoptData.hpp.

    @@ -2284,7 +2325,7 @@

    Definition at line 601 of file IpIpoptData.hpp.

    +

    Definition at line 614 of file IpIpoptData.hpp.

    @@ -2313,7 +2354,7 @@

    Definition at line 607 of file IpIpoptData.hpp.

    +

    Definition at line 620 of file IpIpoptData.hpp.

    @@ -2343,7 +2384,7 @@

    Ipopt data.

    -

    Definition at line 613 of file IpIpoptData.hpp.

    +

    Definition at line 626 of file IpIpoptData.hpp.

    @@ -2395,7 +2436,7 @@

    Definition at line 623 of file IpIpoptData.hpp.

    +

    Definition at line 636 of file IpIpoptData.hpp.

    @@ -2447,7 +2488,7 @@

    Definition at line 637 of file IpIpoptData.hpp.

    +

    Definition at line 650 of file IpIpoptData.hpp.

    @@ -2528,7 +2569,7 @@

    Definition at line 658 of file IpIpoptData.hpp.

    +

    Definition at line 671 of file IpIpoptData.hpp.

    @@ -2554,7 +2595,7 @@

    Definition at line 661 of file IpIpoptData.hpp.

    +

    Definition at line 674 of file IpIpoptData.hpp.

    @@ -2580,7 +2621,7 @@

    Definition at line 664 of file IpIpoptData.hpp.

    +

    Definition at line 677 of file IpIpoptData.hpp.

    @@ -2604,7 +2645,7 @@

    -

    Definition at line 668 of file IpIpoptData.hpp.

    +

    Definition at line 681 of file IpIpoptData.hpp.

    @@ -2631,7 +2672,7 @@

    Definition at line 677 of file IpIpoptData.hpp.

    +

    Definition at line 690 of file IpIpoptData.hpp.

    @@ -2655,7 +2696,7 @@

    -

    Definition at line 688 of file IpIpoptData.hpp.

    +

    Definition at line 701 of file IpIpoptData.hpp.

    @@ -2682,7 +2723,7 @@

    Definition at line 696 of file IpIpoptData.hpp.

    +

    Definition at line 709 of file IpIpoptData.hpp.

    @@ -2708,7 +2749,7 @@

    Definition at line 700 of file IpIpoptData.hpp.

    +

    Definition at line 713 of file IpIpoptData.hpp.

    @@ -2734,7 +2775,7 @@

    Definition at line 703 of file IpIpoptData.hpp.

    +

    Definition at line 716 of file IpIpoptData.hpp.

    @@ -2758,7 +2799,7 @@

    -

    Definition at line 704 of file IpIpoptData.hpp.

    +

    Definition at line 717 of file IpIpoptData.hpp.

    @@ -2784,7 +2825,7 @@

    Definition at line 707 of file IpIpoptData.hpp.

    +

    Definition at line 720 of file IpIpoptData.hpp.

    @@ -2808,7 +2849,7 @@

    -

    Definition at line 708 of file IpIpoptData.hpp.

    +

    Definition at line 721 of file IpIpoptData.hpp.

    @@ -2834,7 +2875,7 @@

    Definition at line 711 of file IpIpoptData.hpp.

    +

    Definition at line 724 of file IpIpoptData.hpp.

    @@ -2860,7 +2901,7 @@

    Definition at line 716 of file IpIpoptData.hpp.

    +

    Definition at line 729 of file IpIpoptData.hpp.

    @@ -2886,7 +2927,7 @@

    Definition at line 727 of file IpIpoptData.hpp.

    +

    Definition at line 740 of file IpIpoptData.hpp.

    @@ -2912,7 +2953,7 @@

    Definition at line 733 of file IpIpoptData.hpp.

    +

    Definition at line 746 of file IpIpoptData.hpp.

    @@ -2938,7 +2979,7 @@

    Definition at line 735 of file IpIpoptData.hpp.

    +

    Definition at line 748 of file IpIpoptData.hpp.

    @@ -2964,7 +3005,7 @@

    Definition at line 741 of file IpIpoptData.hpp.

    +

    Definition at line 754 of file IpIpoptData.hpp.

    @@ -2990,7 +3031,7 @@

    Definition at line 743 of file IpIpoptData.hpp.

    +

    Definition at line 756 of file IpIpoptData.hpp.

    @@ -3016,7 +3057,7 @@

    Definition at line 745 of file IpIpoptData.hpp.

    +

    Definition at line 758 of file IpIpoptData.hpp.

    @@ -3042,7 +3083,7 @@

    Definition at line 747 of file IpIpoptData.hpp.

    +

    Definition at line 760 of file IpIpoptData.hpp.

    @@ -3068,7 +3109,7 @@

    Definition at line 749 of file IpIpoptData.hpp.

    +

    Definition at line 762 of file IpIpoptData.hpp.

    @@ -3094,7 +3135,7 @@

    Definition at line 753 of file IpIpoptData.hpp.

    +

    Definition at line 766 of file IpIpoptData.hpp.

    @@ -3120,7 +3161,7 @@

    Definition at line 755 of file IpIpoptData.hpp.

    +

    Definition at line 768 of file IpIpoptData.hpp.

    @@ -3146,7 +3187,7 @@

    Definition at line 757 of file IpIpoptData.hpp.

    +

    Definition at line 770 of file IpIpoptData.hpp.

    @@ -3172,7 +3213,7 @@

    Definition at line 761 of file IpIpoptData.hpp.

    +

    Definition at line 774 of file IpIpoptData.hpp.

    @@ -3198,7 +3239,7 @@

    VectorSpace for all the iterates.

    -

    Definition at line 765 of file IpIpoptData.hpp.

    +

    Definition at line 778 of file IpIpoptData.hpp.

    @@ -3224,7 +3265,7 @@

    TimingStatistics object collecting all Ipopt timing statistics.

    -

    Definition at line 768 of file IpIpoptData.hpp.

    +

    Definition at line 781 of file IpIpoptData.hpp.

    @@ -3250,7 +3291,7 @@

    Definition at line 773 of file IpIpoptData.hpp.

    +

    Definition at line 786 of file IpIpoptData.hpp.

    @@ -3274,7 +3315,7 @@

    -

    Definition at line 777 of file IpIpoptData.hpp.

    +

    Definition at line 790 of file IpIpoptData.hpp.

    @@ -3298,7 +3339,7 @@

    -

    Definition at line 778 of file IpIpoptData.hpp.

    +

    Definition at line 791 of file IpIpoptData.hpp.

    @@ -3322,7 +3363,7 @@

    -

    Definition at line 779 of file IpIpoptData.hpp.

    +

    Definition at line 792 of file IpIpoptData.hpp.

    @@ -3346,7 +3387,7 @@

    -

    Definition at line 780 of file IpIpoptData.hpp.

    +

    Definition at line 793 of file IpIpoptData.hpp.

    diff --git a/classIpopt_1_1IpoptData.js b/classIpopt_1_1IpoptData.js index fe75f81d4..4c76d5153 100644 --- a/classIpopt_1_1IpoptData.js +++ b/classIpopt_1_1IpoptData.js @@ -51,6 +51,7 @@ var classIpopt_1_1IpoptData = [ "Set_info_ls_count", "classIpopt_1_1IpoptData.html#a503123ed8338d530069f68d87bbd6b9f", null ], [ "info_skip_output", "classIpopt_1_1IpoptData.html#aa4b2090877fc8d0bdb98b670813754ef", null ], [ "Append_info_string", "classIpopt_1_1IpoptData.html#a1ad629fbc0f5fa6e76b49b310831241c", null ], + [ "Append_info_string", "classIpopt_1_1IpoptData.html#a480f5eb58d6048f6a9a2ce22e4d5790c", null ], [ "info_string", "classIpopt_1_1IpoptData.html#a181e51143d000979375e26847dd5b1ea", null ], [ "Set_info_skip_output", "classIpopt_1_1IpoptData.html#aa6e4197957a3f1304c988f926ea07bc5", null ], [ "info_last_output", "classIpopt_1_1IpoptData.html#ad41f4ee79658564a4d7291f92ef49c6b", null ], diff --git a/classIpopt_1_1IpoptException-members.html b/classIpopt_1_1IpoptException-members.html index 391f096a2..57e44a4a3 100644 --- a/classIpopt_1_1IpoptException-members.html +++ b/classIpopt_1_1IpoptException-members.html @@ -39,7 +39,7 @@

    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IpoptException.html b/classIpopt_1_1IpoptException.html index 524175d76..1d1123909 100644 --- a/classIpopt_1_1IpoptException.html +++ b/classIpopt_1_1IpoptException.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IpoptNLP-members.html b/classIpopt_1_1IpoptNLP-members.html index 1fb866926..3fd275d4f 100644 --- a/classIpopt_1_1IpoptNLP-members.html +++ b/classIpopt_1_1IpoptNLP-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IpoptNLP.html b/classIpopt_1_1IpoptNLP.html index 65734b20d..927bf71b3 100644 --- a/classIpopt_1_1IpoptNLP.html +++ b/classIpopt_1_1IpoptNLP.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IterateInitializer-members.html b/classIpopt_1_1IterateInitializer-members.html index 2bbfe4c2c..3a495a030 100644 --- a/classIpopt_1_1IterateInitializer-members.html +++ b/classIpopt_1_1IterateInitializer-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IterateInitializer.html b/classIpopt_1_1IterateInitializer.html index c2a6e354c..b211f799b 100644 --- a/classIpopt_1_1IterateInitializer.html +++ b/classIpopt_1_1IterateInitializer.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -126,13 +126,13 @@ - + - + - +
    [legend]
    diff --git a/classIpopt_1_1IteratesVector-members.html b/classIpopt_1_1IteratesVector-members.html index 1b0443e3c..ec19e6dc6 100644 --- a/classIpopt_1_1IteratesVector-members.html +++ b/classIpopt_1_1IteratesVector-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IteratesVector.html b/classIpopt_1_1IteratesVector.html index fb48daca3..ae33fd147 100644 --- a/classIpopt_1_1IteratesVector.html +++ b/classIpopt_1_1IteratesVector.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IteratesVectorSpace-members.html b/classIpopt_1_1IteratesVectorSpace-members.html index 63dcc9206..64bfd4c18 100644 --- a/classIpopt_1_1IteratesVectorSpace-members.html +++ b/classIpopt_1_1IteratesVectorSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IteratesVectorSpace.html b/classIpopt_1_1IteratesVectorSpace.html index 5aa8d4725..413d9e6f2 100644 --- a/classIpopt_1_1IteratesVectorSpace.html +++ b/classIpopt_1_1IteratesVectorSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IterationOutput-members.html b/classIpopt_1_1IterationOutput-members.html index 74ecc53fd..3ccdedd2e 100644 --- a/classIpopt_1_1IterationOutput-members.html +++ b/classIpopt_1_1IterationOutput-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IterationOutput.html b/classIpopt_1_1IterationOutput.html index bdd9650ff..1337c7b58 100644 --- a/classIpopt_1_1IterationOutput.html +++ b/classIpopt_1_1IterationOutput.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IterativePardisoSolverInterface-members.html b/classIpopt_1_1IterativePardisoSolverInterface-members.html index 542e35d1d..cfc7c4d2b 100644 --- a/classIpopt_1_1IterativePardisoSolverInterface-members.html +++ b/classIpopt_1_1IterativePardisoSolverInterface-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IterativePardisoSolverInterface.html b/classIpopt_1_1IterativePardisoSolverInterface.html index f67fe19b6..0d3151628 100644 --- a/classIpopt_1_1IterativePardisoSolverInterface.html +++ b/classIpopt_1_1IterativePardisoSolverInterface.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IterativeSolverTerminationTester-members.html b/classIpopt_1_1IterativeSolverTerminationTester-members.html index 14d7d9acb..4d4ebba87 100644 --- a/classIpopt_1_1IterativeSolverTerminationTester-members.html +++ b/classIpopt_1_1IterativeSolverTerminationTester-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IterativeSolverTerminationTester.html b/classIpopt_1_1IterativeSolverTerminationTester.html index 7f5abadc2..03deb0b5e 100644 --- a/classIpopt_1_1IterativeSolverTerminationTester.html +++ b/classIpopt_1_1IterativeSolverTerminationTester.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IterativeWsmpSolverInterface-members.html b/classIpopt_1_1IterativeWsmpSolverInterface-members.html index 8f591bde1..46609c6ae 100644 --- a/classIpopt_1_1IterativeWsmpSolverInterface-members.html +++ b/classIpopt_1_1IterativeWsmpSolverInterface-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1IterativeWsmpSolverInterface.html b/classIpopt_1_1IterativeWsmpSolverInterface.html index 8a13d1e12..1a683e165 100644 --- a/classIpopt_1_1IterativeWsmpSolverInterface.html +++ b/classIpopt_1_1IterativeWsmpSolverInterface.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Journal-members.html b/classIpopt_1_1Journal-members.html index 2d6311715..a163f98d8 100644 --- a/classIpopt_1_1Journal-members.html +++ b/classIpopt_1_1Journal-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Journal.html b/classIpopt_1_1Journal.html index 8d2bc4cc4..21a7acda2 100644 --- a/classIpopt_1_1Journal.html +++ b/classIpopt_1_1Journal.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -129,7 +129,7 @@ - +
    [legend]
    diff --git a/classIpopt_1_1Journalist-members.html b/classIpopt_1_1Journalist-members.html index 33397b44f..38f5755f9 100644 --- a/classIpopt_1_1Journalist-members.html +++ b/classIpopt_1_1Journalist-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Journalist.html b/classIpopt_1_1Journalist.html index bb5446a6a..c3dafd5b0 100644 --- a/classIpopt_1_1Journalist.html +++ b/classIpopt_1_1Journalist.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1LeastSquareMultipliers-members.html b/classIpopt_1_1LeastSquareMultipliers-members.html index 7721051f9..44c74f206 100644 --- a/classIpopt_1_1LeastSquareMultipliers-members.html +++ b/classIpopt_1_1LeastSquareMultipliers-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1LeastSquareMultipliers.html b/classIpopt_1_1LeastSquareMultipliers.html index 6ba57dfdf..3fa07bc40 100644 --- a/classIpopt_1_1LeastSquareMultipliers.html +++ b/classIpopt_1_1LeastSquareMultipliers.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1LibraryLoader-members.html b/classIpopt_1_1LibraryLoader-members.html index 9a936c52d..3dc53bba8 100644 --- a/classIpopt_1_1LibraryLoader-members.html +++ b/classIpopt_1_1LibraryLoader-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1LibraryLoader.html b/classIpopt_1_1LibraryLoader.html index f66d4f59e..b5c851e36 100644 --- a/classIpopt_1_1LibraryLoader.html +++ b/classIpopt_1_1LibraryLoader.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1LimMemQuasiNewtonUpdater-members.html b/classIpopt_1_1LimMemQuasiNewtonUpdater-members.html index d38cc9769..3b77516de 100644 --- a/classIpopt_1_1LimMemQuasiNewtonUpdater-members.html +++ b/classIpopt_1_1LimMemQuasiNewtonUpdater-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1LimMemQuasiNewtonUpdater.html b/classIpopt_1_1LimMemQuasiNewtonUpdater.html index efe3cade3..ff42ea027 100644 --- a/classIpopt_1_1LimMemQuasiNewtonUpdater.html +++ b/classIpopt_1_1LimMemQuasiNewtonUpdater.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1LineSearch-members.html b/classIpopt_1_1LineSearch-members.html index 75c2b7655..e7aff1965 100644 --- a/classIpopt_1_1LineSearch-members.html +++ b/classIpopt_1_1LineSearch-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1LineSearch.html b/classIpopt_1_1LineSearch.html index 8480ca550..972c33abf 100644 --- a/classIpopt_1_1LineSearch.html +++ b/classIpopt_1_1LineSearch.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1LoqoMuOracle-members.html b/classIpopt_1_1LoqoMuOracle-members.html index b8aedd27b..73babd0a2 100644 --- a/classIpopt_1_1LoqoMuOracle-members.html +++ b/classIpopt_1_1LoqoMuOracle-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1LoqoMuOracle.html b/classIpopt_1_1LoqoMuOracle.html index 802c1e166..de764461a 100644 --- a/classIpopt_1_1LoqoMuOracle.html +++ b/classIpopt_1_1LoqoMuOracle.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1LowRankAugSystemSolver-members.html b/classIpopt_1_1LowRankAugSystemSolver-members.html index 1cefb57fc..e8c749441 100644 --- a/classIpopt_1_1LowRankAugSystemSolver-members.html +++ b/classIpopt_1_1LowRankAugSystemSolver-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1LowRankAugSystemSolver.html b/classIpopt_1_1LowRankAugSystemSolver.html index d2ed7adbd..13cd85ed9 100644 --- a/classIpopt_1_1LowRankAugSystemSolver.html +++ b/classIpopt_1_1LowRankAugSystemSolver.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1LowRankSSAugSystemSolver-members.html b/classIpopt_1_1LowRankSSAugSystemSolver-members.html index 8bb5e20b7..736cd0458 100644 --- a/classIpopt_1_1LowRankSSAugSystemSolver-members.html +++ b/classIpopt_1_1LowRankSSAugSystemSolver-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1LowRankSSAugSystemSolver.html b/classIpopt_1_1LowRankSSAugSystemSolver.html index 919d5ea44..184d6b819 100644 --- a/classIpopt_1_1LowRankSSAugSystemSolver.html +++ b/classIpopt_1_1LowRankSSAugSystemSolver.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1LowRankUpdateSymMatrix-members.html b/classIpopt_1_1LowRankUpdateSymMatrix-members.html index 41371228d..5067617fe 100644 --- a/classIpopt_1_1LowRankUpdateSymMatrix-members.html +++ b/classIpopt_1_1LowRankUpdateSymMatrix-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1LowRankUpdateSymMatrix.html b/classIpopt_1_1LowRankUpdateSymMatrix.html index 90c6213e1..d944a1830 100644 --- a/classIpopt_1_1LowRankUpdateSymMatrix.html +++ b/classIpopt_1_1LowRankUpdateSymMatrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1LowRankUpdateSymMatrixSpace-members.html b/classIpopt_1_1LowRankUpdateSymMatrixSpace-members.html index 9a712a4a1..b1b396e5a 100644 --- a/classIpopt_1_1LowRankUpdateSymMatrixSpace-members.html +++ b/classIpopt_1_1LowRankUpdateSymMatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1LowRankUpdateSymMatrixSpace.html b/classIpopt_1_1LowRankUpdateSymMatrixSpace.html index 33a0ade0b..dd26a9df6 100644 --- a/classIpopt_1_1LowRankUpdateSymMatrixSpace.html +++ b/classIpopt_1_1LowRankUpdateSymMatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Ma27TSolverInterface-members.html b/classIpopt_1_1Ma27TSolverInterface-members.html index a29d5c272..6c888b986 100644 --- a/classIpopt_1_1Ma27TSolverInterface-members.html +++ b/classIpopt_1_1Ma27TSolverInterface-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Ma27TSolverInterface.html b/classIpopt_1_1Ma27TSolverInterface.html index b55c1e70d..b35dbb7de 100644 --- a/classIpopt_1_1Ma27TSolverInterface.html +++ b/classIpopt_1_1Ma27TSolverInterface.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Ma28TDependencyDetector-members.html b/classIpopt_1_1Ma28TDependencyDetector-members.html index 502bfcd41..5b7b202ed 100644 --- a/classIpopt_1_1Ma28TDependencyDetector-members.html +++ b/classIpopt_1_1Ma28TDependencyDetector-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Ma28TDependencyDetector.html b/classIpopt_1_1Ma28TDependencyDetector.html index 253e88129..d11403c62 100644 --- a/classIpopt_1_1Ma28TDependencyDetector.html +++ b/classIpopt_1_1Ma28TDependencyDetector.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Ma57TSolverInterface-members.html b/classIpopt_1_1Ma57TSolverInterface-members.html index 6b8672804..72c8c06f7 100644 --- a/classIpopt_1_1Ma57TSolverInterface-members.html +++ b/classIpopt_1_1Ma57TSolverInterface-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Ma57TSolverInterface.html b/classIpopt_1_1Ma57TSolverInterface.html index 56b1725f1..1c7a77015 100644 --- a/classIpopt_1_1Ma57TSolverInterface.html +++ b/classIpopt_1_1Ma57TSolverInterface.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Ma77SolverInterface-members.html b/classIpopt_1_1Ma77SolverInterface-members.html index c536e190f..b5d541360 100644 --- a/classIpopt_1_1Ma77SolverInterface-members.html +++ b/classIpopt_1_1Ma77SolverInterface-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Ma77SolverInterface.html b/classIpopt_1_1Ma77SolverInterface.html index 98ecc0bc3..345c4610b 100644 --- a/classIpopt_1_1Ma77SolverInterface.html +++ b/classIpopt_1_1Ma77SolverInterface.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Ma86SolverInterface-members.html b/classIpopt_1_1Ma86SolverInterface-members.html index dbde8e411..fa0fab9be 100644 --- a/classIpopt_1_1Ma86SolverInterface-members.html +++ b/classIpopt_1_1Ma86SolverInterface-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Ma86SolverInterface.html b/classIpopt_1_1Ma86SolverInterface.html index 227cccde0..4f6d0ddf3 100644 --- a/classIpopt_1_1Ma86SolverInterface.html +++ b/classIpopt_1_1Ma86SolverInterface.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Ma97SolverInterface-members.html b/classIpopt_1_1Ma97SolverInterface-members.html index 398374b43..f7d388ecf 100644 --- a/classIpopt_1_1Ma97SolverInterface-members.html +++ b/classIpopt_1_1Ma97SolverInterface-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Ma97SolverInterface.html b/classIpopt_1_1Ma97SolverInterface.html index 6772954ca..14b17c6d3 100644 --- a/classIpopt_1_1Ma97SolverInterface.html +++ b/classIpopt_1_1Ma97SolverInterface.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Matrix-members.html b/classIpopt_1_1Matrix-members.html index 9c928b68e..832ae8e36 100644 --- a/classIpopt_1_1Matrix-members.html +++ b/classIpopt_1_1Matrix-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Matrix.html b/classIpopt_1_1Matrix.html index 6994e3fc5..c74e211c6 100644 --- a/classIpopt_1_1Matrix.html +++ b/classIpopt_1_1Matrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -135,7 +135,7 @@ - + @@ -147,7 +147,7 @@ - + @@ -161,10 +161,10 @@ - + - + diff --git a/classIpopt_1_1MatrixSpace-members.html b/classIpopt_1_1MatrixSpace-members.html index 8d1e8902d..4fc5451ba 100644 --- a/classIpopt_1_1MatrixSpace-members.html +++ b/classIpopt_1_1MatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1MatrixSpace.html b/classIpopt_1_1MatrixSpace.html index ffa6e0958..3597953ad 100644 --- a/classIpopt_1_1MatrixSpace.html +++ b/classIpopt_1_1MatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -126,17 +126,17 @@ - + - + - - - + + + @@ -147,7 +147,7 @@ - + @@ -157,7 +157,7 @@ - + diff --git a/classIpopt_1_1Mc19TSymScalingMethod-members.html b/classIpopt_1_1Mc19TSymScalingMethod-members.html index 54aede5f8..9f3cf8330 100644 --- a/classIpopt_1_1Mc19TSymScalingMethod-members.html +++ b/classIpopt_1_1Mc19TSymScalingMethod-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Mc19TSymScalingMethod.html b/classIpopt_1_1Mc19TSymScalingMethod.html index cbb080ae1..e1788b429 100644 --- a/classIpopt_1_1Mc19TSymScalingMethod.html +++ b/classIpopt_1_1Mc19TSymScalingMethod.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Measurement-members.html b/classIpopt_1_1Measurement-members.html index ccad5505d..21fc4281c 100644 --- a/classIpopt_1_1Measurement-members.html +++ b/classIpopt_1_1Measurement-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Measurement.html b/classIpopt_1_1Measurement.html index 6de6ef94f..91202ddfa 100644 --- a/classIpopt_1_1Measurement.html +++ b/classIpopt_1_1Measurement.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1MetadataMeasurement-members.html b/classIpopt_1_1MetadataMeasurement-members.html index 4947a4edb..209293596 100644 --- a/classIpopt_1_1MetadataMeasurement-members.html +++ b/classIpopt_1_1MetadataMeasurement-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1MetadataMeasurement.html b/classIpopt_1_1MetadataMeasurement.html index bbab4178c..d3c7da675 100644 --- a/classIpopt_1_1MetadataMeasurement.html +++ b/classIpopt_1_1MetadataMeasurement.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1MinC__1NrmRestorationPhase-members.html b/classIpopt_1_1MinC__1NrmRestorationPhase-members.html index df01b5a00..875d3e4f0 100644 --- a/classIpopt_1_1MinC__1NrmRestorationPhase-members.html +++ b/classIpopt_1_1MinC__1NrmRestorationPhase-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1MinC__1NrmRestorationPhase.html b/classIpopt_1_1MinC__1NrmRestorationPhase.html index e9c212f12..881d98398 100644 --- a/classIpopt_1_1MinC__1NrmRestorationPhase.html +++ b/classIpopt_1_1MinC__1NrmRestorationPhase.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1MonotoneMuUpdate-members.html b/classIpopt_1_1MonotoneMuUpdate-members.html index b0222a3b7..9876a8e1f 100644 --- a/classIpopt_1_1MonotoneMuUpdate-members.html +++ b/classIpopt_1_1MonotoneMuUpdate-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1MonotoneMuUpdate.html b/classIpopt_1_1MonotoneMuUpdate.html index 2d40a80f9..ab3f33cc3 100644 --- a/classIpopt_1_1MonotoneMuUpdate.html +++ b/classIpopt_1_1MonotoneMuUpdate.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1MuOracle-members.html b/classIpopt_1_1MuOracle-members.html index 4f41f76d0..d28bb719f 100644 --- a/classIpopt_1_1MuOracle-members.html +++ b/classIpopt_1_1MuOracle-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1MuOracle.html b/classIpopt_1_1MuOracle.html index bb7dbb0e4..0e5a0c878 100644 --- a/classIpopt_1_1MuOracle.html +++ b/classIpopt_1_1MuOracle.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1MuUpdate-members.html b/classIpopt_1_1MuUpdate-members.html index 814b17a00..49f9faae0 100644 --- a/classIpopt_1_1MuUpdate-members.html +++ b/classIpopt_1_1MuUpdate-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1MuUpdate.html b/classIpopt_1_1MuUpdate.html index 9c1ead48d..f8d8449bc 100644 --- a/classIpopt_1_1MuUpdate.html +++ b/classIpopt_1_1MuUpdate.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -125,11 +125,11 @@ - + - +
    [legend]
    diff --git a/classIpopt_1_1MultiVectorMatrix-members.html b/classIpopt_1_1MultiVectorMatrix-members.html index 605732de8..2142346b9 100644 --- a/classIpopt_1_1MultiVectorMatrix-members.html +++ b/classIpopt_1_1MultiVectorMatrix-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1MultiVectorMatrix.html b/classIpopt_1_1MultiVectorMatrix.html index 5935d417d..fbb75f7c2 100644 --- a/classIpopt_1_1MultiVectorMatrix.html +++ b/classIpopt_1_1MultiVectorMatrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1MultiVectorMatrixSpace-members.html b/classIpopt_1_1MultiVectorMatrixSpace-members.html index e4f92f232..8178b4d8d 100644 --- a/classIpopt_1_1MultiVectorMatrixSpace-members.html +++ b/classIpopt_1_1MultiVectorMatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1MultiVectorMatrixSpace.html b/classIpopt_1_1MultiVectorMatrixSpace.html index 513f99ef1..2c0035d1c 100644 --- a/classIpopt_1_1MultiVectorMatrixSpace.html +++ b/classIpopt_1_1MultiVectorMatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1MumpsSolverInterface-members.html b/classIpopt_1_1MumpsSolverInterface-members.html index 706d04904..6c6028741 100644 --- a/classIpopt_1_1MumpsSolverInterface-members.html +++ b/classIpopt_1_1MumpsSolverInterface-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1MumpsSolverInterface.html b/classIpopt_1_1MumpsSolverInterface.html index 490e3a829..293eaa842 100644 --- a/classIpopt_1_1MumpsSolverInterface.html +++ b/classIpopt_1_1MumpsSolverInterface.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1NLP-members.html b/classIpopt_1_1NLP-members.html index c67b51ceb..07635580d 100644 --- a/classIpopt_1_1NLP-members.html +++ b/classIpopt_1_1NLP-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1NLP.html b/classIpopt_1_1NLP.html index e89242066..2b47d45da 100644 --- a/classIpopt_1_1NLP.html +++ b/classIpopt_1_1NLP.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -125,7 +125,7 @@ - + diff --git a/classIpopt_1_1NLPBoundsRemover-members.html b/classIpopt_1_1NLPBoundsRemover-members.html index 5680b009a..9def24520 100644 --- a/classIpopt_1_1NLPBoundsRemover-members.html +++ b/classIpopt_1_1NLPBoundsRemover-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1NLPBoundsRemover.html b/classIpopt_1_1NLPBoundsRemover.html index 86c67f877..ddf8ae32d 100644 --- a/classIpopt_1_1NLPBoundsRemover.html +++ b/classIpopt_1_1NLPBoundsRemover.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1NLPScalingObject-members.html b/classIpopt_1_1NLPScalingObject-members.html index 893d6ac1b..78417f31f 100644 --- a/classIpopt_1_1NLPScalingObject-members.html +++ b/classIpopt_1_1NLPScalingObject-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1NLPScalingObject.html b/classIpopt_1_1NLPScalingObject.html index 870d72447..6fa88f9ce 100644 --- a/classIpopt_1_1NLPScalingObject.html +++ b/classIpopt_1_1NLPScalingObject.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -126,9 +126,9 @@ - + - + diff --git a/classIpopt_1_1NoNLPScalingObject-members.html b/classIpopt_1_1NoNLPScalingObject-members.html index 1329990e6..33b2a9e42 100644 --- a/classIpopt_1_1NoNLPScalingObject-members.html +++ b/classIpopt_1_1NoNLPScalingObject-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1NoNLPScalingObject.html b/classIpopt_1_1NoNLPScalingObject.html index 08b936bc8..85a3a522a 100644 --- a/classIpopt_1_1NoNLPScalingObject.html +++ b/classIpopt_1_1NoNLPScalingObject.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Observer-members.html b/classIpopt_1_1Observer-members.html index de4929c9d..2a8906dbe 100644 --- a/classIpopt_1_1Observer-members.html +++ b/classIpopt_1_1Observer-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Observer.html b/classIpopt_1_1Observer.html index 95a600764..2bb24530b 100644 --- a/classIpopt_1_1Observer.html +++ b/classIpopt_1_1Observer.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1OptimalityErrorConvergenceCheck-members.html b/classIpopt_1_1OptimalityErrorConvergenceCheck-members.html index 12e75ba80..840334cb8 100644 --- a/classIpopt_1_1OptimalityErrorConvergenceCheck-members.html +++ b/classIpopt_1_1OptimalityErrorConvergenceCheck-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1OptimalityErrorConvergenceCheck.html b/classIpopt_1_1OptimalityErrorConvergenceCheck.html index 7e774809f..3125ad286 100644 --- a/classIpopt_1_1OptimalityErrorConvergenceCheck.html +++ b/classIpopt_1_1OptimalityErrorConvergenceCheck.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1OptionsList-members.html b/classIpopt_1_1OptionsList-members.html index f9f16f3cf..e3e78ef1c 100644 --- a/classIpopt_1_1OptionsList-members.html +++ b/classIpopt_1_1OptionsList-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1OptionsList.html b/classIpopt_1_1OptionsList.html index be64ca7e4..848e114ba 100644 --- a/classIpopt_1_1OptionsList.html +++ b/classIpopt_1_1OptionsList.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1OptionsList_1_1OptionValue-members.html b/classIpopt_1_1OptionsList_1_1OptionValue-members.html index 3bd8d3b87..cc9b96c69 100644 --- a/classIpopt_1_1OptionsList_1_1OptionValue-members.html +++ b/classIpopt_1_1OptionsList_1_1OptionValue-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1OptionsList_1_1OptionValue.html b/classIpopt_1_1OptionsList_1_1OptionValue.html index ab5a8b0ce..e7ae29e7d 100644 --- a/classIpopt_1_1OptionsList_1_1OptionValue.html +++ b/classIpopt_1_1OptionsList_1_1OptionValue.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1OrigIpoptNLP-members.html b/classIpopt_1_1OrigIpoptNLP-members.html index 1591435af..3d436751f 100644 --- a/classIpopt_1_1OrigIpoptNLP-members.html +++ b/classIpopt_1_1OrigIpoptNLP-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1OrigIpoptNLP.html b/classIpopt_1_1OrigIpoptNLP.html index 68b9a4eb2..49a06d4cb 100644 --- a/classIpopt_1_1OrigIpoptNLP.html +++ b/classIpopt_1_1OrigIpoptNLP.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1OrigIterationOutput-members.html b/classIpopt_1_1OrigIterationOutput-members.html index 716c00acf..cea3bd443 100644 --- a/classIpopt_1_1OrigIterationOutput-members.html +++ b/classIpopt_1_1OrigIterationOutput-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1OrigIterationOutput.html b/classIpopt_1_1OrigIterationOutput.html index faddd2d6e..6df8337ef 100644 --- a/classIpopt_1_1OrigIterationOutput.html +++ b/classIpopt_1_1OrigIterationOutput.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PCalculator-members.html b/classIpopt_1_1PCalculator-members.html index 5d21a6812..48fca0415 100644 --- a/classIpopt_1_1PCalculator-members.html +++ b/classIpopt_1_1PCalculator-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PCalculator.html b/classIpopt_1_1PCalculator.html index a8065c4e9..40f1bdaa8 100644 --- a/classIpopt_1_1PCalculator.html +++ b/classIpopt_1_1PCalculator.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PColumn-members.html b/classIpopt_1_1PColumn-members.html index e9fdc33f0..7829a17a5 100644 --- a/classIpopt_1_1PColumn-members.html +++ b/classIpopt_1_1PColumn-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PColumn.html b/classIpopt_1_1PColumn.html index e1a5e3508..4d40f11e1 100644 --- a/classIpopt_1_1PColumn.html +++ b/classIpopt_1_1PColumn.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PDFullSpaceSolver-members.html b/classIpopt_1_1PDFullSpaceSolver-members.html index ad4a42631..ab63856ad 100644 --- a/classIpopt_1_1PDFullSpaceSolver-members.html +++ b/classIpopt_1_1PDFullSpaceSolver-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PDFullSpaceSolver.html b/classIpopt_1_1PDFullSpaceSolver.html index 41755ba8c..346fe1db0 100644 --- a/classIpopt_1_1PDFullSpaceSolver.html +++ b/classIpopt_1_1PDFullSpaceSolver.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PDPerturbationHandler-members.html b/classIpopt_1_1PDPerturbationHandler-members.html index 5daf13985..b3114862f 100644 --- a/classIpopt_1_1PDPerturbationHandler-members.html +++ b/classIpopt_1_1PDPerturbationHandler-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PDPerturbationHandler.html b/classIpopt_1_1PDPerturbationHandler.html index 26f1f8d27..0985ef909 100644 --- a/classIpopt_1_1PDPerturbationHandler.html +++ b/classIpopt_1_1PDPerturbationHandler.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PDSearchDirCalculator-members.html b/classIpopt_1_1PDSearchDirCalculator-members.html index 8de98945d..3e7bf54a2 100644 --- a/classIpopt_1_1PDSearchDirCalculator-members.html +++ b/classIpopt_1_1PDSearchDirCalculator-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PDSearchDirCalculator.html b/classIpopt_1_1PDSearchDirCalculator.html index 398c1a169..0bf2c20ce 100644 --- a/classIpopt_1_1PDSearchDirCalculator.html +++ b/classIpopt_1_1PDSearchDirCalculator.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PDSystemSolver-members.html b/classIpopt_1_1PDSystemSolver-members.html index 544b7162a..61bfbafb2 100644 --- a/classIpopt_1_1PDSystemSolver-members.html +++ b/classIpopt_1_1PDSystemSolver-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PDSystemSolver.html b/classIpopt_1_1PDSystemSolver.html index e25b98998..c11ba84c7 100644 --- a/classIpopt_1_1PDSystemSolver.html +++ b/classIpopt_1_1PDSystemSolver.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PardisoMKLSolverInterface-members.html b/classIpopt_1_1PardisoMKLSolverInterface-members.html index 56f0a62c2..0f597cb0c 100644 --- a/classIpopt_1_1PardisoMKLSolverInterface-members.html +++ b/classIpopt_1_1PardisoMKLSolverInterface-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PardisoMKLSolverInterface.html b/classIpopt_1_1PardisoMKLSolverInterface.html index 948e23317..32c17fe4e 100644 --- a/classIpopt_1_1PardisoMKLSolverInterface.html +++ b/classIpopt_1_1PardisoMKLSolverInterface.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PardisoSolverInterface-members.html b/classIpopt_1_1PardisoSolverInterface-members.html index 7c213b718..9f8146fdd 100644 --- a/classIpopt_1_1PardisoSolverInterface-members.html +++ b/classIpopt_1_1PardisoSolverInterface-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PardisoSolverInterface.html b/classIpopt_1_1PardisoSolverInterface.html index 2fdc59080..77370bfbf 100644 --- a/classIpopt_1_1PardisoSolverInterface.html +++ b/classIpopt_1_1PardisoSolverInterface.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PenaltyLSAcceptor-members.html b/classIpopt_1_1PenaltyLSAcceptor-members.html index 005f09cc5..081aac4db 100644 --- a/classIpopt_1_1PenaltyLSAcceptor-members.html +++ b/classIpopt_1_1PenaltyLSAcceptor-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PenaltyLSAcceptor.html b/classIpopt_1_1PenaltyLSAcceptor.html index a7c566e2b..ac160f7c8 100644 --- a/classIpopt_1_1PenaltyLSAcceptor.html +++ b/classIpopt_1_1PenaltyLSAcceptor.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PiecewisePenalty-members.html b/classIpopt_1_1PiecewisePenalty-members.html index 2553f5237..7f2e1fa2a 100644 --- a/classIpopt_1_1PiecewisePenalty-members.html +++ b/classIpopt_1_1PiecewisePenalty-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PiecewisePenalty.html b/classIpopt_1_1PiecewisePenalty.html index 9a0e6e131..3371ae949 100644 --- a/classIpopt_1_1PiecewisePenalty.html +++ b/classIpopt_1_1PiecewisePenalty.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PointPerturber-members.html b/classIpopt_1_1PointPerturber-members.html index 6a37b9a6a..6167813dd 100644 --- a/classIpopt_1_1PointPerturber-members.html +++ b/classIpopt_1_1PointPerturber-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1PointPerturber.html b/classIpopt_1_1PointPerturber.html index 6c0d31541..fd2d6e77e 100644 --- a/classIpopt_1_1PointPerturber.html +++ b/classIpopt_1_1PointPerturber.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ProbingMuOracle-members.html b/classIpopt_1_1ProbingMuOracle-members.html index b64885979..9c36f77d8 100644 --- a/classIpopt_1_1ProbingMuOracle-members.html +++ b/classIpopt_1_1ProbingMuOracle-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ProbingMuOracle.html b/classIpopt_1_1ProbingMuOracle.html index 1a267a562..ef91b13f9 100644 --- a/classIpopt_1_1ProbingMuOracle.html +++ b/classIpopt_1_1ProbingMuOracle.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1QualityFunctionMuOracle-members.html b/classIpopt_1_1QualityFunctionMuOracle-members.html index 2c3b46374..32e2c6a1d 100644 --- a/classIpopt_1_1QualityFunctionMuOracle-members.html +++ b/classIpopt_1_1QualityFunctionMuOracle-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1QualityFunctionMuOracle.html b/classIpopt_1_1QualityFunctionMuOracle.html index 982092368..a7c0d989a 100644 --- a/classIpopt_1_1QualityFunctionMuOracle.html +++ b/classIpopt_1_1QualityFunctionMuOracle.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ReducedHessianCalculator-members.html b/classIpopt_1_1ReducedHessianCalculator-members.html index dfdd840c0..72c57d028 100644 --- a/classIpopt_1_1ReducedHessianCalculator-members.html +++ b/classIpopt_1_1ReducedHessianCalculator-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ReducedHessianCalculator.html b/classIpopt_1_1ReducedHessianCalculator.html index ed5af3e2d..877b53b13 100644 --- a/classIpopt_1_1ReducedHessianCalculator.html +++ b/classIpopt_1_1ReducedHessianCalculator.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ReferencedObject-members.html b/classIpopt_1_1ReferencedObject-members.html index 491f08cc5..b954a5755 100644 --- a/classIpopt_1_1ReferencedObject-members.html +++ b/classIpopt_1_1ReferencedObject-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ReferencedObject.html b/classIpopt_1_1ReferencedObject.html index 62e523b3f..8b6037de3 100644 --- a/classIpopt_1_1ReferencedObject.html +++ b/classIpopt_1_1ReferencedObject.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -123,103 +123,103 @@ diff --git a/classIpopt_1_1ReferencedObject__inherit__graph.png b/classIpopt_1_1ReferencedObject__inherit__graph.png index 8eefb5787..70370d3b4 100644 Binary files a/classIpopt_1_1ReferencedObject__inherit__graph.png and b/classIpopt_1_1ReferencedObject__inherit__graph.png differ diff --git a/classIpopt_1_1Referencer.html b/classIpopt_1_1Referencer.html index 6d31e7d37..86a7e9f93 100644 --- a/classIpopt_1_1Referencer.html +++ b/classIpopt_1_1Referencer.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RegisteredCategory-members.html b/classIpopt_1_1RegisteredCategory-members.html index 1926185df..9e32afc0a 100644 --- a/classIpopt_1_1RegisteredCategory-members.html +++ b/classIpopt_1_1RegisteredCategory-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RegisteredCategory.html b/classIpopt_1_1RegisteredCategory.html index f28398ff9..80d369d3e 100644 --- a/classIpopt_1_1RegisteredCategory.html +++ b/classIpopt_1_1RegisteredCategory.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RegisteredCategory_1_1ComparePriority-members.html b/classIpopt_1_1RegisteredCategory_1_1ComparePriority-members.html index 806d7d82a..5dab1b8ef 100644 --- a/classIpopt_1_1RegisteredCategory_1_1ComparePriority-members.html +++ b/classIpopt_1_1RegisteredCategory_1_1ComparePriority-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RegisteredCategory_1_1ComparePriority.html b/classIpopt_1_1RegisteredCategory_1_1ComparePriority.html index 6039cd2dd..f35b8677c 100644 --- a/classIpopt_1_1RegisteredCategory_1_1ComparePriority.html +++ b/classIpopt_1_1RegisteredCategory_1_1ComparePriority.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RegisteredOption-members.html b/classIpopt_1_1RegisteredOption-members.html index 15da4183d..692d67b39 100644 --- a/classIpopt_1_1RegisteredOption-members.html +++ b/classIpopt_1_1RegisteredOption-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RegisteredOption.html b/classIpopt_1_1RegisteredOption.html index 687241976..b1a1b9c79 100644 --- a/classIpopt_1_1RegisteredOption.html +++ b/classIpopt_1_1RegisteredOption.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RegisteredOption_1_1string__entry-members.html b/classIpopt_1_1RegisteredOption_1_1string__entry-members.html index bf10b33eb..53973df36 100644 --- a/classIpopt_1_1RegisteredOption_1_1string__entry-members.html +++ b/classIpopt_1_1RegisteredOption_1_1string__entry-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RegisteredOption_1_1string__entry.html b/classIpopt_1_1RegisteredOption_1_1string__entry.html index 31b27ff78..46d9b79d9 100644 --- a/classIpopt_1_1RegisteredOption_1_1string__entry.html +++ b/classIpopt_1_1RegisteredOption_1_1string__entry.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RegisteredOptions-members.html b/classIpopt_1_1RegisteredOptions-members.html index 6e6150a48..e23de2762 100644 --- a/classIpopt_1_1RegisteredOptions-members.html +++ b/classIpopt_1_1RegisteredOptions-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RegisteredOptions.html b/classIpopt_1_1RegisteredOptions.html index 9845d7bf5..f7c5a32ee 100644 --- a/classIpopt_1_1RegisteredOptions.html +++ b/classIpopt_1_1RegisteredOptions.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RestoConvergenceCheck-members.html b/classIpopt_1_1RestoConvergenceCheck-members.html index 110a3b780..e5525c283 100644 --- a/classIpopt_1_1RestoConvergenceCheck-members.html +++ b/classIpopt_1_1RestoConvergenceCheck-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RestoConvergenceCheck.html b/classIpopt_1_1RestoConvergenceCheck.html index 43f5c2234..bbc18921e 100644 --- a/classIpopt_1_1RestoConvergenceCheck.html +++ b/classIpopt_1_1RestoConvergenceCheck.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RestoFilterConvergenceCheck-members.html b/classIpopt_1_1RestoFilterConvergenceCheck-members.html index 6000a5805..1c1f1b472 100644 --- a/classIpopt_1_1RestoFilterConvergenceCheck-members.html +++ b/classIpopt_1_1RestoFilterConvergenceCheck-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RestoFilterConvergenceCheck.html b/classIpopt_1_1RestoFilterConvergenceCheck.html index 48a900e12..7aaa13092 100644 --- a/classIpopt_1_1RestoFilterConvergenceCheck.html +++ b/classIpopt_1_1RestoFilterConvergenceCheck.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RestoIpoptNLP-members.html b/classIpopt_1_1RestoIpoptNLP-members.html index 5ec259872..337b25326 100644 --- a/classIpopt_1_1RestoIpoptNLP-members.html +++ b/classIpopt_1_1RestoIpoptNLP-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RestoIpoptNLP.html b/classIpopt_1_1RestoIpoptNLP.html index f36bb254a..e2f797268 100644 --- a/classIpopt_1_1RestoIpoptNLP.html +++ b/classIpopt_1_1RestoIpoptNLP.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RestoIterateInitializer-members.html b/classIpopt_1_1RestoIterateInitializer-members.html index e528660c4..c168c0899 100644 --- a/classIpopt_1_1RestoIterateInitializer-members.html +++ b/classIpopt_1_1RestoIterateInitializer-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RestoIterateInitializer.html b/classIpopt_1_1RestoIterateInitializer.html index 6b21b3c61..a6a7405b2 100644 --- a/classIpopt_1_1RestoIterateInitializer.html +++ b/classIpopt_1_1RestoIterateInitializer.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RestoIterationOutput-members.html b/classIpopt_1_1RestoIterationOutput-members.html index 370e0a3b1..8e3ab2205 100644 --- a/classIpopt_1_1RestoIterationOutput-members.html +++ b/classIpopt_1_1RestoIterationOutput-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RestoIterationOutput.html b/classIpopt_1_1RestoIterationOutput.html index 5e1a49a51..dafa7df71 100644 --- a/classIpopt_1_1RestoIterationOutput.html +++ b/classIpopt_1_1RestoIterationOutput.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RestoPenaltyConvergenceCheck-members.html b/classIpopt_1_1RestoPenaltyConvergenceCheck-members.html index 01a1e00f4..c82ebfb5a 100644 --- a/classIpopt_1_1RestoPenaltyConvergenceCheck-members.html +++ b/classIpopt_1_1RestoPenaltyConvergenceCheck-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RestoPenaltyConvergenceCheck.html b/classIpopt_1_1RestoPenaltyConvergenceCheck.html index c971fad9a..6e4089f55 100644 --- a/classIpopt_1_1RestoPenaltyConvergenceCheck.html +++ b/classIpopt_1_1RestoPenaltyConvergenceCheck.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RestoRestorationPhase-members.html b/classIpopt_1_1RestoRestorationPhase-members.html index c897928f8..1e759c936 100644 --- a/classIpopt_1_1RestoRestorationPhase-members.html +++ b/classIpopt_1_1RestoRestorationPhase-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RestoRestorationPhase.html b/classIpopt_1_1RestoRestorationPhase.html index 4a5e7eba1..74ae82895 100644 --- a/classIpopt_1_1RestoRestorationPhase.html +++ b/classIpopt_1_1RestoRestorationPhase.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RestorationPhase-members.html b/classIpopt_1_1RestorationPhase-members.html index c1e9bd98c..cc007a254 100644 --- a/classIpopt_1_1RestorationPhase-members.html +++ b/classIpopt_1_1RestorationPhase-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1RestorationPhase.html b/classIpopt_1_1RestorationPhase.html index 39825569b..03904d7b7 100644 --- a/classIpopt_1_1RestorationPhase.html +++ b/classIpopt_1_1RestorationPhase.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -122,7 +122,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SUFFIX__EMPTY.html b/classIpopt_1_1SUFFIX__EMPTY.html index d4d7e906f..ae16302c5 100644 --- a/classIpopt_1_1SUFFIX__EMPTY.html +++ b/classIpopt_1_1SUFFIX__EMPTY.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ScaledMatrix-members.html b/classIpopt_1_1ScaledMatrix-members.html index 54d500434..697ca24dc 100644 --- a/classIpopt_1_1ScaledMatrix-members.html +++ b/classIpopt_1_1ScaledMatrix-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ScaledMatrix.html b/classIpopt_1_1ScaledMatrix.html index f3046054e..573a7a280 100644 --- a/classIpopt_1_1ScaledMatrix.html +++ b/classIpopt_1_1ScaledMatrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ScaledMatrixSpace-members.html b/classIpopt_1_1ScaledMatrixSpace-members.html index 3cdc9e25a..f24e2b884 100644 --- a/classIpopt_1_1ScaledMatrixSpace-members.html +++ b/classIpopt_1_1ScaledMatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ScaledMatrixSpace.html b/classIpopt_1_1ScaledMatrixSpace.html index 13306e343..e6a829534 100644 --- a/classIpopt_1_1ScaledMatrixSpace.html +++ b/classIpopt_1_1ScaledMatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SchurData-members.html b/classIpopt_1_1SchurData-members.html index 3e1f0565a..6e8648faf 100644 --- a/classIpopt_1_1SchurData-members.html +++ b/classIpopt_1_1SchurData-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SchurData.html b/classIpopt_1_1SchurData.html index 0ab8108e0..99c97d568 100644 --- a/classIpopt_1_1SchurData.html +++ b/classIpopt_1_1SchurData.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SchurDriver-members.html b/classIpopt_1_1SchurDriver-members.html index a56a38f39..d9eec3be3 100644 --- a/classIpopt_1_1SchurDriver-members.html +++ b/classIpopt_1_1SchurDriver-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SchurDriver.html b/classIpopt_1_1SchurDriver.html index 6c5705637..9272660b7 100644 --- a/classIpopt_1_1SchurDriver.html +++ b/classIpopt_1_1SchurDriver.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SearchDirectionCalculator-members.html b/classIpopt_1_1SearchDirectionCalculator-members.html index 2359ff028..4fe272943 100644 --- a/classIpopt_1_1SearchDirectionCalculator-members.html +++ b/classIpopt_1_1SearchDirectionCalculator-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SearchDirectionCalculator.html b/classIpopt_1_1SearchDirectionCalculator.html index d344732a0..d0bb0b091 100644 --- a/classIpopt_1_1SearchDirectionCalculator.html +++ b/classIpopt_1_1SearchDirectionCalculator.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -126,13 +126,13 @@ - + - + - +
    [legend]
    diff --git a/classIpopt_1_1SensAlgorithm-members.html b/classIpopt_1_1SensAlgorithm-members.html index 7c06478f7..d8b4a4982 100644 --- a/classIpopt_1_1SensAlgorithm-members.html +++ b/classIpopt_1_1SensAlgorithm-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SensAlgorithm.html b/classIpopt_1_1SensAlgorithm.html index aedc9a7ae..1c77945ca 100644 --- a/classIpopt_1_1SensAlgorithm.html +++ b/classIpopt_1_1SensAlgorithm.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SensAmplTNLP-members.html b/classIpopt_1_1SensAmplTNLP-members.html index 98451c24c..0d138794d 100644 --- a/classIpopt_1_1SensAmplTNLP-members.html +++ b/classIpopt_1_1SensAmplTNLP-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -112,7 +112,7 @@ - + @@ -120,53 +120,55 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -191,7 +193,7 @@ - + diff --git a/classIpopt_1_1SensAmplTNLP.html b/classIpopt_1_1SensAmplTNLP.html index 78c698750..165ee4012 100644 --- a/classIpopt_1_1SensAmplTNLP.html +++ b/classIpopt_1_1SensAmplTNLP.html @@ -39,7 +39,7 @@
    AddRef(const Referencer *referencer) constIpopt::ReferencedObjectinline
    AmplSolverObject()Ipopt::AmplTNLPinline
    AmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, const char *const *argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL)Ipopt::AmplTNLP
    AmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, const char *const *argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL, bool checkinterrupt=false)Ipopt::AmplTNLP
    AmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< OptionsList > options, char **&argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL)Ipopt::AmplTNLP
    AmplTNLP()Ipopt::AmplTNLPprivate
    AmplTNLP(const AmplTNLP &)Ipopt::AmplTNLPprivate
    asl_Ipopt::AmplTNLPprotected
    C_STYLE enum valueIpopt::TNLP
    call_hesset()Ipopt::AmplTNLPprotected
    compute_red_hessian_Ipopt::SensAmplTNLPprivate
    con_integer_md_Ipopt::AmplTNLPprotected
    con_numeric_md_Ipopt::AmplTNLPprotected
    con_string_md_Ipopt::AmplTNLPprotected
    conval_called_with_current_x_Ipopt::AmplTNLPprotected
    DECLARE_STD_EXCEPTION(NONPOSITIVE_SCALING_FACTOR)Ipopt::AmplTNLP
    Ipopt::TNLP::DECLARE_STD_EXCEPTION(INVALID_TNLP)Ipopt::TNLP
    eval_f(Index n, const Number *x, bool new_x, Number &obj_value)Ipopt::AmplTNLPvirtual
    eval_g(Index n, const Number *x, bool new_x, Index m, Number *g)Ipopt::AmplTNLPvirtual
    eval_grad_f(Index n, const Number *x, bool new_x, Number *grad_f)Ipopt::AmplTNLPvirtual
    eval_h(Index n, const Number *x, bool new_x, Number obj_factor, Index m, const Number *lambda, bool new_lambda, Index nele_hess, Index *iRow, Index *jCol, Number *values)Ipopt::AmplTNLPvirtual
    eval_jac_g(Index n, const Number *x, bool new_x, Index m, Index nele_jac, Index *iRow, Index *jCol, Number *values)Ipopt::AmplTNLPvirtual
    finalize_metadata(Index n, const StringMetaDataMapType &var_string_md, const IntegerMetaDataMapType &var_integer_md, const NumericMetaDataMapType &var_numeric_md, Index m, const StringMetaDataMapType &con_string_md, const IntegerMetaDataMapType &con_integer_md, const NumericMetaDataMapType &con_numeric_md)Ipopt::SensAmplTNLPvirtual
    finalize_solution(SolverReturn status, Index n, const Number *x, const Number *z_L, const Number *z_U, Index m, const Number *g, const Number *lambda, Number obj_value, const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq)Ipopt::SensAmplTNLPvirtual
    FORTRAN_STYLE enum valueIpopt::TNLP
    g_sol_Ipopt::AmplTNLPprotected
    get_bounds_info(Index n, Number *x_l, Number *x_u, Index m, Number *g_l, Number *g_u)Ipopt::SensAmplTNLPvirtual
    get_constraints_linearity(Index m, LinearityType *const_types)Ipopt::AmplTNLPvirtual
    get_curr_iterate(const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq, bool scaled, Index n, Number *x, Number *z_L, Number *z_U, Index m, Number *g, Number *lambda) constIpopt::TNLP
    get_curr_violations(const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq, bool scaled, Index n, Number *x_L_violation, Number *x_U_violation, Number *compl_x_L, Number *compl_x_U, Number *grad_lag_x, Index m, Number *nlp_constraint_violation, Number *compl_g) constIpopt::TNLP
    get_discrete_info(Index &nlvb_, Index &nlvbi_, Index &nlvc_, Index &nlvci_, Index &nlvo_, Index &nlvoi_, Index &nbv_, Index &niv_) constIpopt::AmplTNLP
    get_index_suffix(const char *suffix_name)Ipopt::SensAmplTNLP
    get_index_suffix_constr(const char *suffix_name)Ipopt::SensAmplTNLP
    get_index_suffix_constr_vec(const char *suffix_name)Ipopt::SensAmplTNLP
    get_index_suffix_vec(const char *suffix_name)Ipopt::SensAmplTNLP
    get_list_of_nonlinear_variables(Index num_nonlin_vars, Index *pos_nonlin_vars)Ipopt::AmplTNLPvirtual
    get_nlp_info(Index &n, Index &m, Index &nnz_jac_g, Index &nnz_h_lag, IndexStyleEnum &index_style)Ipopt::AmplTNLPvirtual
    get_number_of_nonlinear_variables()Ipopt::AmplTNLPvirtual
    get_number_suffix(const char *suffix_name)Ipopt::SensAmplTNLP
    get_number_suffix_constr(const char *suffix_name)Ipopt::SensAmplTNLP
    get_number_suffix_vec(const char *suffix_name)Ipopt::SensAmplTNLP
    get_options(const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > &options, SmartPtr< AmplOptionsList > &ampl_options_list, const char *ampl_option_string, const char *ampl_invokation_string, const char *ampl_banner_string, const char *const *argv)Ipopt::AmplTNLPprotected
    get_options(const SmartPtr< OptionsList > &options, SmartPtr< AmplOptionsList > &ampl_options_list, const char *ampl_option_string, const char *ampl_invokation_string, const char *ampl_banner_string, char **&argv)Ipopt::AmplTNLPinlineprotected
    get_scaling_parameters(Number &obj_scaling, bool &use_x_scaling, Index n, Number *x_scaling, bool &use_g_scaling, Index m, Number *g_scaling)Ipopt::AmplTNLPvirtual
    get_starting_point(Index n, bool init_x, Number *x, bool init_z, Number *z_L, Number *z_U, Index m, bool init_lambda, Number *lambda)Ipopt::AmplTNLPvirtual
    get_suffix_handler()Ipopt::AmplTNLPinline
    get_var_con_metadata(Index n, StringMetaDataMapType &var_string_md, IntegerMetaDataMapType &var_integer_md, NumericMetaDataMapType &var_numeric_md, Index m, StringMetaDataMapType &con_string_md, IntegerMetaDataMapType &con_integer_md, NumericMetaDataMapType &con_numeric_md)Ipopt::SensAmplTNLPvirtual
    get_variables_linearity(Index n, LinearityType *var_types)Ipopt::TNLPinlinevirtual
    get_warm_start_iterate(IteratesVector &warm_start_iterate)Ipopt::TNLPinlinevirtual
    gutsOfConstructor(const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, const char *const *argv, bool allow_discrete, SmartPtr< AmplOptionsList > ampl_options_list, const char *ampl_option_string, const char *ampl_invokation_string, const char *ampl_banner_string, std::string *nl_file_content)Ipopt::AmplTNLPprivate
    have_parameters_Ipopt::SensAmplTNLPprivate
    hesset_called_Ipopt::AmplTNLPprotected
    IndexStyleEnum enum nameIpopt::TNLP
    IntegerMetaDataMapType typedefIpopt::TNLP
    intermediate_callback(AlgorithmMode mode, Index iter, Number obj_value, Number inf_pr, Number inf_du, Number mu, Number d_norm, Number regularization_size, Number alpha_du, Number alpha_pr, Index ls_trials, const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq)Ipopt::TNLPinlinevirtual
    internal_conval(const Number *x, Index m, Number *g=NULL)Ipopt::AmplTNLPprotected
    internal_objval(const Number *x, Number &obj_val)Ipopt::AmplTNLPprotected
    checkinterrupt_Ipopt::AmplTNLPprotected
    compute_red_hessian_Ipopt::SensAmplTNLPprivate
    con_integer_md_Ipopt::AmplTNLPprotected
    con_numeric_md_Ipopt::AmplTNLPprotected
    con_string_md_Ipopt::AmplTNLPprotected
    conval_called_with_current_x_Ipopt::AmplTNLPprotected
    DECLARE_STD_EXCEPTION(NONPOSITIVE_SCALING_FACTOR)Ipopt::AmplTNLP
    Ipopt::TNLP::DECLARE_STD_EXCEPTION(INVALID_TNLP)Ipopt::TNLP
    eval_f(Index n, const Number *x, bool new_x, Number &obj_value)Ipopt::AmplTNLPvirtual
    eval_g(Index n, const Number *x, bool new_x, Index m, Number *g)Ipopt::AmplTNLPvirtual
    eval_grad_f(Index n, const Number *x, bool new_x, Number *grad_f)Ipopt::AmplTNLPvirtual
    eval_h(Index n, const Number *x, bool new_x, Number obj_factor, Index m, const Number *lambda, bool new_lambda, Index nele_hess, Index *iRow, Index *jCol, Number *values)Ipopt::AmplTNLPvirtual
    eval_jac_g(Index n, const Number *x, bool new_x, Index m, Index nele_jac, Index *iRow, Index *jCol, Number *values)Ipopt::AmplTNLPvirtual
    finalize_metadata(Index n, const StringMetaDataMapType &var_string_md, const IntegerMetaDataMapType &var_integer_md, const NumericMetaDataMapType &var_numeric_md, Index m, const StringMetaDataMapType &con_string_md, const IntegerMetaDataMapType &con_integer_md, const NumericMetaDataMapType &con_numeric_md)Ipopt::SensAmplTNLPvirtual
    finalize_solution(SolverReturn status, Index n, const Number *x, const Number *z_L, const Number *z_U, Index m, const Number *g, const Number *lambda, Number obj_value, const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq)Ipopt::SensAmplTNLPvirtual
    FORTRAN_STYLE enum valueIpopt::TNLP
    g_sol_Ipopt::AmplTNLPprotected
    get_bounds_info(Index n, Number *x_l, Number *x_u, Index m, Number *g_l, Number *g_u)Ipopt::SensAmplTNLPvirtual
    get_constraints_linearity(Index m, LinearityType *const_types)Ipopt::AmplTNLPvirtual
    get_curr_iterate(const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq, bool scaled, Index n, Number *x, Number *z_L, Number *z_U, Index m, Number *g, Number *lambda) constIpopt::TNLP
    get_curr_violations(const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq, bool scaled, Index n, Number *x_L_violation, Number *x_U_violation, Number *compl_x_L, Number *compl_x_U, Number *grad_lag_x, Index m, Number *nlp_constraint_violation, Number *compl_g) constIpopt::TNLP
    get_discrete_info(Index &nlvb_, Index &nlvbi_, Index &nlvc_, Index &nlvci_, Index &nlvo_, Index &nlvoi_, Index &nbv_, Index &niv_) constIpopt::AmplTNLP
    get_index_suffix(const char *suffix_name)Ipopt::SensAmplTNLP
    get_index_suffix_constr(const char *suffix_name)Ipopt::SensAmplTNLP
    get_index_suffix_constr_vec(const char *suffix_name)Ipopt::SensAmplTNLP
    get_index_suffix_vec(const char *suffix_name)Ipopt::SensAmplTNLP
    get_list_of_nonlinear_variables(Index num_nonlin_vars, Index *pos_nonlin_vars)Ipopt::AmplTNLPvirtual
    get_nlp_info(Index &n, Index &m, Index &nnz_jac_g, Index &nnz_h_lag, IndexStyleEnum &index_style)Ipopt::AmplTNLPvirtual
    get_number_of_nonlinear_variables()Ipopt::AmplTNLPvirtual
    get_number_suffix(const char *suffix_name)Ipopt::SensAmplTNLP
    get_number_suffix_constr(const char *suffix_name)Ipopt::SensAmplTNLP
    get_number_suffix_vec(const char *suffix_name)Ipopt::SensAmplTNLP
    get_options(const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > &options, SmartPtr< AmplOptionsList > &ampl_options_list, const char *ampl_option_string, const char *ampl_invokation_string, const char *ampl_banner_string, const char *const *argv)Ipopt::AmplTNLPprotected
    get_options(const SmartPtr< OptionsList > &options, SmartPtr< AmplOptionsList > &ampl_options_list, const char *ampl_option_string, const char *ampl_invokation_string, const char *ampl_banner_string, char **&argv)Ipopt::AmplTNLPinlineprotected
    get_scaling_parameters(Number &obj_scaling, bool &use_x_scaling, Index n, Number *x_scaling, bool &use_g_scaling, Index m, Number *g_scaling)Ipopt::AmplTNLPvirtual
    get_starting_point(Index n, bool init_x, Number *x, bool init_z, Number *z_L, Number *z_U, Index m, bool init_lambda, Number *lambda)Ipopt::AmplTNLPvirtual
    get_suffix_handler()Ipopt::AmplTNLPinline
    get_var_con_metadata(Index n, StringMetaDataMapType &var_string_md, IntegerMetaDataMapType &var_integer_md, NumericMetaDataMapType &var_numeric_md, Index m, StringMetaDataMapType &con_string_md, IntegerMetaDataMapType &con_integer_md, NumericMetaDataMapType &con_numeric_md)Ipopt::SensAmplTNLPvirtual
    get_variables_linearity(Index n, LinearityType *var_types)Ipopt::TNLPinlinevirtual
    get_warm_start_iterate(IteratesVector &warm_start_iterate)Ipopt::TNLPinlinevirtual
    gutsOfConstructor(const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, const char *const *argv, bool allow_discrete, SmartPtr< AmplOptionsList > ampl_options_list, const char *ampl_option_string, const char *ampl_invokation_string, const char *ampl_banner_string, std::string *nl_file_content)Ipopt::AmplTNLPprivate
    have_parameters_Ipopt::SensAmplTNLPprivate
    hesset_called_Ipopt::AmplTNLPprotected
    IndexStyleEnum enum nameIpopt::TNLP
    IntegerMetaDataMapType typedefIpopt::TNLP
    intermediate_callback(AlgorithmMode mode, Index iter, Number obj_value, Number inf_pr, Number inf_du, Number mu, Number d_norm, Number regularization_size, Number alpha_du, Number alpha_pr, Index ls_trials, const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq)Ipopt::AmplTNLPvirtual
    internal_conval(const Number *x, Index m, Number *g=NULL)Ipopt::AmplTNLPprotected
    internal_objval(const Number *x, Number &obj_val)Ipopt::AmplTNLPprotected
    interrupted_Ipopt::AmplTNLPprotected
    jnlst_Ipopt::SensAmplTNLPprivate
    lambda_sol_Ipopt::AmplTNLPprotected
    LINEAR enum valueIpopt::TNLP
    ReleaseRef(const Referencer *referencer) constIpopt::ReferencedObjectinline
    run_sens_Ipopt::SensAmplTNLPprivate
    sens_sol_Ipopt::SensAmplTNLPprivate
    SensAmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, char **&argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL)Ipopt::SensAmplTNLP
    SensAmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, char **&argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL, bool checkinterrupt=false)Ipopt::SensAmplTNLP
    set_active_objective(Index obj_no)Ipopt::AmplTNLP
    set_active_objective_called_Ipopt::AmplTNLPprotected
    set_integer_metadata_for_con(const std::string &tag, const std::vector< Index > &meta_data)Ipopt::AmplTNLPinline
    Ipopt Documentation -   +  
    @@ -132,9 +132,9 @@ - - - + + + @@ -175,9 +175,9 @@ - - - + + + @@ -211,6 +211,9 @@ + + + @@ -252,9 +255,6 @@ - - - @@ -355,6 +355,12 @@ + + + + + + @@ -400,8 +406,8 @@

    Definition at line 40 of file SensAmplTNLP.hpp.

    Constructor & Destructor Documentation

    - -

    ◆ SensAmplTNLP()

    + +

    ◆ SensAmplTNLP()

    @@ -470,7 +476,13 @@

    - + + + + + + + @@ -1033,7 +1045,7 @@

    Definition at line 147 of file SensAmplTNLP.hpp.

    +

    Definition at line 148 of file SensAmplTNLP.hpp.

    @@ -1057,7 +1069,7 @@

    -

    Definition at line 148 of file SensAmplTNLP.hpp.

    +

    Definition at line 149 of file SensAmplTNLP.hpp.

    @@ -1081,7 +1093,7 @@

    -

    Definition at line 150 of file SensAmplTNLP.hpp.

    +

    Definition at line 151 of file SensAmplTNLP.hpp.

    @@ -1105,7 +1117,7 @@

    -

    Definition at line 152 of file SensAmplTNLP.hpp.

    +

    Definition at line 153 of file SensAmplTNLP.hpp.

    @@ -1129,7 +1141,7 @@

    -

    Definition at line 153 of file SensAmplTNLP.hpp.

    +

    Definition at line 154 of file SensAmplTNLP.hpp.

    @@ -1155,7 +1167,7 @@

    Definition at line 156 of file SensAmplTNLP.hpp.

    +

    Definition at line 157 of file SensAmplTNLP.hpp.

    @@ -1179,7 +1191,7 @@

    -

    Definition at line 157 of file SensAmplTNLP.hpp.

    +

    Definition at line 158 of file SensAmplTNLP.hpp.

    @@ -1203,7 +1215,7 @@

    -

    Definition at line 158 of file SensAmplTNLP.hpp.

    +

    Definition at line 159 of file SensAmplTNLP.hpp.

    @@ -1227,7 +1239,7 @@

    -

    Definition at line 160 of file SensAmplTNLP.hpp.

    +

    Definition at line 161 of file SensAmplTNLP.hpp.

    diff --git a/classIpopt_1_1SensAmplTNLP.js b/classIpopt_1_1SensAmplTNLP.js index c594012e6..794fd9830 100644 --- a/classIpopt_1_1SensAmplTNLP.js +++ b/classIpopt_1_1SensAmplTNLP.js @@ -1,6 +1,6 @@ var classIpopt_1_1SensAmplTNLP = [ - [ "SensAmplTNLP", "classIpopt_1_1SensAmplTNLP.html#a322d3d3fc1a695924ba292b3f53e871f", null ], + [ "SensAmplTNLP", "classIpopt_1_1SensAmplTNLP.html#a692a526e9a76b1737db34107d3c0d3ce", null ], [ "~SensAmplTNLP", "classIpopt_1_1SensAmplTNLP.html#a69738bf7127f6bf4a397bb7d8de18213", null ], [ "get_bounds_info", "classIpopt_1_1SensAmplTNLP.html#ac573807167e7eb657920e842461b8003", null ], [ "set_sens_solution", "classIpopt_1_1SensAmplTNLP.html#a1564b68e5bc5709edfa24fef32afb764", null ], diff --git a/classIpopt_1_1SensApplication-members.html b/classIpopt_1_1SensApplication-members.html index 56444fe36..61772b3da 100644 --- a/classIpopt_1_1SensApplication-members.html +++ b/classIpopt_1_1SensApplication-members.html @@ -39,7 +39,7 @@

    Public Member Functions

     SensAmplTNLP (const SmartPtr< const Journalist > &jnlst, const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, char **&argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL)
     This class is the Sens-wrapper for the ampltnlp, adapts the get bounds function and some others to our needs.
     
     SensAmplTNLP (const SmartPtr< const Journalist > &jnlst, const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, char **&argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL, bool checkinterrupt=false)
     This class is the Sens-wrapper for the ampltnlp, adapts the get bounds function and some others to our needs.
     
    virtual ~SensAmplTNLP ()
     
    virtual bool get_bounds_info (Index n, Number *x_l, Number *x_u, Index m, Number *g_l, Number *g_u)
    SmartPtr< AmplSuffixHandlerget_suffix_handler ()
     Method for returning the suffix handler.
     
     AmplTNLP (const SmartPtr< const Journalist > &jnlst, const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, const char *const *argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL)
     Constructor.
     
     AmplTNLP (const SmartPtr< const Journalist > &jnlst, const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, const char *const *argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL, bool checkinterrupt=false)
     Constructor.
     
    IPOPT_DEPRECATED AmplTNLP (const SmartPtr< const Journalist > &jnlst, const SmartPtr< OptionsList > options, char **&argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL)
     Constructor without RegisteredOptions.
     
    virtual bool get_scaling_parameters (Number &obj_scaling, bool &use_x_scaling, Index n, Number *x_scaling, bool &use_g_scaling, Index m, Number *g_scaling)
     Method to request scaling parameters.
     
    virtual bool intermediate_callback (AlgorithmMode mode, Index iter, Number obj_value, Number inf_pr, Number inf_du, Number mu, Number d_norm, Number regularization_size, Number alpha_du, Number alpha_pr, Index ls_trials, const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq)
     Intermediate Callback method for the user.
     
    virtual Index get_number_of_nonlinear_variables ()
     Return the number of variables that appear nonlinearly in the objective function or in at least one constraint function.
     
    virtual bool get_warm_start_iterate (IteratesVector &warm_start_iterate)
     Method to provide an Ipopt warm start iterate which is already in the form Ipopt requires it internally for warm starts.
     
    virtual bool intermediate_callback (AlgorithmMode mode, Index iter, Number obj_value, Number inf_pr, Number inf_du, Number mu, Number d_norm, Number regularization_size, Number alpha_du, Number alpha_pr, Index ls_trials, const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq)
     Intermediate Callback method for the user.
     
    bool get_curr_iterate (const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq, bool scaled, Index n, Number *x, Number *z_L, Number *z_U, Index m, Number *g, Number *lambda) const
     Get primal and dual variable values of the current iterate.
     
    SmartPtr< AmplSuffixHandlersuffix_handler_
     Suffix Handler.
     
    bool checkinterrupt_
     whether to register handler for interrupt signals
     
    bool interrupted_
     pointer to flag to check whether to interrupt signal was set
     
    StringMetaDataMapType var_string_md_
     meta data to pass on to TNLP
     
    std::string * nl_file_content = NULL nl_file_content = NULL,
    bool checkinterrupt = false 
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SensApplication.html b/classIpopt_1_1SensApplication.html index 9688ae641..718bc4ca0 100644 --- a/classIpopt_1_1SensApplication.html +++ b/classIpopt_1_1SensApplication.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SensBacksolver-members.html b/classIpopt_1_1SensBacksolver-members.html index 05bb4d57d..a3084afa3 100644 --- a/classIpopt_1_1SensBacksolver-members.html +++ b/classIpopt_1_1SensBacksolver-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SensBacksolver.html b/classIpopt_1_1SensBacksolver.html index 9ea7f123a..3cc9d9003 100644 --- a/classIpopt_1_1SensBacksolver.html +++ b/classIpopt_1_1SensBacksolver.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SensBuilder-members.html b/classIpopt_1_1SensBuilder-members.html index 5a899d161..9b8d8f7b4 100644 --- a/classIpopt_1_1SensBuilder-members.html +++ b/classIpopt_1_1SensBuilder-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SensBuilder.html b/classIpopt_1_1SensBuilder.html index ddea0b956..88b31a08a 100644 --- a/classIpopt_1_1SensBuilder.html +++ b/classIpopt_1_1SensBuilder.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SensitivityStepCalculator-members.html b/classIpopt_1_1SensitivityStepCalculator-members.html index 216f4cbd7..9d4d35f9c 100644 --- a/classIpopt_1_1SensitivityStepCalculator-members.html +++ b/classIpopt_1_1SensitivityStepCalculator-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SensitivityStepCalculator.html b/classIpopt_1_1SensitivityStepCalculator.html index 0f68de62c..ca154f748 100644 --- a/classIpopt_1_1SensitivityStepCalculator.html +++ b/classIpopt_1_1SensitivityStepCalculator.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SimpleBacksolver-members.html b/classIpopt_1_1SimpleBacksolver-members.html index f850da8e4..2a955637b 100644 --- a/classIpopt_1_1SimpleBacksolver-members.html +++ b/classIpopt_1_1SimpleBacksolver-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SimpleBacksolver.html b/classIpopt_1_1SimpleBacksolver.html index 0fb43a1d1..df43dd845 100644 --- a/classIpopt_1_1SimpleBacksolver.html +++ b/classIpopt_1_1SimpleBacksolver.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SlackBasedTSymScalingMethod-members.html b/classIpopt_1_1SlackBasedTSymScalingMethod-members.html index 82c433945..3aa7726ad 100644 --- a/classIpopt_1_1SlackBasedTSymScalingMethod-members.html +++ b/classIpopt_1_1SlackBasedTSymScalingMethod-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SlackBasedTSymScalingMethod.html b/classIpopt_1_1SlackBasedTSymScalingMethod.html index 84e2b5adf..d32ab9734 100644 --- a/classIpopt_1_1SlackBasedTSymScalingMethod.html +++ b/classIpopt_1_1SlackBasedTSymScalingMethod.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SmartPtr-members.html b/classIpopt_1_1SmartPtr-members.html index 3c467f10c..41a7bbb13 100644 --- a/classIpopt_1_1SmartPtr-members.html +++ b/classIpopt_1_1SmartPtr-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SmartPtr.html b/classIpopt_1_1SmartPtr.html index 82bafa2b0..06ffb4439 100644 --- a/classIpopt_1_1SmartPtr.html +++ b/classIpopt_1_1SmartPtr.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -655,7 +655,7 @@

    Definition at line 716 of file IpSmartPtr.hpp.

    +

    Definition at line 717 of file IpSmartPtr.hpp.

    @@ -699,7 +699,7 @@

    SmartPtr with a raw pointer.

    -

    Definition at line 733 of file IpSmartPtr.hpp.

    +

    Definition at line 734 of file IpSmartPtr.hpp.

    @@ -743,7 +743,7 @@

    SmartPtr.

    -

    Definition at line 749 of file IpSmartPtr.hpp.

    +

    Definition at line 750 of file IpSmartPtr.hpp.

    @@ -787,7 +787,7 @@

    Definition at line 765 of file IpSmartPtr.hpp.

    +

    Definition at line 766 of file IpSmartPtr.hpp.

    @@ -831,7 +831,7 @@

    SmartPtr with a raw pointer.

    -

    Definition at line 781 of file IpSmartPtr.hpp.

    +

    Definition at line 782 of file IpSmartPtr.hpp.

    @@ -875,7 +875,7 @@

    SmartPtr with a raw pointer.

    -

    Definition at line 797 of file IpSmartPtr.hpp.

    +

    Definition at line 798 of file IpSmartPtr.hpp.

    @@ -952,7 +952,7 @@

    SmartPtr, NEVER delete this returned value.

    -

    Definition at line 649 of file IpSmartPtr.hpp.

    +

    Definition at line 650 of file IpSmartPtr.hpp.

    @@ -986,7 +986,7 @@

    Definition at line 663 of file IpSmartPtr.hpp.

    +

    Definition at line 664 of file IpSmartPtr.hpp.

    @@ -1021,7 +1021,7 @@

    SmartPtr is NOT NULL.

    Use this to check if the SmartPtr is not NULL. This is preferred to if(GetRawPtr(sp) != NULL)

    -

    Definition at line 672 of file IpSmartPtr.hpp.

    +

    Definition at line 673 of file IpSmartPtr.hpp.

    @@ -1056,7 +1056,7 @@

    SmartPtr is NULL.

    Use this to check if the SmartPtr is NULL. This is preferred to if(GetRawPtr(sp) == NULL)

    -

    Definition at line 680 of file IpSmartPtr.hpp.

    +

    Definition at line 681 of file IpSmartPtr.hpp.

    diff --git a/classIpopt_1_1SolveStatistics-members.html b/classIpopt_1_1SolveStatistics-members.html index 79696f635..2df58e253 100644 --- a/classIpopt_1_1SolveStatistics-members.html +++ b/classIpopt_1_1SolveStatistics-members.html @@ -39,7 +39,7 @@

    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SolveStatistics.html b/classIpopt_1_1SolveStatistics.html index a4019eb5d..f755a4176 100644 --- a/classIpopt_1_1SolveStatistics.html +++ b/classIpopt_1_1SolveStatistics.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SparseSymLinearSolverInterface-members.html b/classIpopt_1_1SparseSymLinearSolverInterface-members.html index 220f17f41..e80dca28c 100644 --- a/classIpopt_1_1SparseSymLinearSolverInterface-members.html +++ b/classIpopt_1_1SparseSymLinearSolverInterface-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SparseSymLinearSolverInterface.html b/classIpopt_1_1SparseSymLinearSolverInterface.html index 242a2b89f..3e3e51152 100644 --- a/classIpopt_1_1SparseSymLinearSolverInterface.html +++ b/classIpopt_1_1SparseSymLinearSolverInterface.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SpralSolverInterface-members.html b/classIpopt_1_1SpralSolverInterface-members.html index e66f14010..e5689c629 100644 --- a/classIpopt_1_1SpralSolverInterface-members.html +++ b/classIpopt_1_1SpralSolverInterface-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SpralSolverInterface.html b/classIpopt_1_1SpralSolverInterface.html index 5c785fce2..e7cb9476d 100644 --- a/classIpopt_1_1SpralSolverInterface.html +++ b/classIpopt_1_1SpralSolverInterface.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1StandardScalingBase-members.html b/classIpopt_1_1StandardScalingBase-members.html index c2fad7c3d..543b0ef92 100644 --- a/classIpopt_1_1StandardScalingBase-members.html +++ b/classIpopt_1_1StandardScalingBase-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1StandardScalingBase.html b/classIpopt_1_1StandardScalingBase.html index 4142e78e8..f727ca93c 100644 --- a/classIpopt_1_1StandardScalingBase.html +++ b/classIpopt_1_1StandardScalingBase.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -134,9 +134,9 @@ - + - +
    [legend]
    diff --git a/classIpopt_1_1StdAugSystemSolver-members.html b/classIpopt_1_1StdAugSystemSolver-members.html index 1f848507f..fc508b817 100644 --- a/classIpopt_1_1StdAugSystemSolver-members.html +++ b/classIpopt_1_1StdAugSystemSolver-members.html @@ -39,7 +39,7 @@ - +
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1StdAugSystemSolver.html b/classIpopt_1_1StdAugSystemSolver.html index 6dcdbe7da..9d861492a 100644 --- a/classIpopt_1_1StdAugSystemSolver.html +++ b/classIpopt_1_1StdAugSystemSolver.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1StdInterfaceTNLP-members.html b/classIpopt_1_1StdInterfaceTNLP-members.html index db077fea5..8c071edea 100644 --- a/classIpopt_1_1StdInterfaceTNLP-members.html +++ b/classIpopt_1_1StdInterfaceTNLP-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1StdInterfaceTNLP.html b/classIpopt_1_1StdInterfaceTNLP.html index c14b6a520..265981128 100644 --- a/classIpopt_1_1StdInterfaceTNLP.html +++ b/classIpopt_1_1StdInterfaceTNLP.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1StdStepCalculator-members.html b/classIpopt_1_1StdStepCalculator-members.html index bac7268ba..efa2bb012 100644 --- a/classIpopt_1_1StdStepCalculator-members.html +++ b/classIpopt_1_1StdStepCalculator-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1StdStepCalculator.html b/classIpopt_1_1StdStepCalculator.html index 7ffc248ed..db32215e1 100644 --- a/classIpopt_1_1StdStepCalculator.html +++ b/classIpopt_1_1StdStepCalculator.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1StreamJournal-members.html b/classIpopt_1_1StreamJournal-members.html index a4fbf90c6..8cd3a7e9b 100644 --- a/classIpopt_1_1StreamJournal-members.html +++ b/classIpopt_1_1StreamJournal-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1StreamJournal.html b/classIpopt_1_1StreamJournal.html index 9db3f9e79..1453a5742 100644 --- a/classIpopt_1_1StreamJournal.html +++ b/classIpopt_1_1StreamJournal.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -222,7 +222,7 @@
     pointer to output stream for the output destination
     
    char buffer_ [32768]
     buffer for sprintf.
     buffer for vsnprintf.
     

    Detailed Description

    @@ -568,7 +568,7 @@

    -

    buffer for sprintf.

    +

    buffer for vsnprintf.

    Being generous in size here...

    Definition at line 570 of file IpJournalist.hpp.

    diff --git a/classIpopt_1_1Subject-members.html b/classIpopt_1_1Subject-members.html index 0435b909a..42b2a9983 100644 --- a/classIpopt_1_1Subject-members.html +++ b/classIpopt_1_1Subject-members.html @@ -39,7 +39,7 @@

    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Subject.html b/classIpopt_1_1Subject.html index 9be621e10..f67154a00 100644 --- a/classIpopt_1_1Subject.html +++ b/classIpopt_1_1Subject.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -125,10 +125,10 @@ - + - + @@ -164,7 +164,7 @@ - + diff --git a/classIpopt_1_1SuffixHandler-members.html b/classIpopt_1_1SuffixHandler-members.html index 7b623c7a3..7b2363cec 100644 --- a/classIpopt_1_1SuffixHandler-members.html +++ b/classIpopt_1_1SuffixHandler-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SuffixHandler.html b/classIpopt_1_1SuffixHandler.html index 6d067ef64..39ebe6dfc 100644 --- a/classIpopt_1_1SuffixHandler.html +++ b/classIpopt_1_1SuffixHandler.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SumMatrix-members.html b/classIpopt_1_1SumMatrix-members.html index a78718ede..71fac6b6e 100644 --- a/classIpopt_1_1SumMatrix-members.html +++ b/classIpopt_1_1SumMatrix-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SumMatrix.html b/classIpopt_1_1SumMatrix.html index 3fbefb660..02fd7ed1e 100644 --- a/classIpopt_1_1SumMatrix.html +++ b/classIpopt_1_1SumMatrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SumMatrixSpace-members.html b/classIpopt_1_1SumMatrixSpace-members.html index f9e5264d9..a849f0ccc 100644 --- a/classIpopt_1_1SumMatrixSpace-members.html +++ b/classIpopt_1_1SumMatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SumMatrixSpace.html b/classIpopt_1_1SumMatrixSpace.html index e7796b42b..53576f12c 100644 --- a/classIpopt_1_1SumMatrixSpace.html +++ b/classIpopt_1_1SumMatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SumSymMatrix-members.html b/classIpopt_1_1SumSymMatrix-members.html index a3127402f..55b743538 100644 --- a/classIpopt_1_1SumSymMatrix-members.html +++ b/classIpopt_1_1SumSymMatrix-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SumSymMatrix.html b/classIpopt_1_1SumSymMatrix.html index 615c911eb..29bca3094 100644 --- a/classIpopt_1_1SumSymMatrix.html +++ b/classIpopt_1_1SumSymMatrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SumSymMatrixSpace-members.html b/classIpopt_1_1SumSymMatrixSpace-members.html index 146024663..874a73eea 100644 --- a/classIpopt_1_1SumSymMatrixSpace-members.html +++ b/classIpopt_1_1SumSymMatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SumSymMatrixSpace.html b/classIpopt_1_1SumSymMatrixSpace.html index 6ddb739c5..90b7f470e 100644 --- a/classIpopt_1_1SumSymMatrixSpace.html +++ b/classIpopt_1_1SumSymMatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SymLinearSolver-members.html b/classIpopt_1_1SymLinearSolver-members.html index 3c10b0896..f4cd5dfea 100644 --- a/classIpopt_1_1SymLinearSolver-members.html +++ b/classIpopt_1_1SymLinearSolver-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SymLinearSolver.html b/classIpopt_1_1SymLinearSolver.html index 2e3e06c84..13c257e34 100644 --- a/classIpopt_1_1SymLinearSolver.html +++ b/classIpopt_1_1SymLinearSolver.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SymMatrix-members.html b/classIpopt_1_1SymMatrix-members.html index 77e610edf..12dff6a40 100644 --- a/classIpopt_1_1SymMatrix-members.html +++ b/classIpopt_1_1SymMatrix-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SymMatrix.html b/classIpopt_1_1SymMatrix.html index 9ce9e50b9..8da6cf143 100644 --- a/classIpopt_1_1SymMatrix.html +++ b/classIpopt_1_1SymMatrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -126,15 +126,15 @@ - + - + - + - - + + @@ -143,9 +143,9 @@ - + - + diff --git a/classIpopt_1_1SymMatrixSpace-members.html b/classIpopt_1_1SymMatrixSpace-members.html index 40538b4d5..46f561735 100644 --- a/classIpopt_1_1SymMatrixSpace-members.html +++ b/classIpopt_1_1SymMatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SymMatrixSpace.html b/classIpopt_1_1SymMatrixSpace.html index 0a6a3ccae..1ce8e638f 100644 --- a/classIpopt_1_1SymMatrixSpace.html +++ b/classIpopt_1_1SymMatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SymScaledMatrix-members.html b/classIpopt_1_1SymScaledMatrix-members.html index 0ae4f8a1e..ce5c8706d 100644 --- a/classIpopt_1_1SymScaledMatrix-members.html +++ b/classIpopt_1_1SymScaledMatrix-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SymScaledMatrix.html b/classIpopt_1_1SymScaledMatrix.html index c81beb8db..2d3a1abc6 100644 --- a/classIpopt_1_1SymScaledMatrix.html +++ b/classIpopt_1_1SymScaledMatrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SymScaledMatrixSpace-members.html b/classIpopt_1_1SymScaledMatrixSpace-members.html index 0f91c924e..5e66b84e5 100644 --- a/classIpopt_1_1SymScaledMatrixSpace-members.html +++ b/classIpopt_1_1SymScaledMatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SymScaledMatrixSpace.html b/classIpopt_1_1SymScaledMatrixSpace.html index 8dd4104be..537933fe4 100644 --- a/classIpopt_1_1SymScaledMatrixSpace.html +++ b/classIpopt_1_1SymScaledMatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SymTMatrix-members.html b/classIpopt_1_1SymTMatrix-members.html index 5a8edbd17..49e3502e8 100644 --- a/classIpopt_1_1SymTMatrix-members.html +++ b/classIpopt_1_1SymTMatrix-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SymTMatrix.html b/classIpopt_1_1SymTMatrix.html index 3f7e09dca..faae39b5d 100644 --- a/classIpopt_1_1SymTMatrix.html +++ b/classIpopt_1_1SymTMatrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SymTMatrixSpace-members.html b/classIpopt_1_1SymTMatrixSpace-members.html index 158cc047c..57c51d8a6 100644 --- a/classIpopt_1_1SymTMatrixSpace-members.html +++ b/classIpopt_1_1SymTMatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1SymTMatrixSpace.html b/classIpopt_1_1SymTMatrixSpace.html index 3fdefe1b1..2f110f9b8 100644 --- a/classIpopt_1_1SymTMatrixSpace.html +++ b/classIpopt_1_1SymTMatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TDependencyDetector-members.html b/classIpopt_1_1TDependencyDetector-members.html index 9671ea68c..88cdfdea1 100644 --- a/classIpopt_1_1TDependencyDetector-members.html +++ b/classIpopt_1_1TDependencyDetector-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TDependencyDetector.html b/classIpopt_1_1TDependencyDetector.html index 82cc3842f..b9957431d 100644 --- a/classIpopt_1_1TDependencyDetector.html +++ b/classIpopt_1_1TDependencyDetector.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TNLP-members.html b/classIpopt_1_1TNLP-members.html index cbbf0c371..3f1cb2860 100644 --- a/classIpopt_1_1TNLP-members.html +++ b/classIpopt_1_1TNLP-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TNLP.html b/classIpopt_1_1TNLP.html index 31b8503c9..6c20b0441 100644 --- a/classIpopt_1_1TNLP.html +++ b/classIpopt_1_1TNLP.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -1787,7 +1787,7 @@

    Returns
    If this method returns false, Ipopt will terminate with the User_Requested_Stop status.

    It is not required to implement (overload) this method. The default implementation always returns true.

    -

    Reimplemented in Ipopt::StdInterfaceTNLP, and Ipopt::TNLPReducer.

    +

    Reimplemented in Ipopt::AmplTNLP, Ipopt::StdInterfaceTNLP, and Ipopt::TNLPReducer.

    Definition at line 665 of file IpTNLP.hpp.

    diff --git a/classIpopt_1_1TNLPAdapter-members.html b/classIpopt_1_1TNLPAdapter-members.html index 1e012a94b..09df75914 100644 --- a/classIpopt_1_1TNLPAdapter-members.html +++ b/classIpopt_1_1TNLPAdapter-members.html @@ -39,7 +39,7 @@

    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TNLPAdapter.html b/classIpopt_1_1TNLPAdapter.html index 1b4e0564f..9662ae429 100644 --- a/classIpopt_1_1TNLPAdapter.html +++ b/classIpopt_1_1TNLPAdapter.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TNLPReducer-members.html b/classIpopt_1_1TNLPReducer-members.html index 23895e459..838684eb6 100644 --- a/classIpopt_1_1TNLPReducer-members.html +++ b/classIpopt_1_1TNLPReducer-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TNLPReducer.html b/classIpopt_1_1TNLPReducer.html index 5323cf3ff..031bcd277 100644 --- a/classIpopt_1_1TNLPReducer.html +++ b/classIpopt_1_1TNLPReducer.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TSymDependencyDetector-members.html b/classIpopt_1_1TSymDependencyDetector-members.html index 6223c3d96..5ec4cb925 100644 --- a/classIpopt_1_1TSymDependencyDetector-members.html +++ b/classIpopt_1_1TSymDependencyDetector-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TSymDependencyDetector.html b/classIpopt_1_1TSymDependencyDetector.html index 18b0977ce..d5471a6fc 100644 --- a/classIpopt_1_1TSymDependencyDetector.html +++ b/classIpopt_1_1TSymDependencyDetector.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TSymLinearSolver-members.html b/classIpopt_1_1TSymLinearSolver-members.html index 9c8e94cda..b2081ef1a 100644 --- a/classIpopt_1_1TSymLinearSolver-members.html +++ b/classIpopt_1_1TSymLinearSolver-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TSymLinearSolver.html b/classIpopt_1_1TSymLinearSolver.html index 7d4c54e6d..a675206cc 100644 --- a/classIpopt_1_1TSymLinearSolver.html +++ b/classIpopt_1_1TSymLinearSolver.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TSymScalingMethod-members.html b/classIpopt_1_1TSymScalingMethod-members.html index e74e35fa6..ebf7db181 100644 --- a/classIpopt_1_1TSymScalingMethod-members.html +++ b/classIpopt_1_1TSymScalingMethod-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TSymScalingMethod.html b/classIpopt_1_1TSymScalingMethod.html index f3faa6f14..0c5eef35e 100644 --- a/classIpopt_1_1TSymScalingMethod.html +++ b/classIpopt_1_1TSymScalingMethod.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TaggedObject-members.html b/classIpopt_1_1TaggedObject-members.html index 7ed7bba06..9999d8ede 100644 --- a/classIpopt_1_1TaggedObject-members.html +++ b/classIpopt_1_1TaggedObject-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TaggedObject.html b/classIpopt_1_1TaggedObject.html index d3a07e938..94fb7dd06 100644 --- a/classIpopt_1_1TaggedObject.html +++ b/classIpopt_1_1TaggedObject.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -128,7 +128,7 @@ - + @@ -168,7 +168,7 @@ - + diff --git a/classIpopt_1_1TimedTask-members.html b/classIpopt_1_1TimedTask-members.html index 634f90351..f00e27eb5 100644 --- a/classIpopt_1_1TimedTask-members.html +++ b/classIpopt_1_1TimedTask-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TimedTask.html b/classIpopt_1_1TimedTask.html index a14de82a2..981a4444f 100644 --- a/classIpopt_1_1TimedTask.html +++ b/classIpopt_1_1TimedTask.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TimingStatistics-members.html b/classIpopt_1_1TimingStatistics-members.html index b217f02a3..0679a89bc 100644 --- a/classIpopt_1_1TimingStatistics-members.html +++ b/classIpopt_1_1TimingStatistics-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TimingStatistics.html b/classIpopt_1_1TimingStatistics.html index 43df37bda..0ae83e7f4 100644 --- a/classIpopt_1_1TimingStatistics.html +++ b/classIpopt_1_1TimingStatistics.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TransposeMatrix-members.html b/classIpopt_1_1TransposeMatrix-members.html index 28acd460b..e4906e974 100644 --- a/classIpopt_1_1TransposeMatrix-members.html +++ b/classIpopt_1_1TransposeMatrix-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TransposeMatrix.html b/classIpopt_1_1TransposeMatrix.html index f9eea78cf..83121dcf7 100644 --- a/classIpopt_1_1TransposeMatrix.html +++ b/classIpopt_1_1TransposeMatrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TransposeMatrixSpace-members.html b/classIpopt_1_1TransposeMatrixSpace-members.html index bf3fff5c9..7c9c4e149 100644 --- a/classIpopt_1_1TransposeMatrixSpace-members.html +++ b/classIpopt_1_1TransposeMatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TransposeMatrixSpace.html b/classIpopt_1_1TransposeMatrixSpace.html index 2cce8ba44..a5d38afd6 100644 --- a/classIpopt_1_1TransposeMatrixSpace.html +++ b/classIpopt_1_1TransposeMatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TripletHelper-members.html b/classIpopt_1_1TripletHelper-members.html index 6849c1913..eed24d968 100644 --- a/classIpopt_1_1TripletHelper-members.html +++ b/classIpopt_1_1TripletHelper-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TripletHelper.html b/classIpopt_1_1TripletHelper.html index d7cdcecb9..0cf563f04 100644 --- a/classIpopt_1_1TripletHelper.html +++ b/classIpopt_1_1TripletHelper.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TripletToCSRConverter-members.html b/classIpopt_1_1TripletToCSRConverter-members.html index da3c90a57..cbe0b41e2 100644 --- a/classIpopt_1_1TripletToCSRConverter-members.html +++ b/classIpopt_1_1TripletToCSRConverter-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TripletToCSRConverter.html b/classIpopt_1_1TripletToCSRConverter.html index 96aad04a8..8611697d3 100644 --- a/classIpopt_1_1TripletToCSRConverter.html +++ b/classIpopt_1_1TripletToCSRConverter.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TripletToCSRConverter_1_1TripletEntry-members.html b/classIpopt_1_1TripletToCSRConverter_1_1TripletEntry-members.html index 884f53c89..5e789f8d7 100644 --- a/classIpopt_1_1TripletToCSRConverter_1_1TripletEntry-members.html +++ b/classIpopt_1_1TripletToCSRConverter_1_1TripletEntry-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1TripletToCSRConverter_1_1TripletEntry.html b/classIpopt_1_1TripletToCSRConverter_1_1TripletEntry.html index 69b366e6b..68364aa41 100644 --- a/classIpopt_1_1TripletToCSRConverter_1_1TripletEntry.html +++ b/classIpopt_1_1TripletToCSRConverter_1_1TripletEntry.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1UserScaling-members.html b/classIpopt_1_1UserScaling-members.html index 9609017b5..0d4a59fdd 100644 --- a/classIpopt_1_1UserScaling-members.html +++ b/classIpopt_1_1UserScaling-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1UserScaling.html b/classIpopt_1_1UserScaling.html index 60bc046bf..7d57cf4cb 100644 --- a/classIpopt_1_1UserScaling.html +++ b/classIpopt_1_1UserScaling.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Vector-members.html b/classIpopt_1_1Vector-members.html index b92b13821..3c44c5a78 100644 --- a/classIpopt_1_1Vector-members.html +++ b/classIpopt_1_1Vector-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1Vector.html b/classIpopt_1_1Vector.html index 745895103..8c267148d 100644 --- a/classIpopt_1_1Vector.html +++ b/classIpopt_1_1Vector.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -126,7 +126,7 @@ - + diff --git a/classIpopt_1_1VectorSpace-members.html b/classIpopt_1_1VectorSpace-members.html index cb0fd1489..d69bed014 100644 --- a/classIpopt_1_1VectorSpace-members.html +++ b/classIpopt_1_1VectorSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1VectorSpace.html b/classIpopt_1_1VectorSpace.html index 0846a1433..061442b61 100644 --- a/classIpopt_1_1VectorSpace.html +++ b/classIpopt_1_1VectorSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -126,7 +126,7 @@ - + diff --git a/classIpopt_1_1WarmStartIterateInitializer-members.html b/classIpopt_1_1WarmStartIterateInitializer-members.html index 12b6ea2a8..7a953f01e 100644 --- a/classIpopt_1_1WarmStartIterateInitializer-members.html +++ b/classIpopt_1_1WarmStartIterateInitializer-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1WarmStartIterateInitializer.html b/classIpopt_1_1WarmStartIterateInitializer.html index 1d02143f1..ab94ad8f1 100644 --- a/classIpopt_1_1WarmStartIterateInitializer.html +++ b/classIpopt_1_1WarmStartIterateInitializer.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1WsmpSolverInterface-members.html b/classIpopt_1_1WsmpSolverInterface-members.html index 5be887045..958d1c176 100644 --- a/classIpopt_1_1WsmpSolverInterface-members.html +++ b/classIpopt_1_1WsmpSolverInterface-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1WsmpSolverInterface.html b/classIpopt_1_1WsmpSolverInterface.html index 6b5326721..5d43fd3d3 100644 --- a/classIpopt_1_1WsmpSolverInterface.html +++ b/classIpopt_1_1WsmpSolverInterface.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ZeroMatrix-members.html b/classIpopt_1_1ZeroMatrix-members.html index 2e43de248..d03725ed4 100644 --- a/classIpopt_1_1ZeroMatrix-members.html +++ b/classIpopt_1_1ZeroMatrix-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ZeroMatrix.html b/classIpopt_1_1ZeroMatrix.html index cd0acfd48..3d9654593 100644 --- a/classIpopt_1_1ZeroMatrix.html +++ b/classIpopt_1_1ZeroMatrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ZeroMatrixSpace-members.html b/classIpopt_1_1ZeroMatrixSpace-members.html index ad3b23b59..7f1bec027 100644 --- a/classIpopt_1_1ZeroMatrixSpace-members.html +++ b/classIpopt_1_1ZeroMatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ZeroMatrixSpace.html b/classIpopt_1_1ZeroMatrixSpace.html index 7d2e6d5b3..7a1f31644 100644 --- a/classIpopt_1_1ZeroMatrixSpace.html +++ b/classIpopt_1_1ZeroMatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ZeroSymMatrix-members.html b/classIpopt_1_1ZeroSymMatrix-members.html index 75d243f1f..c81d4c9d4 100644 --- a/classIpopt_1_1ZeroSymMatrix-members.html +++ b/classIpopt_1_1ZeroSymMatrix-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ZeroSymMatrix.html b/classIpopt_1_1ZeroSymMatrix.html index 7c55a9afa..2091ab9c2 100644 --- a/classIpopt_1_1ZeroSymMatrix.html +++ b/classIpopt_1_1ZeroSymMatrix.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ZeroSymMatrixSpace-members.html b/classIpopt_1_1ZeroSymMatrixSpace-members.html index 4635c5e6c..1dd15d30e 100644 --- a/classIpopt_1_1ZeroSymMatrixSpace-members.html +++ b/classIpopt_1_1ZeroSymMatrixSpace-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classIpopt_1_1ZeroSymMatrixSpace.html b/classIpopt_1_1ZeroSymMatrixSpace.html index 6bc8495dd..021ad141a 100644 --- a/classIpopt_1_1ZeroSymMatrixSpace.html +++ b/classIpopt_1_1ZeroSymMatrixSpace.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classes.html b/classes.html index 5f3b0102b..86bbe7eaf 100644 --- a/classes.html +++ b/classes.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classorg_1_1coinor_1_1Ipopt-members.html b/classorg_1_1coinor_1_1Ipopt-members.html index 741a35a6c..de6df89d9 100644 --- a/classorg_1_1coinor_1_1Ipopt-members.html +++ b/classorg_1_1coinor_1_1Ipopt-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/classorg_1_1coinor_1_1Ipopt.html b/classorg_1_1coinor_1_1Ipopt.html index e5cfb790c..797102c61 100644 --- a/classorg_1_1coinor_1_1Ipopt.html +++ b/classorg_1_1coinor_1_1Ipopt.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/config__default_8h.html b/config__default_8h.html index 8b6e53849..0dea795c3 100644 --- a/config__default_8h.html +++ b/config__default_8h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -208,7 +208,7 @@

    -

    Definition at line 60 of file config_default.h.

    +

    Definition at line 65 of file config_default.h.

    @@ -238,7 +238,7 @@

    -

    Definition at line 61 of file config_default.h.

    +

    Definition at line 66 of file config_default.h.

    @@ -268,7 +268,7 @@

    -

    Definition at line 62 of file config_default.h.

    +

    Definition at line 67 of file config_default.h.

    @@ -298,7 +298,7 @@

    -

    Definition at line 63 of file config_default.h.

    +

    Definition at line 68 of file config_default.h.

    @@ -328,7 +328,7 @@

    -

    Definition at line 64 of file config_default.h.

    +

    Definition at line 69 of file config_default.h.

    diff --git a/config__default_8h_source.html b/config__default_8h_source.html index 6b369db00..6d505655f 100644 --- a/config__default_8h_source.html +++ b/config__default_8h_source.html @@ -39,7 +39,7 @@

    Ipopt Documentation -   +  
    @@ -166,11 +166,16 @@
    57#define IPOPT_C_FINITE std::isfinite
    58#endif
    59
    -
    60#define IPOPT_BLAS_FUNC(name,NAME) F77_FUNC(name,NAME)
    -
    61#define IPOPT_LAPACK_FUNC(name,NAME) F77_FUNC(name,NAME)
    -
    62#define IPOPT_PARDISO_FUNC(name,NAME) F77_FUNC(name,NAME)
    -
    63#define IPOPT_WSMP_FUNC(name,NAME) F77_FUNC(name,NAME)
    -
    64#define IPOPT_WSMP_FUNC_(name,NAME) F77_FUNC_(name,NAME)
    +
    60#ifdef _MSC_VER
    +
    61#define IPOPT_HAS_RAND 1
    +
    62#define IPOPT_HAS_VA_COPY 1
    +
    63#endif
    +
    64
    +
    65#define IPOPT_BLAS_FUNC(name,NAME) F77_FUNC(name,NAME)
    +
    66#define IPOPT_LAPACK_FUNC(name,NAME) F77_FUNC(name,NAME)
    +
    67#define IPOPT_PARDISO_FUNC(name,NAME) F77_FUNC(name,NAME)
    +
    68#define IPOPT_WSMP_FUNC(name,NAME) F77_FUNC(name,NAME)
    +
    69#define IPOPT_WSMP_FUNC_(name,NAME) F77_FUNC_(name,NAME)
    diff --git a/config__ipopt__default_8h.html b/config__ipopt__default_8h.html index ca084e2ac..1ba27d8a8 100644 --- a/config__ipopt__default_8h.html +++ b/config__ipopt__default_8h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -114,13 +114,13 @@ - + - + @@ -137,7 +137,7 @@

    Macros

    #define IPOPT_VERSION   "3.14.15"
    #define IPOPT_VERSION   "3.14.17"
     
    #define IPOPT_VERSION_MAJOR   3
     
    #define IPOPT_VERSION_MINOR   14
     
    #define IPOPT_VERSION_RELEASE   15
    #define IPOPT_VERSION_RELEASE   17
     
    #define IPOPT_FORTRAN_INTEGER_TYPE   ipindex
     
    - +
    #define IPOPT_VERSION   "3.14.15"#define IPOPT_VERSION   "3.14.17"
    Ipopt Documentation -   +  
    @@ -114,7 +114,7 @@
    5/***************************************************************************/
    6
    7/* Version number of project */
    -
    8#define IPOPT_VERSION "3.14.15"
    +
    8#define IPOPT_VERSION "3.14.17"
    9
    10/* Major Version number of project */
    11#define IPOPT_VERSION_MAJOR 3
    @@ -123,7 +123,7 @@
    14#define IPOPT_VERSION_MINOR 14
    15
    16/* Release Version number of project */
    -
    17#define IPOPT_VERSION_RELEASE 15
    +
    17#define IPOPT_VERSION_RELEASE 17
    18
    19/* Define to the C type corresponding to Fortran INTEGER
    20 * @deprecated Use ipindex instead.
    diff --git a/configall__system_8h.html b/configall__system_8h.html index eb16250e8..c435bb750 100644 --- a/configall__system_8h.html +++ b/configall__system_8h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/configall__system_8h_source.html b/configall__system_8h_source.html index 147d87312..0bc56b26f 100644 --- a/configall__system_8h_source.html +++ b/configall__system_8h_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/configall__system__msc_8h.html b/configall__system__msc_8h.html index a98cf803d..d778224e6 100644 --- a/configall__system__msc_8h.html +++ b/configall__system__msc_8h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/configall__system__msc_8h_source.html b/configall__system__msc_8h_source.html index e9d877276..f6b59bca1 100644 --- a/configall__system__msc_8h_source.html +++ b/configall__system__msc_8h_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/deprecated.html b/deprecated.html index 0147be91e..e72135479 100644 --- a/deprecated.html +++ b/deprecated.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000000_000005.html b/dir_000000_000005.html index 7ea8e469d..8dae01524 100644 --- a/dir_000000_000005.html +++ b/dir_000000_000005.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000000_000010.html b/dir_000000_000010.html index ef880969a..1c5f7a3bc 100644 --- a/dir_000000_000010.html +++ b/dir_000000_000010.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000000_000011.html b/dir_000000_000011.html index 70400945f..61f036164 100644 --- a/dir_000000_000011.html +++ b/dir_000000_000011.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000000_000012.html b/dir_000000_000012.html index 66dd55ed2..ffed68104 100644 --- a/dir_000000_000012.html +++ b/dir_000000_000012.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000001_000014.html b/dir_000001_000014.html index 2a3c3f4c4..9da5b200a 100644 --- a/dir_000001_000014.html +++ b/dir_000001_000014.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000001_000015.html b/dir_000001_000015.html index 91b8b7844..1078a82d9 100644 --- a/dir_000001_000015.html +++ b/dir_000001_000015.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000002_000005.html b/dir_000002_000005.html index 43b4bbe34..3a40cb6f1 100644 --- a/dir_000002_000005.html +++ b/dir_000002_000005.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000002_000010.html b/dir_000002_000010.html index 666e9ac29..9654120d7 100644 --- a/dir_000002_000010.html +++ b/dir_000002_000010.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000003_000005.html b/dir_000003_000005.html index eb5a9b281..3f9d701b1 100644 --- a/dir_000003_000005.html +++ b/dir_000003_000005.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000003_000010.html b/dir_000003_000010.html index e96828707..09b3fa35c 100644 --- a/dir_000003_000010.html +++ b/dir_000003_000010.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000004_000000.html b/dir_000004_000000.html index cf9221624..79656c7e8 100644 --- a/dir_000004_000000.html +++ b/dir_000004_000000.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000004_000005.html b/dir_000004_000005.html index 9b179c65e..90c8afee7 100644 --- a/dir_000004_000005.html +++ b/dir_000004_000005.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000007_000000.html b/dir_000007_000000.html index 6c5d2e68a..95963fb62 100644 --- a/dir_000007_000000.html +++ b/dir_000007_000000.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000007_000005.html b/dir_000007_000005.html index 63d1c1e20..424bfbc67 100644 --- a/dir_000007_000005.html +++ b/dir_000007_000005.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000009_000005.html b/dir_000009_000005.html index 2b432c349..791ad8b8b 100644 --- a/dir_000009_000005.html +++ b/dir_000009_000005.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000009_000012.html b/dir_000009_000012.html index d5a662cb2..8e7bf54f8 100644 --- a/dir_000009_000012.html +++ b/dir_000009_000012.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000010_000000.html b/dir_000010_000000.html index 6d858af48..6292f9b15 100644 --- a/dir_000010_000000.html +++ b/dir_000010_000000.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000010_000005.html b/dir_000010_000005.html index 3a20c9b73..790db1f15 100644 --- a/dir_000010_000005.html +++ b/dir_000010_000005.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000010_000011.html b/dir_000010_000011.html index 0075dd0bf..cf7380fa1 100644 --- a/dir_000010_000011.html +++ b/dir_000010_000011.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000011_000005.html b/dir_000011_000005.html index bbe784647..d12f05f85 100644 --- a/dir_000011_000005.html +++ b/dir_000011_000005.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000012_000005.html b/dir_000012_000005.html index e16c40595..834e92d17 100644 --- a/dir_000012_000005.html +++ b/dir_000012_000005.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000012_000011.html b/dir_000012_000011.html index 0c9747bcc..1aa4fe44a 100644 --- a/dir_000012_000011.html +++ b/dir_000012_000011.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000013_000015.html b/dir_000013_000015.html index 8307c7f9f..b449a9955 100644 --- a/dir_000013_000015.html +++ b/dir_000013_000015.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000014_000015.html b/dir_000014_000015.html index 202adfd9d..0fe2824ec 100644 --- a/dir_000014_000015.html +++ b/dir_000014_000015.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_000016_000005.html b/dir_000016_000005.html index b39487e3d..a5bb119ba 100644 --- a/dir_000016_000005.html +++ b/dir_000016_000005.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_18379c6e6eb3808ccf520b2e7a224038.html b/dir_18379c6e6eb3808ccf520b2e7a224038.html index 79384768b..2089d81a1 100644 --- a/dir_18379c6e6eb3808ccf520b2e7a224038.html +++ b/dir_18379c6e6eb3808ccf520b2e7a224038.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -114,14 +114,14 @@ diff --git a/dir_18379c6e6eb3808ccf520b2e7a224038_dep.png b/dir_18379c6e6eb3808ccf520b2e7a224038_dep.png index 76e72a730..9c19d14cc 100644 Binary files a/dir_18379c6e6eb3808ccf520b2e7a224038_dep.png and b/dir_18379c6e6eb3808ccf520b2e7a224038_dep.png differ diff --git a/dir_3847941dc22744d30c1d316a1f1a60e2.html b/dir_3847941dc22744d30c1d316a1f1a60e2.html index ebb6991ea..3fb200af5 100644 --- a/dir_3847941dc22744d30c1d316a1f1a60e2.html +++ b/dir_3847941dc22744d30c1d316a1f1a60e2.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -115,7 +115,7 @@
    contrib
    - + diff --git a/dir_68267d1309a1af8e8297ef4c3efbcdba.html b/dir_68267d1309a1af8e8297ef4c3efbcdba.html index 9cedb47f7..d187b92a6 100644 --- a/dir_68267d1309a1af8e8297ef4c3efbcdba.html +++ b/dir_68267d1309a1af8e8297ef4c3efbcdba.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_6dbd54e910d8767b116cb0244b2cea9d.html b/dir_6dbd54e910d8767b116cb0244b2cea9d.html index 05ab761d4..e3fb02682 100644 --- a/dir_6dbd54e910d8767b116cb0244b2cea9d.html +++ b/dir_6dbd54e910d8767b116cb0244b2cea9d.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -116,7 +116,7 @@ - + diff --git a/dir_757d9df85c3b85df3a851db18f98dee3.html b/dir_757d9df85c3b85df3a851db18f98dee3.html index b87354513..bdf6c4819 100644 --- a/dir_757d9df85c3b85df3a851db18f98dee3.html +++ b/dir_757d9df85c3b85df3a851db18f98dee3.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_79dc9ec967a38f8ff6ee528339e64dcb.html b/dir_79dc9ec967a38f8ff6ee528339e64dcb.html index 6a8b628e8..bebb0abdc 100644 --- a/dir_79dc9ec967a38f8ff6ee528339e64dcb.html +++ b/dir_79dc9ec967a38f8ff6ee528339e64dcb.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_9a1ef57607a447fccd74c8967bbfc7cd.html b/dir_9a1ef57607a447fccd74c8967bbfc7cd.html index eddd1d453..0b080f4a9 100644 --- a/dir_9a1ef57607a447fccd74c8967bbfc7cd.html +++ b/dir_9a1ef57607a447fccd74c8967bbfc7cd.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_9eef6f466d5cc15bdc5c59d3f9b9f4b1.html b/dir_9eef6f466d5cc15bdc5c59d3f9b9f4b1.html index 00d8d34db..34dc33d60 100644 --- a/dir_9eef6f466d5cc15bdc5c59d3f9b9f4b1.html +++ b/dir_9eef6f466d5cc15bdc5c59d3f9b9f4b1.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -114,8 +114,8 @@
    Ipopt Documentation -   +  
    @@ -114,7 +114,7 @@ diff --git a/dir_c0527c2a80baca9a35003eeacbcbd3e0.html b/dir_c0527c2a80baca9a35003eeacbcbd3e0.html index 6dd0dcdbc..77bb81861 100644 --- a/dir_c0527c2a80baca9a35003eeacbcbd3e0.html +++ b/dir_c0527c2a80baca9a35003eeacbcbd3e0.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_c4831b90ff231d91833fb3d2706b7821.html b/dir_c4831b90ff231d91833fb3d2706b7821.html index c11dfaa22..a160e8cdf 100644 --- a/dir_c4831b90ff231d91833fb3d2706b7821.html +++ b/dir_c4831b90ff231d91833fb3d2706b7821.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_ce414ca31dfee85b3ee3f190f1f9213b.html b/dir_ce414ca31dfee85b3ee3f190f1f9213b.html index 570b31f2c..1fdc1a38f 100644 --- a/dir_ce414ca31dfee85b3ee3f190f1f9213b.html +++ b/dir_ce414ca31dfee85b3ee3f190f1f9213b.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_ce6405ba0afce575b27b3b998c1d24f9.html b/dir_ce6405ba0afce575b27b3b998c1d24f9.html index 893b8e139..2bf630f65 100644 --- a/dir_ce6405ba0afce575b27b3b998c1d24f9.html +++ b/dir_ce6405ba0afce575b27b3b998c1d24f9.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -114,10 +114,10 @@
    Ipopt Documentation -   +  
    @@ -114,7 +114,7 @@
    Ipopt Documentation -   +  
    diff --git a/dir_e6c567522fc254263c572d8c1314eab6.html b/dir_e6c567522fc254263c572d8c1314eab6.html index 9cc1afb00..6d2ccdfd2 100644 --- a/dir_e6c567522fc254263c572d8c1314eab6.html +++ b/dir_e6c567522fc254263c572d8c1314eab6.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -115,10 +115,10 @@
    contrib/sIPOPT
    - + - + diff --git a/dir_efd1be438063db63c36d1ec709396b00.html b/dir_efd1be438063db63c36d1ec709396b00.html index 3e2efd5ef..da1e66e66 100644 --- a/dir_efd1be438063db63c36d1ec709396b00.html +++ b/dir_efd1be438063db63c36d1ec709396b00.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -114,14 +114,14 @@ diff --git a/dir_efd1be438063db63c36d1ec709396b00_dep.png b/dir_efd1be438063db63c36d1ec709396b00_dep.png index 540e1f9db..19e5d4208 100644 Binary files a/dir_efd1be438063db63c36d1ec709396b00_dep.png and b/dir_efd1be438063db63c36d1ec709396b00_dep.png differ diff --git a/faq_8dox.html b/faq_8dox.html index 876b3cefb..bd418b583 100644 --- a/faq_8dox.html +++ b/faq_8dox.html @@ -39,7 +39,7 @@ + + + + + + @@ -1853,7 +1859,7 @@

    Use to get the value of the raw ptr (i.e. to pass to other methods/functions, etc.) Note: This method does NOT copy, therefore, modifications using this value modify the underlying object contained by the SmartPtr, NEVER delete this returned value.

    -

    Definition at line 649 of file IpSmartPtr.hpp.

    +

    Definition at line 650 of file IpSmartPtr.hpp.

    @@ -1875,7 +1881,7 @@

    -

    Definition at line 663 of file IpSmartPtr.hpp.

    +

    Definition at line 664 of file IpSmartPtr.hpp.

    @@ -1898,7 +1904,7 @@

    Use this to check if the SmartPtr is NULL. This is preferred to if(GetRawPtr(sp) == NULL)

    -

    Definition at line 680 of file IpSmartPtr.hpp.

    +

    Definition at line 681 of file IpSmartPtr.hpp.

    @@ -1921,7 +1927,7 @@

    Use this to check if the SmartPtr is not NULL. This is preferred to if(GetRawPtr(sp) != NULL)

    -

    Definition at line 672 of file IpSmartPtr.hpp.

    +

    Definition at line 673 of file IpSmartPtr.hpp.

    @@ -1953,7 +1959,7 @@

    -

    Definition at line 716 of file IpSmartPtr.hpp.

    +

    Definition at line 717 of file IpSmartPtr.hpp.

    @@ -1985,7 +1991,7 @@

    -

    Definition at line 733 of file IpSmartPtr.hpp.

    +

    Definition at line 734 of file IpSmartPtr.hpp.

    @@ -2017,7 +2023,7 @@

    -

    Definition at line 749 of file IpSmartPtr.hpp.

    +

    Definition at line 750 of file IpSmartPtr.hpp.

    @@ -2049,7 +2055,7 @@

    -

    Definition at line 765 of file IpSmartPtr.hpp.

    +

    Definition at line 766 of file IpSmartPtr.hpp.

    @@ -2081,7 +2087,7 @@

    -

    Definition at line 781 of file IpSmartPtr.hpp.

    +

    Definition at line 782 of file IpSmartPtr.hpp.

    @@ -2113,7 +2119,7 @@

    -

    Definition at line 797 of file IpSmartPtr.hpp.

    +

    Definition at line 798 of file IpSmartPtr.hpp.

    @@ -2145,7 +2151,7 @@

    -

    Definition at line 694 of file IpSmartPtr.hpp.

    +

    Definition at line 695 of file IpSmartPtr.hpp.

    @@ -2177,7 +2183,7 @@

    -

    Definition at line 813 of file IpSmartPtr.hpp.

    +

    Definition at line 814 of file IpSmartPtr.hpp.

    @@ -2209,7 +2215,7 @@

    -

    Definition at line 828 of file IpSmartPtr.hpp.

    +

    Definition at line 829 of file IpSmartPtr.hpp.

    @@ -2241,7 +2247,7 @@

    -

    Definition at line 837 of file IpSmartPtr.hpp.

    +

    Definition at line 838 of file IpSmartPtr.hpp.

    @@ -2273,7 +2279,7 @@

    -

    Definition at line 845 of file IpSmartPtr.hpp.

    +

    Definition at line 846 of file IpSmartPtr.hpp.

    @@ -2305,7 +2311,7 @@

    -

    Definition at line 853 of file IpSmartPtr.hpp.

    +

    Definition at line 854 of file IpSmartPtr.hpp.

    @@ -2698,6 +2704,75 @@

    +

    ◆ RegisterInterruptHandler()

    + +
    +
    +

    Ipopt Documentation -   +  
    diff --git a/files.html b/files.html index c9ac37d90..e038f6d5b 100644 --- a/files.html +++ b/files.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions.html b/functions.html index c51c0dc8b..b8d29f1b6 100644 --- a/functions.html +++ b/functions.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_b.html b/functions_b.html index 3156cda4a..103957f23 100644 --- a/functions_b.html +++ b/functions_b.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_c.html b/functions_c.html index da88788a6..445079041 100644 --- a/functions_c.html +++ b/functions_c.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -171,6 +171,7 @@

    - c -

    Ipopt Documentation -   +  
    @@ -261,8 +261,8 @@

    - d -

    Ipopt Documentation -   +  
    @@ -180,7 +180,7 @@

    - e -

    Ipopt Documentation -   +  
    diff --git a/functions_eval.html b/functions_eval.html index 8fd3952d3..1f1365cc7 100644 --- a/functions_eval.html +++ b/functions_eval.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_f.html b/functions_f.html index 8fc0e008e..7abf90882 100644 --- a/functions_f.html +++ b/functions_f.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_func.html b/functions_func.html index 71e6f7ea2..0c308c773 100644 --- a/functions_func.html +++ b/functions_func.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -119,7 +119,7 @@

    - a -

    Ipopt Documentation -   +  
    diff --git a/functions_func_c.html b/functions_func_c.html index 5d2e7e17e..3b2558a07 100644 --- a/functions_func_c.html +++ b/functions_func_c.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -131,9 +131,9 @@

    - c -

    Ipopt Documentation -   +  
    diff --git a/functions_func_e.html b/functions_func_e.html index 1add6ecf6..81a778021 100644 --- a/functions_func_e.html +++ b/functions_func_e.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -129,8 +129,8 @@

    - e -

    Ipopt Documentation -   +  
    diff --git a/functions_func_g.html b/functions_func_g.html index 939204276..0fb899016 100644 --- a/functions_func_g.html +++ b/functions_func_g.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_func_h.html b/functions_func_h.html index 402dbbd35..286213a62 100644 --- a/functions_func_h.html +++ b/functions_func_h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_func_i.html b/functions_func_i.html index 34235cc46..d0ce3223b 100644 --- a/functions_func_i.html +++ b/functions_func_i.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -150,7 +150,7 @@

    - i -

    Ipopt Documentation -   +  
    diff --git a/functions_func_k.html b/functions_func_k.html index 22871e2f3..33b2b7ac4 100644 --- a/functions_func_k.html +++ b/functions_func_k.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_func_l.html b/functions_func_l.html index 368488009..42b4e92b2 100644 --- a/functions_func_l.html +++ b/functions_func_l.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_func_m.html b/functions_func_m.html index ac242b4d3..d5293db27 100644 --- a/functions_func_m.html +++ b/functions_func_m.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_func_n.html b/functions_func_n.html index d5c465524..95b49a593 100644 --- a/functions_func_n.html +++ b/functions_func_n.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_func_o.html b/functions_func_o.html index e02ca82ed..76fca3f2f 100644 --- a/functions_func_o.html +++ b/functions_func_o.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_func_p.html b/functions_func_p.html index dd50b7855..c0949055b 100644 --- a/functions_func_p.html +++ b/functions_func_p.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_func_q.html b/functions_func_q.html index 1db0200ec..15c725b53 100644 --- a/functions_func_q.html +++ b/functions_func_q.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_func_r.html b/functions_func_r.html index bc54b79e3..e91fa44d8 100644 --- a/functions_func_r.html +++ b/functions_func_r.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_func_s.html b/functions_func_s.html index be36e8744..9eb70199c 100644 --- a/functions_func_s.html +++ b/functions_func_s.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -127,7 +127,7 @@

    - s -

    Ipopt Documentation -   +  
    @@ -120,7 +120,7 @@

    - t -

    Ipopt Documentation -   +  
    diff --git a/functions_func_v.html b/functions_func_v.html index 8d1ac7f86..e825c5cd1 100644 --- a/functions_func_v.html +++ b/functions_func_v.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_func_w.html b/functions_func_w.html index 253efdb99..c51b71bdb 100644 --- a/functions_func_w.html +++ b/functions_func_w.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_func_x.html b/functions_func_x.html index b37122813..16f182cf0 100644 --- a/functions_func_x.html +++ b/functions_func_x.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_func_y.html b/functions_func_y.html index f94085a57..09f41aa60 100644 --- a/functions_func_y.html +++ b/functions_func_y.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_func_z.html b/functions_func_z.html index 7ed7565cd..a727c5e3c 100644 --- a/functions_func_z.html +++ b/functions_func_z.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_func_~.html b/functions_func_~.html index abe49ef0d..c8dc76ea8 100644 --- a/functions_func_~.html +++ b/functions_func_~.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_g.html b/functions_g.html index f5896da52..345edd4df 100644 --- a/functions_g.html +++ b/functions_g.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_h.html b/functions_h.html index d2cab6810..ff6534043 100644 --- a/functions_h.html +++ b/functions_h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_i.html b/functions_i.html index 69ad764dc..b4f909b80 100644 --- a/functions_i.html +++ b/functions_i.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -203,7 +203,7 @@

    - i -

    Ipopt Documentation -   +  
    diff --git a/functions_k.html b/functions_k.html index b5a2b68c2..33e04c811 100644 --- a/functions_k.html +++ b/functions_k.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_l.html b/functions_l.html index 9f7b3a070..938934fca 100644 --- a/functions_l.html +++ b/functions_l.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_m.html b/functions_m.html index 3e4f8b245..a43d1d3d6 100644 --- a/functions_m.html +++ b/functions_m.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_n.html b/functions_n.html index cdffc679c..08f3fa2ac 100644 --- a/functions_n.html +++ b/functions_n.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_o.html b/functions_o.html index 75eaede58..cf35f8054 100644 --- a/functions_o.html +++ b/functions_o.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_p.html b/functions_p.html index 4bfb5e1f9..dbe9228eb 100644 --- a/functions_p.html +++ b/functions_p.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_q.html b/functions_q.html index 715857f6f..9b3a7d321 100644 --- a/functions_q.html +++ b/functions_q.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_r.html b/functions_r.html index 0b26356f7..d6b7dba6e 100644 --- a/functions_r.html +++ b/functions_r.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_rela.html b/functions_rela.html index 18fc61445..972624110 100644 --- a/functions_rela.html +++ b/functions_rela.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_s.html b/functions_s.html index 2093a579c..2fbd69032 100644 --- a/functions_s.html +++ b/functions_s.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -172,7 +172,7 @@

    - s -

    Ipopt Documentation -   +  
    diff --git a/functions_type.html b/functions_type.html index 44ed9d41f..a4771878e 100644 --- a/functions_type.html +++ b/functions_type.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_u.html b/functions_u.html index ac744020d..a3ff2b2b2 100644 --- a/functions_u.html +++ b/functions_u.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_v.html b/functions_v.html index a0c57e9ff..15ca23af4 100644 --- a/functions_v.html +++ b/functions_v.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars.html b/functions_vars.html index 47c0acb45..660842ad1 100644 --- a/functions_vars.html +++ b/functions_vars.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars_b.html b/functions_vars_b.html index 538f781cc..4762e0d6c 100644 --- a/functions_vars_b.html +++ b/functions_vars_b.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars_c.html b/functions_vars_c.html index 0fe654e49..71e946564 100644 --- a/functions_vars_c.html +++ b/functions_vars_c.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -132,6 +132,7 @@

    - c -

    Ipopt Documentation -   +  
    @@ -201,8 +201,8 @@

    - d -

    Ipopt Documentation -   +  
    diff --git a/functions_vars_f.html b/functions_vars_f.html index 150cdbae8..28d5c73a1 100644 --- a/functions_vars_f.html +++ b/functions_vars_f.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars_g.html b/functions_vars_g.html index da629e151..a4eb49d9d 100644 --- a/functions_vars_g.html +++ b/functions_vars_g.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars_h.html b/functions_vars_h.html index abcc7cd5b..a8faaa921 100644 --- a/functions_vars_h.html +++ b/functions_vars_h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars_i.html b/functions_vars_i.html index 6f9cb3029..aba93b871 100644 --- a/functions_vars_i.html +++ b/functions_vars_i.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -157,6 +157,7 @@

    - i -

    Ipopt Documentation -   +  
    diff --git a/functions_vars_k.html b/functions_vars_k.html index b43e0f862..bd7c8f3d5 100644 --- a/functions_vars_k.html +++ b/functions_vars_k.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars_l.html b/functions_vars_l.html index 567c97134..affafe9e8 100644 --- a/functions_vars_l.html +++ b/functions_vars_l.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars_m.html b/functions_vars_m.html index 12279b77e..776d95259 100644 --- a/functions_vars_m.html +++ b/functions_vars_m.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars_n.html b/functions_vars_n.html index 216fc9ca3..b22def056 100644 --- a/functions_vars_n.html +++ b/functions_vars_n.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars_o.html b/functions_vars_o.html index bc332d24f..bafd8b4c3 100644 --- a/functions_vars_o.html +++ b/functions_vars_o.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars_p.html b/functions_vars_p.html index 799018e5f..d10fe3496 100644 --- a/functions_vars_p.html +++ b/functions_vars_p.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars_q.html b/functions_vars_q.html index 32566041a..6e63401ba 100644 --- a/functions_vars_q.html +++ b/functions_vars_q.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars_r.html b/functions_vars_r.html index 5edf77a1a..4279396eb 100644 --- a/functions_vars_r.html +++ b/functions_vars_r.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars_s.html b/functions_vars_s.html index f7ce5e5f7..f8115a693 100644 --- a/functions_vars_s.html +++ b/functions_vars_s.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars_t.html b/functions_vars_t.html index 17ef2e42e..1813a702a 100644 --- a/functions_vars_t.html +++ b/functions_vars_t.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars_u.html b/functions_vars_u.html index a4d3228ad..c0bf870b5 100644 --- a/functions_vars_u.html +++ b/functions_vars_u.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars_v.html b/functions_vars_v.html index 8d4814a56..4d650f432 100644 --- a/functions_vars_v.html +++ b/functions_vars_v.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars_w.html b/functions_vars_w.html index 3e1bb667c..9b83acf51 100644 --- a/functions_vars_w.html +++ b/functions_vars_w.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars_x.html b/functions_vars_x.html index 3f56ae38c..95b5295cb 100644 --- a/functions_vars_x.html +++ b/functions_vars_x.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars_y.html b/functions_vars_y.html index 9b220139b..8e57e8627 100644 --- a/functions_vars_y.html +++ b/functions_vars_y.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_vars_z.html b/functions_vars_z.html index ca72ed1a2..331aca43f 100644 --- a/functions_vars_z.html +++ b/functions_vars_z.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_w.html b/functions_w.html index 8376912e5..d52acd9ed 100644 --- a/functions_w.html +++ b/functions_w.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_x.html b/functions_x.html index 78a26360c..aaa093c6b 100644 --- a/functions_x.html +++ b/functions_x.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_y.html b/functions_y.html index 96c395b26..4a8abf5f7 100644 --- a/functions_y.html +++ b/functions_y.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_z.html b/functions_z.html index 3873aa062..3b20bd8ca 100644 --- a/functions_z.html +++ b/functions_z.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/functions_~.html b/functions_~.html index 123e64c91..86a0006fa 100644 --- a/functions_~.html +++ b/functions_~.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals.html b/globals.html index 6859ce9a7..9aec18798 100644 --- a/globals.html +++ b/globals.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_b.html b/globals_b.html index cbd837316..db5065e12 100644 --- a/globals_b.html +++ b/globals_b.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_c.html b/globals_c.html index 05e074b6a..c4f1b79c7 100644 --- a/globals_c.html +++ b/globals_c.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_d.html b/globals_d.html index 682370f76..73c46af95 100644 --- a/globals_d.html +++ b/globals_d.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_defs.html b/globals_defs.html index cd088f224..094f629a6 100644 --- a/globals_defs.html +++ b/globals_defs.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_defs_d.html b/globals_defs_d.html index 0fa1ef928..228e95e41 100644 --- a/globals_defs_d.html +++ b/globals_defs_d.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_defs_f.html b/globals_defs_f.html index 34633cf76..e86351f4d 100644 --- a/globals_defs_f.html +++ b/globals_defs_f.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_defs_h.html b/globals_defs_h.html index 011701f85..a01b498c9 100644 --- a/globals_defs_h.html +++ b/globals_defs_h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_defs_i.html b/globals_defs_i.html index 83fd8d3d8..c122b8ac5 100644 --- a/globals_defs_i.html +++ b/globals_defs_i.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_defs_m.html b/globals_defs_m.html index aa3917528..b1f818204 100644 --- a/globals_defs_m.html +++ b/globals_defs_m.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_defs_s.html b/globals_defs_s.html index 8cd18c5a9..36e6c915b 100644 --- a/globals_defs_s.html +++ b/globals_defs_s.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_defs_t.html b/globals_defs_t.html index 8abd4e59d..93d7e1e94 100644 --- a/globals_defs_t.html +++ b/globals_defs_t.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_e.html b/globals_e.html index f47a7dcc1..1ec631e18 100644 --- a/globals_e.html +++ b/globals_e.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_enum.html b/globals_enum.html index a8be251cd..260c314e1 100644 --- a/globals_enum.html +++ b/globals_enum.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_eval.html b/globals_eval.html index cbea17de8..d3fc9cc64 100644 --- a/globals_eval.html +++ b/globals_eval.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_f.html b/globals_f.html index ce0740893..f81c9dfa2 100644 --- a/globals_f.html +++ b/globals_f.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_func.html b/globals_func.html index fd123bca0..d9d4c5634 100644 --- a/globals_func.html +++ b/globals_func.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_g.html b/globals_g.html index 5da9508a1..a81015425 100644 --- a/globals_g.html +++ b/globals_g.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_h.html b/globals_h.html index ea6618b11..d4f093556 100644 --- a/globals_h.html +++ b/globals_h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_i.html b/globals_i.html index d434a6fa7..cd51f508d 100644 --- a/globals_i.html +++ b/globals_i.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_m.html b/globals_m.html index 5adadfb24..9a09b2d08 100644 --- a/globals_m.html +++ b/globals_m.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_n.html b/globals_n.html index 8bbc4e6c5..ff99ba5bd 100644 --- a/globals_n.html +++ b/globals_n.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_o.html b/globals_o.html index 54495da1d..48e0a84ac 100644 --- a/globals_o.html +++ b/globals_o.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_r.html b/globals_r.html index f5942fd9d..28d12c240 100644 --- a/globals_r.html +++ b/globals_r.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_s.html b/globals_s.html index a716af05e..3e1920827 100644 --- a/globals_s.html +++ b/globals_s.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_t.html b/globals_t.html index f61359aa1..4e337c523 100644 --- a/globals_t.html +++ b/globals_t.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_type.html b/globals_type.html index bef90de9f..1ece37c79 100644 --- a/globals_type.html +++ b/globals_type.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_u.html b/globals_u.html index f5311473b..9690777cf 100644 --- a/globals_u.html +++ b/globals_u.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/globals_vars.html b/globals_vars.html index 71e008bf3..7aa05e175 100644 --- a/globals_vars.html +++ b/globals_vars.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/graph_legend.html b/graph_legend.html index 362dad54b..886534991 100644 --- a/graph_legend.html +++ b/graph_legend.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/graph_legend.png b/graph_legend.png index 28ec9c3e7..40ae16857 100644 Binary files a/graph_legend.png and b/graph_legend.png differ diff --git a/hierarchy.html b/hierarchy.html index 32536bc42..9594834a2 100644 --- a/hierarchy.html +++ b/hierarchy.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/hsl__ma77d_8h.html b/hsl__ma77d_8h.html index bb320012e..fbc1e2590 100644 --- a/hsl__ma77d_8h.html +++ b/hsl__ma77d_8h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/hsl__ma77d_8h_source.html b/hsl__ma77d_8h_source.html index cf0d2f6bd..43954cd98 100644 --- a/hsl__ma77d_8h_source.html +++ b/hsl__ma77d_8h_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/hsl__ma77s_8h.html b/hsl__ma77s_8h.html index 3c693ac10..512e00923 100644 --- a/hsl__ma77s_8h.html +++ b/hsl__ma77s_8h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/hsl__ma77s_8h_source.html b/hsl__ma77s_8h_source.html index 24acd7eb6..f697ada29 100644 --- a/hsl__ma77s_8h_source.html +++ b/hsl__ma77s_8h_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/hsl__ma86d_8h.html b/hsl__ma86d_8h.html index b8b038099..ea6063c8d 100644 --- a/hsl__ma86d_8h.html +++ b/hsl__ma86d_8h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/hsl__ma86d_8h_source.html b/hsl__ma86d_8h_source.html index 1edf154e1..c08349973 100644 --- a/hsl__ma86d_8h_source.html +++ b/hsl__ma86d_8h_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/hsl__ma86s_8h.html b/hsl__ma86s_8h.html index 49f97ba19..1172f10a7 100644 --- a/hsl__ma86s_8h.html +++ b/hsl__ma86s_8h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/hsl__ma86s_8h_source.html b/hsl__ma86s_8h_source.html index aa7e80694..2dceef648 100644 --- a/hsl__ma86s_8h_source.html +++ b/hsl__ma86s_8h_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/hsl__ma97d_8h.html b/hsl__ma97d_8h.html index 70d4780a0..c6a17e68c 100644 --- a/hsl__ma97d_8h.html +++ b/hsl__ma97d_8h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/hsl__ma97d_8h_source.html b/hsl__ma97d_8h_source.html index eda52660c..8a40d2e9c 100644 --- a/hsl__ma97d_8h_source.html +++ b/hsl__ma97d_8h_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/hsl__ma97s_8h.html b/hsl__ma97s_8h.html index b7981ccb1..c87c1cd11 100644 --- a/hsl__ma97s_8h.html +++ b/hsl__ma97s_8h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/hsl__ma97s_8h_source.html b/hsl__ma97s_8h_source.html index c5520dd83..831304713 100644 --- a/hsl__ma97s_8h_source.html +++ b/hsl__ma97s_8h_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/hsl__mc68i_8h.html b/hsl__mc68i_8h.html index 2801fc930..4598098cc 100644 --- a/hsl__mc68i_8h.html +++ b/hsl__mc68i_8h.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/hsl__mc68i_8h_source.html b/hsl__mc68i_8h_source.html index 8865675d0..58687ff5a 100644 --- a/hsl__mc68i_8h_source.html +++ b/hsl__mc68i_8h_source.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/impl_8dox.html b/impl_8dox.html index 47c137f5f..c7c9d638a 100644 --- a/impl_8dox.html +++ b/impl_8dox.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/index.html b/index.html index 25618afc9..107ce47ca 100644 --- a/index.html +++ b/index.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/index.js b/index.js index 550cb4778..248499d5d 100644 --- a/index.js +++ b/index.js @@ -102,130 +102,132 @@ var index = [ "Frequenty Asked Questions", "FAQ.html", null ], [ "ChangeLog", "md_ChangeLog.html", [ [ "3.14", "md_ChangeLog.html#autotoc_md10", [ - [ "3.14.15 (2024-04-10)", "md_ChangeLog.html#autotoc_md11", null ], - [ "3.14.14 (2024-01-18)", "md_ChangeLog.html#autotoc_md12", null ], - [ "3.14.13 (2023-11-08)", "md_ChangeLog.html#autotoc_md13", null ], - [ "3.14.12 (2023-04-05)", "md_ChangeLog.html#autotoc_md14", null ], - [ "3.14.11 (2023-02-07)", "md_ChangeLog.html#autotoc_md15", null ], - [ "3.14.10 (2022-10-11)", "md_ChangeLog.html#autotoc_md16", null ], - [ "3.14.9 (2022-07-21)", "md_ChangeLog.html#autotoc_md17", null ], - [ "3.14.8 (2022-07-13)", "md_ChangeLog.html#autotoc_md18", null ], - [ "3.14.7 (2022-06-24)", "md_ChangeLog.html#autotoc_md19", null ], - [ "3.14.6 (2022-05-02)", "md_ChangeLog.html#autotoc_md20", null ], - [ "3.14.5 (2022-02-09)", "md_ChangeLog.html#autotoc_md21", null ], - [ "3.14.4 (2021-09-20)", "md_ChangeLog.html#autotoc_md22", null ], - [ "3.14.3 (2021-09-03)", "md_ChangeLog.html#autotoc_md23", null ], - [ "3.14.2 (2021-07-21)", "md_ChangeLog.html#autotoc_md24", null ], - [ "3.14.1 (2021-06-25)", "md_ChangeLog.html#autotoc_md25", null ], - [ "3.14.0 (2021-06-15)", "md_ChangeLog.html#autotoc_md26", null ] - ] ], - [ "3.13", "md_ChangeLog.html#autotoc_md27", [ - [ "3.13.4 (2021-02-24)", "md_ChangeLog.html#autotoc_md28", null ], - [ "3.13.3 (2020-10-16)", "md_ChangeLog.html#autotoc_md29", null ], - [ "3.13.2 (2020-04-30)", "md_ChangeLog.html#autotoc_md30", null ], - [ "3.13.1 (2020-03-11)", "md_ChangeLog.html#autotoc_md31", null ], - [ "3.13.0 (2019-10-19)", "md_ChangeLog.html#autotoc_md32", null ] - ] ], - [ "3.12", "md_ChangeLog.html#autotoc_md33", [ - [ "3.12.13 (2019-04-08)", "md_ChangeLog.html#autotoc_md34", null ], - [ "3.12.12 (2018-11-17)", "md_ChangeLog.html#autotoc_md35", null ], - [ "3.12.11 (2018-09-16)", "md_ChangeLog.html#autotoc_md36", null ], - [ "3.12.10 (2018-06-02)", "md_ChangeLog.html#autotoc_md37", null ], - [ "3.12.9 (2018-01-15)", "md_ChangeLog.html#autotoc_md38", null ], - [ "3.12.8 (2017-06-12)", "md_ChangeLog.html#autotoc_md39", null ], - [ "3.12.7 (2017-02-25)", "md_ChangeLog.html#autotoc_md40", null ], - [ "3.12.6 (2016-07-20)", "md_ChangeLog.html#autotoc_md41", null ], - [ "3.12.5 (2016-04-30)", "md_ChangeLog.html#autotoc_md42", null ], - [ "3.12.4 (2015-08-09)", "md_ChangeLog.html#autotoc_md43", null ], - [ "3.12.3 and 3.11.11 (2015-04-15)", "md_ChangeLog.html#autotoc_md44", null ], - [ "3.12.2 (2015-04-04)", "md_ChangeLog.html#autotoc_md45", null ], - [ "3.12.1 (2015-02-13)", "md_ChangeLog.html#autotoc_md46", null ], - [ "3.12.0 (2015-01-23)", "md_ChangeLog.html#autotoc_md47", null ] - ] ], - [ "3.11", "md_ChangeLog.html#autotoc_md48", [ - [ "3.11.10 (2015-01-18)", "md_ChangeLog.html#autotoc_md49", null ], - [ "3.11.9 (2014-08-16)", "md_ChangeLog.html#autotoc_md50", null ], - [ "3.11.8 (2014-04-08)", "md_ChangeLog.html#autotoc_md51", null ], - [ "3.11.7 (2013-12-18)", "md_ChangeLog.html#autotoc_md52", null ], - [ "3.11.6 (2013-11-16)", "md_ChangeLog.html#autotoc_md53", null ], - [ "3.11.5 (2013-10-26)", "md_ChangeLog.html#autotoc_md54", null ], - [ "3.11.4 (2013-09-12)", "md_ChangeLog.html#autotoc_md55", null ], - [ "3.11.3 (2013-08-08)", "md_ChangeLog.html#autotoc_md56", null ], - [ "3.11.2 (2013-07-01)", "md_ChangeLog.html#autotoc_md57", null ], - [ "3.11.1 (2013-06-14)", "md_ChangeLog.html#autotoc_md58", null ], - [ "3.11.0 (2013-05-07)", "md_ChangeLog.html#autotoc_md59", null ] - ] ], - [ "3.10", "md_ChangeLog.html#autotoc_md60", [ - [ "3.10.4 (2013-05-05)", "md_ChangeLog.html#autotoc_md61", null ], - [ "3.10.3 (2012-11-19)", "md_ChangeLog.html#autotoc_md62", null ], - [ "3.10.2 (2012-02-12)", "md_ChangeLog.html#autotoc_md63", null ], - [ "3.10.1 (2011-09-20)", "md_ChangeLog.html#autotoc_md64", null ], - [ "3.10.0 (2011-06-20)", "md_ChangeLog.html#autotoc_md65", null ] - ] ], - [ "3.9", "md_ChangeLog.html#autotoc_md66", [ - [ "3.9.3 (2011-04-07)", "md_ChangeLog.html#autotoc_md67", null ], - [ "3.9.2 (2010-12-22)", "md_ChangeLog.html#autotoc_md68", null ], - [ "3.9.1 (2010-11-26)", "md_ChangeLog.html#autotoc_md69", null ], - [ "3.9.0 (2010-11-05)", "md_ChangeLog.html#autotoc_md70", null ] - ] ], - [ "3.8", "md_ChangeLog.html#autotoc_md71", [ - [ "3.8.3 (2010-06-29)", "md_ChangeLog.html#autotoc_md72", null ], - [ "3.8.2 (2010-06-16)", "md_ChangeLog.html#autotoc_md73", null ], - [ "3.8.1 (2009-10-30)", "md_ChangeLog.html#autotoc_md74", null ], - [ "3.8.0 (2009-10-30)", "md_ChangeLog.html#autotoc_md75", null ] - ] ], - [ "3.7", "md_ChangeLog.html#autotoc_md76", [ - [ "3.7.1 (2009-10-06)", "md_ChangeLog.html#autotoc_md77", null ], - [ "3.7.0 (2009-07-16)", "md_ChangeLog.html#autotoc_md78", null ] - ] ], - [ "3.6", "md_ChangeLog.html#autotoc_md79", [ - [ "3.6.1 (2009-05-01)", "md_ChangeLog.html#autotoc_md80", null ], - [ "3.6.0 (2009-04-29)", "md_ChangeLog.html#autotoc_md81", null ] - ] ], - [ "3.5", "md_ChangeLog.html#autotoc_md82", [ - [ "3.5.5 (2009-01-13)", "md_ChangeLog.html#autotoc_md83", null ], - [ "3.5.4 (2008-09-29)", "md_ChangeLog.html#autotoc_md84", null ], - [ "3.5.3 (2008-09-19)", "md_ChangeLog.html#autotoc_md85", null ], - [ "3.5.2 (2008-09-18)", "md_ChangeLog.html#autotoc_md86", null ], - [ "3.5.1 (2008-08-26)", "md_ChangeLog.html#autotoc_md87", null ], - [ "3.5.0 (2008-08-25)", "md_ChangeLog.html#autotoc_md88", null ] - ] ], - [ "3.4", "md_ChangeLog.html#autotoc_md89", [ - [ "3.4.2 (2008-07-18)", "md_ChangeLog.html#autotoc_md90", null ], - [ "3.4.1 (2008-05-30)", "md_ChangeLog.html#autotoc_md91", null ], - [ "3.4.0 (2008-04-25)", "md_ChangeLog.html#autotoc_md92", null ] - ] ], - [ "3.3", "md_ChangeLog.html#autotoc_md93", [ - [ "3.3.5 (2008-02-28)", "md_ChangeLog.html#autotoc_md94", null ], - [ "3.3.4 (2007-12-27)", "md_ChangeLog.html#autotoc_md95", null ], - [ "3.3.3 (2007-09-25)", "md_ChangeLog.html#autotoc_md96", null ], - [ "3.3.1 (2007-06-20)", "md_ChangeLog.html#autotoc_md97", null ] - ] ], - [ "3.2", "md_ChangeLog.html#autotoc_md98", [ - [ "3.2.4 (2007-04-24)", "md_ChangeLog.html#autotoc_md99", null ], - [ "3.2.3 (2006-11-29)", "md_ChangeLog.html#autotoc_md100", null ], - [ "3.2 r795 (2006-10-11)", "md_ChangeLog.html#autotoc_md101", null ], - [ "3.2.1 (2006-07-14) - dev release number 764", "md_ChangeLog.html#autotoc_md102", null ], - [ "3.2.0 (2006-07-07) - dev release number 757", "md_ChangeLog.html#autotoc_md103", null ] - ] ], - [ "3.1", "md_ChangeLog.html#autotoc_md104", [ - [ "3.1.0 (2006-04-08) - dev release number 714", "md_ChangeLog.html#autotoc_md105", null ] - ] ], - [ "3.0", "md_ChangeLog.html#autotoc_md106", [ - [ "3.0.1 (2005-12-04)", "md_ChangeLog.html#autotoc_md107", null ], - [ "3.0.0 (2005-08-26) - dev release number 510", "md_ChangeLog.html#autotoc_md108", null ] - ] ], - [ "2.2", "md_ChangeLog.html#autotoc_md109", [ - [ "no new release (2005-08-19)", "md_ChangeLog.html#autotoc_md110", null ], - [ "2.2.1e (2005-05-30)", "md_ChangeLog.html#autotoc_md111", null ], - [ "no new release (2005-01-07)", "md_ChangeLog.html#autotoc_md112", null ], - [ "2.2.1d (2004-10-05)", "md_ChangeLog.html#autotoc_md113", null ], - [ "2.2.1c (2004-07-20)", "md_ChangeLog.html#autotoc_md114", null ], - [ "2.2.1b (2004-05-21)", "md_ChangeLog.html#autotoc_md115", null ], - [ "2.2.1a (2004-05-13)", "md_ChangeLog.html#autotoc_md116", null ], - [ "no new release (2004-04-28)", "md_ChangeLog.html#autotoc_md117", null ], - [ "2.2.1 (2004-04-25)", "md_ChangeLog.html#autotoc_md118", null ], - [ "2.2.0 (2004-03-10)", "md_ChangeLog.html#autotoc_md119", null ] + [ "3.14.17 (2024-12-14)", "md_ChangeLog.html#autotoc_md11", null ], + [ "3.14.16 (2024-04-22)", "md_ChangeLog.html#autotoc_md12", null ], + [ "3.14.15 (2024-04-10)", "md_ChangeLog.html#autotoc_md13", null ], + [ "3.14.14 (2024-01-18)", "md_ChangeLog.html#autotoc_md14", null ], + [ "3.14.13 (2023-11-08)", "md_ChangeLog.html#autotoc_md15", null ], + [ "3.14.12 (2023-04-05)", "md_ChangeLog.html#autotoc_md16", null ], + [ "3.14.11 (2023-02-07)", "md_ChangeLog.html#autotoc_md17", null ], + [ "3.14.10 (2022-10-11)", "md_ChangeLog.html#autotoc_md18", null ], + [ "3.14.9 (2022-07-21)", "md_ChangeLog.html#autotoc_md19", null ], + [ "3.14.8 (2022-07-13)", "md_ChangeLog.html#autotoc_md20", null ], + [ "3.14.7 (2022-06-24)", "md_ChangeLog.html#autotoc_md21", null ], + [ "3.14.6 (2022-05-02)", "md_ChangeLog.html#autotoc_md22", null ], + [ "3.14.5 (2022-02-09)", "md_ChangeLog.html#autotoc_md23", null ], + [ "3.14.4 (2021-09-20)", "md_ChangeLog.html#autotoc_md24", null ], + [ "3.14.3 (2021-09-03)", "md_ChangeLog.html#autotoc_md25", null ], + [ "3.14.2 (2021-07-21)", "md_ChangeLog.html#autotoc_md26", null ], + [ "3.14.1 (2021-06-25)", "md_ChangeLog.html#autotoc_md27", null ], + [ "3.14.0 (2021-06-15)", "md_ChangeLog.html#autotoc_md28", null ] + ] ], + [ "3.13", "md_ChangeLog.html#autotoc_md29", [ + [ "3.13.4 (2021-02-24)", "md_ChangeLog.html#autotoc_md30", null ], + [ "3.13.3 (2020-10-16)", "md_ChangeLog.html#autotoc_md31", null ], + [ "3.13.2 (2020-04-30)", "md_ChangeLog.html#autotoc_md32", null ], + [ "3.13.1 (2020-03-11)", "md_ChangeLog.html#autotoc_md33", null ], + [ "3.13.0 (2019-10-19)", "md_ChangeLog.html#autotoc_md34", null ] + ] ], + [ "3.12", "md_ChangeLog.html#autotoc_md35", [ + [ "3.12.13 (2019-04-08)", "md_ChangeLog.html#autotoc_md36", null ], + [ "3.12.12 (2018-11-17)", "md_ChangeLog.html#autotoc_md37", null ], + [ "3.12.11 (2018-09-16)", "md_ChangeLog.html#autotoc_md38", null ], + [ "3.12.10 (2018-06-02)", "md_ChangeLog.html#autotoc_md39", null ], + [ "3.12.9 (2018-01-15)", "md_ChangeLog.html#autotoc_md40", null ], + [ "3.12.8 (2017-06-12)", "md_ChangeLog.html#autotoc_md41", null ], + [ "3.12.7 (2017-02-25)", "md_ChangeLog.html#autotoc_md42", null ], + [ "3.12.6 (2016-07-20)", "md_ChangeLog.html#autotoc_md43", null ], + [ "3.12.5 (2016-04-30)", "md_ChangeLog.html#autotoc_md44", null ], + [ "3.12.4 (2015-08-09)", "md_ChangeLog.html#autotoc_md45", null ], + [ "3.12.3 and 3.11.11 (2015-04-15)", "md_ChangeLog.html#autotoc_md46", null ], + [ "3.12.2 (2015-04-04)", "md_ChangeLog.html#autotoc_md47", null ], + [ "3.12.1 (2015-02-13)", "md_ChangeLog.html#autotoc_md48", null ], + [ "3.12.0 (2015-01-23)", "md_ChangeLog.html#autotoc_md49", null ] + ] ], + [ "3.11", "md_ChangeLog.html#autotoc_md50", [ + [ "3.11.10 (2015-01-18)", "md_ChangeLog.html#autotoc_md51", null ], + [ "3.11.9 (2014-08-16)", "md_ChangeLog.html#autotoc_md52", null ], + [ "3.11.8 (2014-04-08)", "md_ChangeLog.html#autotoc_md53", null ], + [ "3.11.7 (2013-12-18)", "md_ChangeLog.html#autotoc_md54", null ], + [ "3.11.6 (2013-11-16)", "md_ChangeLog.html#autotoc_md55", null ], + [ "3.11.5 (2013-10-26)", "md_ChangeLog.html#autotoc_md56", null ], + [ "3.11.4 (2013-09-12)", "md_ChangeLog.html#autotoc_md57", null ], + [ "3.11.3 (2013-08-08)", "md_ChangeLog.html#autotoc_md58", null ], + [ "3.11.2 (2013-07-01)", "md_ChangeLog.html#autotoc_md59", null ], + [ "3.11.1 (2013-06-14)", "md_ChangeLog.html#autotoc_md60", null ], + [ "3.11.0 (2013-05-07)", "md_ChangeLog.html#autotoc_md61", null ] + ] ], + [ "3.10", "md_ChangeLog.html#autotoc_md62", [ + [ "3.10.4 (2013-05-05)", "md_ChangeLog.html#autotoc_md63", null ], + [ "3.10.3 (2012-11-19)", "md_ChangeLog.html#autotoc_md64", null ], + [ "3.10.2 (2012-02-12)", "md_ChangeLog.html#autotoc_md65", null ], + [ "3.10.1 (2011-09-20)", "md_ChangeLog.html#autotoc_md66", null ], + [ "3.10.0 (2011-06-20)", "md_ChangeLog.html#autotoc_md67", null ] + ] ], + [ "3.9", "md_ChangeLog.html#autotoc_md68", [ + [ "3.9.3 (2011-04-07)", "md_ChangeLog.html#autotoc_md69", null ], + [ "3.9.2 (2010-12-22)", "md_ChangeLog.html#autotoc_md70", null ], + [ "3.9.1 (2010-11-26)", "md_ChangeLog.html#autotoc_md71", null ], + [ "3.9.0 (2010-11-05)", "md_ChangeLog.html#autotoc_md72", null ] + ] ], + [ "3.8", "md_ChangeLog.html#autotoc_md73", [ + [ "3.8.3 (2010-06-29)", "md_ChangeLog.html#autotoc_md74", null ], + [ "3.8.2 (2010-06-16)", "md_ChangeLog.html#autotoc_md75", null ], + [ "3.8.1 (2009-10-30)", "md_ChangeLog.html#autotoc_md76", null ], + [ "3.8.0 (2009-10-30)", "md_ChangeLog.html#autotoc_md77", null ] + ] ], + [ "3.7", "md_ChangeLog.html#autotoc_md78", [ + [ "3.7.1 (2009-10-06)", "md_ChangeLog.html#autotoc_md79", null ], + [ "3.7.0 (2009-07-16)", "md_ChangeLog.html#autotoc_md80", null ] + ] ], + [ "3.6", "md_ChangeLog.html#autotoc_md81", [ + [ "3.6.1 (2009-05-01)", "md_ChangeLog.html#autotoc_md82", null ], + [ "3.6.0 (2009-04-29)", "md_ChangeLog.html#autotoc_md83", null ] + ] ], + [ "3.5", "md_ChangeLog.html#autotoc_md84", [ + [ "3.5.5 (2009-01-13)", "md_ChangeLog.html#autotoc_md85", null ], + [ "3.5.4 (2008-09-29)", "md_ChangeLog.html#autotoc_md86", null ], + [ "3.5.3 (2008-09-19)", "md_ChangeLog.html#autotoc_md87", null ], + [ "3.5.2 (2008-09-18)", "md_ChangeLog.html#autotoc_md88", null ], + [ "3.5.1 (2008-08-26)", "md_ChangeLog.html#autotoc_md89", null ], + [ "3.5.0 (2008-08-25)", "md_ChangeLog.html#autotoc_md90", null ] + ] ], + [ "3.4", "md_ChangeLog.html#autotoc_md91", [ + [ "3.4.2 (2008-07-18)", "md_ChangeLog.html#autotoc_md92", null ], + [ "3.4.1 (2008-05-30)", "md_ChangeLog.html#autotoc_md93", null ], + [ "3.4.0 (2008-04-25)", "md_ChangeLog.html#autotoc_md94", null ] + ] ], + [ "3.3", "md_ChangeLog.html#autotoc_md95", [ + [ "3.3.5 (2008-02-28)", "md_ChangeLog.html#autotoc_md96", null ], + [ "3.3.4 (2007-12-27)", "md_ChangeLog.html#autotoc_md97", null ], + [ "3.3.3 (2007-09-25)", "md_ChangeLog.html#autotoc_md98", null ], + [ "3.3.1 (2007-06-20)", "md_ChangeLog.html#autotoc_md99", null ] + ] ], + [ "3.2", "md_ChangeLog.html#autotoc_md100", [ + [ "3.2.4 (2007-04-24)", "md_ChangeLog.html#autotoc_md101", null ], + [ "3.2.3 (2006-11-29)", "md_ChangeLog.html#autotoc_md102", null ], + [ "3.2 r795 (2006-10-11)", "md_ChangeLog.html#autotoc_md103", null ], + [ "3.2.1 (2006-07-14) - dev release number 764", "md_ChangeLog.html#autotoc_md104", null ], + [ "3.2.0 (2006-07-07) - dev release number 757", "md_ChangeLog.html#autotoc_md105", null ] + ] ], + [ "3.1", "md_ChangeLog.html#autotoc_md106", [ + [ "3.1.0 (2006-04-08) - dev release number 714", "md_ChangeLog.html#autotoc_md107", null ] + ] ], + [ "3.0", "md_ChangeLog.html#autotoc_md108", [ + [ "3.0.1 (2005-12-04)", "md_ChangeLog.html#autotoc_md109", null ], + [ "3.0.0 (2005-08-26) - dev release number 510", "md_ChangeLog.html#autotoc_md110", null ] + ] ], + [ "2.2", "md_ChangeLog.html#autotoc_md111", [ + [ "no new release (2005-08-19)", "md_ChangeLog.html#autotoc_md112", null ], + [ "2.2.1e (2005-05-30)", "md_ChangeLog.html#autotoc_md113", null ], + [ "no new release (2005-01-07)", "md_ChangeLog.html#autotoc_md114", null ], + [ "2.2.1d (2004-10-05)", "md_ChangeLog.html#autotoc_md115", null ], + [ "2.2.1c (2004-07-20)", "md_ChangeLog.html#autotoc_md116", null ], + [ "2.2.1b (2004-05-21)", "md_ChangeLog.html#autotoc_md117", null ], + [ "2.2.1a (2004-05-13)", "md_ChangeLog.html#autotoc_md118", null ], + [ "no new release (2004-04-28)", "md_ChangeLog.html#autotoc_md119", null ], + [ "2.2.1 (2004-04-25)", "md_ChangeLog.html#autotoc_md120", null ], + [ "2.2.0 (2004-03-10)", "md_ChangeLog.html#autotoc_md121", null ] ] ] ] ], [ "Authors and Contributors", "AUTHORS.html", null ], diff --git a/install_8dox.html b/install_8dox.html index 4b785cbb9..ff18c6069 100644 --- a/install_8dox.html +++ b/install_8dox.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/interfaces_8dox.html b/interfaces_8dox.html index 52ab4280c..4572d43e2 100644 --- a/interfaces_8dox.html +++ b/interfaces_8dox.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/main_8dox.html b/main_8dox.html index c967d600c..a3975ec8b 100644 --- a/main_8dox.html +++ b/main_8dox.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/md_ChangeLog.html b/md_ChangeLog.html index e9d0bfd36..38fbe2f34 100644 --- a/md_ChangeLog.html +++ b/md_ChangeLog.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -108,130 +108,132 @@

    Table of Contents

    -
    • 3.14
      • 3.14.15 (2024-04-10)
      • -
      • 3.14.14 (2024-01-18)
      • -
      • 3.14.13 (2023-11-08)
      • -
      • 3.14.12 (2023-04-05)
      • -
      • 3.14.11 (2023-02-07)
      • -
      • 3.14.10 (2022-10-11)
      • -
      • 3.14.9 (2022-07-21)
      • -
      • 3.14.8 (2022-07-13)
      • -
      • 3.14.7 (2022-06-24)
      • -
      • 3.14.6 (2022-05-02)
      • -
      • 3.14.5 (2022-02-09)
      • -
      • 3.14.4 (2021-09-20)
      • -
      • 3.14.3 (2021-09-03)
      • -
      • 3.14.2 (2021-07-21)
      • -
      • 3.14.1 (2021-06-25)
      • -
      • 3.14.0 (2021-06-15)
      • +
        • 3.14
        • -
        • 3.13
          • 3.13.4 (2021-02-24)
          • -
          • 3.13.3 (2020-10-16)
          • -
          • 3.13.2 (2020-04-30)
          • -
          • 3.13.1 (2020-03-11)
          • -
          • 3.13.0 (2019-10-19)
          • +
          • 3.13
          • -
          • 3.12
            • 3.12.13 (2019-04-08)
            • -
            • 3.12.12 (2018-11-17)
            • -
            • 3.12.11 (2018-09-16)
            • -
            • 3.12.10 (2018-06-02)
            • -
            • 3.12.9 (2018-01-15)
            • -
            • 3.12.8 (2017-06-12)
            • -
            • 3.12.7 (2017-02-25)
            • -
            • 3.12.6 (2016-07-20)
            • -
            • 3.12.5 (2016-04-30)
            • -
            • 3.12.4 (2015-08-09)
            • -
            • 3.12.3 and 3.11.11 (2015-04-15)
            • -
            • 3.12.2 (2015-04-04)
            • -
            • 3.12.1 (2015-02-13)
            • -
            • 3.12.0 (2015-01-23)
            • +
            • 3.12
            • -
            • 3.11
              • 3.11.10 (2015-01-18)
              • -
              • 3.11.9 (2014-08-16)
              • -
              • 3.11.8 (2014-04-08)
              • -
              • 3.11.7 (2013-12-18)
              • -
              • 3.11.6 (2013-11-16)
              • -
              • 3.11.5 (2013-10-26)
              • -
              • 3.11.4 (2013-09-12)
              • -
              • 3.11.3 (2013-08-08)
              • -
              • 3.11.2 (2013-07-01)
              • -
              • 3.11.1 (2013-06-14)
              • -
              • 3.11.0 (2013-05-07)
              • +
              • 3.11
              • -
              • 3.10
                • 3.10.4 (2013-05-05)
                • -
                • 3.10.3 (2012-11-19)
                • -
                • 3.10.2 (2012-02-12)
                • -
                • 3.10.1 (2011-09-20)
                • -
                • 3.10.0 (2011-06-20)
                • +
                • 3.10
                • -
                • 3.9
                  • 3.9.3 (2011-04-07)
                  • -
                  • 3.9.2 (2010-12-22)
                  • -
                  • 3.9.1 (2010-11-26)
                  • -
                  • 3.9.0 (2010-11-05)
                  • +
                  • 3.9
                  • -
                  • 3.8
                    • 3.8.3 (2010-06-29)
                    • -
                    • 3.8.2 (2010-06-16)
                    • -
                    • 3.8.1 (2009-10-30)
                    • -
                    • 3.8.0 (2009-10-30)
                    • +
                    • 3.8
                    • -
                    • 3.7
                      • 3.7.1 (2009-10-06)
                      • -
                      • 3.7.0 (2009-07-16)
                      • +
                      • 3.7
                      • -
                      • 3.6
                        • 3.6.1 (2009-05-01)
                        • -
                        • 3.6.0 (2009-04-29)
                        • +
                        • 3.6
                        • -
                        • 3.5
                          • 3.5.5 (2009-01-13)
                          • -
                          • 3.5.4 (2008-09-29)
                          • -
                          • 3.5.3 (2008-09-19)
                          • -
                          • 3.5.2 (2008-09-18)
                          • -
                          • 3.5.1 (2008-08-26)
                          • -
                          • 3.5.0 (2008-08-25)
                          • +
                          • 3.5
                          • -
                          • 3.4
                            • 3.4.2 (2008-07-18)
                            • -
                            • 3.4.1 (2008-05-30)
                            • -
                            • 3.4.0 (2008-04-25)
                            • +
                            • 3.4
                            • -
                            • 3.3
                              • 3.3.5 (2008-02-28)
                              • -
                              • 3.3.4 (2007-12-27)
                              • -
                              • 3.3.3 (2007-09-25)
                              • -
                              • 3.3.1 (2007-06-20)
                              • +
                              • 3.3
                              • -
                              • 3.2
                                • 3.2.4 (2007-04-24)
                                • -
                                • 3.2.3 (2006-11-29)
                                • -
                                • 3.2 r795 (2006-10-11)
                                • -
                                • 3.2.1 (2006-07-14) - dev release number 764
                                • -
                                • 3.2.0 (2006-07-07) - dev release number 757
                                • +
                                • 3.2
                                • -
                                • 3.1
                                  • 3.1.0 (2006-04-08) - dev release number 714
                                  • +
                                  • 3.1
                                  • -
                                  • 3.0
                                    • 3.0.1 (2005-12-04)
                                    • -
                                    • 3.0.0 (2005-08-26) - dev release number 510
                                    • +
                                    • 3.0
                                    • -
                                    • 2.2 @@ -240,19 +242,36 @@

                                      3.14

                                      +3.14.17 (2024-12-14)

                                      +
                                        +
                                      • Added Ipopt::RegisterInterruptHandler() and Ipopt::UnregisterInterruptHandler() to IpUtils.hpp to wrap handling of interrupt signals. Added parameter checkinterrupt (default false) to AmplTNLP constructor to enable check for interrupt signal in intermediate_callback.
                                      • +
                                      • The ipopt and ipopt_sens executables and scalable problems C++ examples can now be interrupted by SIGINT/SIGHUP (systems with sigaction()) or SIGINT/SIGTERM/SIGABRT (Windows systems).
                                      • +
                                      • New option mumps_mpi_communicator to specify the MPI communicator when using an MPI-enabled build of MUMPS [#790, by Alex Tyler Chapman].
                                      • +
                                      • Updated build system to current autotools versions; initial support for icx/ifx and flang
                                      • +
                                      • Removed use of vsprintf and sprintf. Added IpoptData::Append_info_string(std::string,double).
                                      • +
                                      • Removed use of strcpy, strncpy, strdup, and sscanf.
                                      • +
                                      • Using fopen_s and getenv_s instead of fopen and getenv, respectively, if available.
                                      • +
                                      • Added workaround for using Pardiso from Intel MKL 2025.0.1 [#799]. This requires checking the MKL version at runtime and can be disabled by defining IPOPT_NO_MKLVERSIONCHECK.
                                      • +
                                      +

                                      +3.14.16 (2024-04-22)

                                      +
                                        +
                                      • Fixed load of linear solver libraries at runtime on Windows, which got broken for relative paths (the default) in 3.14.15 [#759, #760].
                                      • +
                                      +

                                      3.14.15 (2024-04-10)

                                      • Fixed include guard of IpGenAugSystemSolver.hpp [#756, by Christopher Wellons].
                                      • Improved finding dependencies of linear solver libraries loaded at runtime on Windows [#755, by Yue Yang].
                                      -

                                      +

                                      3.14.14 (2024-01-18)

                                      • Fixed build of MA57 interface when FUNNY_MA57_FINT is defined (MA57 with long integers).
                                      • Fixed that initial dual values for fixed variables (z_L, z_U) were ignored when doing a warm start with fixed_variable_treatment = make_constraint [#728].
                                      • Fixed that the last argument when calling MA27CD/MA27C in MA27 interface was wrong [#738].
                                      -

                                      +

                                      3.14.13 (2023-11-08)

                                      • Reduced priority for making Spral the default value for option linear_solver [#677].
                                      • @@ -261,7 +280,7 @@

                                      • Print additional messages when reallocation of MA27 working space failed [#671, by Daniel Oliveira].
                                      • Added option file_append to specify whether to append to output_file instead of truncating it. Added default argument file_append to Journalist::AddFileJournal(), added default argument fappend to FileJournal::Open(), and added default argument file_append to IpoptApplication::OpenOutputFile(). [#720]
                                      -

                                      +

                                      3.14.12 (2023-04-05)

                                      • Fix that a source file was installed and install more header files. [#641, #642, by Joao Sousa Pinto]
                                      • @@ -272,7 +291,7 @@

                                      • Changed handling of dual solution for square problems: When solving a problem with as many equations as variables, Ipopt used to ignore the violation of dual feasibility and complementarity in the convergence check and computed a final dual solution via a least-square estimate. If this failed, Ipopt would claim a square problem to be solved to optimality without providing a solution that satisfies optimality conditions. With this version, the behavior has been changed so that dual feasibility is no longer ignored by the convergence check, the least-square estimate is only computed if optimality is not proven already, and the normal Ipopt algorithm continues if the least-square estimate does not satisfy optimality conditions.
                                      • Updated HSL_MC86 header file to the one from HSL MC68 3.3.3 [#653, by Jari Fowkes].
                                      -

                                      +

                                      3.14.11 (2023-02-07)

                                      • Added IpoptData::TimingStats() const [#611]
                                      • @@ -280,63 +299,63 @@

                                      • Updated buildsystem files after upgrading to most recent versions of autotools.
                                      • Install some additional header files [#637].
                                      -

                                      +

                                      3.14.10 (2022-10-11)

                                      • Added option grad_f_constant to specify that objective function is linear. If set, the gradient of the objective will be requested by Ipopt only once. [#597]
                                      • Added OrigIpoptNLP::orig_d_L() and OrigIpoptNLP::orig_d_U() to get original constraint sides (before relaxation due to bound_relax_factor > 0).
                                      • TNLP::get_curr_violations() now returns the constraint violation and complementarity w.r.t. the original (non-relaxed) constraint sides. [#603]
                                      -

                                      +

                                      3.14.9 (2022-07-21)

                                      • Fixed mapping of meta data for variable bounds, e.g., variable names, from TNLP to Ipopts internal NLP [#590].
                                      -

                                      +

                                      3.14.8 (2022-07-13)

                                      • Added options ma27_print_level, ma57_print_level, and mumps_print_level to enable output from these linear solvers.
                                      -

                                      +

                                      3.14.7 (2022-06-24)

                                      • Fixed that ComputeSensitivityMatrix() of sIpopt assumed that there are no more than two parameters [#578, by Andrea Vescovini].
                                      • For completeness, added option gradient_approximation to enable approximation of gradient of objective function by finite differences. Do not use. [#573]
                                      • Added function IPSETPROBLEMSCALING to Fortran interface to set problem scaling [#577, by Steven R. Hall]
                                      -

                                      +

                                      3.14.6 (2022-05-02)

                                      • Fixed mapping of meta data for inequalities, e.g., constraint names, from TNLP to Ipopts internal NLP [#570, by Daniel Oliveira].
                                      • Fixed that MC68 ordering time was not accounted in symbolic factorization time of HSL MA86 [#571].
                                      • Include more header files in IpIpoptCalculatedQuantities.hpp for setups where forward declarations are not sufficients [#572].
                                      -

                                      +

                                      3.14.5 (2022-02-09)

                                      • Tried to fix recognition of JNI headers on macOS >= 11 [#516].
                                      • Fixed that only primal variable values where passed to finalize_solution() when a timelimit was reached [#552].
                                      -

                                      +

                                      3.14.4 (2021-09-20)

                                      • Skip build of Java interface if either java or jar is not found [#510]. Only give warning if javac and jar are found, but no java or javadoc.
                                      • Fixed that --with-lapack-lflags was ignored if --with-lapack was not specified explicitly [#512,#515].
                                      -

                                      +

                                      3.14.3 (2021-09-03)

                                      • Fixed timing for iterate initialization if initialization fails due to an evaluation error.
                                      • Fixed possible integer overflow when reserving space for indices of Jacobian belonging to fixed variables (introduced with 3.14.0) and reduced memory usage for indices of Jacobian belonging to fixed variables.
                                      -

                                      +

                                      3.14.2 (2021-07-21)

                                      • Added OptionsList::UnsetValue() to remove an option setting.
                                      • Added missing translation of some Ipopt status codes into AMPL solve result codes.
                                      • If using the MPI-parallel version of MUMPS: Moved calls to MPI_Init()/MPI_Finalize() in MUMPS interface into global constructor/destructor of Ipopt library (if building with GCC/clang). Use configure flag --disable-mpiinit to disable. [#500]
                                      -

                                      +

                                      3.14.1 (2021-06-25)

                                      • Fixed invalidation of cached Hessians when reoptimizing with same structure.
                                      • @@ -346,7 +365,7 @@

                                      • Fixed a problem with the current solution not being reset when initialization of a NLP fails in reoptimization.
                                      • Fixed that C++11 capability was not correctly identified with MS/Intel compilers.
                                      -

                                      +

                                      3.14.0 (2021-06-15)

                                      Data Types

                                        @@ -429,16 +448,16 @@

                                        Miscellaneous

                                      • Changed formula for relative error in derivative checker. The absolute error is now scaled up if the approximate derivative value is between derivative_test_tol and 1. [#487].
                                      • The second-order derivative checker now uses values for obj_factor and lambda that are different from 1.
                                      -

                                      +

                                      3.13

                                      -

                                      +

                                      3.13.4 (2021-02-24)

                                      • Fixed a linking issue for ipopt_sens [#418]
                                      • Fixed Makefile for Java example regarding location of jar file
                                      • Fixed build of R interface if using -fvisibility=hidden.
                                      -

                                      +

                                      3.13.3 (2020-10-16)

                                      • Members of AmplTNLP class are now protected instead of private.
                                      • @@ -448,7 +467,7 @@

                                      • Added example recursive_nlp that uses Ipopt to solves an optimization problem for the evaluation of the objective function. [contributed by Brad Bell]
                                      • Fixed build of linear-solver loader on Windows [#408]
                                      -

                                      +

                                      3.13.2 (2020-04-30)

                                      • The C-preprocessor defines COIN_IPOPT_CHECKLEVEL, COIN_IPOPT_VERBOSITY, and FORTRAN_INTEGER_TYPE, which are defined by IpoptConfig.h, have been renamed to IPOPT_CHECKLEVEL, IPOPT_VERBOSITY, and IPOPT_FORTRAN_INTEGER_TYPE, respectively. They are still available under their previous name, but these will be removed in Ipopt 3.14.
                                      • @@ -456,7 +475,7 @@

                                      • Changed location where Java interface jar gets installed from $libdir to $datadir/java/.
                                      • minor fixes to buildsystem
                                      -

                                      +

                                      3.13.1 (2020-03-11)

                                      • Added asserts that check whether sparsity pattern of Jacobian and Hessian as returned by TNLP are within range w.r.t. number of variables and constraints. [#350]
                                      • @@ -466,7 +485,7 @@

                                      • bring back configall_system.h for build without config header
                                      • minor fixes to buildsystem
                                      -

                                      +

                                      3.13.0 (2019-10-19)

                                      This major release comes with a larger renovation of the build system and a changed directory structure (eliminated top directory), which is the result of a long and still on-going effort to use recent autotools versions for various COIN-OR projects, reduce future maintenance efforts, and adapting behaviors of standard autotools-based projects. As a consequence, a monolithic build of Ipopt, which builds Ipopt with all its dependencies in one run of configure and make is no longer possible. Dependencies should now be build and installed before building Ipopt. Additionally, support for some outdated versions of dependencies and unmaintained components of Ipopt has been dropped and some improvements that may require changes on the users side have been applied.

                                      A more detailed, probably incomplete, list of changes follows:

                                        @@ -514,28 +533,28 @@

                                      • Fixed compiler warnings, in particular when using -Wunused-parameter.
                                      • Changed default for ma97_print_level to -1. This avoids messages about numerical singular systems written to stdout by default.
                                      -

                                      +

                                      3.12

                                      -

                                      +

                                      3.12.13 (2019-04-08)

                                      • fixed Pardiso settings when using Pardiso from Pardiso project website (by Olaf Schenk): the new settings should provide much better performance; the default for option pardiso_order changed from five to metis.
                                      • changed distinction of MKL and Basel Pardiso in configure: to use MKL Pardiso, only specify MKL for Blas; to use Basel Pardiso, use --with-pardiso
                                      -

                                      +

                                      3.12.12 (2018-11-17)

                                      • allow for --without-matlab-home to disable check for Matlab [r2748]
                                      • add dppsv to v8-ifort [r2746]
                                      • disable error in LibraryHandler.c if snprintf detection failed [r2751]
                                      -

                                      +

                                      3.12.11 (2018-09-16)

                                      • fill MUMPS struct with zeros when allocating in MUMPS interface [r2724]
                                      • minor fix in build-system of ThirdParty/ASL
                                      -

                                      +

                                      3.12.10 (2018-06-02)

                                      • fixed setting for parallel solve when using MKL Pardiso (by t1393988511) [r2711]: parallel solve was disabled (which is not the default); note, that the setting for parallel factorization was not affected
                                      • @@ -543,63 +562,63 @@

                                      • updated ThirdParty/ASL to retrieve updated ASL (20180528) [#305]
                                      • name JIpopt library libjipopt.dylib on Mac OS X [r2718, #275]
                                      -

                                      +

                                      3.12.9 (2018-01-15)

                                      • fixed memory leak in MA86 interface (by mhahn) [r2700,#283]
                                      • fixed handling of time limit when reoptimizing: CPU time spend was accumulated when reoptimizing, while it should have been reset for each solve (by paul-scott) [r2702,r2703]
                                      • fixed sign in Jacobian finite-difference approximation when point was close to variable upper bounds (by Enrico Bertolazzi) [r2704]
                                      -

                                      +

                                      3.12.8 (2017-06-12)

                                      • add define for FORTRAN_INTEGER_TYPE to config_ipopt_default.h
                                      • IpoptApplication::RethrowNonIpoptException() now returns whether non-ipopt exceptions were rethrown before the method was called.
                                      -

                                      +

                                      3.12.7 (2017-02-25)

                                      • removed compiler flag -pedantic-errors to avoid problems with some configure tests when using recent GCC versions
                                      • fixed rare bug in handling variable/constraint names in AmplTNLP (by G. Hackebeil) [r2673]
                                      • the get.Mumps script in ThirdParty/Mumps now renames libseq/mpi.h to libseq/mumps_mpi.h to avoid conflicts when building in a MPI environment (by T. Ralphs); note that if updating an existing checkout/download of Ipopt, you may have to rerun get.Mumps
                                      -

                                      +

                                      3.12.6 (2016-07-20)

                                      • better support for custom algorithm development [r2659] (by Gabriel Hackebeil): "Reorganization of the AlgorithmBuilder class to allow easier customization of the Ipopt algorithm. In particular, we wanted to make use of the code that creates the SymLinearSolver object to implement our own SymLinearSolver without copy-pasting everything in AlgorithmBuilder. AlgorithmBuilder::BuildBasicAlgorithm now consists of 8 method calls that build the core components passed into the arguments of the IpoptAlgorithm class. These calls are ordered based on any dependencies they might have. In addition, all code for creating the PDSystemSolver, AugSystemSolver, and SymLinearSolver has been moved into separate factory methods. Also, included is a change to install a few more header files with Ipopt. Some of these are required to subclass AlgorithmBuilder, and the others are simply some matrix types that we require."
                                      • extend build system to work without Fortran compiler [r2660,r2661]: If no Fortran compiler is available (F77=unavailable), then the build system checks for functions in Blas, Lapack, and Pardiso via C linkage. This seems to work when using the Intel MKL, thus allowing to build Ipopt with C/C++ compilers and MKL only. The linear solver loader and the CuteR interface are disabled when no Fortran compiler is available. A user may have to adjust the definition of F77_FUNC in Ipopt/src/Common/IpoptConfig.h.
                                      -

                                      +

                                      3.12.5 (2016-04-30)

                                      • changed fptr from long to void*: the Fortran side needs to make sure that it uses a big enough integer type to store a C pointer, thus void* can be used on the C side [r2599]
                                      • added additional second-order-correction method, which can be selected by setting the new option soc_method to 1 (by Wei Wan) [r2606, r2607]
                                      • added parameter allow_clobber with default value false to IpoptApplication::Initialize() and OptionsList::ReadFromStream()
                                      -

                                      +

                                      3.12.4 (2015-08-09)

                                      • option to use regularized Hessian when doing a curvature test without inertia information (neg_curv_test_tol > 0), new option neg_curv_test_reg to switch back to original behavior (by N.-Y. Chiang and V. Zavala Tejeda) [r2579]
                                      • sIpopt: Added access to sensitivity directional derivative vector (ds/dp*(p-p0) Eq. 14 sIpopt implementation paper). Also, added an option to compute the sensitivity matrix and provide access to it. Finally, added an example that shows how to access the new information. (by R. Lopez-Negrete)
                                      • use workaround for failing check for random number generator with any gcc 4.8.x, x >= 2
                                      -

                                      +

                                      3.12.3 and 3.11.11 (2015-04-15)

                                      • fixed bug in MA97 interface that lead to conversion issues (by J. Hogg) [r2566, #260]
                                      -

                                      +

                                      3.12.2 (2015-04-04)

                                      • revised integration of doxygen-generated documentation into build system (by T. Ralphs)
                                      -

                                      +

                                      3.12.1 (2015-02-13)

                                      • fixes to build system for dependency linking and library versioning
                                      • Ipopt will now report an NLP with inconsistent variable bounds or inconsistent constraints sides as infeasible instead of throwing an invalid TNLP exception (by T. Kelman) [r2548]
                                      -

                                      +

                                      3.12.0 (2015-01-23)

                                      • Library dependencies are now recorded in shared library builds, which is intended to simplify linking against the Ipopt library. However, the pkg-config and ipopt_addlibs files do not reflect this change yet (it is rather experimental, imho). To restore the previous behavior, use --disable-dependency-linking as configure option.
                                      • @@ -608,15 +627,15 @@

                                      • updated ASL sources, now downloaded from AMPL-MP (github)
                                      • some internal changes to data structures (improved use of compound component spaces) and addition of IpLapackDppsv (by Gabe Hackebeil)
                                      -

                                      +

                                      3.11

                                      -

                                      +

                                      3.11.10 (2015-01-18)

                                      • fix a memory allocation in Java interface in cases where jint has a different size than int [r2513]
                                      • the buildsystem now tries the Accelerate framework instead of vecLib for finding Blas/Lapack on MacOS X
                                      -

                                      +

                                      3.11.9 (2014-08-16)

                                      • fix compilation issue of Java interface on systems where Index and jint have different size [r2498, #241]
                                      • @@ -627,7 +646,7 @@

                                      • speed up Triplet to CSR converter [r2487, #234]
                                      • fixed a bug in equilibration scaling where average values were computed incorrectly (by V. Zverovich) [r2483]
                                      -

                                      +

                                      3.11.8 (2014-04-08)

                                      • fixed a bug, introduced with Ipopt 3.11.0, where the tag in the Ipopt's caching mechanism was not unique over time, which lead to failures of Ipopt that were difficult to debug or recognize (e.g., Ipopt may have stopped with an restoration failure for instances that solved fine with Ipopt 3.10) [r2472, r2473] I'm very thankful to Gabriel Hackebeil and Kurt Majewski for their debugging effort on this issue.
                                      • @@ -637,7 +656,7 @@

                                      • for some messages about too-few-degrees-of-freedom and restoration failure, the message level changed from error to strong-warning [r2460, r2469]
                                      • revised calls to MPI_Init and MPI_Finalize in MUMPS interface [r2467] (MPI_Init is now called only if function MPI_Initialized is available and MPI has not been initialized already; MPI_Finalize is only called if Ipopt also called MPI_Init; ...)
                                      -

                                      +

                                      3.11.7 (2013-12-18)

                                      • adapted PARDISO parameters when using MKL PARDISO to be close to using Basel PARDISO
                                      • @@ -646,7 +665,7 @@

                                      • fixed bug in triplet to csr converter [#226, r2446]
                                      • minor changes in buildsystem
                                      -

                                      +

                                      3.11.6 (2013-11-16)

                                      • updates to Matlab Interface build system (by T. Kelman)
                                      • @@ -654,13 +673,13 @@

                                      • fixed SHAREDLIBEXT in v8-ifort's config.h [r2426, #224]
                                      • minor fixes to the buildsystem
                                      -

                                      +

                                      3.11.5 (2013-10-26)

                                      • added method IpoptApplication::RethrowNonIpoptException() to enable rethrowing of non-ipopt and non-bad_alloc exceptions catched in the *Optimize() and Initialization() methods; default is still to return with NonIpopt_Exception_Thrown status
                                      • minor fixes to the buildsystem [#215, #222]
                                      -

                                      +

                                      3.11.4 (2013-09-12)

                                      • hopefully fixed non-working linear solver loader in DLLs build with MSVS/v8-ifort project files [r2365]
                                      • @@ -687,19 +706,19 @@

                                      • minor bugfixes in AMPL interface, debug print statements, and compound matrix (by G. Hackebeil) [#218, r2371, r2377, r2378, r2379]
                                      • download scripts for ASL, Blas, and Lapack now first try to download tarball copies from the COIN-OR server
                                      -

                                      +

                                      3.11.3 (2013-08-08)

                                      • get.* scripts for ThirdParty/{ASL,Blas,Lapack} now work around broken ftp access to www.netlib.org.
                                      -

                                      +

                                      3.11.2 (2013-07-01)

                                      • changed default for option option_file_name to ipopt.opt; specifying an empty string for this option now disables reading of an option file [r2339]
                                      • missing initial values are now set to 0.0, projected onto variable bounds, in AMPL interface [r2340, #205]
                                      • fixed missing variable initialization in MA97 interface [r2341, #206]
                                      -

                                      +

                                      3.11.1 (2013-06-14)

                                      • the setup for the v8-ifort MSVS project changed to use dynamic runtime DLLs instead of static linking, which caused crashes in debug mode (by M. Roelofs) [r2301]
                                      • @@ -709,7 +728,7 @@

                                      • changed default for option ma27_meminc_factor from 10.0 to 2.0 [r2330]
                                      • fixed bug in ipopt_auxdata of MATLAB Interface related to iterfunc [r2325]
                                      -

                                      +

                                      3.11.0 (2013-05-07)

                                      Miscellaneous

                                        @@ -740,9 +759,9 @@

                                        Ipopt Interfaces

                                      • renamed API functions that retrieve solution values in JIpopt
                                      • simplified installation of R interface
                                      -

                                      +

                                      3.10

                                      -

                                      +

                                      3.10.4 (2013-05-05)

                                      • fixed sign of dual values in AMPL solution again (with help of Gabe) [r2169, r2170, r2184, #183]
                                      • @@ -754,7 +773,7 @@

                                      • fixed bug in returning final solution in Java interface [r2258]
                                      • included patch in ThirdParty/Mumps to work around bugs in Mumps matrix ordering routines AMF and QAMD (now give preference to AMD and METIS)
                                      -

                                      +

                                      3.10.3 (2012-11-19)

                                      • minor fixes in MA86 interface (by Jonathan Hogg) [r2069, r2086]
                                      • @@ -782,7 +801,7 @@

                                      • other minor fixes
                                      -

                                      +

                                      3.10.2 (2012-02-12)

                                      • updates to HSL interface (by Jonathan Hogg):
                                          @@ -796,7 +815,7 @@

                                        • updates to MSVS v8-ifort project files and addition of vc10 project files (using vc8-generated IpoptFSS.dll) (by Marcel Roelofs)
                                        • minor bugfixes, include updates in BuildTools
                                        -

                                        +

                                        3.10.1 (2011-09-20)

                                        • include updates in BuildTools, including new ThirdParty/Metis (fix for URL to download Metis 4.0.3 release)
                                        • @@ -805,46 +824,46 @@

                                        • added missing include of cstdio/stdio.h in IpJournalist.hpp
                                        • minor fixes to build system
                                        -

                                        +

                                        3.10.0 (2011-06-20)

                                        • move to new COIN-OR configuration and installation convention
                                        • primal infeasibility output is now true infeasibility in original problem formulation
                                        -

                                        +

                                        3.9

                                        -

                                        +

                                        3.9.3 (2011-04-07)

                                        • include updates in BuildTools, including new ThirdParty/Metis (required to work with current metis release)
                                        -

                                        +

                                        3.9.2 (2010-12-22)

                                        • converted from Common Public License to Eclipse Public License
                                        • some bugfixes from BuildTools
                                        -

                                        +

                                        3.9.1 (2010-11-26)

                                        • improved Hessian update for restoration phase
                                        • added intermediate callback feature to C and Fortran interface
                                        -

                                        +

                                        3.9.0 (2010-11-05)

                                        • switching to new BuildTools system
                                        • added R interface (contributed by Jelmer Ypma)
                                        • updates in AsNMPC (by Hans Pirnay)
                                        -

                                        +

                                        3.8

                                        -

                                        +

                                        3.8.3 (2010-06-29)

                                        • restated SolveStatistics::TotalCPUTime method for backward compatibility
                                        -

                                        +

                                        3.8.2 (2010-06-16)

                                        • uses MUMPS version 4.9 and Lapack version 3.2.1
                                        • @@ -852,21 +871,21 @@

                                        • enhanced MA57 options
                                        • several bug fixes and minor additions
                                        -

                                        +

                                        3.8.1 (2009-10-30)

                                        • Bugfix in NLP function evaluation timing measurement. The time for the objective function gradient had been forgotten.
                                        -

                                        +

                                        3.8.0 (2009-10-30)

                                        • Added MSVC solution with Intel Fortran compiler to generate DLLs (contributed by Marcel Roelofs). To make this work, a lot of methods in exported headers have been made virtual
                                        • changed default convergence tolerance in restoration phase (now same as regular tolerance)
                                        • output is flushed after each iteration
                                        -

                                        +

                                        3.7

                                        -

                                        +

                                        3.7.1 (2009-10-06)

                                        • bugfix for square problems
                                        • @@ -874,20 +893,20 @@

                                        • flush output buffer after each iteration
                                        • first code for iterative WSMP version (experimental and undocumented)
                                        -

                                        +

                                        3.7.0 (2009-07-16)

                                        • a number of fixes (including those from 2009 COIN-OR Bug Squashing Party)
                                        • changes in some exposed header files to provide access to internal data structures for specific applications
                                        -

                                        +

                                        3.6

                                        -

                                        +

                                        3.6.1 (2009-05-01)

                                        • minor corrections in tutorial files
                                        -

                                        +

                                        3.6.0 (2009-04-29)

                                        • new Matlab interface
                                        • @@ -896,25 +915,25 @@

                                        • updated CUTEr Makefile to make it work with CUTEr2
                                        • added files for a tutorial (including coding exercise)
                                        -

                                        +

                                        3.5

                                        -

                                        +

                                        3.5.5 (2009-01-13)

                                        • minor fixes regarding compilation
                                        • undocumented version of inexact method
                                        -

                                        +

                                        3.5.4 (2008-09-29)

                                        • changed to MUMPS version 4.8.3 in externals (Mumps developers seem to have removed 4.8.1).
                                        -

                                        +

                                        3.5.3 (2008-09-19)

                                        • changed back to MUMPS version 4.8.1 since there seem to be issues on Windows
                                        -

                                        +

                                        3.5.2 (2008-09-18)

                                        • changed to latest version of MUMPS (4.8.2)
                                        • @@ -922,12 +941,12 @@

                                        • made sure the subversion revision number is correct in all files
                                        • allowed general additional data and cq in IpData and IpCq
                                        -

                                        +

                                        3.5.1 (2008-08-26)

                                        • changed to latest version of MUMPS (4.8.1)
                                        -

                                        +

                                        3.5.0 (2008-08-25)

                                        • added ComputeRowAMax and ComputeColAMax methods to Matrix base class
                                        • @@ -936,16 +955,16 @@

                                        • added IpTNLPReducer as simple way to exclude constraints from problem
                                        • several fixes, also from COIN-OR Bug Squashing Party 2008
                                        -

                                        +

                                        3.4

                                        -

                                        +

                                        3.4.2 (2008-07-18)

                                        • some bug fixes
                                        • added wallclock time routine
                                        • penalty function version does no longer crash if it wants to go to restoration phase (not that this really helps convergence though)
                                        -

                                        +

                                        3.4.1 (2008-05-30)

                                        • some bug fixes
                                        • @@ -953,7 +972,7 @@

                                        • print Ipopt version in default print level
                                        • added option that allows to change name of options file (option_file_name)
                                        -

                                        +

                                        3.4.0 (2008-04-25)

                                        • added support to dynamically load HSL or Pardiso: If Ipopt has been compiled without some HSL or Pardiso solver, it can now load those solvers from a shared library at runtime without recompilation. This will make distribution of binaries easier. Does not work on all platforms yet.
                                        • @@ -964,9 +983,9 @@

                                        • added simple penalty function line search option (line_search_method=penalty) - not guaranteed to converge, see Ipopt implementation paper (in MathProg)
                                        • some very basic method to approximate constraint Jacobian by finite differences (not efficient, but will hopefully be extended)
                                        -

                                        +

                                        3.3

                                        -

                                        +

                                        3.3.5 (2008-02-28)

                                        • corrected links for Ipopt mailing list
                                        • @@ -975,7 +994,7 @@

                                        • updates in Matlab interface
                                        • bugfix for ticket #56
                                        -

                                        +

                                        3.3.4 (2007-12-27)

                                        • headers are now installed in include/coin (no longer in include/ipopt)
                                        • @@ -986,12 +1005,12 @@

                                        -

                                        +

                                        3.3.3 (2007-09-25)

                                        • minor changes, bug fixes
                                        -

                                        +

                                        3.3.1 (2007-06-20)

                                        Synchronized with all changes in trunk; probably more than to be remembered. In the following a few:

                                        • support for Mumps linear solver (contributed by Damian Hocking)
                                        • @@ -1002,38 +1021,38 @@

                                        • a number of small changes/bug fixes/improvements
                                        • small change in interface (e.g., FinalizeSolution method)
                                        -

                                        +

                                        3.2

                                        -

                                        +

                                        3.2.4 (2007-04-24)

                                        • updated download script for Blas to fit netlib's recent changes
                                        • using a more recent version of BuildTools
                                        -

                                        +

                                        3.2.3 (2006-11-29)

                                        • updated download script for Lapack to fit to netlib's recent changes
                                        -

                                        +

                                        3.2 r795 (2006-10-11)

                                        • Bugfix in L-BFGS update
                                        • fix in configure with detection of sizeof(int*) on Cygwin
                                        -

                                        +

                                        3.2.1 (2006-07-14) - dev release number 764

                                        • Bugfix in least square multiplier estimate. It mainly showed up in LBFGS with restoration phase as seg fault
                                        -

                                        +

                                        3.2.0 (2006-07-07) - dev release number 757

                                        • changed installation procedure and directory structure to conform with new COIN-OR convention
                                        -

                                        +

                                        3.1

                                        -

                                        +

                                        3.1.0 (2006-04-08) - dev release number 714

                                        Several bug-fixes, improvements and additions. In particular:

                                        • new quasi-Newton approximation using L-BFGS
                                        • @@ -1044,39 +1063,39 @@

                                        • ScalableExample
                                        • user call-back method in TNLP
                                        -

                                        +

                                        3.0

                                        -

                                        +

                                        3.0.1 (2005-12-04)

                                        • Several corrections to Windows files
                                        • Fix termination if number of iterations is exceeded in restoration phase
                                        -

                                        +

                                        3.0.0 (2005-08-26) - dev release number 510

                                        • First official release of the new C++ implementation of Ipopt.
                                        -

                                        +

                                        2.2

                                        -

                                        +

                                        no new release (2005-08-19)

                                        • corrected detection of BLAS libraries for SUN (make sure the example Makefiles work)
                                        • upgrade LICENSE file to CPL version 1.0 as retrieved from www.opensource.org
                                        -

                                        +

                                        2.2.1e (2005-05-30)

                                        • fixed sign of multipliers returned to AMPL (bug reported by Rhoda Baker and Karsten Theissen)
                                        • switched to automake 1.9.5
                                        -

                                        +

                                        no new release (2005-01-07)

                                        • bugfix for the limited memory BFGS in case of square problems (bug reported by Wanhe Zhang and Ned Nedialkov)
                                        -

                                        +

                                        2.2.1d (2004-10-05)

                                        • Added outlev as an option to the AMPL solver as a synonym for iprint
                                        • @@ -1087,29 +1106,29 @@

                                        • minor correction in computation of residual in get_step_full.F
                                        • minor change for slack correction in filter.F
                                        -

                                        +

                                        2.2.1c (2004-07-20)

                                        • corrected bug leading to very small QTAU in rare circumstances
                                        -

                                        +

                                        2.2.1b (2004-05-21)

                                        • Make DFILLINFACT option available through AMPL interface
                                        • Now, later increase of memory requirement for Harwell solvers is also based on DFILLINFACT, instead of using a fixed values of 10.
                                        -

                                        +

                                        2.2.1a (2004-05-13)

                                        • fix in IPOPT/ipopt/mainloop.F: The multipliers were not scaled back for low printlevel.
                                        -

                                        +

                                        no new release (2004-04-28)

                                        • fix in IPOPT/AMPL_interface/ipoptAMPL.c: Now the mulitpliers for the constraints are passed back to AMPL.
                                        • Added download scripts using wget to get ASL, BLAS, and LAPACK more easily. Thanks to Frank Wuebbeling for the hint.
                                        -

                                        +

                                        2.2.1 (2004-04-25)

                                        • AMPL solver executable is now called ipopt (instead of ipoptAMPL). This fixed also problem with assigning IPOPT options from within AMPL. (reported by Karsten Theissen)
                                        • @@ -1126,7 +1145,7 @@

                                        • #error preprocessor directive removed from *.F files, since not all compilers understand it (reported by Hans Mittelmann)
                                        • switch to automake 1.8.3
                                        -

                                        +

                                        2.2.0 (2004-03-10)

                                        Many things have changed since the last official release. Here a few highlights:

                                        • easier installation procedure with autoconf
                                        • diff --git a/namespaceIpopt.html b/namespaceIpopt.html index 66e0fae27..fadb9a577 100644 --- a/namespaceIpopt.html +++ b/namespaceIpopt.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    @@ -954,6 +954,12 @@
    IPOPTLIB_EXPORT Number WallclockTime ()
     method determining wallclock time since first call
     
    IPOPTLIB_EXPORT bool RegisterInterruptHandler (void(*handle_interrupt)(void), bool *interrupt_flag, unsigned int abortlimit=std::numeric_limits< unsigned int >::max())
     register handler for interrupt signals
     
    IPOPTLIB_EXPORT bool UnregisterInterruptHandler (void)
     unregister previously registered handler for interrupt signals
     
    IPOPTLIB_EXPORT bool Compare_le (Number lhs, Number rhs, Number BasVal)
     Method for comparing two numbers within machine precision.
     
    + + + + + + + + + + + + + + + + + + + + + + + +
    IPOPTLIB_EXPORT bool Ipopt::RegisterInterruptHandler (void(*)(voidhandle_interrupt,
    boolinterrupt_flag,
    unsigned int abortlimit = std::numeric_limits< unsigned int >::max() 
    )
    +
    + +

    register handler for interrupt signals

    +

    On systems with sigaction(), catches SIGHUP and SIGINT signals. Otherwise, catches SIGTERM, SIGABRT, SIGINT signals via signal().

    +
    Returns
    whether registering the handler was successful
    +
    Since
    3.14.17
    +
    Parameters
    + + + + +
    handle_interruptfunction to call when interrupted by signal, if not NULL
    interrupt_flagvariable to set to true when interrupted by signal, if not NULL
    abortlimitif interrupt signal has been send this many times, then exit(1)
    +
    +
    + +
    + + +

    ◆ UnregisterInterruptHandler()

    + +
    +
    + + + + + + + + +
    IPOPTLIB_EXPORT bool Ipopt::UnregisterInterruptHandler (void )
    +
    + +

    unregister previously registered handler for interrupt signals

    +
    Returns
    whether unregistering the handler was successful
    +
    Since
    3.14.17
    +
    @@ -2840,7 +2915,7 @@

    Definition at line 136 of file IpUtils.hpp.

    +

    Definition at line 157 of file IpUtils.hpp.

    diff --git a/namespaceorg_1_1coinor.html b/namespaceorg_1_1coinor.html index 3a28aec35..ae779a7c1 100644 --- a/namespaceorg_1_1coinor.html +++ b/namespaceorg_1_1coinor.html @@ -39,7 +39,7 @@

    Ipopt Documentation -   +  
    diff --git a/navtreedata.js b/navtreedata.js index 6684f985b..c29a0f2a5 100644 --- a/navtreedata.js +++ b/navtreedata.js @@ -62,32 +62,32 @@ var NAVTREEINDEX = "AUTHORS.html", "IpIterateInitializer_8hpp_source.html", "IpRestoIterationOutput_8hpp_source.html", -"SensBuilder_8hpp.html#ad00d34c37128c8a05abc0561539594e4", -"classIpopt_1_1AmplTNLP.html#a725d09f0beca55ea55a06df68f38d72a", -"classIpopt_1_1CGPenaltyData.html#aeab7fb727196b03c685a8f05bf100902", -"classIpopt_1_1CompoundVector.html#a4480fd34f0fe32a767a9e07acb638326", -"classIpopt_1_1DependentResult.html#a1d82971435f77d9285ab25dbd379b7d4", -"classIpopt_1_1GenTMatrix.html", -"classIpopt_1_1InexactLSAcceptor.html#afa1e003c47576619e0ad9750bf38095b", -"classIpopt_1_1IpoptCalculatedQuantities.html#a191032c5bd17983a7d455c1e373304a0", -"classIpopt_1_1IpoptData.html#a38addd6fa9b5e1e58889e4f593e09b2d", -"classIpopt_1_1IterativePardisoSolverInterface.html#a31c708e97d4a99bedd301ee6af3556ce", -"classIpopt_1_1LineSearch.html#abe044f75d7c5d0ad79a58ddc3b4aab23", -"classIpopt_1_1Ma77SolverInterface.html#a869edcf34c12f5aba10d85ec3653bfd3", -"classIpopt_1_1MultiVectorMatrix.html#a2b28a9b36727a342ee511398ab1e77c6", -"classIpopt_1_1OptionsList_1_1OptionValue.html#aa0e21412e6f16fbd86aaf57fdc4d782d", -"classIpopt_1_1PardisoMKLSolverInterface.html#a62cacfc1d6ec5e5bafb898fba1f15da2", -"classIpopt_1_1RegisteredCategory.html#a5e2c6c3dc25df89df5da757b9bec08bc", -"classIpopt_1_1RestoIpoptNLP.html#af8ee93df879e5132e96d22e1f2f11320", -"classIpopt_1_1SensitivityStepCalculator.html#a84c70b13797c52c880810cec45cc8c60", -"classIpopt_1_1StdInterfaceTNLP.html#a97b7dab46ae67c2243c068a05cf82c37", -"classIpopt_1_1TNLP.html#ac60badc0020972128377e91cdcb4cc81", -"classIpopt_1_1TimedTask.html#a617053eeb03fa0b3bc4fb3bcddd90de3", -"classIpopt_1_1Vector.html#a7eca857fcb121e47614c8a1b51dd64c3", -"configall__system__msc_8h.html#a19eb22f1c6a556cd6686176706e3cba6", -"hsl__ma86d_8h.html#a5ba56037462c612c0419f4d82f8b9893", -"structma77__control__d.html#a4e4133ceef6c3b6369210171f7998fcb", -"structma97__info__s.html#a36b696fdad1ca7d805f759a98587bdcc" +"SensBacksolver_8hpp_source.html", +"classIpopt_1_1AmplTNLP.html#a60ea8db9be8ce3baa1b7086a023ab633", +"classIpopt_1_1CGPenaltyData.html#ac5e7498173de1c11129713647d80cdae", +"classIpopt_1_1CompoundVector.html#a308940d62e1c1cdc134db818653f85eb", +"classIpopt_1_1DenseVectorSpace.html#afa53587dc9ff038a4e14854a177be0c8", +"classIpopt_1_1GenKKTSolverInterface.html#a4e40b8f8046b588ef3f9c703dd0a35f9", +"classIpopt_1_1InexactLSAcceptor.html#aedc2a4b7b5d5dad97bb8ed35f41543d6", +"classIpopt_1_1IpoptCalculatedQuantities.html#a12e8c3d6081b1426571e204b6eb4d470", +"classIpopt_1_1IpoptData.html#a3462359ddf744a5809d1a9874d544f8d", +"classIpopt_1_1IterativePardisoSolverInterface.html#a27685621a270630688936e6ef0449314", +"classIpopt_1_1LimMemQuasiNewtonUpdater.html#af91acff1d8121c05414463d5ff29c5a3", +"classIpopt_1_1Ma77SolverInterface.html#a66d7f32db006941665c3397e0117e985", +"classIpopt_1_1MuUpdate.html#a69cd4d61fc02814e9937cbcfdbc76270", +"classIpopt_1_1OptionsList_1_1OptionValue.html#a41407ff0e47bd075412362253ec2b891", +"classIpopt_1_1PardisoMKLSolverInterface.html#a2d50e1af4dc32841b66311d04fcc0b9d", +"classIpopt_1_1ReferencedObject.html#ae6c952e7d1a63080dc8f121c008944fc", +"classIpopt_1_1RestoIpoptNLP.html#aed993a986ed743fc27fdfce127b01db7", +"classIpopt_1_1SensBuilder.html#af3a62e5c1b130474548fb599b788f997", +"classIpopt_1_1StdInterfaceTNLP.html#a5c79fda73fd0a7e477bd8b82f35516c5", +"classIpopt_1_1TNLP.html#aa6851ab40f3fa6b806ded1c092fc0831", +"classIpopt_1_1TimedTask.html#a1705ebc5c717de0b13880073d7f676b6", +"classIpopt_1_1Vector.html#a5b67ba3138e116ada4d45ae1062d3e0e", +"configall__system_8h.html", +"hsl__ma86d_8h.html#a090299974faec773ac5152e019b4232d", +"structma77__control__d.html#a2c43f695ececa899ada1e70b1e5977d2", +"structma97__info__s.html" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/navtreeindex10.js b/navtreeindex10.js index 340ec5189..ea10b3746 100644 --- a/navtreeindex10.js +++ b/navtreeindex10.js @@ -1,5 +1,10 @@ var NAVTREEINDEX10 = { +"classIpopt_1_1IpoptCalculatedQuantities.html#a12e8c3d6081b1426571e204b6eb4d470":[1,0,0,71,129], +"classIpopt_1_1IpoptCalculatedQuantities.html#a158c34cad7ba65681e9722dca6907e4e":[1,0,0,71,123], +"classIpopt_1_1IpoptCalculatedQuantities.html#a1628eccfc53c0411519a36afedef7c92":[1,0,0,71,2], +"classIpopt_1_1IpoptCalculatedQuantities.html#a1640157e330bdcd41c10e175f1efd67a":[1,0,0,71,142], +"classIpopt_1_1IpoptCalculatedQuantities.html#a18225e7708add8705943f20fccc68939":[1,0,0,71,41], "classIpopt_1_1IpoptCalculatedQuantities.html#a191032c5bd17983a7d455c1e373304a0":[1,0,0,71,147], "classIpopt_1_1IpoptCalculatedQuantities.html#a19ece31b15c6f4df41e81bcef714f464":[1,0,0,71,227], "classIpopt_1_1IpoptCalculatedQuantities.html#a1a96247afeb8a8189fe5ea4f00ca05af":[1,0,0,71,95], @@ -223,31 +228,26 @@ var NAVTREEINDEX10 = "classIpopt_1_1IpoptCalculatedQuantities.html#afe9fd17bfc46b552c4dc7188d3050416":[1,0,0,71,73], "classIpopt_1_1IpoptCalculatedQuantities.html#aff56a0ca444d41d9330d314bb49d681f":[1,0,0,71,16], "classIpopt_1_1IpoptData.html":[1,0,0,72], -"classIpopt_1_1IpoptData.html#a017c5c0f6ed6f6f3e733b4ab6deba7a0":[1,0,0,72,95], -"classIpopt_1_1IpoptData.html#a0220a27582f7fbdfe27c7a051bbfa00e":[1,0,0,72,98], +"classIpopt_1_1IpoptData.html#a017c5c0f6ed6f6f3e733b4ab6deba7a0":[1,0,0,72,96], +"classIpopt_1_1IpoptData.html#a0220a27582f7fbdfe27c7a051bbfa00e":[1,0,0,72,99], "classIpopt_1_1IpoptData.html#a03226ae8e014d6f5761352ccbae40fc2":[1,0,0,72,41], -"classIpopt_1_1IpoptData.html#a050ad4e4937d178137176e0dfb5286f1":[1,0,0,72,79], -"classIpopt_1_1IpoptData.html#a0604067e11504ff7af3568e6bea2996b":[1,0,0,72,89], -"classIpopt_1_1IpoptData.html#a095e6b370c97d87de8b230c10f4674ca":[1,0,0,72,67], -"classIpopt_1_1IpoptData.html#a0c0d13009f52550be24d2d9f2a30929f":[1,0,0,72,61], +"classIpopt_1_1IpoptData.html#a050ad4e4937d178137176e0dfb5286f1":[1,0,0,72,80], +"classIpopt_1_1IpoptData.html#a0604067e11504ff7af3568e6bea2996b":[1,0,0,72,90], +"classIpopt_1_1IpoptData.html#a095e6b370c97d87de8b230c10f4674ca":[1,0,0,72,68], +"classIpopt_1_1IpoptData.html#a0c0d13009f52550be24d2d9f2a30929f":[1,0,0,72,62], "classIpopt_1_1IpoptData.html#a1490936f4d770bb1598f839e507ceb3c":[1,0,0,72,39], -"classIpopt_1_1IpoptData.html#a172cf637957eafd79d327ddffb2b648d":[1,0,0,72,91], -"classIpopt_1_1IpoptData.html#a181e51143d000979375e26847dd5b1ea":[1,0,0,72,51], +"classIpopt_1_1IpoptData.html#a172cf637957eafd79d327ddffb2b648d":[1,0,0,72,92], +"classIpopt_1_1IpoptData.html#a181e51143d000979375e26847dd5b1ea":[1,0,0,72,52], "classIpopt_1_1IpoptData.html#a190e2c481cfd8247fe1d43d2fb41c988":[1,0,0,72,15], "classIpopt_1_1IpoptData.html#a1ad629fbc0f5fa6e76b49b310831241c":[1,0,0,72,50], -"classIpopt_1_1IpoptData.html#a1b90d0d95e20e4d8f831d57d1004ffbb":[1,0,0,72,64], -"classIpopt_1_1IpoptData.html#a1bd24180a85ce772bbe19ed5d26b57eb":[1,0,0,72,83], -"classIpopt_1_1IpoptData.html#a216440e15c9d7e5a30bf4e92d772d0d2":[1,0,0,72,54], +"classIpopt_1_1IpoptData.html#a1b90d0d95e20e4d8f831d57d1004ffbb":[1,0,0,72,65], +"classIpopt_1_1IpoptData.html#a1bd24180a85ce772bbe19ed5d26b57eb":[1,0,0,72,84], +"classIpopt_1_1IpoptData.html#a216440e15c9d7e5a30bf4e92d772d0d2":[1,0,0,72,55], "classIpopt_1_1IpoptData.html#a23ebaf0255e9bc8a391474cdc1f24124":[1,0,0,72,16], "classIpopt_1_1IpoptData.html#a2748523a530161b8b3e8a7e336b26cbb":[1,0,0,72,35], "classIpopt_1_1IpoptData.html#a2ccb9a1d283b02c9cca7d8779cc26793":[1,0,0,72,40], "classIpopt_1_1IpoptData.html#a2d7cb4645cbddb36a808c82835bad631":[1,0,0,72,17], -"classIpopt_1_1IpoptData.html#a2ea29720269fdcc1bb31a66a4388c784":[1,0,0,72,69], -"classIpopt_1_1IpoptData.html#a32b794d88d8a8175733adb27b6b68f62":[1,0,0,72,73], -"classIpopt_1_1IpoptData.html#a33aa652b5f448bc004a58cddeff4a91f":[1,0,0,72,56], -"classIpopt_1_1IpoptData.html#a3462359ddf744a5809d1a9874d544f8d":[1,0,0,72,72], -"classIpopt_1_1IpoptData.html#a34cf8a2de5f1b46345fa9c31e53e1e9e":[1,0,0,72,80], -"classIpopt_1_1IpoptData.html#a3510ef3d1e617e26178d56910d4a02dd":[1,0,0,72,47], -"classIpopt_1_1IpoptData.html#a3516ca4b15482d9598d6e016774dd3e8":[1,0,0,72,9], -"classIpopt_1_1IpoptData.html#a38321d2eb62b5f850ba697fcb77e946c":[1,0,0,72,19] +"classIpopt_1_1IpoptData.html#a2ea29720269fdcc1bb31a66a4388c784":[1,0,0,72,70], +"classIpopt_1_1IpoptData.html#a32b794d88d8a8175733adb27b6b68f62":[1,0,0,72,74], +"classIpopt_1_1IpoptData.html#a33aa652b5f448bc004a58cddeff4a91f":[1,0,0,72,57] }; diff --git a/navtreeindex11.js b/navtreeindex11.js index 94e3a9cc9..851c804a0 100644 --- a/navtreeindex11.js +++ b/navtreeindex11.js @@ -1,22 +1,28 @@ var NAVTREEINDEX11 = { +"classIpopt_1_1IpoptData.html#a3462359ddf744a5809d1a9874d544f8d":[1,0,0,72,73], +"classIpopt_1_1IpoptData.html#a34cf8a2de5f1b46345fa9c31e53e1e9e":[1,0,0,72,81], +"classIpopt_1_1IpoptData.html#a3510ef3d1e617e26178d56910d4a02dd":[1,0,0,72,47], +"classIpopt_1_1IpoptData.html#a3516ca4b15482d9598d6e016774dd3e8":[1,0,0,72,9], +"classIpopt_1_1IpoptData.html#a38321d2eb62b5f850ba697fcb77e946c":[1,0,0,72,19], "classIpopt_1_1IpoptData.html#a38addd6fa9b5e1e58889e4f593e09b2d":[1,0,0,72,29], -"classIpopt_1_1IpoptData.html#a3c2b8b2cd98e4c844157633a557f2bc9":[1,0,0,72,93], -"classIpopt_1_1IpoptData.html#a3f7951dfa1ee4f7477b38c448b9e8723":[1,0,0,72,59], +"classIpopt_1_1IpoptData.html#a3c2b8b2cd98e4c844157633a557f2bc9":[1,0,0,72,94], +"classIpopt_1_1IpoptData.html#a3f7951dfa1ee4f7477b38c448b9e8723":[1,0,0,72,60], "classIpopt_1_1IpoptData.html#a40b0f5595f094defb59860065e191b50":[1,0,0,72,18], -"classIpopt_1_1IpoptData.html#a43deeb7eb0186bb6d09aaa4804d2a260":[1,0,0,72,88], +"classIpopt_1_1IpoptData.html#a43deeb7eb0186bb6d09aaa4804d2a260":[1,0,0,72,89], +"classIpopt_1_1IpoptData.html#a480f5eb58d6048f6a9a2ce22e4d5790c":[1,0,0,72,51], "classIpopt_1_1IpoptData.html#a4e681c9b6c592829328da87ace45edc4":[1,0,0,72,11], "classIpopt_1_1IpoptData.html#a503123ed8338d530069f68d87bbd6b9f":[1,0,0,72,48], -"classIpopt_1_1IpoptData.html#a54fc7e29cf181623469c2b3e2c9a4143":[1,0,0,72,96], -"classIpopt_1_1IpoptData.html#a59fadeee0a367955bb146e066ee480c9":[1,0,0,72,74], -"classIpopt_1_1IpoptData.html#a5b815f4715fcfee5b3b2f67d4e290487":[1,0,0,72,68], -"classIpopt_1_1IpoptData.html#a5bcb215bd8125f44308f48b441dd372f":[1,0,0,72,62], +"classIpopt_1_1IpoptData.html#a54fc7e29cf181623469c2b3e2c9a4143":[1,0,0,72,97], +"classIpopt_1_1IpoptData.html#a59fadeee0a367955bb146e066ee480c9":[1,0,0,72,75], +"classIpopt_1_1IpoptData.html#a5b815f4715fcfee5b3b2f67d4e290487":[1,0,0,72,69], +"classIpopt_1_1IpoptData.html#a5bcb215bd8125f44308f48b441dd372f":[1,0,0,72,63], "classIpopt_1_1IpoptData.html#a5c0edf59954aecd3458a9dbe53eeac13":[1,0,0,72,8], "classIpopt_1_1IpoptData.html#a5e23bd9a08df9b20b2150709e72cc9eb":[1,0,0,72,23], -"classIpopt_1_1IpoptData.html#a5e32746b6c910c0fc7a9b46a3be7df77":[1,0,0,72,86], +"classIpopt_1_1IpoptData.html#a5e32746b6c910c0fc7a9b46a3be7df77":[1,0,0,72,87], "classIpopt_1_1IpoptData.html#a6582d9d24679b1180ece3a72c0ce1d84":[1,0,0,72,22], "classIpopt_1_1IpoptData.html#a679ac74efd5c5c1cd34f881c01d8e211":[1,0,0,72,44], -"classIpopt_1_1IpoptData.html#a70d58216ba3be4929aa1eae264307b79":[1,0,0,72,99], +"classIpopt_1_1IpoptData.html#a70d58216ba3be4929aa1eae264307b79":[1,0,0,72,100], "classIpopt_1_1IpoptData.html#a77721d81d04ad83713f9795dfbfdc245":[1,0,0,72,45], "classIpopt_1_1IpoptData.html#a7783c9076f9e6057786e6658165a4f76":[1,0,0,72,2], "classIpopt_1_1IpoptData.html#a7b6d087566e2eea60032c6132ae9a7fd":[1,0,0,72,34], @@ -24,56 +30,56 @@ var NAVTREEINDEX11 = "classIpopt_1_1IpoptData.html#a7ea3aeb9b62b340f7671d61b88a9b056":[1,0,0,72,5], "classIpopt_1_1IpoptData.html#a7f41f0374a4cf537ff1feb469fef57c8":[1,0,0,72,46], "classIpopt_1_1IpoptData.html#a871c8c866f25e7b0421822b194ef7488":[1,0,0,72,13], -"classIpopt_1_1IpoptData.html#a885f82e4eed0d97b5f0e99a862a4bc42":[1,0,0,72,58], +"classIpopt_1_1IpoptData.html#a885f82e4eed0d97b5f0e99a862a4bc42":[1,0,0,72,59], "classIpopt_1_1IpoptData.html#a88db225a3a567441b984000f927b6908":[1,0,0,72,10], "classIpopt_1_1IpoptData.html#a898d58d65953b0c7bffee98acc73aefd":[1,0,0,72,25], -"classIpopt_1_1IpoptData.html#a935519be0f344a3fa607e7741d7bf166":[1,0,0,72,78], +"classIpopt_1_1IpoptData.html#a935519be0f344a3fa607e7741d7bf166":[1,0,0,72,79], "classIpopt_1_1IpoptData.html#a936a56799879aa44265cb8d9dcf79c6e":[1,0,0,72,6], "classIpopt_1_1IpoptData.html#a95c8d51abedcb3f6b6894d8c71d0483b":[1,0,0,72,20], -"classIpopt_1_1IpoptData.html#a9695cdda479109dd24c041cbfe4a248f":[1,0,0,72,55], -"classIpopt_1_1IpoptData.html#a99dd9a94172834cc0764179362d315e5":[1,0,0,72,84], -"classIpopt_1_1IpoptData.html#a9c1abeb297b312199a03445d5f1a917d":[1,0,0,72,57], -"classIpopt_1_1IpoptData.html#a9ca143d0ba9a1023a613cae517a1513d":[1,0,0,72,94], +"classIpopt_1_1IpoptData.html#a9695cdda479109dd24c041cbfe4a248f":[1,0,0,72,56], +"classIpopt_1_1IpoptData.html#a99dd9a94172834cc0764179362d315e5":[1,0,0,72,85], +"classIpopt_1_1IpoptData.html#a9c1abeb297b312199a03445d5f1a917d":[1,0,0,72,58], +"classIpopt_1_1IpoptData.html#a9ca143d0ba9a1023a613cae517a1513d":[1,0,0,72,95], "classIpopt_1_1IpoptData.html#a9ff4f5d7a04f1f2a78e70c8ce0437d1f":[1,0,0,72,30], "classIpopt_1_1IpoptData.html#aa4b2090877fc8d0bdb98b670813754ef":[1,0,0,72,49], -"classIpopt_1_1IpoptData.html#aa4c9c3196b2a62f95aed8cce6a55557c":[1,0,0,72,82], -"classIpopt_1_1IpoptData.html#aa5fb035f34a5412776d2ce410a27cb80":[1,0,0,72,76], -"classIpopt_1_1IpoptData.html#aa6e4197957a3f1304c988f926ea07bc5":[1,0,0,72,52], +"classIpopt_1_1IpoptData.html#aa4c9c3196b2a62f95aed8cce6a55557c":[1,0,0,72,83], +"classIpopt_1_1IpoptData.html#aa5fb035f34a5412776d2ce410a27cb80":[1,0,0,72,77], +"classIpopt_1_1IpoptData.html#aa6e4197957a3f1304c988f926ea07bc5":[1,0,0,72,53], "classIpopt_1_1IpoptData.html#aa83f50828576bb3f483d90ea2b5579fe":[1,0,0,72,36], "classIpopt_1_1IpoptData.html#aa8f946e28b199171fce6fa59572dc7e8":[1,0,0,72,33], -"classIpopt_1_1IpoptData.html#aa9e8de8eac095144a6cb8fc6a7945136":[1,0,0,72,87], -"classIpopt_1_1IpoptData.html#aaa0579cce60abe55576d6d1d14f95027":[1,0,0,72,81], +"classIpopt_1_1IpoptData.html#aa9e8de8eac095144a6cb8fc6a7945136":[1,0,0,72,88], +"classIpopt_1_1IpoptData.html#aaa0579cce60abe55576d6d1d14f95027":[1,0,0,72,82], "classIpopt_1_1IpoptData.html#aaecad66ba8c29b4da56f41d0e77a851e":[1,0,0,72,37], -"classIpopt_1_1IpoptData.html#ab33ff1f2b24304938bf6564eeff21ece":[1,0,0,72,90], +"classIpopt_1_1IpoptData.html#ab33ff1f2b24304938bf6564eeff21ece":[1,0,0,72,91], "classIpopt_1_1IpoptData.html#ab41b4f875b98c4e09a8b85e9fd7b700b":[1,0,0,72,32], -"classIpopt_1_1IpoptData.html#ab597ccfaab6bb0171d5c65196f804ded":[1,0,0,72,66], +"classIpopt_1_1IpoptData.html#ab597ccfaab6bb0171d5c65196f804ded":[1,0,0,72,67], "classIpopt_1_1IpoptData.html#ab73f3c309f066a25ab858507b46475c5":[1,0,0,72,38], "classIpopt_1_1IpoptData.html#abe5c89932e89ab0a1ff589b6f57211bc":[1,0,0,72,1], "classIpopt_1_1IpoptData.html#aca3bd1ad4d743ed17c30f0f0ed6b7409":[1,0,0,72,3], -"classIpopt_1_1IpoptData.html#accae38685c819ab50331cbfd1eddc4f7":[1,0,0,72,77], +"classIpopt_1_1IpoptData.html#accae38685c819ab50331cbfd1eddc4f7":[1,0,0,72,78], "classIpopt_1_1IpoptData.html#acdcbc3add4e82176c9aed3b00ad33073":[1,0,0,72,43], -"classIpopt_1_1IpoptData.html#ace0cbacf95912faa19de78561ecb1e85":[1,0,0,72,71], +"classIpopt_1_1IpoptData.html#ace0cbacf95912faa19de78561ecb1e85":[1,0,0,72,72], "classIpopt_1_1IpoptData.html#ace0e9d3a603d7ac968ee8ac23c742dc0":[1,0,0,72,4], -"classIpopt_1_1IpoptData.html#ad16eb2f82f9e96558f6843b538b1f0a8":[1,0,0,72,92], -"classIpopt_1_1IpoptData.html#ad3e359f7fde09fe372950003debd09c0":[1,0,0,72,75], -"classIpopt_1_1IpoptData.html#ad41f4ee79658564a4d7291f92ef49c6b":[1,0,0,72,53], +"classIpopt_1_1IpoptData.html#ad16eb2f82f9e96558f6843b538b1f0a8":[1,0,0,72,93], +"classIpopt_1_1IpoptData.html#ad3e359f7fde09fe372950003debd09c0":[1,0,0,72,76], +"classIpopt_1_1IpoptData.html#ad41f4ee79658564a4d7291f92ef49c6b":[1,0,0,72,54], "classIpopt_1_1IpoptData.html#ad7d03c4db30d81975b4ca183cf93caf0":[1,0,0,72,12], "classIpopt_1_1IpoptData.html#ad83f966070811d55a0c5887df1a854bb":[1,0,0,72,26], -"classIpopt_1_1IpoptData.html#ad9d7439472a111b2943f934d86b54deb":[1,0,0,72,70], +"classIpopt_1_1IpoptData.html#ad9d7439472a111b2943f934d86b54deb":[1,0,0,72,71], "classIpopt_1_1IpoptData.html#ada1c79e9529b534a5aa92d4893200e3b":[1,0,0,72,0], "classIpopt_1_1IpoptData.html#adb305f46b77db7a9a78ea192b6473cb0":[1,0,0,72,27], "classIpopt_1_1IpoptData.html#ae3ceeefac0ac313c0124efa2fd2926e0":[1,0,0,72,28], "classIpopt_1_1IpoptData.html#ae5af67958a8bc69b3580ad5aa44a9182":[1,0,0,72,21], "classIpopt_1_1IpoptData.html#aea2862251c9b295a39ee3120ae262dde":[1,0,0,72,42], -"classIpopt_1_1IpoptData.html#aea70d72995b818fb0f3b94a96f0db531":[1,0,0,72,60], -"classIpopt_1_1IpoptData.html#aed447fe747b69442c953cbc586eb0f74":[1,0,0,72,97], +"classIpopt_1_1IpoptData.html#aea70d72995b818fb0f3b94a96f0db531":[1,0,0,72,61], +"classIpopt_1_1IpoptData.html#aed447fe747b69442c953cbc586eb0f74":[1,0,0,72,98], "classIpopt_1_1IpoptData.html#aed8c2985a60a9a2d49761441c68b2b4d":[1,0,0,72,7], -"classIpopt_1_1IpoptData.html#aee3d699d4f633bb6d5ea6a67d7061bde":[1,0,0,72,65], +"classIpopt_1_1IpoptData.html#aee3d699d4f633bb6d5ea6a67d7061bde":[1,0,0,72,66], "classIpopt_1_1IpoptData.html#af69017a1d4138aaed8abf93a08225755":[1,0,0,72,31], "classIpopt_1_1IpoptData.html#af7d5d0e59e949244cebe85786de398e8":[1,0,0,72,14], -"classIpopt_1_1IpoptData.html#afa3de32d56b185135d228f48302a3db0":[1,0,0,72,85], -"classIpopt_1_1IpoptData.html#afdf738c0b7cf2bba1e4584ed850f200f":[1,0,0,72,63], -"classIpopt_1_1IpoptData.html#afee7def0d41817ecc918045ce339199d":[1,0,0,72,100], +"classIpopt_1_1IpoptData.html#afa3de32d56b185135d228f48302a3db0":[1,0,0,72,86], +"classIpopt_1_1IpoptData.html#afdf738c0b7cf2bba1e4584ed850f200f":[1,0,0,72,64], +"classIpopt_1_1IpoptData.html#afee7def0d41817ecc918045ce339199d":[1,0,0,72,101], "classIpopt_1_1IpoptException.html":[1,0,0,73], "classIpopt_1_1IpoptException.html#a0ddf344ee3efe49405923a61352e6e58":[1,0,0,73,0], "classIpopt_1_1IpoptException.html#a299ed01d621b8a084cb709b7a18f5f18":[1,0,0,73,2], @@ -243,11 +249,5 @@ var NAVTREEINDEX11 = "classIpopt_1_1IterativePardisoSolverInterface.html#a12a17e57933b03bc1a6757b7c05c4198":[1,0,0,79,23], "classIpopt_1_1IterativePardisoSolverInterface.html#a1646042f9217546da3f50c95d1f1032f":[1,0,0,79,13], "classIpopt_1_1IterativePardisoSolverInterface.html#a166e9c5fba8a983c2cb0bce1bafc1635":[1,0,0,79,41], -"classIpopt_1_1IterativePardisoSolverInterface.html#a1cb17555632ca6c3e209787cc22addcc":[1,0,0,79,47], -"classIpopt_1_1IterativePardisoSolverInterface.html#a27685621a270630688936e6ef0449314":[1,0,0,79,17], -"classIpopt_1_1IterativePardisoSolverInterface.html#a288a75b224126d03ffb13e7fd0a1bfb5":[1,0,0,79,12], -"classIpopt_1_1IterativePardisoSolverInterface.html#a29736e1849f856ca27d3add183e200db":[1,0,0,79,52], -"classIpopt_1_1IterativePardisoSolverInterface.html#a2a9055b3fbb97b1700399f5df75b09f7":[1,0,0,79,25], -"classIpopt_1_1IterativePardisoSolverInterface.html#a2be6b2dadbc144d968f41f8a1234ab6e":[1,0,0,79,55], -"classIpopt_1_1IterativePardisoSolverInterface.html#a30265dd3230c0ba98f29e98bd713faec":[1,0,0,79,4] +"classIpopt_1_1IterativePardisoSolverInterface.html#a1cb17555632ca6c3e209787cc22addcc":[1,0,0,79,47] }; diff --git a/navtreeindex12.js b/navtreeindex12.js index c3802679b..1b95cdf94 100644 --- a/navtreeindex12.js +++ b/navtreeindex12.js @@ -1,5 +1,11 @@ var NAVTREEINDEX12 = { +"classIpopt_1_1IterativePardisoSolverInterface.html#a27685621a270630688936e6ef0449314":[1,0,0,79,17], +"classIpopt_1_1IterativePardisoSolverInterface.html#a288a75b224126d03ffb13e7fd0a1bfb5":[1,0,0,79,12], +"classIpopt_1_1IterativePardisoSolverInterface.html#a29736e1849f856ca27d3add183e200db":[1,0,0,79,52], +"classIpopt_1_1IterativePardisoSolverInterface.html#a2a9055b3fbb97b1700399f5df75b09f7":[1,0,0,79,25], +"classIpopt_1_1IterativePardisoSolverInterface.html#a2be6b2dadbc144d968f41f8a1234ab6e":[1,0,0,79,55], +"classIpopt_1_1IterativePardisoSolverInterface.html#a30265dd3230c0ba98f29e98bd713faec":[1,0,0,79,4], "classIpopt_1_1IterativePardisoSolverInterface.html#a31c708e97d4a99bedd301ee6af3556ce":[1,0,0,79,33], "classIpopt_1_1IterativePardisoSolverInterface.html#a337f02ca73e31428933ac65216452e13":[1,0,0,79,3], "classIpopt_1_1IterativePardisoSolverInterface.html#a3f6a1426da6abfafe1b8fa2246d06784":[1,0,0,79,18], @@ -243,11 +249,5 @@ var NAVTREEINDEX12 = "classIpopt_1_1LimMemQuasiNewtonUpdater.html#aea28b939b4b61b5abd237fe996610d09":[1,0,0,86,55], "classIpopt_1_1LimMemQuasiNewtonUpdater.html#aef0116647ec48e237647d97ab4652d5b":[1,0,0,86,38], "classIpopt_1_1LimMemQuasiNewtonUpdater.html#af68441d4e1f531996c893ef537aefdd2":[1,0,0,86,62], -"classIpopt_1_1LimMemQuasiNewtonUpdater.html#af787d841edfa76c8c1165f11dca07bce":[1,0,0,86,50], -"classIpopt_1_1LimMemQuasiNewtonUpdater.html#af91acff1d8121c05414463d5ff29c5a3":[1,0,0,86,39], -"classIpopt_1_1LimMemQuasiNewtonUpdater.html#afc1b44ee463310533e3412c274d134ed":[1,0,0,86,70], -"classIpopt_1_1LineSearch.html":[1,0,0,87], -"classIpopt_1_1LineSearch.html#a129fe1f77e892e9baf6a1565280afa48":[1,0,0,87,6], -"classIpopt_1_1LineSearch.html#a1be123a0287499a6dac6a9aec4d45cbf":[1,0,0,87,2], -"classIpopt_1_1LineSearch.html#a6b2653f6e6a17c3d909b2868c772d752":[1,0,0,87,7] +"classIpopt_1_1LimMemQuasiNewtonUpdater.html#af787d841edfa76c8c1165f11dca07bce":[1,0,0,86,50] }; diff --git a/navtreeindex13.js b/navtreeindex13.js index 796ea2c6f..740fc7ef2 100644 --- a/navtreeindex13.js +++ b/navtreeindex13.js @@ -1,5 +1,11 @@ var NAVTREEINDEX13 = { +"classIpopt_1_1LimMemQuasiNewtonUpdater.html#af91acff1d8121c05414463d5ff29c5a3":[1,0,0,86,39], +"classIpopt_1_1LimMemQuasiNewtonUpdater.html#afc1b44ee463310533e3412c274d134ed":[1,0,0,86,70], +"classIpopt_1_1LineSearch.html":[1,0,0,87], +"classIpopt_1_1LineSearch.html#a129fe1f77e892e9baf6a1565280afa48":[1,0,0,87,6], +"classIpopt_1_1LineSearch.html#a1be123a0287499a6dac6a9aec4d45cbf":[1,0,0,87,2], +"classIpopt_1_1LineSearch.html#a6b2653f6e6a17c3d909b2868c772d752":[1,0,0,87,7], "classIpopt_1_1LineSearch.html#abe044f75d7c5d0ad79a58ddc3b4aab23":[1,0,0,87,5], "classIpopt_1_1LineSearch.html#ac6a0e809c63dd8585b30116605bcea91":[1,0,0,87,8], "classIpopt_1_1LineSearch.html#ad0913502718f88b85dc4af3c4e58eaf1":[1,0,0,87,3], @@ -243,11 +249,5 @@ var NAVTREEINDEX13 = "classIpopt_1_1Ma77SolverInterface.html#a4f08314678cb62b218cd3a097be4ddc8":[1,0,0,96,16], "classIpopt_1_1Ma77SolverInterface.html#a58771654f41c5b4b59b4bb821f597d7e":[1,0,0,96,30], "classIpopt_1_1Ma77SolverInterface.html#a608ed094c6d761c31f3b7b7a39095d06":[1,0,0,96,1], -"classIpopt_1_1Ma77SolverInterface.html#a66ce2f6b59bbff89f7c737afd45db241":[1,0,0,96,31], -"classIpopt_1_1Ma77SolverInterface.html#a66d7f32db006941665c3397e0117e985":[1,0,0,96,18], -"classIpopt_1_1Ma77SolverInterface.html#a701302f53e51d8537e2c218f777c255f":[1,0,0,96,40], -"classIpopt_1_1Ma77SolverInterface.html#a72dfa2be8abe106045afddaa855d4925":[1,0,0,96,35], -"classIpopt_1_1Ma77SolverInterface.html#a749f331bfb54de92a556c69894d03da2":[1,0,0,96,21], -"classIpopt_1_1Ma77SolverInterface.html#a7be04c4a0e8f38d4425e24db24a1db4a":[1,0,0,96,38], -"classIpopt_1_1Ma77SolverInterface.html#a7d501362bfe1feb4b6683d755951b4cf":[1,0,0,96,37] +"classIpopt_1_1Ma77SolverInterface.html#a66ce2f6b59bbff89f7c737afd45db241":[1,0,0,96,31] }; diff --git a/navtreeindex14.js b/navtreeindex14.js index 5f0a7715b..1b14809e3 100644 --- a/navtreeindex14.js +++ b/navtreeindex14.js @@ -1,5 +1,11 @@ var NAVTREEINDEX14 = { +"classIpopt_1_1Ma77SolverInterface.html#a66d7f32db006941665c3397e0117e985":[1,0,0,96,18], +"classIpopt_1_1Ma77SolverInterface.html#a701302f53e51d8537e2c218f777c255f":[1,0,0,96,40], +"classIpopt_1_1Ma77SolverInterface.html#a72dfa2be8abe106045afddaa855d4925":[1,0,0,96,35], +"classIpopt_1_1Ma77SolverInterface.html#a749f331bfb54de92a556c69894d03da2":[1,0,0,96,21], +"classIpopt_1_1Ma77SolverInterface.html#a7be04c4a0e8f38d4425e24db24a1db4a":[1,0,0,96,38], +"classIpopt_1_1Ma77SolverInterface.html#a7d501362bfe1feb4b6683d755951b4cf":[1,0,0,96,37], "classIpopt_1_1Ma77SolverInterface.html#a869edcf34c12f5aba10d85ec3653bfd3":[1,0,0,96,13], "classIpopt_1_1Ma77SolverInterface.html#a8bb33d5bda6792a1f9f6d82cb3121ed7":[1,0,0,96,25], "classIpopt_1_1Ma77SolverInterface.html#a8c711813fba3457ca7730da5d6d48470":[1,0,0,96,34], @@ -243,11 +249,5 @@ var NAVTREEINDEX14 = "classIpopt_1_1MuUpdate.html#a16552e6e04fcc1f2216d7226b11d3169":[1,0,0,110,4], "classIpopt_1_1MuUpdate.html#a4fa49e2b24e10b553625062411216ef7":[1,0,0,110,0], "classIpopt_1_1MuUpdate.html#a52c9c578d714211d0637ef1cfde8d16c":[1,0,0,110,1], -"classIpopt_1_1MuUpdate.html#a5f3e2e4d612fec1ea0dc2b60e7648174":[1,0,0,110,2], -"classIpopt_1_1MuUpdate.html#a69cd4d61fc02814e9937cbcfdbc76270":[1,0,0,110,3], -"classIpopt_1_1MuUpdate.html#ac89dc21645cb7a9c99d0c309fdb3fa6f":[1,0,0,110,5], -"classIpopt_1_1MultiVectorMatrix.html":[1,0,0,106], -"classIpopt_1_1MultiVectorMatrix.html#a04b058a62cf3be3c1081fe61b83d6a55":[1,0,0,106,17], -"classIpopt_1_1MultiVectorMatrix.html#a1535cb8db1f658b29061bf5d34bd9e4a":[1,0,0,106,8], -"classIpopt_1_1MultiVectorMatrix.html#a215f036fadae290e78849076c932e919":[1,0,0,106,20] +"classIpopt_1_1MuUpdate.html#a5f3e2e4d612fec1ea0dc2b60e7648174":[1,0,0,110,2] }; diff --git a/navtreeindex15.js b/navtreeindex15.js index 937880d00..a37cc824b 100644 --- a/navtreeindex15.js +++ b/navtreeindex15.js @@ -1,5 +1,11 @@ var NAVTREEINDEX15 = { +"classIpopt_1_1MuUpdate.html#a69cd4d61fc02814e9937cbcfdbc76270":[1,0,0,110,3], +"classIpopt_1_1MuUpdate.html#ac89dc21645cb7a9c99d0c309fdb3fa6f":[1,0,0,110,5], +"classIpopt_1_1MultiVectorMatrix.html":[1,0,0,106], +"classIpopt_1_1MultiVectorMatrix.html#a04b058a62cf3be3c1081fe61b83d6a55":[1,0,0,106,17], +"classIpopt_1_1MultiVectorMatrix.html#a1535cb8db1f658b29061bf5d34bd9e4a":[1,0,0,106,8], +"classIpopt_1_1MultiVectorMatrix.html#a215f036fadae290e78849076c932e919":[1,0,0,106,20], "classIpopt_1_1MultiVectorMatrix.html#a2b28a9b36727a342ee511398ab1e77c6":[1,0,0,106,9], "classIpopt_1_1MultiVectorMatrix.html#a2d0bfc4c6315d41712c3051e8b1545c6":[1,0,0,106,11], "classIpopt_1_1MultiVectorMatrix.html#a34cf60b561c14c9bbcc7b2909d2ce71a":[1,0,0,106,12], @@ -243,11 +249,5 @@ var NAVTREEINDEX15 = "classIpopt_1_1OptionsList_1_1OptionValue.html":[1,0,0,117,0], "classIpopt_1_1OptionsList_1_1OptionValue.html#a0ef7c3ef69a29666db23bc4bd554a173":[1,0,0,117,0,5], "classIpopt_1_1OptionsList_1_1OptionValue.html#a21cb8f7fdfdb20081fb7843c303be16f":[1,0,0,117,0,14], -"classIpopt_1_1OptionsList_1_1OptionValue.html#a30d4c147ee5506eccf695bc0b53b1d14":[1,0,0,117,0,9], -"classIpopt_1_1OptionsList_1_1OptionValue.html#a41407ff0e47bd075412362253ec2b891":[1,0,0,117,0,8], -"classIpopt_1_1OptionsList_1_1OptionValue.html#a5133ccf41c223a42a17964a0c99badad":[1,0,0,117,0,11], -"classIpopt_1_1OptionsList_1_1OptionValue.html#a892d28e868983cb3bbd3cc17fe57f958":[1,0,0,117,0,4], -"classIpopt_1_1OptionsList_1_1OptionValue.html#a8c609b23eb5e5413c0d7a91a3055f28d":[1,0,0,117,0,10], -"classIpopt_1_1OptionsList_1_1OptionValue.html#a8ca41fb6884e6950a5e050c1da0b8dc7":[1,0,0,117,0,2], -"classIpopt_1_1OptionsList_1_1OptionValue.html#a9e56ab9df7902216501e2fc67cf87ee0":[1,0,0,117,0,1] +"classIpopt_1_1OptionsList_1_1OptionValue.html#a30d4c147ee5506eccf695bc0b53b1d14":[1,0,0,117,0,9] }; diff --git a/navtreeindex16.js b/navtreeindex16.js index 4175d7446..5bc5ed7dc 100644 --- a/navtreeindex16.js +++ b/navtreeindex16.js @@ -1,5 +1,11 @@ var NAVTREEINDEX16 = { +"classIpopt_1_1OptionsList_1_1OptionValue.html#a41407ff0e47bd075412362253ec2b891":[1,0,0,117,0,8], +"classIpopt_1_1OptionsList_1_1OptionValue.html#a5133ccf41c223a42a17964a0c99badad":[1,0,0,117,0,11], +"classIpopt_1_1OptionsList_1_1OptionValue.html#a892d28e868983cb3bbd3cc17fe57f958":[1,0,0,117,0,4], +"classIpopt_1_1OptionsList_1_1OptionValue.html#a8c609b23eb5e5413c0d7a91a3055f28d":[1,0,0,117,0,10], +"classIpopt_1_1OptionsList_1_1OptionValue.html#a8ca41fb6884e6950a5e050c1da0b8dc7":[1,0,0,117,0,2], +"classIpopt_1_1OptionsList_1_1OptionValue.html#a9e56ab9df7902216501e2fc67cf87ee0":[1,0,0,117,0,1], "classIpopt_1_1OptionsList_1_1OptionValue.html#aa0e21412e6f16fbd86aaf57fdc4d782d":[1,0,0,117,0,6], "classIpopt_1_1OptionsList_1_1OptionValue.html#aa556e1b81946e75f3164430152803334":[1,0,0,117,0,7], "classIpopt_1_1OptionsList_1_1OptionValue.html#aaf6354ca26be6a9ca1f7e6aaa748093a":[1,0,0,117,0,13], @@ -243,11 +249,5 @@ var NAVTREEINDEX16 = "classIpopt_1_1PardisoMKLSolverInterface.html#a0763b8b0c26428f98dcac9ac33433a86":[1,0,0,120,34], "classIpopt_1_1PardisoMKLSolverInterface.html#a0c8362be9fd7092a99326fe1caec2261":[1,0,0,120,26], "classIpopt_1_1PardisoMKLSolverInterface.html#a0dec5f4fb385b6cfa396cca7f361e128":[1,0,0,120,30], -"classIpopt_1_1PardisoMKLSolverInterface.html#a15a98497726528a43ba9d1de8671a4c2":[1,0,0,120,2], -"classIpopt_1_1PardisoMKLSolverInterface.html#a2d50e1af4dc32841b66311d04fcc0b9d":[1,0,0,120,27], -"classIpopt_1_1PardisoMKLSolverInterface.html#a335a5ba0366a8780fbe1fb86fd0a602b":[1,0,0,120,29], -"classIpopt_1_1PardisoMKLSolverInterface.html#a50d1a23d808750487b6687b582e3fcce":[1,0,0,120,3], -"classIpopt_1_1PardisoMKLSolverInterface.html#a51d03d3de73f541b636e7aeea774eb8e":[1,0,0,120,18], -"classIpopt_1_1PardisoMKLSolverInterface.html#a5c91be05d9586be1c35d5fe86fb4bb49":[1,0,0,120,6], -"classIpopt_1_1PardisoMKLSolverInterface.html#a616336360d78e7ab9810843b7951c656":[1,0,0,120,14] +"classIpopt_1_1PardisoMKLSolverInterface.html#a15a98497726528a43ba9d1de8671a4c2":[1,0,0,120,2] }; diff --git a/navtreeindex17.js b/navtreeindex17.js index 02e49a474..1cb5ae2b4 100644 --- a/navtreeindex17.js +++ b/navtreeindex17.js @@ -1,5 +1,11 @@ var NAVTREEINDEX17 = { +"classIpopt_1_1PardisoMKLSolverInterface.html#a2d50e1af4dc32841b66311d04fcc0b9d":[1,0,0,120,27], +"classIpopt_1_1PardisoMKLSolverInterface.html#a335a5ba0366a8780fbe1fb86fd0a602b":[1,0,0,120,29], +"classIpopt_1_1PardisoMKLSolverInterface.html#a50d1a23d808750487b6687b582e3fcce":[1,0,0,120,3], +"classIpopt_1_1PardisoMKLSolverInterface.html#a51d03d3de73f541b636e7aeea774eb8e":[1,0,0,120,18], +"classIpopt_1_1PardisoMKLSolverInterface.html#a5c91be05d9586be1c35d5fe86fb4bb49":[1,0,0,120,6], +"classIpopt_1_1PardisoMKLSolverInterface.html#a616336360d78e7ab9810843b7951c656":[1,0,0,120,14], "classIpopt_1_1PardisoMKLSolverInterface.html#a62cacfc1d6ec5e5bafb898fba1f15da2":[1,0,0,120,13], "classIpopt_1_1PardisoMKLSolverInterface.html#a62f2e50b486dc70ac7277c3389aa7524":[1,0,0,120,0], "classIpopt_1_1PardisoMKLSolverInterface.html#a62f2e50b486dc70ac7277c3389aa7524a045cdb54b7e13d33bfdc3fb7ad1fde01":[1,0,0,120,0,2], @@ -243,11 +249,5 @@ var NAVTREEINDEX17 = "classIpopt_1_1ReferencedObject.html#aa69ecb0f026bd741e2fa84c31d4ec332":[1,0,0,135,3], "classIpopt_1_1ReferencedObject.html#aa99c6c922e04cf98edb2e7ea35cc046d":[1,0,0,135,5], "classIpopt_1_1ReferencedObject.html#aac517534e10e36c946aeefc6fe337777":[1,0,0,135,2], -"classIpopt_1_1ReferencedObject.html#adbbf3aa5307da62ab8224ba599d4bd7a":[1,0,0,135,1], -"classIpopt_1_1ReferencedObject.html#ae6c952e7d1a63080dc8f121c008944fc":[1,0,0,135,4], -"classIpopt_1_1Referencer.html":[1,0,0,136], -"classIpopt_1_1RegisteredCategory.html":[1,0,0,137], -"classIpopt_1_1RegisteredCategory.html#a2310057ee367b2ab515514efb4a0aa12":[1,0,0,137,5], -"classIpopt_1_1RegisteredCategory.html#a2c4433ad924a44ef993a7852730f3c7d":[1,0,0,137,6], -"classIpopt_1_1RegisteredCategory.html#a2e3e4b9f86054536d1463c8916d30f6f":[1,0,0,137,4] +"classIpopt_1_1ReferencedObject.html#adbbf3aa5307da62ab8224ba599d4bd7a":[1,0,0,135,1] }; diff --git a/navtreeindex18.js b/navtreeindex18.js index b306c1f17..0a578dfdd 100644 --- a/navtreeindex18.js +++ b/navtreeindex18.js @@ -1,5 +1,11 @@ var NAVTREEINDEX18 = { +"classIpopt_1_1ReferencedObject.html#ae6c952e7d1a63080dc8f121c008944fc":[1,0,0,135,4], +"classIpopt_1_1Referencer.html":[1,0,0,136], +"classIpopt_1_1RegisteredCategory.html":[1,0,0,137], +"classIpopt_1_1RegisteredCategory.html#a2310057ee367b2ab515514efb4a0aa12":[1,0,0,137,5], +"classIpopt_1_1RegisteredCategory.html#a2c4433ad924a44ef993a7852730f3c7d":[1,0,0,137,6], +"classIpopt_1_1RegisteredCategory.html#a2e3e4b9f86054536d1463c8916d30f6f":[1,0,0,137,4], "classIpopt_1_1RegisteredCategory.html#a5e2c6c3dc25df89df5da757b9bec08bc":[1,0,0,137,1], "classIpopt_1_1RegisteredCategory.html#a658b0be2592671eb6ba8c2f87771b13e":[1,0,0,137,9], "classIpopt_1_1RegisteredCategory.html#a6cdca39d68b836f63a73424adb096483":[1,0,0,137,12], @@ -243,11 +249,5 @@ var NAVTREEINDEX18 = "classIpopt_1_1RestoIpoptNLP.html#ae54fa43c005fd984193d57e791dab6ed":[1,0,0,142,58], "classIpopt_1_1RestoIpoptNLP.html#ae59df458609ca72cfb4da737d79b5048":[1,0,0,142,3], "classIpopt_1_1RestoIpoptNLP.html#ae7921dfab15c5c9c7bd042babd4b9f9a":[1,0,0,142,0], -"classIpopt_1_1RestoIpoptNLP.html#aeaeaa80dbaba57307633a96f5979ce2d":[1,0,0,142,50], -"classIpopt_1_1RestoIpoptNLP.html#aed993a986ed743fc27fdfce127b01db7":[1,0,0,142,60], -"classIpopt_1_1RestoIpoptNLP.html#af00618921d43af5629a1bc5b3cd4d220":[1,0,0,142,64], -"classIpopt_1_1RestoIpoptNLP.html#af1ed30d6371dbde3e070320659060b5b":[1,0,0,142,41], -"classIpopt_1_1RestoIpoptNLP.html#af3905d7b622b8b3f1dad081fd67a78ed":[1,0,0,142,9], -"classIpopt_1_1RestoIpoptNLP.html#af45fc786617a2bb97abbbfcdb94e2398":[1,0,0,142,22], -"classIpopt_1_1RestoIpoptNLP.html#af5b4e3e942b359ba66890707bf4eb090":[1,0,0,142,88] +"classIpopt_1_1RestoIpoptNLP.html#aeaeaa80dbaba57307633a96f5979ce2d":[1,0,0,142,50] }; diff --git a/navtreeindex19.js b/navtreeindex19.js index 7e8ad2b32..9b0e26c3c 100644 --- a/navtreeindex19.js +++ b/navtreeindex19.js @@ -1,5 +1,11 @@ var NAVTREEINDEX19 = { +"classIpopt_1_1RestoIpoptNLP.html#aed993a986ed743fc27fdfce127b01db7":[1,0,0,142,60], +"classIpopt_1_1RestoIpoptNLP.html#af00618921d43af5629a1bc5b3cd4d220":[1,0,0,142,64], +"classIpopt_1_1RestoIpoptNLP.html#af1ed30d6371dbde3e070320659060b5b":[1,0,0,142,41], +"classIpopt_1_1RestoIpoptNLP.html#af3905d7b622b8b3f1dad081fd67a78ed":[1,0,0,142,9], +"classIpopt_1_1RestoIpoptNLP.html#af45fc786617a2bb97abbbfcdb94e2398":[1,0,0,142,22], +"classIpopt_1_1RestoIpoptNLP.html#af5b4e3e942b359ba66890707bf4eb090":[1,0,0,142,88], "classIpopt_1_1RestoIpoptNLP.html#af8ee93df879e5132e96d22e1f2f11320":[1,0,0,142,18], "classIpopt_1_1RestoIpoptNLP.html#afb1e4977e6dacc4fcb5b52690b32bff4":[1,0,0,142,14], "classIpopt_1_1RestoIterateInitializer.html":[1,0,0,143], @@ -179,12 +185,12 @@ var NAVTREEINDEX19 = "classIpopt_1_1SensAmplTNLP.html#a0c1336aef37c2f620ec2f0f4ea63ad06":[1,0,0,154,16], "classIpopt_1_1SensAmplTNLP.html#a1564b68e5bc5709edfa24fef32afb764":[1,0,0,154,3], "classIpopt_1_1SensAmplTNLP.html#a283634b8adabd78816b660f43f11e6f1":[1,0,0,154,14], -"classIpopt_1_1SensAmplTNLP.html#a322d3d3fc1a695924ba292b3f53e871f":[1,0,0,154,0], "classIpopt_1_1SensAmplTNLP.html#a365130391fecebb01f0e0b29fd660ed4":[1,0,0,154,20], "classIpopt_1_1SensAmplTNLP.html#a37b855f1b61f93157fff343603c04cab":[1,0,0,154,7], "classIpopt_1_1SensAmplTNLP.html#a42cd6db8a17499c23c38880b2f757ccc":[1,0,0,154,4], "classIpopt_1_1SensAmplTNLP.html#a62c903cc84088242cd0daa3633bb63b8":[1,0,0,154,9], "classIpopt_1_1SensAmplTNLP.html#a667cde08f67c0d1015a54fa65c1dba9c":[1,0,0,154,21], +"classIpopt_1_1SensAmplTNLP.html#a692a526e9a76b1737db34107d3c0d3ce":[1,0,0,154,0], "classIpopt_1_1SensAmplTNLP.html#a69738bf7127f6bf4a397bb7d8de18213":[1,0,0,154,1], "classIpopt_1_1SensAmplTNLP.html#a6b9d86e08583356c2035059216a2010a":[1,0,0,154,6], "classIpopt_1_1SensAmplTNLP.html#a6d207924dec6fe1f314cc4a904c1d060":[1,0,0,154,5], @@ -243,11 +249,5 @@ var NAVTREEINDEX19 = "classIpopt_1_1SensBuilder.html":[1,0,0,157], "classIpopt_1_1SensBuilder.html#a27c70247d1720673f9ea7a1bfa755d07":[1,0,0,157,2], "classIpopt_1_1SensBuilder.html#a6ead46a9ee07e48670c315cf828fb848":[1,0,0,157,1], -"classIpopt_1_1SensBuilder.html#ac314c96662e24e694fd7b5aaad9be387":[1,0,0,157,0], -"classIpopt_1_1SensBuilder.html#af3a62e5c1b130474548fb599b788f997":[1,0,0,157,3], -"classIpopt_1_1SensitivityStepCalculator.html":[1,0,0,158], -"classIpopt_1_1SensitivityStepCalculator.html#a0a7c3c9177939fcbd2a25cadfd6c6cfe":[1,0,0,158,4], -"classIpopt_1_1SensitivityStepCalculator.html#a0e0ee314aef0a33bae20ced15afdb0ff":[1,0,0,158,1], -"classIpopt_1_1SensitivityStepCalculator.html#a2778981d84775d472e96b712fe576450":[1,0,0,158,5], -"classIpopt_1_1SensitivityStepCalculator.html#a2acea24a733218b3dad27fbce9fd8c7f":[1,0,0,158,3] +"classIpopt_1_1SensBuilder.html#ac314c96662e24e694fd7b5aaad9be387":[1,0,0,157,0] }; diff --git a/navtreeindex2.js b/navtreeindex2.js index 156e59a15..f75047d92 100644 --- a/navtreeindex2.js +++ b/navtreeindex2.js @@ -175,17 +175,19 @@ var NAVTREEINDEX2 = "IpUtils_8hpp.html#a43215400b0003aefcf90d79f41a808c2":[2,0,2,2,19,9], "IpUtils_8hpp.html#a4517bc8ae11b1e7a6817fb7e3b25ea81":[2,0,2,2,19,5], "IpUtils_8hpp.html#a62d4e6e8a001e92805f1604fdb89acd8":[2,0,2,2,19,10], +"IpUtils_8hpp.html#a67b597ce79fdd866ca80f49e553439ea":[2,0,2,2,19,12], "IpUtils_8hpp.html#a6e5e857992e79961b466b14cc6ef7df7":[2,0,2,2,19,6], -"IpUtils_8hpp.html#a744080523cc4ae02aa31f3b73804ca9c":[2,0,2,2,19,12], +"IpUtils_8hpp.html#a744080523cc4ae02aa31f3b73804ca9c":[2,0,2,2,19,14], "IpUtils_8hpp.html#a938aa5ecbb75facb7e897709caeed751":[2,0,2,2,19,8], "IpUtils_8hpp.html#aa62bae5c2e2290bf96f32516b4e61932":[2,0,2,2,19,4], "IpUtils_8hpp.html#aaee876942b73e9e0bcc2664e4f3abeef":[2,0,2,2,19,0], "IpUtils_8hpp.html#ab6ba74bdeb7d006f8773592b560a131a":[2,0,2,2,19,3], -"IpUtils_8hpp.html#ac43c90f593330c83645a501860780f46":[2,0,2,2,19,13], +"IpUtils_8hpp.html#abd79708db843db3ec1a195cf1e1d7f82":[2,0,2,2,19,13], +"IpUtils_8hpp.html#ac43c90f593330c83645a501860780f46":[2,0,2,2,19,15], "IpUtils_8hpp.html#ac6fbf9279d6af95abd5cd59b8d4e4c6d":[2,0,2,2,19,11], "IpUtils_8hpp.html#ac71e36b1644c8867ed9ee255fda13e45":[2,0,2,2,19,2], "IpUtils_8hpp.html#ad4946dd05889013b7bba1ac97c28c176":[2,0,2,2,19,7], -"IpUtils_8hpp.html#ada77edb2d8946eb154f298386514c6a3":[2,0,2,2,19,14], +"IpUtils_8hpp.html#ada77edb2d8946eb154f298386514c6a3":[2,0,2,2,19,16], "IpUtils_8hpp.html#afe856f8537da20a0d4550bf179c43cc6":[2,0,2,2,19,1], "IpUtils_8hpp_source.html":[2,0,2,2,19], "IpVector_8hpp.html":[2,0,2,5,22], @@ -247,7 +249,5 @@ var NAVTREEINDEX2 = "SensApplication_8hpp.html":[2,0,0,0,1,1], "SensApplication_8hpp.html#aedf4970976d468e91783c5802d668a75":[2,0,0,0,1,1,1], "SensApplication_8hpp_source.html":[2,0,0,0,1,1], -"SensBacksolver_8hpp.html":[2,0,0,0,1,2], -"SensBacksolver_8hpp_source.html":[2,0,0,0,1,2], -"SensBuilder_8hpp.html":[2,0,0,0,1,3] +"SensBacksolver_8hpp.html":[2,0,0,0,1,2] }; diff --git a/navtreeindex20.js b/navtreeindex20.js index b3ec15860..69f4a5133 100644 --- a/navtreeindex20.js +++ b/navtreeindex20.js @@ -1,5 +1,11 @@ var NAVTREEINDEX20 = { +"classIpopt_1_1SensBuilder.html#af3a62e5c1b130474548fb599b788f997":[1,0,0,157,3], +"classIpopt_1_1SensitivityStepCalculator.html":[1,0,0,158], +"classIpopt_1_1SensitivityStepCalculator.html#a0a7c3c9177939fcbd2a25cadfd6c6cfe":[1,0,0,158,4], +"classIpopt_1_1SensitivityStepCalculator.html#a0e0ee314aef0a33bae20ced15afdb0ff":[1,0,0,158,1], +"classIpopt_1_1SensitivityStepCalculator.html#a2778981d84775d472e96b712fe576450":[1,0,0,158,5], +"classIpopt_1_1SensitivityStepCalculator.html#a2acea24a733218b3dad27fbce9fd8c7f":[1,0,0,158,3], "classIpopt_1_1SensitivityStepCalculator.html#a84c70b13797c52c880810cec45cc8c60":[1,0,0,158,6], "classIpopt_1_1SensitivityStepCalculator.html#aac22e9e047c136947c1f68070097b6a2":[1,0,0,158,0], "classIpopt_1_1SensitivityStepCalculator.html#ab17bdae52537aca85d264f79cbce527c":[1,0,0,158,9], @@ -243,11 +249,5 @@ var NAVTREEINDEX20 = "classIpopt_1_1StdInterfaceTNLP.html#a524a63141905cc98ae106c089df2a98b":[1,0,0,167,21], "classIpopt_1_1StdInterfaceTNLP.html#a53391af73ceccfba50bcf5831ba24ff6":[1,0,0,167,1], "classIpopt_1_1StdInterfaceTNLP.html#a5914c525cdd617b63f9759a0eb6cd014":[1,0,0,167,49], -"classIpopt_1_1StdInterfaceTNLP.html#a5b2cd518c440590ea107c0012d8cf1de":[1,0,0,167,32], -"classIpopt_1_1StdInterfaceTNLP.html#a5c79fda73fd0a7e477bd8b82f35516c5":[1,0,0,167,14], -"classIpopt_1_1StdInterfaceTNLP.html#a7a8705d484e40117ea722c913006f532":[1,0,0,167,45], -"classIpopt_1_1StdInterfaceTNLP.html#a87dd23bc9fec4bdf536082f31eeff0e2":[1,0,0,167,31], -"classIpopt_1_1StdInterfaceTNLP.html#a8f2d9b4988313f8caa6ac55cc67188dc":[1,0,0,167,12], -"classIpopt_1_1StdInterfaceTNLP.html#a8fdd3112193ef1333d788bdd95502f4c":[1,0,0,167,2], -"classIpopt_1_1StdInterfaceTNLP.html#a91a506d63b773359a95280681eb2581e":[1,0,0,167,20] +"classIpopt_1_1StdInterfaceTNLP.html#a5b2cd518c440590ea107c0012d8cf1de":[1,0,0,167,32] }; diff --git a/navtreeindex21.js b/navtreeindex21.js index 4f88e29ce..56f08ddad 100644 --- a/navtreeindex21.js +++ b/navtreeindex21.js @@ -1,5 +1,11 @@ var NAVTREEINDEX21 = { +"classIpopt_1_1StdInterfaceTNLP.html#a5c79fda73fd0a7e477bd8b82f35516c5":[1,0,0,167,14], +"classIpopt_1_1StdInterfaceTNLP.html#a7a8705d484e40117ea722c913006f532":[1,0,0,167,45], +"classIpopt_1_1StdInterfaceTNLP.html#a87dd23bc9fec4bdf536082f31eeff0e2":[1,0,0,167,31], +"classIpopt_1_1StdInterfaceTNLP.html#a8f2d9b4988313f8caa6ac55cc67188dc":[1,0,0,167,12], +"classIpopt_1_1StdInterfaceTNLP.html#a8fdd3112193ef1333d788bdd95502f4c":[1,0,0,167,2], +"classIpopt_1_1StdInterfaceTNLP.html#a91a506d63b773359a95280681eb2581e":[1,0,0,167,20], "classIpopt_1_1StdInterfaceTNLP.html#a97b7dab46ae67c2243c068a05cf82c37":[1,0,0,167,40], "classIpopt_1_1StdInterfaceTNLP.html#a9956ba3a0116497a6ab7167e89b8c04d":[1,0,0,167,46], "classIpopt_1_1StdInterfaceTNLP.html#a9f949ff104114155f4f359137c119eb8":[1,0,0,167,10], @@ -243,11 +249,5 @@ var NAVTREEINDEX21 = "classIpopt_1_1TNLP.html#a959b19a2cc071bd127c40aea5f1a7ae7":[1,0,0,188,1], "classIpopt_1_1TNLP.html#a9bb5f16cdc2754d1667749268fb1308c":[1,0,0,188,23], "classIpopt_1_1TNLP.html#aa3361681015593a2f7433036d761ae75":[1,0,0,188,2], -"classIpopt_1_1TNLP.html#aa4162d052f69d4f9946a42feec012853":[1,0,0,188,20], -"classIpopt_1_1TNLP.html#aa6851ab40f3fa6b806ded1c092fc0831":[1,0,0,188,29], -"classIpopt_1_1TNLP.html#aafb65734cce3659c6fb496e136636e9e":[1,0,0,188,11], -"classIpopt_1_1TNLP.html#ab443d2d4fbc045d7c542d32258aee507":[1,0,0,188,3], -"classIpopt_1_1TNLP.html#ab443d2d4fbc045d7c542d32258aee507aed2fc797419d4b71cf1c3efac1532a55":[1,0,0,188,3,1], -"classIpopt_1_1TNLP.html#ab443d2d4fbc045d7c542d32258aee507aff709d419fb394619f35559b03ee72bd":[1,0,0,188,3,0], -"classIpopt_1_1TNLP.html#ac30bc524e7fb8ff836bd6657c8fce004":[1,0,0,188,0] +"classIpopt_1_1TNLP.html#aa4162d052f69d4f9946a42feec012853":[1,0,0,188,20] }; diff --git a/navtreeindex22.js b/navtreeindex22.js index 335717a39..8f978896b 100644 --- a/navtreeindex22.js +++ b/navtreeindex22.js @@ -1,5 +1,11 @@ var NAVTREEINDEX22 = { +"classIpopt_1_1TNLP.html#aa6851ab40f3fa6b806ded1c092fc0831":[1,0,0,188,29], +"classIpopt_1_1TNLP.html#aafb65734cce3659c6fb496e136636e9e":[1,0,0,188,11], +"classIpopt_1_1TNLP.html#ab443d2d4fbc045d7c542d32258aee507":[1,0,0,188,3], +"classIpopt_1_1TNLP.html#ab443d2d4fbc045d7c542d32258aee507aed2fc797419d4b71cf1c3efac1532a55":[1,0,0,188,3,1], +"classIpopt_1_1TNLP.html#ab443d2d4fbc045d7c542d32258aee507aff709d419fb394619f35559b03ee72bd":[1,0,0,188,3,0], +"classIpopt_1_1TNLP.html#ac30bc524e7fb8ff836bd6657c8fce004":[1,0,0,188,0], "classIpopt_1_1TNLP.html#ac60badc0020972128377e91cdcb4cc81":[1,0,0,188,7], "classIpopt_1_1TNLP.html#adb231e0be2a935a9a683349429f6890e":[1,0,0,188,10], "classIpopt_1_1TNLP.html#af81cb3ab5772b440360cfcb48b620514":[1,0,0,188,4], @@ -243,11 +249,5 @@ var NAVTREEINDEX22 = "classIpopt_1_1TaggedObject.html#aec96b8d790bf8ce7c707b55824796210":[1,0,0,184,2], "classIpopt_1_1TimedTask.html":[1,0,0,186], "classIpopt_1_1TimedTask.html#a09719c604b547eeed2eadaf77f145c53":[1,0,0,186,22], -"classIpopt_1_1TimedTask.html#a1120b00c20af7e830004c44fba088e7a":[1,0,0,186,8], -"classIpopt_1_1TimedTask.html#a1705ebc5c717de0b13880073d7f676b6":[1,0,0,186,1], -"classIpopt_1_1TimedTask.html#a1d34065de6656ac9e282e37231caee8a":[1,0,0,186,21], -"classIpopt_1_1TimedTask.html#a33216dc7f2b7fd71577db4dcf327d3b4":[1,0,0,186,3], -"classIpopt_1_1TimedTask.html#a391a116c58ae1fa1db2986c5184ce3e9":[1,0,0,186,9], -"classIpopt_1_1TimedTask.html#a49560936b22d1252497a8eb479b5d230":[1,0,0,186,19], -"classIpopt_1_1TimedTask.html#a49eaf8adf68554459b5cac40927eed87":[1,0,0,186,12] +"classIpopt_1_1TimedTask.html#a1120b00c20af7e830004c44fba088e7a":[1,0,0,186,8] }; diff --git a/navtreeindex23.js b/navtreeindex23.js index 4859f7d95..fe3599468 100644 --- a/navtreeindex23.js +++ b/navtreeindex23.js @@ -1,5 +1,11 @@ var NAVTREEINDEX23 = { +"classIpopt_1_1TimedTask.html#a1705ebc5c717de0b13880073d7f676b6":[1,0,0,186,1], +"classIpopt_1_1TimedTask.html#a1d34065de6656ac9e282e37231caee8a":[1,0,0,186,21], +"classIpopt_1_1TimedTask.html#a33216dc7f2b7fd71577db4dcf327d3b4":[1,0,0,186,3], +"classIpopt_1_1TimedTask.html#a391a116c58ae1fa1db2986c5184ce3e9":[1,0,0,186,9], +"classIpopt_1_1TimedTask.html#a49560936b22d1252497a8eb479b5d230":[1,0,0,186,19], +"classIpopt_1_1TimedTask.html#a49eaf8adf68554459b5cac40927eed87":[1,0,0,186,12], "classIpopt_1_1TimedTask.html#a617053eeb03fa0b3bc4fb3bcddd90de3":[1,0,0,186,13], "classIpopt_1_1TimedTask.html#a6827517c3cce99921a870411c1d36b1d":[1,0,0,186,7], "classIpopt_1_1TimedTask.html#a735501bc6ee9f7d1cdfda67f2371afe4":[1,0,0,186,20], @@ -243,11 +249,5 @@ var NAVTREEINDEX23 = "classIpopt_1_1Vector.html#a4efbd79b97f301baea0407b1d3124d05":[1,0,0,199,10], "classIpopt_1_1Vector.html#a51fd4d1a2d0b5f94b805c45ca1ea82be":[1,0,0,199,58], "classIpopt_1_1Vector.html#a52f4f77b4d13b98da067b9295cd044bf":[1,0,0,199,78], -"classIpopt_1_1Vector.html#a58b6c7f23482564891829dbba30d0fae":[1,0,0,199,44], -"classIpopt_1_1Vector.html#a5b67ba3138e116ada4d45ae1062d3e0e":[1,0,0,199,23], -"classIpopt_1_1Vector.html#a5e4b87da122977757f6ea7abe2331a1a":[1,0,0,199,31], -"classIpopt_1_1Vector.html#a6e46938c30cd41a900d6746131e414e1":[1,0,0,199,7], -"classIpopt_1_1Vector.html#a72ccdf36219235a1e262e5ed460513cc":[1,0,0,199,61], -"classIpopt_1_1Vector.html#a78d27996d8d097e024d39e8658c35c7b":[1,0,0,199,4], -"classIpopt_1_1Vector.html#a7e9ef8d0dceb1d8725108a2fa1e06fd6":[1,0,0,199,42] +"classIpopt_1_1Vector.html#a58b6c7f23482564891829dbba30d0fae":[1,0,0,199,44] }; diff --git a/navtreeindex24.js b/navtreeindex24.js index d1a2cc5ce..ae0760b20 100644 --- a/navtreeindex24.js +++ b/navtreeindex24.js @@ -1,5 +1,11 @@ var NAVTREEINDEX24 = { +"classIpopt_1_1Vector.html#a5b67ba3138e116ada4d45ae1062d3e0e":[1,0,0,199,23], +"classIpopt_1_1Vector.html#a5e4b87da122977757f6ea7abe2331a1a":[1,0,0,199,31], +"classIpopt_1_1Vector.html#a6e46938c30cd41a900d6746131e414e1":[1,0,0,199,7], +"classIpopt_1_1Vector.html#a72ccdf36219235a1e262e5ed460513cc":[1,0,0,199,61], +"classIpopt_1_1Vector.html#a78d27996d8d097e024d39e8658c35c7b":[1,0,0,199,4], +"classIpopt_1_1Vector.html#a7e9ef8d0dceb1d8725108a2fa1e06fd6":[1,0,0,199,42], "classIpopt_1_1Vector.html#a7eca857fcb121e47614c8a1b51dd64c3":[1,0,0,199,27], "classIpopt_1_1Vector.html#a811b6aba5c6fb656c4a804d42da53aca":[1,0,0,199,14], "classIpopt_1_1Vector.html#a842ab7ba06bf83bd4219cc8d7a98cd2d":[1,0,0,199,38], @@ -243,11 +249,5 @@ var NAVTREEINDEX24 = "config__ipopt__default_8h.html#a79fcb3906f022813a3b5e80cebee44cc":[2,0,2,2,1,2], "config__ipopt__default_8h.html#ae6e2b435f494a5893263d76df0ba0fe5":[2,0,2,2,1,0], "config__ipopt__default_8h.html#afd6068406ee4d83a3abb26249b8fd421":[2,0,2,2,1,3], -"config__ipopt__default_8h_source.html":[2,0,2,2,1], -"configall__system_8h.html":[2,0,2,2,2], -"configall__system_8h_source.html":[2,0,2,2,2], -"configall__system__msc_8h.html":[2,0,2,2,3], -"configall__system__msc_8h.html#a104fd2e229e08c556ba8216620872c27":[2,0,2,2,3,6], -"configall__system__msc_8h.html#a1380afa5a10bba6b531975951fd6ecba":[2,0,2,2,3,7], -"configall__system__msc_8h.html#a14d61bc0b10538e36fc3c9709ba6fb59":[2,0,2,2,3,19] +"config__ipopt__default_8h_source.html":[2,0,2,2,1] }; diff --git a/navtreeindex25.js b/navtreeindex25.js index 0f0d8975c..a80009e9d 100644 --- a/navtreeindex25.js +++ b/navtreeindex25.js @@ -1,5 +1,11 @@ var NAVTREEINDEX25 = { +"configall__system_8h.html":[2,0,2,2,2], +"configall__system_8h_source.html":[2,0,2,2,2], +"configall__system__msc_8h.html":[2,0,2,2,3], +"configall__system__msc_8h.html#a104fd2e229e08c556ba8216620872c27":[2,0,2,2,3,6], +"configall__system__msc_8h.html#a1380afa5a10bba6b531975951fd6ecba":[2,0,2,2,3,7], +"configall__system__msc_8h.html#a14d61bc0b10538e36fc3c9709ba6fb59":[2,0,2,2,3,19], "configall__system__msc_8h.html#a19eb22f1c6a556cd6686176706e3cba6":[2,0,2,2,3,10], "configall__system__msc_8h.html#a1d95eeccc21a227ad1f5b1a5e24026b6":[2,0,2,2,3,0], "configall__system__msc_8h.html#a22aece5d034fd9040a3d01c3797fdfe7":[2,0,2,2,3,23], @@ -97,8 +103,8 @@ var NAVTREEINDEX25 = "functions_type.html":[1,3,3], "functions_u.html":[1,3,0,20], "functions_v.html":[1,3,0,21], -"functions_vars.html":[1,3,2], "functions_vars.html":[1,3,2,0], +"functions_vars.html":[1,3,2], "functions_vars_b.html":[1,3,2,1], "functions_vars_c.html":[1,3,2,2], "functions_vars_d.html":[1,3,2,3], @@ -129,8 +135,8 @@ var NAVTREEINDEX25 = "functions_y.html":[1,3,0,24], "functions_z.html":[1,3,0,25], "functions_~.html":[1,3,0,26], -"globals.html":[2,1,0,0], "globals.html":[2,1,0], +"globals.html":[2,1,0,0], "globals_b.html":[2,1,0,1], "globals_c.html":[2,1,0,2], "globals_d.html":[2,1,0,3], @@ -243,11 +249,5 @@ var NAVTREEINDEX25 = "hsl__ma77s_8h.html#afd314ee6ee9e858069cebaa897014370":[2,0,2,0,1,1,11], "hsl__ma77s_8h.html#aff991b6e67aa76d813c0e8b268fc5cfe":[2,0,2,0,1,1,25], "hsl__ma77s_8h_source.html":[2,0,2,0,1,1], -"hsl__ma86d_8h.html":[2,0,2,0,1,2], -"hsl__ma86d_8h.html#a090299974faec773ac5152e019b4232d":[2,0,2,0,1,2,14], -"hsl__ma86d_8h.html#a1352cff18023ddfe3cad3aece7806467":[2,0,2,0,1,2,17], -"hsl__ma86d_8h.html#a1cf1ab075569a2da4483a52c0dc18e98":[2,0,2,0,1,2,13], -"hsl__ma86d_8h.html#a25d0dc7d67d734fda736062df859605e":[2,0,2,0,1,2,3], -"hsl__ma86d_8h.html#a2e250ecf104949f3be38ee6374b9f07e":[2,0,2,0,1,2,11], -"hsl__ma86d_8h.html#a57bf4beded179eeda9b4be4827b75740":[2,0,2,0,1,2,16] +"hsl__ma86d_8h.html":[2,0,2,0,1,2] }; diff --git a/navtreeindex26.js b/navtreeindex26.js index 15d0fe5d3..96b4c0ba1 100644 --- a/navtreeindex26.js +++ b/navtreeindex26.js @@ -1,5 +1,11 @@ var NAVTREEINDEX26 = { +"hsl__ma86d_8h.html#a090299974faec773ac5152e019b4232d":[2,0,2,0,1,2,14], +"hsl__ma86d_8h.html#a1352cff18023ddfe3cad3aece7806467":[2,0,2,0,1,2,17], +"hsl__ma86d_8h.html#a1cf1ab075569a2da4483a52c0dc18e98":[2,0,2,0,1,2,13], +"hsl__ma86d_8h.html#a25d0dc7d67d734fda736062df859605e":[2,0,2,0,1,2,3], +"hsl__ma86d_8h.html#a2e250ecf104949f3be38ee6374b9f07e":[2,0,2,0,1,2,11], +"hsl__ma86d_8h.html#a57bf4beded179eeda9b4be4827b75740":[2,0,2,0,1,2,16], "hsl__ma86d_8h.html#a5ba56037462c612c0419f4d82f8b9893":[2,0,2,0,1,2,10], "hsl__ma86d_8h.html#a68f854fcd7cfd00ad821c3c62ccf36c3":[2,0,2,0,1,2,6], "hsl__ma86d_8h.html#a7b6c510e3bfc51bac7a76160a16933ac":[2,0,2,0,1,2,7], @@ -121,28 +127,30 @@ var NAVTREEINDEX26 = "index.html#PREREQUISITES":[0,0,2], "md_ChangeLog.html":[0,8], "md_ChangeLog.html#autotoc_md10":[0,8,0], -"md_ChangeLog.html#autotoc_md100":[0,8,12,1], -"md_ChangeLog.html#autotoc_md101":[0,8,12,2], -"md_ChangeLog.html#autotoc_md102":[0,8,12,3], -"md_ChangeLog.html#autotoc_md103":[0,8,12,4], -"md_ChangeLog.html#autotoc_md104":[0,8,13], -"md_ChangeLog.html#autotoc_md105":[0,8,13,0], -"md_ChangeLog.html#autotoc_md106":[0,8,14], -"md_ChangeLog.html#autotoc_md107":[0,8,14,0], -"md_ChangeLog.html#autotoc_md108":[0,8,14,1], -"md_ChangeLog.html#autotoc_md109":[0,8,15], +"md_ChangeLog.html#autotoc_md100":[0,8,12], +"md_ChangeLog.html#autotoc_md101":[0,8,12,0], +"md_ChangeLog.html#autotoc_md102":[0,8,12,1], +"md_ChangeLog.html#autotoc_md103":[0,8,12,2], +"md_ChangeLog.html#autotoc_md104":[0,8,12,3], +"md_ChangeLog.html#autotoc_md105":[0,8,12,4], +"md_ChangeLog.html#autotoc_md106":[0,8,13], +"md_ChangeLog.html#autotoc_md107":[0,8,13,0], +"md_ChangeLog.html#autotoc_md108":[0,8,14], +"md_ChangeLog.html#autotoc_md109":[0,8,14,0], "md_ChangeLog.html#autotoc_md11":[0,8,0,0], -"md_ChangeLog.html#autotoc_md110":[0,8,15,0], -"md_ChangeLog.html#autotoc_md111":[0,8,15,1], -"md_ChangeLog.html#autotoc_md112":[0,8,15,2], -"md_ChangeLog.html#autotoc_md113":[0,8,15,3], -"md_ChangeLog.html#autotoc_md114":[0,8,15,4], -"md_ChangeLog.html#autotoc_md115":[0,8,15,5], -"md_ChangeLog.html#autotoc_md116":[0,8,15,6], -"md_ChangeLog.html#autotoc_md117":[0,8,15,7], -"md_ChangeLog.html#autotoc_md118":[0,8,15,8], -"md_ChangeLog.html#autotoc_md119":[0,8,15,9], +"md_ChangeLog.html#autotoc_md110":[0,8,14,1], +"md_ChangeLog.html#autotoc_md111":[0,8,15], +"md_ChangeLog.html#autotoc_md112":[0,8,15,0], +"md_ChangeLog.html#autotoc_md113":[0,8,15,1], +"md_ChangeLog.html#autotoc_md114":[0,8,15,2], +"md_ChangeLog.html#autotoc_md115":[0,8,15,3], +"md_ChangeLog.html#autotoc_md116":[0,8,15,4], +"md_ChangeLog.html#autotoc_md117":[0,8,15,5], +"md_ChangeLog.html#autotoc_md118":[0,8,15,6], +"md_ChangeLog.html#autotoc_md119":[0,8,15,7], "md_ChangeLog.html#autotoc_md12":[0,8,0,1], +"md_ChangeLog.html#autotoc_md120":[0,8,15,8], +"md_ChangeLog.html#autotoc_md121":[0,8,15,9], "md_ChangeLog.html#autotoc_md13":[0,8,0,2], "md_ChangeLog.html#autotoc_md14":[0,8,0,3], "md_ChangeLog.html#autotoc_md15":[0,8,0,4], @@ -157,79 +165,79 @@ var NAVTREEINDEX26 = "md_ChangeLog.html#autotoc_md24":[0,8,0,13], "md_ChangeLog.html#autotoc_md25":[0,8,0,14], "md_ChangeLog.html#autotoc_md26":[0,8,0,15], -"md_ChangeLog.html#autotoc_md27":[0,8,1], -"md_ChangeLog.html#autotoc_md28":[0,8,1,0], -"md_ChangeLog.html#autotoc_md29":[0,8,1,1], -"md_ChangeLog.html#autotoc_md30":[0,8,1,2], -"md_ChangeLog.html#autotoc_md31":[0,8,1,3], -"md_ChangeLog.html#autotoc_md32":[0,8,1,4], -"md_ChangeLog.html#autotoc_md33":[0,8,2], -"md_ChangeLog.html#autotoc_md34":[0,8,2,0], -"md_ChangeLog.html#autotoc_md35":[0,8,2,1], -"md_ChangeLog.html#autotoc_md36":[0,8,2,2], -"md_ChangeLog.html#autotoc_md37":[0,8,2,3], -"md_ChangeLog.html#autotoc_md38":[0,8,2,4], -"md_ChangeLog.html#autotoc_md39":[0,8,2,5], -"md_ChangeLog.html#autotoc_md40":[0,8,2,6], -"md_ChangeLog.html#autotoc_md41":[0,8,2,7], -"md_ChangeLog.html#autotoc_md42":[0,8,2,8], -"md_ChangeLog.html#autotoc_md43":[0,8,2,9], -"md_ChangeLog.html#autotoc_md44":[0,8,2,10], -"md_ChangeLog.html#autotoc_md45":[0,8,2,11], -"md_ChangeLog.html#autotoc_md46":[0,8,2,12], -"md_ChangeLog.html#autotoc_md47":[0,8,2,13], -"md_ChangeLog.html#autotoc_md48":[0,8,3], -"md_ChangeLog.html#autotoc_md49":[0,8,3,0], -"md_ChangeLog.html#autotoc_md50":[0,8,3,1], -"md_ChangeLog.html#autotoc_md51":[0,8,3,2], -"md_ChangeLog.html#autotoc_md52":[0,8,3,3], -"md_ChangeLog.html#autotoc_md53":[0,8,3,4], -"md_ChangeLog.html#autotoc_md54":[0,8,3,5], -"md_ChangeLog.html#autotoc_md55":[0,8,3,6], -"md_ChangeLog.html#autotoc_md56":[0,8,3,7], -"md_ChangeLog.html#autotoc_md57":[0,8,3,8], -"md_ChangeLog.html#autotoc_md58":[0,8,3,9], -"md_ChangeLog.html#autotoc_md59":[0,8,3,10], -"md_ChangeLog.html#autotoc_md60":[0,8,4], -"md_ChangeLog.html#autotoc_md61":[0,8,4,0], -"md_ChangeLog.html#autotoc_md62":[0,8,4,1], -"md_ChangeLog.html#autotoc_md63":[0,8,4,2], -"md_ChangeLog.html#autotoc_md64":[0,8,4,3], -"md_ChangeLog.html#autotoc_md65":[0,8,4,4], -"md_ChangeLog.html#autotoc_md66":[0,8,5], -"md_ChangeLog.html#autotoc_md67":[0,8,5,0], -"md_ChangeLog.html#autotoc_md68":[0,8,5,1], -"md_ChangeLog.html#autotoc_md69":[0,8,5,2], -"md_ChangeLog.html#autotoc_md70":[0,8,5,3], -"md_ChangeLog.html#autotoc_md71":[0,8,6], -"md_ChangeLog.html#autotoc_md72":[0,8,6,0], -"md_ChangeLog.html#autotoc_md73":[0,8,6,1], -"md_ChangeLog.html#autotoc_md74":[0,8,6,2], -"md_ChangeLog.html#autotoc_md75":[0,8,6,3], -"md_ChangeLog.html#autotoc_md76":[0,8,7], -"md_ChangeLog.html#autotoc_md77":[0,8,7,0], -"md_ChangeLog.html#autotoc_md78":[0,8,7,1], -"md_ChangeLog.html#autotoc_md79":[0,8,8], -"md_ChangeLog.html#autotoc_md80":[0,8,8,0], -"md_ChangeLog.html#autotoc_md81":[0,8,8,1], -"md_ChangeLog.html#autotoc_md82":[0,8,9], -"md_ChangeLog.html#autotoc_md83":[0,8,9,0], -"md_ChangeLog.html#autotoc_md84":[0,8,9,1], -"md_ChangeLog.html#autotoc_md85":[0,8,9,2], -"md_ChangeLog.html#autotoc_md86":[0,8,9,3], -"md_ChangeLog.html#autotoc_md87":[0,8,9,4], -"md_ChangeLog.html#autotoc_md88":[0,8,9,5], -"md_ChangeLog.html#autotoc_md89":[0,8,10], -"md_ChangeLog.html#autotoc_md90":[0,8,10,0], -"md_ChangeLog.html#autotoc_md91":[0,8,10,1], -"md_ChangeLog.html#autotoc_md92":[0,8,10,2], -"md_ChangeLog.html#autotoc_md93":[0,8,11], -"md_ChangeLog.html#autotoc_md94":[0,8,11,0], -"md_ChangeLog.html#autotoc_md95":[0,8,11,1], -"md_ChangeLog.html#autotoc_md96":[0,8,11,2], -"md_ChangeLog.html#autotoc_md97":[0,8,11,3], -"md_ChangeLog.html#autotoc_md98":[0,8,12], -"md_ChangeLog.html#autotoc_md99":[0,8,12,0], +"md_ChangeLog.html#autotoc_md27":[0,8,0,16], +"md_ChangeLog.html#autotoc_md28":[0,8,0,17], +"md_ChangeLog.html#autotoc_md29":[0,8,1], +"md_ChangeLog.html#autotoc_md30":[0,8,1,0], +"md_ChangeLog.html#autotoc_md31":[0,8,1,1], +"md_ChangeLog.html#autotoc_md32":[0,8,1,2], +"md_ChangeLog.html#autotoc_md33":[0,8,1,3], +"md_ChangeLog.html#autotoc_md34":[0,8,1,4], +"md_ChangeLog.html#autotoc_md35":[0,8,2], +"md_ChangeLog.html#autotoc_md36":[0,8,2,0], +"md_ChangeLog.html#autotoc_md37":[0,8,2,1], +"md_ChangeLog.html#autotoc_md38":[0,8,2,2], +"md_ChangeLog.html#autotoc_md39":[0,8,2,3], +"md_ChangeLog.html#autotoc_md40":[0,8,2,4], +"md_ChangeLog.html#autotoc_md41":[0,8,2,5], +"md_ChangeLog.html#autotoc_md42":[0,8,2,6], +"md_ChangeLog.html#autotoc_md43":[0,8,2,7], +"md_ChangeLog.html#autotoc_md44":[0,8,2,8], +"md_ChangeLog.html#autotoc_md45":[0,8,2,9], +"md_ChangeLog.html#autotoc_md46":[0,8,2,10], +"md_ChangeLog.html#autotoc_md47":[0,8,2,11], +"md_ChangeLog.html#autotoc_md48":[0,8,2,12], +"md_ChangeLog.html#autotoc_md49":[0,8,2,13], +"md_ChangeLog.html#autotoc_md50":[0,8,3], +"md_ChangeLog.html#autotoc_md51":[0,8,3,0], +"md_ChangeLog.html#autotoc_md52":[0,8,3,1], +"md_ChangeLog.html#autotoc_md53":[0,8,3,2], +"md_ChangeLog.html#autotoc_md54":[0,8,3,3], +"md_ChangeLog.html#autotoc_md55":[0,8,3,4], +"md_ChangeLog.html#autotoc_md56":[0,8,3,5], +"md_ChangeLog.html#autotoc_md57":[0,8,3,6], +"md_ChangeLog.html#autotoc_md58":[0,8,3,7], +"md_ChangeLog.html#autotoc_md59":[0,8,3,8], +"md_ChangeLog.html#autotoc_md60":[0,8,3,9], +"md_ChangeLog.html#autotoc_md61":[0,8,3,10], +"md_ChangeLog.html#autotoc_md62":[0,8,4], +"md_ChangeLog.html#autotoc_md63":[0,8,4,0], +"md_ChangeLog.html#autotoc_md64":[0,8,4,1], +"md_ChangeLog.html#autotoc_md65":[0,8,4,2], +"md_ChangeLog.html#autotoc_md66":[0,8,4,3], +"md_ChangeLog.html#autotoc_md67":[0,8,4,4], +"md_ChangeLog.html#autotoc_md68":[0,8,5], +"md_ChangeLog.html#autotoc_md69":[0,8,5,0], +"md_ChangeLog.html#autotoc_md70":[0,8,5,1], +"md_ChangeLog.html#autotoc_md71":[0,8,5,2], +"md_ChangeLog.html#autotoc_md72":[0,8,5,3], +"md_ChangeLog.html#autotoc_md73":[0,8,6], +"md_ChangeLog.html#autotoc_md74":[0,8,6,0], +"md_ChangeLog.html#autotoc_md75":[0,8,6,1], +"md_ChangeLog.html#autotoc_md76":[0,8,6,2], +"md_ChangeLog.html#autotoc_md77":[0,8,6,3], +"md_ChangeLog.html#autotoc_md78":[0,8,7], +"md_ChangeLog.html#autotoc_md79":[0,8,7,0], +"md_ChangeLog.html#autotoc_md80":[0,8,7,1], +"md_ChangeLog.html#autotoc_md81":[0,8,8], +"md_ChangeLog.html#autotoc_md82":[0,8,8,0], +"md_ChangeLog.html#autotoc_md83":[0,8,8,1], +"md_ChangeLog.html#autotoc_md84":[0,8,9], +"md_ChangeLog.html#autotoc_md85":[0,8,9,0], +"md_ChangeLog.html#autotoc_md86":[0,8,9,1], +"md_ChangeLog.html#autotoc_md87":[0,8,9,2], +"md_ChangeLog.html#autotoc_md88":[0,8,9,3], +"md_ChangeLog.html#autotoc_md89":[0,8,9,4], +"md_ChangeLog.html#autotoc_md90":[0,8,9,5], +"md_ChangeLog.html#autotoc_md91":[0,8,10], +"md_ChangeLog.html#autotoc_md92":[0,8,10,0], +"md_ChangeLog.html#autotoc_md93":[0,8,10,1], +"md_ChangeLog.html#autotoc_md94":[0,8,10,2], +"md_ChangeLog.html#autotoc_md95":[0,8,11], +"md_ChangeLog.html#autotoc_md96":[0,8,11,0], +"md_ChangeLog.html#autotoc_md97":[0,8,11,1], +"md_ChangeLog.html#autotoc_md98":[0,8,11,2], +"md_ChangeLog.html#autotoc_md99":[0,8,11,3], "pages.html":[], "structIpopt_1_1PiecewisePenEntry.html":[1,0,0,130], "structIpopt_1_1PiecewisePenEntry.html#a424d447c04a3e51f2ce47b55ba22bbb0":[1,0,0,130,0], @@ -241,13 +249,5 @@ var NAVTREEINDEX26 = "structma77__control__d.html#a05a9cec699db33551ad7e1f551cda9ca":[1,0,2,25], "structma77__control__d.html#a06071e418d7fbf32be2e29141ae369af":[1,0,2,16], "structma77__control__d.html#a18ba283230b32ed0e34253b91ec2e263":[1,0,2,10], -"structma77__control__d.html#a1a09d6bc4a6584c1471999074afc1a5a":[1,0,2,18], -"structma77__control__d.html#a2c43f695ececa899ada1e70b1e5977d2":[1,0,2,5], -"structma77__control__d.html#a2cadfb4184d6bdf5987dbc5076d1afab":[1,0,2,22], -"structma77__control__d.html#a365aa7e2ce824929a193c19ccb2daa45":[1,0,2,1], -"structma77__control__d.html#a3854dab3e149e9d72c4c91d2abf9eb04":[1,0,2,28], -"structma77__control__d.html#a3eedf0cd018aa09b918484a958ceb6f0":[1,0,2,9], -"structma77__control__d.html#a431e9971cb337a113cf8a669964032a2":[1,0,2,24], -"structma77__control__d.html#a45e985de1b5463effe534bc3e35e19bd":[1,0,2,13], -"structma77__control__d.html#a48764c67a40eaf4d60b704853b6df6f2":[1,0,2,6] +"structma77__control__d.html#a1a09d6bc4a6584c1471999074afc1a5a":[1,0,2,18] }; diff --git a/navtreeindex27.js b/navtreeindex27.js index 6e20575f3..b4bba68ac 100644 --- a/navtreeindex27.js +++ b/navtreeindex27.js @@ -1,5 +1,13 @@ var NAVTREEINDEX27 = { +"structma77__control__d.html#a2c43f695ececa899ada1e70b1e5977d2":[1,0,2,5], +"structma77__control__d.html#a2cadfb4184d6bdf5987dbc5076d1afab":[1,0,2,22], +"structma77__control__d.html#a365aa7e2ce824929a193c19ccb2daa45":[1,0,2,1], +"structma77__control__d.html#a3854dab3e149e9d72c4c91d2abf9eb04":[1,0,2,28], +"structma77__control__d.html#a3eedf0cd018aa09b918484a958ceb6f0":[1,0,2,9], +"structma77__control__d.html#a431e9971cb337a113cf8a669964032a2":[1,0,2,24], +"structma77__control__d.html#a45e985de1b5463effe534bc3e35e19bd":[1,0,2,13], +"structma77__control__d.html#a48764c67a40eaf4d60b704853b6df6f2":[1,0,2,6], "structma77__control__d.html#a4e4133ceef6c3b6369210171f7998fcb":[1,0,2,0], "structma77__control__d.html#a7956ea75ac76e1769b7e3920b863f2bb":[1,0,2,21], "structma77__control__d.html#a94d184df91cdb9c06f974410d8e3bd7b":[1,0,2,23], @@ -241,13 +249,5 @@ var NAVTREEINDEX27 = "structma97__info__d.html#ad44076bff89516fe7c77c31f28bfb019":[1,0,12,2], "structma97__info__d.html#adb40859465c6e0dac72d3e058c186960":[1,0,12,1], "structma97__info__d.html#aec4fde3d80b9e35c05dd17c5b2ae524d":[1,0,12,6], -"structma97__info__d.html#af7498680aa698cb80d85a191a5f75c89":[1,0,12,9], -"structma97__info__s.html":[1,0,13], -"structma97__info__s.html#a05fe31aaca91e57510f943cfc8a3c62d":[1,0,13,16], -"structma97__info__s.html#a0b49558d55b5dee850670c659c841bd9":[1,0,13,4], -"structma97__info__s.html#a0d6ae736e8ca28d8edc74dc92e7dc682":[1,0,13,12], -"structma97__info__s.html#a21db1aef725348a72ff597226082a2fa":[1,0,13,11], -"structma97__info__s.html#a2aec1d294212368ddf425f9a195f7cd4":[1,0,13,19], -"structma97__info__s.html#a2ecd46a929d16edc65134f34e8733b0f":[1,0,13,15], -"structma97__info__s.html#a32fe6f2ad34f93960d7f714db31143fd":[1,0,13,6] +"structma97__info__d.html#af7498680aa698cb80d85a191a5f75c89":[1,0,12,9] }; diff --git a/navtreeindex28.js b/navtreeindex28.js index d2865b2a5..ab4fd1200 100644 --- a/navtreeindex28.js +++ b/navtreeindex28.js @@ -1,5 +1,13 @@ var NAVTREEINDEX28 = { +"structma97__info__s.html":[1,0,13], +"structma97__info__s.html#a05fe31aaca91e57510f943cfc8a3c62d":[1,0,13,16], +"structma97__info__s.html#a0b49558d55b5dee850670c659c841bd9":[1,0,13,4], +"structma97__info__s.html#a0d6ae736e8ca28d8edc74dc92e7dc682":[1,0,13,12], +"structma97__info__s.html#a21db1aef725348a72ff597226082a2fa":[1,0,13,11], +"structma97__info__s.html#a2aec1d294212368ddf425f9a195f7cd4":[1,0,13,19], +"structma97__info__s.html#a2ecd46a929d16edc65134f34e8733b0f":[1,0,13,15], +"structma97__info__s.html#a32fe6f2ad34f93960d7f714db31143fd":[1,0,13,6], "structma97__info__s.html#a36b696fdad1ca7d805f759a98587bdcc":[1,0,13,2], "structma97__info__s.html#a38c81f048be470b995d559f80b76b431":[1,0,13,7], "structma97__info__s.html#a47bc7bccb423fcf27f3c6a8b3b2cc4df":[1,0,13,1], diff --git a/navtreeindex3.js b/navtreeindex3.js index 156bdb15a..38dee671f 100644 --- a/navtreeindex3.js +++ b/navtreeindex3.js @@ -1,5 +1,7 @@ var NAVTREEINDEX3 = { +"SensBacksolver_8hpp_source.html":[2,0,0,0,1,2], +"SensBuilder_8hpp.html":[2,0,0,0,1,3], "SensBuilder_8hpp.html#ad00d34c37128c8a05abc0561539594e4":[2,0,0,0,1,3,1], "SensBuilder_8hpp_source.html":[2,0,0,0,1,3], "SensDenseGenSchurDriver_8hpp.html":[2,0,0,0,1,4], @@ -222,32 +224,30 @@ var NAVTREEINDEX3 = "classIpopt_1_1AmplSuffixHandler.html#afc127318301fadfb687ae86aac6a6889":[1,0,0,4,13], "classIpopt_1_1AmplSuffixHandler.html#afcd2fd0b07735db08932918ecb49ea95":[1,0,0,4,12], "classIpopt_1_1AmplTNLP.html":[1,0,0,5], -"classIpopt_1_1AmplTNLP.html#a01a73e0fad4baf58f416adf5bb348dcc":[1,0,0,5,54], -"classIpopt_1_1AmplTNLP.html#a02a280141a3ec9b2b0679ff01398072e":[1,0,0,5,30], +"classIpopt_1_1AmplTNLP.html#a01a73e0fad4baf58f416adf5bb348dcc":[1,0,0,5,55], +"classIpopt_1_1AmplTNLP.html#a02a280141a3ec9b2b0679ff01398072e":[1,0,0,5,31], "classIpopt_1_1AmplTNLP.html#a05342a7a193a9451c09837b3de387fb8":[1,0,0,5,14], -"classIpopt_1_1AmplTNLP.html#a09ae1a3052a19988433941e250151428":[1,0,0,5,56], -"classIpopt_1_1AmplTNLP.html#a0db97ee895b0c54a503772bb8667fdb5":[1,0,0,5,60], -"classIpopt_1_1AmplTNLP.html#a14d7c984c510dad373d700335ddf1ca1":[1,0,0,5,27], -"classIpopt_1_1AmplTNLP.html#a1f1f65c49a02ef551f1be28929130008":[1,0,0,5,42], -"classIpopt_1_1AmplTNLP.html#a21d1ef37ca415f1e7b2b4106e4c614a9":[1,0,0,5,45], -"classIpopt_1_1AmplTNLP.html#a2535706fb770ebda7b50219b11352c92":[1,0,0,5,18], +"classIpopt_1_1AmplTNLP.html#a09ae1a3052a19988433941e250151428":[1,0,0,5,57], +"classIpopt_1_1AmplTNLP.html#a0db97ee895b0c54a503772bb8667fdb5":[1,0,0,5,63], +"classIpopt_1_1AmplTNLP.html#a14d7c984c510dad373d700335ddf1ca1":[1,0,0,5,28], +"classIpopt_1_1AmplTNLP.html#a1f1f65c49a02ef551f1be28929130008":[1,0,0,5,43], +"classIpopt_1_1AmplTNLP.html#a207103b08555ac8ebb38d0cf818e0a46":[1,0,0,5,59], +"classIpopt_1_1AmplTNLP.html#a21d1ef37ca415f1e7b2b4106e4c614a9":[1,0,0,5,46], +"classIpopt_1_1AmplTNLP.html#a2535706fb770ebda7b50219b11352c92":[1,0,0,5,19], "classIpopt_1_1AmplTNLP.html#a2ab397aae36cd6e826376d264fa9d315":[1,0,0,5,4], "classIpopt_1_1AmplTNLP.html#a2cf9fdea2872f6f9bbdf5043ebdf7e6c":[1,0,0,5,6], -"classIpopt_1_1AmplTNLP.html#a2d7cb241b31a80146129bc5799d9eee2":[1,0,0,5,20], -"classIpopt_1_1AmplTNLP.html#a330457824e6fbcfc44462732f0dd56e5":[1,0,0,5,43], -"classIpopt_1_1AmplTNLP.html#a362e90482ca019dca0f34431cfe18447":[1,0,0,5,32], -"classIpopt_1_1AmplTNLP.html#a38037bb2d1b0204f809f24eb10066ae2":[1,0,0,5,58], +"classIpopt_1_1AmplTNLP.html#a2d7cb241b31a80146129bc5799d9eee2":[1,0,0,5,21], +"classIpopt_1_1AmplTNLP.html#a330457824e6fbcfc44462732f0dd56e5":[1,0,0,5,44], +"classIpopt_1_1AmplTNLP.html#a362e90482ca019dca0f34431cfe18447":[1,0,0,5,33], +"classIpopt_1_1AmplTNLP.html#a38037bb2d1b0204f809f24eb10066ae2":[1,0,0,5,61], "classIpopt_1_1AmplTNLP.html#a4742bc188af6f0f1feeef3728ed9ee88":[1,0,0,5,5], -"classIpopt_1_1AmplTNLP.html#a498921760ac6aded9abe4333a26ec459":[1,0,0,5,57], -"classIpopt_1_1AmplTNLP.html#a4df4da8ede66c3e3116aaf09a1e26b11":[1,0,0,5,52], -"classIpopt_1_1AmplTNLP.html#a5a029fb8447cd33af621ad07ab69b133":[1,0,0,5,35], +"classIpopt_1_1AmplTNLP.html#a498921760ac6aded9abe4333a26ec459":[1,0,0,5,60], +"classIpopt_1_1AmplTNLP.html#a4df4da8ede66c3e3116aaf09a1e26b11":[1,0,0,5,53], +"classIpopt_1_1AmplTNLP.html#a5a029fb8447cd33af621ad07ab69b133":[1,0,0,5,36], "classIpopt_1_1AmplTNLP.html#a5a577627e4c83061a05787930724620f":[1,0,0,5,3], "classIpopt_1_1AmplTNLP.html#a5bf35981f12a6386e5f823fe3b99f299":[1,0,0,5,1], -"classIpopt_1_1AmplTNLP.html#a5cfa70d32b5ddfb565347f8c479462b1":[1,0,0,5,40], -"classIpopt_1_1AmplTNLP.html#a5f110edd912d943a85f3af2d7bb98bb3":[1,0,0,5,17], -"classIpopt_1_1AmplTNLP.html#a5f4d2007a55884bb21643cfb82988ce0":[1,0,0,5,44], -"classIpopt_1_1AmplTNLP.html#a60b0eb2bb08619261e4d0e292ad0e854":[1,0,0,5,16], -"classIpopt_1_1AmplTNLP.html#a60ea8db9be8ce3baa1b7086a023ab633":[1,0,0,5,13], -"classIpopt_1_1AmplTNLP.html#a617b5e7de6693324ff3236c347bd62e3":[1,0,0,5,12], -"classIpopt_1_1AmplTNLP.html#a6d0b2f3e6d8d565b16d04484cd1efe56":[1,0,0,5,59] +"classIpopt_1_1AmplTNLP.html#a5cfa70d32b5ddfb565347f8c479462b1":[1,0,0,5,41], +"classIpopt_1_1AmplTNLP.html#a5f110edd912d943a85f3af2d7bb98bb3":[1,0,0,5,18], +"classIpopt_1_1AmplTNLP.html#a5f4d2007a55884bb21643cfb82988ce0":[1,0,0,5,45], +"classIpopt_1_1AmplTNLP.html#a60b0eb2bb08619261e4d0e292ad0e854":[1,0,0,5,16] }; diff --git a/navtreeindex4.js b/navtreeindex4.js index ce686be7e..4b5491ef8 100644 --- a/navtreeindex4.js +++ b/navtreeindex4.js @@ -1,40 +1,45 @@ var NAVTREEINDEX4 = { -"classIpopt_1_1AmplTNLP.html#a725d09f0beca55ea55a06df68f38d72a":[1,0,0,5,19], -"classIpopt_1_1AmplTNLP.html#a77d711aa93069652690e205de128f480":[1,0,0,5,49], +"classIpopt_1_1AmplTNLP.html#a60ea8db9be8ce3baa1b7086a023ab633":[1,0,0,5,13], +"classIpopt_1_1AmplTNLP.html#a617b5e7de6693324ff3236c347bd62e3":[1,0,0,5,12], +"classIpopt_1_1AmplTNLP.html#a68f7a8e7314fc848ebdb190393121fe7":[1,0,0,5,0], +"classIpopt_1_1AmplTNLP.html#a6d0b2f3e6d8d565b16d04484cd1efe56":[1,0,0,5,62], +"classIpopt_1_1AmplTNLP.html#a6f25c70227d6ddadf6f691781007c944":[1,0,0,5,17], +"classIpopt_1_1AmplTNLP.html#a725d09f0beca55ea55a06df68f38d72a":[1,0,0,5,20], +"classIpopt_1_1AmplTNLP.html#a77d711aa93069652690e205de128f480":[1,0,0,5,50], "classIpopt_1_1AmplTNLP.html#a84f60eb40fe4e12b96cbb62c99e9001e":[1,0,0,5,10], "classIpopt_1_1AmplTNLP.html#a88d2e944ecfb7593642f4fec0b936bc3":[1,0,0,5,9], -"classIpopt_1_1AmplTNLP.html#a89ebb03c7dc2eb964f78fd2499ce2da5":[1,0,0,5,62], -"classIpopt_1_1AmplTNLP.html#a8cef653e9dda06388948e5cafa46eab4":[1,0,0,5,29], -"classIpopt_1_1AmplTNLP.html#a8e690881923e4dd353ac22434951113e":[1,0,0,5,34], -"classIpopt_1_1AmplTNLP.html#a8f0fc4add585d82106adfed66c21d42a":[1,0,0,5,22], -"classIpopt_1_1AmplTNLP.html#a8fc78c09f2135be645b50d28b3039553":[1,0,0,5,36], +"classIpopt_1_1AmplTNLP.html#a89ebb03c7dc2eb964f78fd2499ce2da5":[1,0,0,5,65], +"classIpopt_1_1AmplTNLP.html#a8cef653e9dda06388948e5cafa46eab4":[1,0,0,5,30], +"classIpopt_1_1AmplTNLP.html#a8e690881923e4dd353ac22434951113e":[1,0,0,5,35], +"classIpopt_1_1AmplTNLP.html#a8f0fc4add585d82106adfed66c21d42a":[1,0,0,5,23], +"classIpopt_1_1AmplTNLP.html#a8fc78c09f2135be645b50d28b3039553":[1,0,0,5,37], "classIpopt_1_1AmplTNLP.html#a944ad51b4e14545324e0e4513e0c89ae":[1,0,0,5,15], -"classIpopt_1_1AmplTNLP.html#a97ed7c89011e8bd6c2ddd9566c90362f":[1,0,0,5,24], -"classIpopt_1_1AmplTNLP.html#a998d6450143d38a811a4e775c41c2f2e":[1,0,0,5,37], +"classIpopt_1_1AmplTNLP.html#a97ed7c89011e8bd6c2ddd9566c90362f":[1,0,0,5,25], +"classIpopt_1_1AmplTNLP.html#a998d6450143d38a811a4e775c41c2f2e":[1,0,0,5,38], "classIpopt_1_1AmplTNLP.html#a9b8a0ff63aa5addfecbe7f54dff43acd":[1,0,0,5,2], -"classIpopt_1_1AmplTNLP.html#aa094d47f17e0fe86ccc6dcc3ac946227":[1,0,0,5,21], +"classIpopt_1_1AmplTNLP.html#aa094d47f17e0fe86ccc6dcc3ac946227":[1,0,0,5,22], "classIpopt_1_1AmplTNLP.html#aa50b7555bb6bcc3965fcdefb0ea130c5":[1,0,0,5,11], "classIpopt_1_1AmplTNLP.html#aa5ff22cac95b61708a49324974305d7e":[1,0,0,5,8], -"classIpopt_1_1AmplTNLP.html#aa63dc17fa5263ef062e1e57df929f902":[1,0,0,5,51], -"classIpopt_1_1AmplTNLP.html#aaffeb45c6386822bd35fe8dab71ff700":[1,0,0,5,48], -"classIpopt_1_1AmplTNLP.html#ab7b6b93bef05a98e1be4ce1898e3d1e2":[1,0,0,5,26], -"classIpopt_1_1AmplTNLP.html#ab9f80fa0ba4ff8f3bd90ef2bb926be49":[1,0,0,5,39], -"classIpopt_1_1AmplTNLP.html#abccdde624507a0bdabdc6de0fe43519c":[1,0,0,5,47], -"classIpopt_1_1AmplTNLP.html#abd98a89e88e8b334c39602c446c348c5":[1,0,0,5,25], -"classIpopt_1_1AmplTNLP.html#ace24d4a55485bb96b1763db1443f9abe":[1,0,0,5,55], -"classIpopt_1_1AmplTNLP.html#aceec87659697692a84a9c6330d137c70":[1,0,0,5,46], -"classIpopt_1_1AmplTNLP.html#ad02dfc75187295fee8641938319eeeea":[1,0,0,5,50], +"classIpopt_1_1AmplTNLP.html#aa63dc17fa5263ef062e1e57df929f902":[1,0,0,5,52], +"classIpopt_1_1AmplTNLP.html#aaffeb45c6386822bd35fe8dab71ff700":[1,0,0,5,49], +"classIpopt_1_1AmplTNLP.html#ab7b6b93bef05a98e1be4ce1898e3d1e2":[1,0,0,5,27], +"classIpopt_1_1AmplTNLP.html#ab9f80fa0ba4ff8f3bd90ef2bb926be49":[1,0,0,5,40], +"classIpopt_1_1AmplTNLP.html#abccdde624507a0bdabdc6de0fe43519c":[1,0,0,5,48], +"classIpopt_1_1AmplTNLP.html#abd98a89e88e8b334c39602c446c348c5":[1,0,0,5,26], +"classIpopt_1_1AmplTNLP.html#ace24d4a55485bb96b1763db1443f9abe":[1,0,0,5,56], +"classIpopt_1_1AmplTNLP.html#aceec87659697692a84a9c6330d137c70":[1,0,0,5,47], +"classIpopt_1_1AmplTNLP.html#ad02dfc75187295fee8641938319eeeea":[1,0,0,5,51], "classIpopt_1_1AmplTNLP.html#ad407145cdc1b323926c584aeb909e501":[1,0,0,5,7], -"classIpopt_1_1AmplTNLP.html#ad5703e41bc0f32bfcb99cd4a31ededbe":[1,0,0,5,33], -"classIpopt_1_1AmplTNLP.html#ad605aff70cd47ba02bee3b0f2758a94e":[1,0,0,5,28], -"classIpopt_1_1AmplTNLP.html#ae2fc537c6e9b224862899fe836fcf07e":[1,0,0,5,53], -"classIpopt_1_1AmplTNLP.html#aed410ab6bd273ede77050a36bd85c240":[1,0,0,5,0], -"classIpopt_1_1AmplTNLP.html#af1e99138f25e1c2b5eea67eae444a3cf":[1,0,0,5,31], -"classIpopt_1_1AmplTNLP.html#af9d12945a7750eaef07feef07a51b3df":[1,0,0,5,61], -"classIpopt_1_1AmplTNLP.html#afb046d3ac530c8606693758046365c83":[1,0,0,5,23], -"classIpopt_1_1AmplTNLP.html#afc9479e3d09aa3fd628d19b9aab99fa5":[1,0,0,5,38], -"classIpopt_1_1AmplTNLP.html#afdcfdb325a7b8d366be40abaef9e28aa":[1,0,0,5,41], +"classIpopt_1_1AmplTNLP.html#ad564603d07c46119004ef35c84fe8964":[1,0,0,5,58], +"classIpopt_1_1AmplTNLP.html#ad5703e41bc0f32bfcb99cd4a31ededbe":[1,0,0,5,34], +"classIpopt_1_1AmplTNLP.html#ad605aff70cd47ba02bee3b0f2758a94e":[1,0,0,5,29], +"classIpopt_1_1AmplTNLP.html#ae2fc537c6e9b224862899fe836fcf07e":[1,0,0,5,54], +"classIpopt_1_1AmplTNLP.html#af1e99138f25e1c2b5eea67eae444a3cf":[1,0,0,5,32], +"classIpopt_1_1AmplTNLP.html#af9d12945a7750eaef07feef07a51b3df":[1,0,0,5,64], +"classIpopt_1_1AmplTNLP.html#afb046d3ac530c8606693758046365c83":[1,0,0,5,24], +"classIpopt_1_1AmplTNLP.html#afc9479e3d09aa3fd628d19b9aab99fa5":[1,0,0,5,39], +"classIpopt_1_1AmplTNLP.html#afdcfdb325a7b8d366be40abaef9e28aa":[1,0,0,5,42], "classIpopt_1_1AugRestoSystemSolver.html":[1,0,0,6], "classIpopt_1_1AugRestoSystemSolver.html#a002657bc804d7a9f52a02d5e0fa112e0":[1,0,0,6,14], "classIpopt_1_1AugRestoSystemSolver.html#a05265078876fad65b7044984996b2d5e":[1,0,0,6,15], @@ -244,10 +249,5 @@ var NAVTREEINDEX4 = "classIpopt_1_1CGPenaltyData.html#ab3b97c94ada4f12100a02139959d48e5":[1,0,0,12,12], "classIpopt_1_1CGPenaltyData.html#abbfa1e792362839c7c8438e26957ac60":[1,0,0,12,8], "classIpopt_1_1CGPenaltyData.html#ac497b20c9dc0ca1a94192972acfea820":[1,0,0,12,44], -"classIpopt_1_1CGPenaltyData.html#ac5754c87ea201489f94bc3de5b1fe7d5":[1,0,0,12,47], -"classIpopt_1_1CGPenaltyData.html#ac5e7498173de1c11129713647d80cdae":[1,0,0,12,40], -"classIpopt_1_1CGPenaltyData.html#acc9a6f88285d4f7dee774029e35a1f3d":[1,0,0,12,13], -"classIpopt_1_1CGPenaltyData.html#ad6b1bc2be8e81526a72b4f8cf5b37fe2":[1,0,0,12,15], -"classIpopt_1_1CGPenaltyData.html#ad8efc1158b392b6ebab565c43cb423c0":[1,0,0,12,45], -"classIpopt_1_1CGPenaltyData.html#ae821fc9886fd3254a1f5662fd6cf79aa":[1,0,0,12,31] +"classIpopt_1_1CGPenaltyData.html#ac5754c87ea201489f94bc3de5b1fe7d5":[1,0,0,12,47] }; diff --git a/navtreeindex5.js b/navtreeindex5.js index 6ccfc904e..ba4c2e1cd 100644 --- a/navtreeindex5.js +++ b/navtreeindex5.js @@ -1,5 +1,10 @@ var NAVTREEINDEX5 = { +"classIpopt_1_1CGPenaltyData.html#ac5e7498173de1c11129713647d80cdae":[1,0,0,12,40], +"classIpopt_1_1CGPenaltyData.html#acc9a6f88285d4f7dee774029e35a1f3d":[1,0,0,12,13], +"classIpopt_1_1CGPenaltyData.html#ad6b1bc2be8e81526a72b4f8cf5b37fe2":[1,0,0,12,15], +"classIpopt_1_1CGPenaltyData.html#ad8efc1158b392b6ebab565c43cb423c0":[1,0,0,12,45], +"classIpopt_1_1CGPenaltyData.html#ae821fc9886fd3254a1f5662fd6cf79aa":[1,0,0,12,31], "classIpopt_1_1CGPenaltyData.html#aeab7fb727196b03c685a8f05bf100902":[1,0,0,12,29], "classIpopt_1_1CGPenaltyData.html#af1894ad54b1e8751f45c0332530870da":[1,0,0,12,33], "classIpopt_1_1CGPenaltyData.html#af3636e593be3a1a50b6b967e77bc934b":[1,0,0,12,21], @@ -244,10 +249,5 @@ var NAVTREEINDEX5 = "classIpopt_1_1CompoundVector.html#a10ce2480047e1d8bb2ab317747f28fe2":[1,0,0,20,45], "classIpopt_1_1CompoundVector.html#a23fe9f85d94a98f3de2d9d618a5c140d":[1,0,0,20,13], "classIpopt_1_1CompoundVector.html#a2fccf227bb3be59d7eae4453fbabc905":[1,0,0,20,1], -"classIpopt_1_1CompoundVector.html#a3048057b020cf29c024afa7acccca441":[1,0,0,20,39], -"classIpopt_1_1CompoundVector.html#a308940d62e1c1cdc134db818653f85eb":[1,0,0,20,29], -"classIpopt_1_1CompoundVector.html#a32b3b120dbd1df95d32c45fae7b61d92":[1,0,0,20,41], -"classIpopt_1_1CompoundVector.html#a34d64b170354f531723ef2b5dec0ce1b":[1,0,0,20,4], -"classIpopt_1_1CompoundVector.html#a3ab7b7117f9b321f654bb294d7012558":[1,0,0,20,9], -"classIpopt_1_1CompoundVector.html#a447431285a175ad7f1cf4d2343c35b73":[1,0,0,20,20] +"classIpopt_1_1CompoundVector.html#a3048057b020cf29c024afa7acccca441":[1,0,0,20,39] }; diff --git a/navtreeindex6.js b/navtreeindex6.js index b93c7e189..535807804 100644 --- a/navtreeindex6.js +++ b/navtreeindex6.js @@ -1,5 +1,10 @@ var NAVTREEINDEX6 = { +"classIpopt_1_1CompoundVector.html#a308940d62e1c1cdc134db818653f85eb":[1,0,0,20,29], +"classIpopt_1_1CompoundVector.html#a32b3b120dbd1df95d32c45fae7b61d92":[1,0,0,20,41], +"classIpopt_1_1CompoundVector.html#a34d64b170354f531723ef2b5dec0ce1b":[1,0,0,20,4], +"classIpopt_1_1CompoundVector.html#a3ab7b7117f9b321f654bb294d7012558":[1,0,0,20,9], +"classIpopt_1_1CompoundVector.html#a447431285a175ad7f1cf4d2343c35b73":[1,0,0,20,20], "classIpopt_1_1CompoundVector.html#a4480fd34f0fe32a767a9e07acb638326":[1,0,0,20,37], "classIpopt_1_1CompoundVector.html#a45a77bf549eafc343cb74b83c2123dae":[1,0,0,20,42], "classIpopt_1_1CompoundVector.html#a462e495c702b61aab3703ac14808bfea":[1,0,0,20,16], @@ -244,10 +249,5 @@ var NAVTREEINDEX6 = "classIpopt_1_1DenseVectorSpace.html#ae41977efc786dd75b303841c8732a039":[1,0,0,30,7], "classIpopt_1_1DenseVectorSpace.html#ae70b1acb438cc8c6049f9a4507384e29":[1,0,0,30,1], "classIpopt_1_1DenseVectorSpace.html#af3bc9ab94371c5cd96b43c5104c8ce79":[1,0,0,30,2], -"classIpopt_1_1DenseVectorSpace.html#af4180a406b5325d6c008cdcba990ce13":[1,0,0,30,16], -"classIpopt_1_1DenseVectorSpace.html#afa53587dc9ff038a4e14854a177be0c8":[1,0,0,30,9], -"classIpopt_1_1DenseVectorSpace.html#afdc7d13e308f39cf442b6ec3a45bd770":[1,0,0,30,3], -"classIpopt_1_1DependentResult.html":[1,0,0,31], -"classIpopt_1_1DependentResult.html#a180e1639146e0b12b5b715a7e29ccc97":[1,0,0,31,8], -"classIpopt_1_1DependentResult.html#a1c443217396c7f2deafe4d94be51b389":[1,0,0,31,6] +"classIpopt_1_1DenseVectorSpace.html#af4180a406b5325d6c008cdcba990ce13":[1,0,0,30,16] }; diff --git a/navtreeindex7.js b/navtreeindex7.js index f8b0789fb..d0e589e1e 100644 --- a/navtreeindex7.js +++ b/navtreeindex7.js @@ -1,5 +1,10 @@ var NAVTREEINDEX7 = { +"classIpopt_1_1DenseVectorSpace.html#afa53587dc9ff038a4e14854a177be0c8":[1,0,0,30,9], +"classIpopt_1_1DenseVectorSpace.html#afdc7d13e308f39cf442b6ec3a45bd770":[1,0,0,30,3], +"classIpopt_1_1DependentResult.html":[1,0,0,31], +"classIpopt_1_1DependentResult.html#a180e1639146e0b12b5b715a7e29ccc97":[1,0,0,31,8], +"classIpopt_1_1DependentResult.html#a1c443217396c7f2deafe4d94be51b389":[1,0,0,31,6], "classIpopt_1_1DependentResult.html#a1d82971435f77d9285ab25dbd379b7d4":[1,0,0,31,2], "classIpopt_1_1DependentResult.html#a375cc4740d1ebf06e9f4a69be848e7c2":[1,0,0,31,3], "classIpopt_1_1DependentResult.html#a3996096057cb6ca687db56ff0a9cd778":[1,0,0,31,13], @@ -244,10 +249,5 @@ var NAVTREEINDEX7 = "classIpopt_1_1GenAugSystemSolver.html#af74d33996619213d8aac4a331e220945":[1,0,0,45,17], "classIpopt_1_1GenKKTSolverInterface.html":[1,0,0,46], "classIpopt_1_1GenKKTSolverInterface.html#a11e8b46a72275fc25f870e924db3ff3a":[1,0,0,46,3], -"classIpopt_1_1GenKKTSolverInterface.html#a3f9c2a063357bb95a66fbee6607e7640":[1,0,0,46,4], -"classIpopt_1_1GenKKTSolverInterface.html#a4e40b8f8046b588ef3f9c703dd0a35f9":[1,0,0,46,2], -"classIpopt_1_1GenKKTSolverInterface.html#a84938b57266632f66530b67b86b9015f":[1,0,0,46,5], -"classIpopt_1_1GenKKTSolverInterface.html#aa96d7e87f2b0eb54015a8a5ef44ed002":[1,0,0,46,6], -"classIpopt_1_1GenKKTSolverInterface.html#aee47022a6304308340ba264b5f605d86":[1,0,0,46,1], -"classIpopt_1_1GenKKTSolverInterface.html#afba801986d6c98495130867331bd7242":[1,0,0,46,0] +"classIpopt_1_1GenKKTSolverInterface.html#a3f9c2a063357bb95a66fbee6607e7640":[1,0,0,46,4] }; diff --git a/navtreeindex8.js b/navtreeindex8.js index 9b7736d72..65cc886d4 100644 --- a/navtreeindex8.js +++ b/navtreeindex8.js @@ -1,5 +1,10 @@ var NAVTREEINDEX8 = { +"classIpopt_1_1GenKKTSolverInterface.html#a4e40b8f8046b588ef3f9c703dd0a35f9":[1,0,0,46,2], +"classIpopt_1_1GenKKTSolverInterface.html#a84938b57266632f66530b67b86b9015f":[1,0,0,46,5], +"classIpopt_1_1GenKKTSolverInterface.html#aa96d7e87f2b0eb54015a8a5ef44ed002":[1,0,0,46,6], +"classIpopt_1_1GenKKTSolverInterface.html#aee47022a6304308340ba264b5f605d86":[1,0,0,46,1], +"classIpopt_1_1GenKKTSolverInterface.html#afba801986d6c98495130867331bd7242":[1,0,0,46,0], "classIpopt_1_1GenTMatrix.html":[1,0,0,47], "classIpopt_1_1GenTMatrix.html#a0d844853f5e916ef0573e08c91fee9d5":[1,0,0,47,0], "classIpopt_1_1GenTMatrix.html#a135ffa11023af87fd2f7e05d3bc380c7":[1,0,0,47,21], @@ -244,10 +249,5 @@ var NAVTREEINDEX8 = "classIpopt_1_1InexactLSAcceptor.html#add7635a0c6b4acfd1180f576ffc904ca":[1,0,0,59,21], "classIpopt_1_1InexactLSAcceptor.html#ae398c0c8b111df00695aaf9ccc24cecd":[1,0,0,59,23], "classIpopt_1_1InexactLSAcceptor.html#aeb39c5823cf2a05f9c939efc23ece6c2":[1,0,0,59,29], -"classIpopt_1_1InexactLSAcceptor.html#aed27ed7f9098f2cdaecfcf78c57a946a":[1,0,0,59,45], -"classIpopt_1_1InexactLSAcceptor.html#aedc2a4b7b5d5dad97bb8ed35f41543d6":[1,0,0,59,39], -"classIpopt_1_1InexactLSAcceptor.html#af4d3c0298d76f002b2d244d2b7c08cad":[1,0,0,59,38], -"classIpopt_1_1InexactLSAcceptor.html#af6c191f6dafbeada220e206131d669b5":[1,0,0,59,19], -"classIpopt_1_1InexactLSAcceptor.html#af920c9da39842c66b2c41f61f9e9fe91":[1,0,0,59,35], -"classIpopt_1_1InexactLSAcceptor.html#af9eff792886364a143b656eee3d61f86":[1,0,0,59,10] +"classIpopt_1_1InexactLSAcceptor.html#aed27ed7f9098f2cdaecfcf78c57a946a":[1,0,0,59,45] }; diff --git a/navtreeindex9.js b/navtreeindex9.js index 59faad2f9..9f2214733 100644 --- a/navtreeindex9.js +++ b/navtreeindex9.js @@ -1,5 +1,10 @@ var NAVTREEINDEX9 = { +"classIpopt_1_1InexactLSAcceptor.html#aedc2a4b7b5d5dad97bb8ed35f41543d6":[1,0,0,59,39], +"classIpopt_1_1InexactLSAcceptor.html#af4d3c0298d76f002b2d244d2b7c08cad":[1,0,0,59,38], +"classIpopt_1_1InexactLSAcceptor.html#af6c191f6dafbeada220e206131d669b5":[1,0,0,59,19], +"classIpopt_1_1InexactLSAcceptor.html#af920c9da39842c66b2c41f61f9e9fe91":[1,0,0,59,35], +"classIpopt_1_1InexactLSAcceptor.html#af9eff792886364a143b656eee3d61f86":[1,0,0,59,10], "classIpopt_1_1InexactLSAcceptor.html#afa1e003c47576619e0ad9750bf38095b":[1,0,0,59,6], "classIpopt_1_1InexactLSAcceptor.html#afe532f90d724856dd417328d9393f247":[1,0,0,59,41], "classIpopt_1_1InexactNewtonNormalStep.html":[1,0,0,60], @@ -244,10 +249,5 @@ var NAVTREEINDEX9 = "classIpopt_1_1IpoptCalculatedQuantities.html#a106a8fa8780188ac17ed54d423212431":[1,0,0,71,54], "classIpopt_1_1IpoptCalculatedQuantities.html#a10b3fcfcf4d2bd8fde1eb0533065aae4":[1,0,0,71,55], "classIpopt_1_1IpoptCalculatedQuantities.html#a11a5d22df62ed70724e4df4f09a69921":[1,0,0,71,82], -"classIpopt_1_1IpoptCalculatedQuantities.html#a11e83757d902c55be4012546f90df00d":[1,0,0,71,46], -"classIpopt_1_1IpoptCalculatedQuantities.html#a12e8c3d6081b1426571e204b6eb4d470":[1,0,0,71,129], -"classIpopt_1_1IpoptCalculatedQuantities.html#a158c34cad7ba65681e9722dca6907e4e":[1,0,0,71,123], -"classIpopt_1_1IpoptCalculatedQuantities.html#a1628eccfc53c0411519a36afedef7c92":[1,0,0,71,2], -"classIpopt_1_1IpoptCalculatedQuantities.html#a1640157e330bdcd41c10e175f1efd67a":[1,0,0,71,142], -"classIpopt_1_1IpoptCalculatedQuantities.html#a18225e7708add8705943f20fccc68939":[1,0,0,71,41] +"classIpopt_1_1IpoptCalculatedQuantities.html#a11e83757d902c55be4012546f90df00d":[1,0,0,71,46] }; diff --git a/options_8dox.html b/options_8dox.html index bc4c21d6c..adb827afb 100644 --- a/options_8dox.html +++ b/options_8dox.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/output_8dox.html b/output_8dox.html index a13292ceb..d2d9fd273 100644 --- a/output_8dox.html +++ b/output_8dox.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/pages.html b/pages.html index 96c1681e1..aebc3cbee 100644 --- a/pages.html +++ b/pages.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/search/all_0.js b/search/all_0.js index 35a43eb73..ec5cd7b87 100644 --- a/search/all_0.js +++ b/search/all_0.js @@ -1,95 +1,96 @@ var searchData= [ - ['0_0',['3.0',['../md_ChangeLog.html#autotoc_md106',1,'']]], - ['0_200_202005_2008_2026_20dev_20release_20number_20510_1',['3.0.0 (2005-08-26) - dev release number 510',['../md_ChangeLog.html#autotoc_md108',1,'']]], - ['0_201_202005_2012_2004_2',['3.0.1 (2005-12-04)',['../md_ChangeLog.html#autotoc_md107',1,'']]], - ['0_202004_2003_2010_3',['2.2.0 (2004-03-10)',['../md_ChangeLog.html#autotoc_md119',1,'']]], - ['0_202006_2004_2008_20dev_20release_20number_20714_4',['3.1.0 (2006-04-08) - dev release number 714',['../md_ChangeLog.html#autotoc_md105',1,'']]], - ['0_202006_2007_2007_20dev_20release_20number_20757_5',['3.2.0 (2006-07-07) - dev release number 757',['../md_ChangeLog.html#autotoc_md103',1,'']]], - ['0_202008_2004_2025_6',['3.4.0 (2008-04-25)',['../md_ChangeLog.html#autotoc_md92',1,'']]], - ['0_202008_2008_2025_7',['3.5.0 (2008-08-25)',['../md_ChangeLog.html#autotoc_md88',1,'']]], - ['0_202009_2004_2029_8',['3.6.0 (2009-04-29)',['../md_ChangeLog.html#autotoc_md81',1,'']]], - ['0_202009_2007_2016_9',['3.7.0 (2009-07-16)',['../md_ChangeLog.html#autotoc_md78',1,'']]], - ['0_202009_2010_2030_10',['3.8.0 (2009-10-30)',['../md_ChangeLog.html#autotoc_md75',1,'']]], - ['0_202010_2011_2005_11',['3.9.0 (2010-11-05)',['../md_ChangeLog.html#autotoc_md70',1,'']]], - ['0_202011_2006_2020_12',['3.10.0 (2011-06-20)',['../md_ChangeLog.html#autotoc_md65',1,'']]], - ['0_202013_2005_2007_13',['3.11.0 (2013-05-07)',['../md_ChangeLog.html#autotoc_md59',1,'']]], - ['0_202015_2001_2023_14',['3.12.0 (2015-01-23)',['../md_ChangeLog.html#autotoc_md47',1,'']]], - ['0_202019_2010_2019_15',['3.13.0 (2019-10-19)',['../md_ChangeLog.html#autotoc_md32',1,'']]], - ['0_202021_2006_2015_16',['3.14.0 (2021-06-15)',['../md_ChangeLog.html#autotoc_md26',1,'']]], - ['01_17',['01',['../md_ChangeLog.html#autotoc_md57',1,'3.11.2 (2013-07-01)'],['../md_ChangeLog.html#autotoc_md80',1,'3.6.1 (2009-05-01)']]], - ['01_2007_18',['no new release (2005-01-07)',['../md_ChangeLog.html#autotoc_md112',1,'']]], - ['01_2013_19',['3.5.5 (2009-01-13)',['../md_ChangeLog.html#autotoc_md83',1,'']]], - ['01_2015_20',['3.12.9 (2018-01-15)',['../md_ChangeLog.html#autotoc_md38',1,'']]], - ['01_2018_21',['01 18',['../md_ChangeLog.html#autotoc_md49',1,'3.11.10 (2015-01-18)'],['../md_ChangeLog.html#autotoc_md12',1,'3.14.14 (2024-01-18)']]], - ['01_2023_22',['3.12.0 (2015-01-23)',['../md_ChangeLog.html#autotoc_md47',1,'']]], - ['02_23',['02',['../md_ChangeLog.html#autotoc_md37',1,'3.12.10 (2018-06-02)'],['../md_ChangeLog.html#autotoc_md20',1,'3.14.6 (2022-05-02)']]], - ['02_2007_24',['3.14.11 (2023-02-07)',['../md_ChangeLog.html#autotoc_md15',1,'']]], - ['02_2009_25',['3.14.5 (2022-02-09)',['../md_ChangeLog.html#autotoc_md21',1,'']]], - ['02_2012_26',['3.10.2 (2012-02-12)',['../md_ChangeLog.html#autotoc_md63',1,'']]], - ['02_2013_27',['3.12.1 (2015-02-13)',['../md_ChangeLog.html#autotoc_md46',1,'']]], - ['02_2024_28',['3.13.4 (2021-02-24)',['../md_ChangeLog.html#autotoc_md28',1,'']]], - ['02_2025_29',['3.12.7 (2017-02-25)',['../md_ChangeLog.html#autotoc_md40',1,'']]], - ['02_2028_30',['3.3.5 (2008-02-28)',['../md_ChangeLog.html#autotoc_md94',1,'']]], - ['03_31',['3.14.3 (2021-09-03)',['../md_ChangeLog.html#autotoc_md23',1,'']]], - ['03_2010_32',['2.2.0 (2004-03-10)',['../md_ChangeLog.html#autotoc_md119',1,'']]], - ['03_2011_33',['3.13.1 (2020-03-11)',['../md_ChangeLog.html#autotoc_md31',1,'']]], - ['04_34',['3.0.1 (2005-12-04)',['../md_ChangeLog.html#autotoc_md107',1,'']]], - ['04_2004_35',['3.12.2 (2015-04-04)',['../md_ChangeLog.html#autotoc_md45',1,'']]], - ['04_2005_36',['3.14.12 (2023-04-05)',['../md_ChangeLog.html#autotoc_md14',1,'']]], - ['04_2007_37',['3.9.3 (2011-04-07)',['../md_ChangeLog.html#autotoc_md67',1,'']]], - ['04_2008_38',['04 08',['../md_ChangeLog.html#autotoc_md51',1,'3.11.8 (2014-04-08)'],['../md_ChangeLog.html#autotoc_md34',1,'3.12.13 (2019-04-08)']]], - ['04_2008_20dev_20release_20number_20714_39',['3.1.0 (2006-04-08) - dev release number 714',['../md_ChangeLog.html#autotoc_md105',1,'']]], - ['04_2010_40',['3.14.15 (2024-04-10)',['../md_ChangeLog.html#autotoc_md11',1,'']]], - ['04_2015_41',['3.12.3 and 3.11.11 (2015-04-15)',['../md_ChangeLog.html#autotoc_md44',1,'']]], - ['04_2024_42',['3.2.4 (2007-04-24)',['../md_ChangeLog.html#autotoc_md99',1,'']]], - ['04_2025_43',['04 25',['../md_ChangeLog.html#autotoc_md118',1,'2.2.1 (2004-04-25)'],['../md_ChangeLog.html#autotoc_md92',1,'3.4.0 (2008-04-25)']]], - ['04_2028_44',['no new release (2004-04-28)',['../md_ChangeLog.html#autotoc_md117',1,'']]], - ['04_2029_45',['3.6.0 (2009-04-29)',['../md_ChangeLog.html#autotoc_md81',1,'']]], - ['04_2030_46',['04 30',['../md_ChangeLog.html#autotoc_md42',1,'3.12.5 (2016-04-30)'],['../md_ChangeLog.html#autotoc_md30',1,'3.13.2 (2020-04-30)']]], - ['05_47',['05',['../md_ChangeLog.html#autotoc_md113',1,'2.2.1d (2004-10-05)'],['../md_ChangeLog.html#autotoc_md14',1,'3.14.12 (2023-04-05)'],['../md_ChangeLog.html#autotoc_md70',1,'3.9.0 (2010-11-05)']]], - ['05_2001_48',['3.6.1 (2009-05-01)',['../md_ChangeLog.html#autotoc_md80',1,'']]], - ['05_2002_49',['3.14.6 (2022-05-02)',['../md_ChangeLog.html#autotoc_md20',1,'']]], - ['05_2005_50',['3.10.4 (2013-05-05)',['../md_ChangeLog.html#autotoc_md61',1,'']]], - ['05_2007_51',['3.11.0 (2013-05-07)',['../md_ChangeLog.html#autotoc_md59',1,'']]], - ['05_2013_52',['2.2.1a (2004-05-13)',['../md_ChangeLog.html#autotoc_md116',1,'']]], - ['05_2021_53',['2.2.1b (2004-05-21)',['../md_ChangeLog.html#autotoc_md115',1,'']]], - ['05_2030_54',['05 30',['../md_ChangeLog.html#autotoc_md111',1,'2.2.1e (2005-05-30)'],['../md_ChangeLog.html#autotoc_md91',1,'3.4.1 (2008-05-30)']]], - ['06_55',['3.7.1 (2009-10-06)',['../md_ChangeLog.html#autotoc_md77',1,'']]], - ['06_2002_56',['3.12.10 (2018-06-02)',['../md_ChangeLog.html#autotoc_md37',1,'']]], - ['06_2012_57',['3.12.8 (2017-06-12)',['../md_ChangeLog.html#autotoc_md39',1,'']]], - ['06_2014_58',['3.11.1 (2013-06-14)',['../md_ChangeLog.html#autotoc_md58',1,'']]], - ['06_2015_59',['3.14.0 (2021-06-15)',['../md_ChangeLog.html#autotoc_md26',1,'']]], - ['06_2016_60',['3.8.2 (2010-06-16)',['../md_ChangeLog.html#autotoc_md73',1,'']]], - ['06_2020_61',['06 20',['../md_ChangeLog.html#autotoc_md65',1,'3.10.0 (2011-06-20)'],['../md_ChangeLog.html#autotoc_md97',1,'3.3.1 (2007-06-20)']]], - ['06_2024_62',['3.14.7 (2022-06-24)',['../md_ChangeLog.html#autotoc_md19',1,'']]], - ['06_2025_63',['3.14.1 (2021-06-25)',['../md_ChangeLog.html#autotoc_md25',1,'']]], - ['06_2029_64',['3.8.3 (2010-06-29)',['../md_ChangeLog.html#autotoc_md72',1,'']]], - ['07_65',['07',['../md_ChangeLog.html#autotoc_md59',1,'3.11.0 (2013-05-07)'],['../md_ChangeLog.html#autotoc_md15',1,'3.14.11 (2023-02-07)'],['../md_ChangeLog.html#autotoc_md67',1,'3.9.3 (2011-04-07)'],['../md_ChangeLog.html#autotoc_md112',1,'no new release (2005-01-07)']]], - ['07_2001_66',['3.11.2 (2013-07-01)',['../md_ChangeLog.html#autotoc_md57',1,'']]], - ['07_2007_20dev_20release_20number_20757_67',['3.2.0 (2006-07-07) - dev release number 757',['../md_ChangeLog.html#autotoc_md103',1,'']]], - ['07_2013_68',['3.14.8 (2022-07-13)',['../md_ChangeLog.html#autotoc_md18',1,'']]], - ['07_2014_20dev_20release_20number_20764_69',['3.2.1 (2006-07-14) - dev release number 764',['../md_ChangeLog.html#autotoc_md102',1,'']]], - ['07_2016_70',['3.7.0 (2009-07-16)',['../md_ChangeLog.html#autotoc_md78',1,'']]], - ['07_2018_71',['3.4.2 (2008-07-18)',['../md_ChangeLog.html#autotoc_md90',1,'']]], - ['07_2020_72',['07 20',['../md_ChangeLog.html#autotoc_md114',1,'2.2.1c (2004-07-20)'],['../md_ChangeLog.html#autotoc_md41',1,'3.12.6 (2016-07-20)']]], - ['07_2021_73',['07 21',['../md_ChangeLog.html#autotoc_md24',1,'3.14.2 (2021-07-21)'],['../md_ChangeLog.html#autotoc_md17',1,'3.14.9 (2022-07-21)']]], - ['08_74',['08',['../md_ChangeLog.html#autotoc_md51',1,'3.11.8 (2014-04-08)'],['../md_ChangeLog.html#autotoc_md34',1,'3.12.13 (2019-04-08)'],['../md_ChangeLog.html#autotoc_md13',1,'3.14.13 (2023-11-08)']]], - ['08_2008_75',['3.11.3 (2013-08-08)',['../md_ChangeLog.html#autotoc_md56',1,'']]], - ['08_2009_76',['3.12.4 (2015-08-09)',['../md_ChangeLog.html#autotoc_md43',1,'']]], - ['08_2016_77',['3.11.9 (2014-08-16)',['../md_ChangeLog.html#autotoc_md50',1,'']]], - ['08_2019_78',['no new release (2005-08-19)',['../md_ChangeLog.html#autotoc_md110',1,'']]], - ['08_2025_79',['3.5.0 (2008-08-25)',['../md_ChangeLog.html#autotoc_md88',1,'']]], - ['08_2026_80',['3.5.1 (2008-08-26)',['../md_ChangeLog.html#autotoc_md87',1,'']]], - ['08_2026_20dev_20release_20number_20510_81',['3.0.0 (2005-08-26) - dev release number 510',['../md_ChangeLog.html#autotoc_md108',1,'']]], - ['08_20dev_20release_20number_20714_82',['3.1.0 (2006-04-08) - dev release number 714',['../md_ChangeLog.html#autotoc_md105',1,'']]], - ['09_83',['09',['../md_ChangeLog.html#autotoc_md43',1,'3.12.4 (2015-08-09)'],['../md_ChangeLog.html#autotoc_md21',1,'3.14.5 (2022-02-09)']]], - ['09_2003_84',['3.14.3 (2021-09-03)',['../md_ChangeLog.html#autotoc_md23',1,'']]], - ['09_2012_85',['3.11.4 (2013-09-12)',['../md_ChangeLog.html#autotoc_md55',1,'']]], - ['09_2016_86',['3.12.11 (2018-09-16)',['../md_ChangeLog.html#autotoc_md36',1,'']]], - ['09_2018_87',['3.5.2 (2008-09-18)',['../md_ChangeLog.html#autotoc_md86',1,'']]], - ['09_2019_88',['3.5.3 (2008-09-19)',['../md_ChangeLog.html#autotoc_md85',1,'']]], - ['09_2020_89',['09 20',['../md_ChangeLog.html#autotoc_md64',1,'3.10.1 (2011-09-20)'],['../md_ChangeLog.html#autotoc_md22',1,'3.14.4 (2021-09-20)']]], - ['09_2025_90',['3.3.3 (2007-09-25)',['../md_ChangeLog.html#autotoc_md96',1,'']]], - ['09_2029_91',['3.5.4 (2008-09-29)',['../md_ChangeLog.html#autotoc_md84',1,'']]] + ['0_0',['3.0',['../md_ChangeLog.html#autotoc_md108',1,'']]], + ['0_200_202005_2008_2026_20dev_20release_20number_20510_1',['3.0.0 (2005-08-26) - dev release number 510',['../md_ChangeLog.html#autotoc_md110',1,'']]], + ['0_201_202005_2012_2004_2',['3.0.1 (2005-12-04)',['../md_ChangeLog.html#autotoc_md109',1,'']]], + ['0_202004_2003_2010_3',['2.2.0 (2004-03-10)',['../md_ChangeLog.html#autotoc_md121',1,'']]], + ['0_202006_2004_2008_20dev_20release_20number_20714_4',['3.1.0 (2006-04-08) - dev release number 714',['../md_ChangeLog.html#autotoc_md107',1,'']]], + ['0_202006_2007_2007_20dev_20release_20number_20757_5',['3.2.0 (2006-07-07) - dev release number 757',['../md_ChangeLog.html#autotoc_md105',1,'']]], + ['0_202008_2004_2025_6',['3.4.0 (2008-04-25)',['../md_ChangeLog.html#autotoc_md94',1,'']]], + ['0_202008_2008_2025_7',['3.5.0 (2008-08-25)',['../md_ChangeLog.html#autotoc_md90',1,'']]], + ['0_202009_2004_2029_8',['3.6.0 (2009-04-29)',['../md_ChangeLog.html#autotoc_md83',1,'']]], + ['0_202009_2007_2016_9',['3.7.0 (2009-07-16)',['../md_ChangeLog.html#autotoc_md80',1,'']]], + ['0_202009_2010_2030_10',['3.8.0 (2009-10-30)',['../md_ChangeLog.html#autotoc_md77',1,'']]], + ['0_202010_2011_2005_11',['3.9.0 (2010-11-05)',['../md_ChangeLog.html#autotoc_md72',1,'']]], + ['0_202011_2006_2020_12',['3.10.0 (2011-06-20)',['../md_ChangeLog.html#autotoc_md67',1,'']]], + ['0_202013_2005_2007_13',['3.11.0 (2013-05-07)',['../md_ChangeLog.html#autotoc_md61',1,'']]], + ['0_202015_2001_2023_14',['3.12.0 (2015-01-23)',['../md_ChangeLog.html#autotoc_md49',1,'']]], + ['0_202019_2010_2019_15',['3.13.0 (2019-10-19)',['../md_ChangeLog.html#autotoc_md34',1,'']]], + ['0_202021_2006_2015_16',['3.14.0 (2021-06-15)',['../md_ChangeLog.html#autotoc_md28',1,'']]], + ['01_17',['01',['../md_ChangeLog.html#autotoc_md59',1,'3.11.2 (2013-07-01)'],['../md_ChangeLog.html#autotoc_md82',1,'3.6.1 (2009-05-01)']]], + ['01_2007_18',['no new release (2005-01-07)',['../md_ChangeLog.html#autotoc_md114',1,'']]], + ['01_2013_19',['3.5.5 (2009-01-13)',['../md_ChangeLog.html#autotoc_md85',1,'']]], + ['01_2015_20',['3.12.9 (2018-01-15)',['../md_ChangeLog.html#autotoc_md40',1,'']]], + ['01_2018_21',['01 18',['../md_ChangeLog.html#autotoc_md51',1,'3.11.10 (2015-01-18)'],['../md_ChangeLog.html#autotoc_md14',1,'3.14.14 (2024-01-18)']]], + ['01_2023_22',['3.12.0 (2015-01-23)',['../md_ChangeLog.html#autotoc_md49',1,'']]], + ['02_23',['02',['../md_ChangeLog.html#autotoc_md39',1,'3.12.10 (2018-06-02)'],['../md_ChangeLog.html#autotoc_md22',1,'3.14.6 (2022-05-02)']]], + ['02_2007_24',['3.14.11 (2023-02-07)',['../md_ChangeLog.html#autotoc_md17',1,'']]], + ['02_2009_25',['3.14.5 (2022-02-09)',['../md_ChangeLog.html#autotoc_md23',1,'']]], + ['02_2012_26',['3.10.2 (2012-02-12)',['../md_ChangeLog.html#autotoc_md65',1,'']]], + ['02_2013_27',['3.12.1 (2015-02-13)',['../md_ChangeLog.html#autotoc_md48',1,'']]], + ['02_2024_28',['3.13.4 (2021-02-24)',['../md_ChangeLog.html#autotoc_md30',1,'']]], + ['02_2025_29',['3.12.7 (2017-02-25)',['../md_ChangeLog.html#autotoc_md42',1,'']]], + ['02_2028_30',['3.3.5 (2008-02-28)',['../md_ChangeLog.html#autotoc_md96',1,'']]], + ['03_31',['3.14.3 (2021-09-03)',['../md_ChangeLog.html#autotoc_md25',1,'']]], + ['03_2010_32',['2.2.0 (2004-03-10)',['../md_ChangeLog.html#autotoc_md121',1,'']]], + ['03_2011_33',['3.13.1 (2020-03-11)',['../md_ChangeLog.html#autotoc_md33',1,'']]], + ['04_34',['3.0.1 (2005-12-04)',['../md_ChangeLog.html#autotoc_md109',1,'']]], + ['04_2004_35',['3.12.2 (2015-04-04)',['../md_ChangeLog.html#autotoc_md47',1,'']]], + ['04_2005_36',['3.14.12 (2023-04-05)',['../md_ChangeLog.html#autotoc_md16',1,'']]], + ['04_2007_37',['3.9.3 (2011-04-07)',['../md_ChangeLog.html#autotoc_md69',1,'']]], + ['04_2008_38',['04 08',['../md_ChangeLog.html#autotoc_md53',1,'3.11.8 (2014-04-08)'],['../md_ChangeLog.html#autotoc_md36',1,'3.12.13 (2019-04-08)']]], + ['04_2008_20dev_20release_20number_20714_39',['3.1.0 (2006-04-08) - dev release number 714',['../md_ChangeLog.html#autotoc_md107',1,'']]], + ['04_2010_40',['3.14.15 (2024-04-10)',['../md_ChangeLog.html#autotoc_md13',1,'']]], + ['04_2015_41',['3.12.3 and 3.11.11 (2015-04-15)',['../md_ChangeLog.html#autotoc_md46',1,'']]], + ['04_2022_42',['3.14.16 (2024-04-22)',['../md_ChangeLog.html#autotoc_md12',1,'']]], + ['04_2024_43',['3.2.4 (2007-04-24)',['../md_ChangeLog.html#autotoc_md101',1,'']]], + ['04_2025_44',['04 25',['../md_ChangeLog.html#autotoc_md120',1,'2.2.1 (2004-04-25)'],['../md_ChangeLog.html#autotoc_md94',1,'3.4.0 (2008-04-25)']]], + ['04_2028_45',['no new release (2004-04-28)',['../md_ChangeLog.html#autotoc_md119',1,'']]], + ['04_2029_46',['3.6.0 (2009-04-29)',['../md_ChangeLog.html#autotoc_md83',1,'']]], + ['04_2030_47',['04 30',['../md_ChangeLog.html#autotoc_md44',1,'3.12.5 (2016-04-30)'],['../md_ChangeLog.html#autotoc_md32',1,'3.13.2 (2020-04-30)']]], + ['05_48',['05',['../md_ChangeLog.html#autotoc_md115',1,'2.2.1d (2004-10-05)'],['../md_ChangeLog.html#autotoc_md16',1,'3.14.12 (2023-04-05)'],['../md_ChangeLog.html#autotoc_md72',1,'3.9.0 (2010-11-05)']]], + ['05_2001_49',['3.6.1 (2009-05-01)',['../md_ChangeLog.html#autotoc_md82',1,'']]], + ['05_2002_50',['3.14.6 (2022-05-02)',['../md_ChangeLog.html#autotoc_md22',1,'']]], + ['05_2005_51',['3.10.4 (2013-05-05)',['../md_ChangeLog.html#autotoc_md63',1,'']]], + ['05_2007_52',['3.11.0 (2013-05-07)',['../md_ChangeLog.html#autotoc_md61',1,'']]], + ['05_2013_53',['2.2.1a (2004-05-13)',['../md_ChangeLog.html#autotoc_md118',1,'']]], + ['05_2021_54',['2.2.1b (2004-05-21)',['../md_ChangeLog.html#autotoc_md117',1,'']]], + ['05_2030_55',['05 30',['../md_ChangeLog.html#autotoc_md113',1,'2.2.1e (2005-05-30)'],['../md_ChangeLog.html#autotoc_md93',1,'3.4.1 (2008-05-30)']]], + ['06_56',['3.7.1 (2009-10-06)',['../md_ChangeLog.html#autotoc_md79',1,'']]], + ['06_2002_57',['3.12.10 (2018-06-02)',['../md_ChangeLog.html#autotoc_md39',1,'']]], + ['06_2012_58',['3.12.8 (2017-06-12)',['../md_ChangeLog.html#autotoc_md41',1,'']]], + ['06_2014_59',['3.11.1 (2013-06-14)',['../md_ChangeLog.html#autotoc_md60',1,'']]], + ['06_2015_60',['3.14.0 (2021-06-15)',['../md_ChangeLog.html#autotoc_md28',1,'']]], + ['06_2016_61',['3.8.2 (2010-06-16)',['../md_ChangeLog.html#autotoc_md75',1,'']]], + ['06_2020_62',['06 20',['../md_ChangeLog.html#autotoc_md67',1,'3.10.0 (2011-06-20)'],['../md_ChangeLog.html#autotoc_md99',1,'3.3.1 (2007-06-20)']]], + ['06_2024_63',['3.14.7 (2022-06-24)',['../md_ChangeLog.html#autotoc_md21',1,'']]], + ['06_2025_64',['3.14.1 (2021-06-25)',['../md_ChangeLog.html#autotoc_md27',1,'']]], + ['06_2029_65',['3.8.3 (2010-06-29)',['../md_ChangeLog.html#autotoc_md74',1,'']]], + ['07_66',['07',['../md_ChangeLog.html#autotoc_md61',1,'3.11.0 (2013-05-07)'],['../md_ChangeLog.html#autotoc_md17',1,'3.14.11 (2023-02-07)'],['../md_ChangeLog.html#autotoc_md69',1,'3.9.3 (2011-04-07)'],['../md_ChangeLog.html#autotoc_md114',1,'no new release (2005-01-07)']]], + ['07_2001_67',['3.11.2 (2013-07-01)',['../md_ChangeLog.html#autotoc_md59',1,'']]], + ['07_2007_20dev_20release_20number_20757_68',['3.2.0 (2006-07-07) - dev release number 757',['../md_ChangeLog.html#autotoc_md105',1,'']]], + ['07_2013_69',['3.14.8 (2022-07-13)',['../md_ChangeLog.html#autotoc_md20',1,'']]], + ['07_2014_20dev_20release_20number_20764_70',['3.2.1 (2006-07-14) - dev release number 764',['../md_ChangeLog.html#autotoc_md104',1,'']]], + ['07_2016_71',['3.7.0 (2009-07-16)',['../md_ChangeLog.html#autotoc_md80',1,'']]], + ['07_2018_72',['3.4.2 (2008-07-18)',['../md_ChangeLog.html#autotoc_md92',1,'']]], + ['07_2020_73',['07 20',['../md_ChangeLog.html#autotoc_md116',1,'2.2.1c (2004-07-20)'],['../md_ChangeLog.html#autotoc_md43',1,'3.12.6 (2016-07-20)']]], + ['07_2021_74',['07 21',['../md_ChangeLog.html#autotoc_md26',1,'3.14.2 (2021-07-21)'],['../md_ChangeLog.html#autotoc_md19',1,'3.14.9 (2022-07-21)']]], + ['08_75',['08',['../md_ChangeLog.html#autotoc_md53',1,'3.11.8 (2014-04-08)'],['../md_ChangeLog.html#autotoc_md36',1,'3.12.13 (2019-04-08)'],['../md_ChangeLog.html#autotoc_md15',1,'3.14.13 (2023-11-08)']]], + ['08_2008_76',['3.11.3 (2013-08-08)',['../md_ChangeLog.html#autotoc_md58',1,'']]], + ['08_2009_77',['3.12.4 (2015-08-09)',['../md_ChangeLog.html#autotoc_md45',1,'']]], + ['08_2016_78',['3.11.9 (2014-08-16)',['../md_ChangeLog.html#autotoc_md52',1,'']]], + ['08_2019_79',['no new release (2005-08-19)',['../md_ChangeLog.html#autotoc_md112',1,'']]], + ['08_2025_80',['3.5.0 (2008-08-25)',['../md_ChangeLog.html#autotoc_md90',1,'']]], + ['08_2026_81',['3.5.1 (2008-08-26)',['../md_ChangeLog.html#autotoc_md89',1,'']]], + ['08_2026_20dev_20release_20number_20510_82',['3.0.0 (2005-08-26) - dev release number 510',['../md_ChangeLog.html#autotoc_md110',1,'']]], + ['08_20dev_20release_20number_20714_83',['3.1.0 (2006-04-08) - dev release number 714',['../md_ChangeLog.html#autotoc_md107',1,'']]], + ['09_84',['09',['../md_ChangeLog.html#autotoc_md45',1,'3.12.4 (2015-08-09)'],['../md_ChangeLog.html#autotoc_md23',1,'3.14.5 (2022-02-09)']]], + ['09_2003_85',['3.14.3 (2021-09-03)',['../md_ChangeLog.html#autotoc_md25',1,'']]], + ['09_2012_86',['3.11.4 (2013-09-12)',['../md_ChangeLog.html#autotoc_md57',1,'']]], + ['09_2016_87',['3.12.11 (2018-09-16)',['../md_ChangeLog.html#autotoc_md38',1,'']]], + ['09_2018_88',['3.5.2 (2008-09-18)',['../md_ChangeLog.html#autotoc_md88',1,'']]], + ['09_2019_89',['3.5.3 (2008-09-19)',['../md_ChangeLog.html#autotoc_md87',1,'']]], + ['09_2020_90',['09 20',['../md_ChangeLog.html#autotoc_md66',1,'3.10.1 (2011-09-20)'],['../md_ChangeLog.html#autotoc_md24',1,'3.14.4 (2021-09-20)']]], + ['09_2025_91',['3.3.3 (2007-09-25)',['../md_ChangeLog.html#autotoc_md98',1,'']]], + ['09_2029_92',['3.5.4 (2008-09-29)',['../md_ChangeLog.html#autotoc_md86',1,'']]] ]; diff --git a/search/all_1.js b/search/all_1.js index 887f25f17..c0313855a 100644 --- a/search/all_1.js +++ b/search/all_1.js @@ -1,114 +1,119 @@ var searchData= [ - ['1_0',['3.1',['../md_ChangeLog.html#autotoc_md104',1,'']]], - ['1_200_202006_2004_2008_20dev_20release_20number_20714_1',['3.1.0 (2006-04-08) - dev release number 714',['../md_ChangeLog.html#autotoc_md105',1,'']]], - ['1_202004_2004_2025_2',['2.2.1 (2004-04-25)',['../md_ChangeLog.html#autotoc_md118',1,'']]], - ['1_202005_2012_2004_3',['3.0.1 (2005-12-04)',['../md_ChangeLog.html#autotoc_md107',1,'']]], - ['1_202006_2007_2014_20dev_20release_20number_20764_4',['3.2.1 (2006-07-14) - dev release number 764',['../md_ChangeLog.html#autotoc_md102',1,'']]], - ['1_202007_2006_2020_5',['3.3.1 (2007-06-20)',['../md_ChangeLog.html#autotoc_md97',1,'']]], - ['1_202008_2005_2030_6',['3.4.1 (2008-05-30)',['../md_ChangeLog.html#autotoc_md91',1,'']]], - ['1_202008_2008_2026_7',['3.5.1 (2008-08-26)',['../md_ChangeLog.html#autotoc_md87',1,'']]], - ['1_202009_2005_2001_8',['3.6.1 (2009-05-01)',['../md_ChangeLog.html#autotoc_md80',1,'']]], - ['1_202009_2010_2006_9',['3.7.1 (2009-10-06)',['../md_ChangeLog.html#autotoc_md77',1,'']]], - ['1_202009_2010_2030_10',['3.8.1 (2009-10-30)',['../md_ChangeLog.html#autotoc_md74',1,'']]], - ['1_202010_2011_2026_11',['3.9.1 (2010-11-26)',['../md_ChangeLog.html#autotoc_md69',1,'']]], - ['1_202011_2009_2020_12',['3.10.1 (2011-09-20)',['../md_ChangeLog.html#autotoc_md64',1,'']]], - ['1_202013_2006_2014_13',['3.11.1 (2013-06-14)',['../md_ChangeLog.html#autotoc_md58',1,'']]], - ['1_202015_2002_2013_14',['3.12.1 (2015-02-13)',['../md_ChangeLog.html#autotoc_md46',1,'']]], - ['1_202020_2003_2011_15',['3.13.1 (2020-03-11)',['../md_ChangeLog.html#autotoc_md31',1,'']]], - ['1_202021_2006_2025_16',['3.14.1 (2021-06-25)',['../md_ChangeLog.html#autotoc_md25',1,'']]], - ['10_17',['10',['../md_ChangeLog.html#autotoc_md119',1,'2.2.0 (2004-03-10)'],['../md_ChangeLog.html#autotoc_md60',1,'3.10'],['../md_ChangeLog.html#autotoc_md11',1,'3.14.15 (2024-04-10)']]], - ['10_200_202011_2006_2020_18',['3.10.0 (2011-06-20)',['../md_ChangeLog.html#autotoc_md65',1,'']]], - ['10_2005_19',['2.2.1d (2004-10-05)',['../md_ChangeLog.html#autotoc_md113',1,'']]], - ['10_2006_20',['3.7.1 (2009-10-06)',['../md_ChangeLog.html#autotoc_md77',1,'']]], - ['10_201_202011_2009_2020_21',['3.10.1 (2011-09-20)',['../md_ChangeLog.html#autotoc_md64',1,'']]], - ['10_2011_22',['3.2 r795 (2006-10-11)',['../md_ChangeLog.html#autotoc_md101',1,'']]], - ['10_2016_23',['3.13.3 (2020-10-16)',['../md_ChangeLog.html#autotoc_md29',1,'']]], - ['10_2019_24',['3.13.0 (2019-10-19)',['../md_ChangeLog.html#autotoc_md32',1,'']]], - ['10_202_202012_2002_2012_25',['3.10.2 (2012-02-12)',['../md_ChangeLog.html#autotoc_md63',1,'']]], - ['10_202015_2001_2018_26',['3.11.10 (2015-01-18)',['../md_ChangeLog.html#autotoc_md49',1,'']]], - ['10_202018_2006_2002_27',['3.12.10 (2018-06-02)',['../md_ChangeLog.html#autotoc_md37',1,'']]], - ['10_202022_2010_2011_28',['3.14.10 (2022-10-11)',['../md_ChangeLog.html#autotoc_md16',1,'']]], - ['10_2026_29',['3.11.5 (2013-10-26)',['../md_ChangeLog.html#autotoc_md54',1,'']]], - ['10_203_202012_2011_2019_30',['3.10.3 (2012-11-19)',['../md_ChangeLog.html#autotoc_md62',1,'']]], - ['10_2030_31',['10 30',['../md_ChangeLog.html#autotoc_md75',1,'3.8.0 (2009-10-30)'],['../md_ChangeLog.html#autotoc_md74',1,'3.8.1 (2009-10-30)']]], - ['10_204_202013_2005_2005_32',['3.10.4 (2013-05-05)',['../md_ChangeLog.html#autotoc_md61',1,'']]], - ['11_33',['11',['../md_ChangeLog.html#autotoc_md48',1,'3.11'],['../md_ChangeLog.html#autotoc_md31',1,'3.13.1 (2020-03-11)'],['../md_ChangeLog.html#autotoc_md16',1,'3.14.10 (2022-10-11)'],['../md_ChangeLog.html#autotoc_md101',1,'3.2 r795 (2006-10-11)']]], - ['11_200_202013_2005_2007_34',['3.11.0 (2013-05-07)',['../md_ChangeLog.html#autotoc_md59',1,'']]], - ['11_2005_35',['3.9.0 (2010-11-05)',['../md_ChangeLog.html#autotoc_md70',1,'']]], - ['11_2008_36',['3.14.13 (2023-11-08)',['../md_ChangeLog.html#autotoc_md13',1,'']]], - ['11_201_202013_2006_2014_37',['3.11.1 (2013-06-14)',['../md_ChangeLog.html#autotoc_md58',1,'']]], - ['11_2010_202015_2001_2018_38',['3.11.10 (2015-01-18)',['../md_ChangeLog.html#autotoc_md49',1,'']]], - ['11_2011_202015_2004_2015_39',['3.12.3 and 3.11.11 (2015-04-15)',['../md_ChangeLog.html#autotoc_md44',1,'']]], - ['11_2017_40',['3.12.12 (2018-11-17)',['../md_ChangeLog.html#autotoc_md35',1,'']]], - ['11_2019_41',['3.10.3 (2012-11-19)',['../md_ChangeLog.html#autotoc_md62',1,'']]], - ['11_202_202013_2007_2001_42',['3.11.2 (2013-07-01)',['../md_ChangeLog.html#autotoc_md57',1,'']]], - ['11_202018_2009_2016_43',['3.12.11 (2018-09-16)',['../md_ChangeLog.html#autotoc_md36',1,'']]], - ['11_202023_2002_2007_44',['3.14.11 (2023-02-07)',['../md_ChangeLog.html#autotoc_md15',1,'']]], - ['11_2026_45',['3.9.1 (2010-11-26)',['../md_ChangeLog.html#autotoc_md69',1,'']]], - ['11_2029_46',['3.2.3 (2006-11-29)',['../md_ChangeLog.html#autotoc_md100',1,'']]], - ['11_203_202013_2008_2008_47',['3.11.3 (2013-08-08)',['../md_ChangeLog.html#autotoc_md56',1,'']]], - ['11_204_202013_2009_2012_48',['3.11.4 (2013-09-12)',['../md_ChangeLog.html#autotoc_md55',1,'']]], - ['11_205_202013_2010_2026_49',['3.11.5 (2013-10-26)',['../md_ChangeLog.html#autotoc_md54',1,'']]], - ['11_206_202013_2011_2016_50',['3.11.6 (2013-11-16)',['../md_ChangeLog.html#autotoc_md53',1,'']]], - ['11_207_202013_2012_2018_51',['3.11.7 (2013-12-18)',['../md_ChangeLog.html#autotoc_md52',1,'']]], - ['11_208_202014_2004_2008_52',['3.11.8 (2014-04-08)',['../md_ChangeLog.html#autotoc_md51',1,'']]], - ['11_209_202014_2008_2016_53',['3.11.9 (2014-08-16)',['../md_ChangeLog.html#autotoc_md50',1,'']]], - ['12_54',['12',['../md_ChangeLog.html#autotoc_md63',1,'3.10.2 (2012-02-12)'],['../md_ChangeLog.html#autotoc_md55',1,'3.11.4 (2013-09-12)'],['../md_ChangeLog.html#autotoc_md33',1,'3.12']]], - ['12_200_202015_2001_2023_55',['3.12.0 (2015-01-23)',['../md_ChangeLog.html#autotoc_md47',1,'']]], - ['12_2004_56',['3.0.1 (2005-12-04)',['../md_ChangeLog.html#autotoc_md107',1,'']]], - ['12_201_202015_2002_2013_57',['3.12.1 (2015-02-13)',['../md_ChangeLog.html#autotoc_md46',1,'']]], - ['12_2010_202018_2006_2002_58',['3.12.10 (2018-06-02)',['../md_ChangeLog.html#autotoc_md37',1,'']]], - ['12_2011_202018_2009_2016_59',['3.12.11 (2018-09-16)',['../md_ChangeLog.html#autotoc_md36',1,'']]], - ['12_2012_202018_2011_2017_60',['3.12.12 (2018-11-17)',['../md_ChangeLog.html#autotoc_md35',1,'']]], - ['12_2013_202019_2004_2008_61',['3.12.13 (2019-04-08)',['../md_ChangeLog.html#autotoc_md34',1,'']]], - ['12_2018_62',['3.11.7 (2013-12-18)',['../md_ChangeLog.html#autotoc_md52',1,'']]], - ['12_202_202015_2004_2004_63',['3.12.2 (2015-04-04)',['../md_ChangeLog.html#autotoc_md45',1,'']]], - ['12_202023_2004_2005_64',['3.14.12 (2023-04-05)',['../md_ChangeLog.html#autotoc_md14',1,'']]], - ['12_2022_65',['3.9.2 (2010-12-22)',['../md_ChangeLog.html#autotoc_md68',1,'']]], - ['12_2027_66',['3.3.4 (2007-12-27)',['../md_ChangeLog.html#autotoc_md95',1,'']]], - ['12_203_20and_203_2011_2011_202015_2004_2015_67',['3.12.3 and 3.11.11 (2015-04-15)',['../md_ChangeLog.html#autotoc_md44',1,'']]], - ['12_204_202015_2008_2009_68',['3.12.4 (2015-08-09)',['../md_ChangeLog.html#autotoc_md43',1,'']]], - ['12_205_202016_2004_2030_69',['3.12.5 (2016-04-30)',['../md_ChangeLog.html#autotoc_md42',1,'']]], - ['12_206_202016_2007_2020_70',['3.12.6 (2016-07-20)',['../md_ChangeLog.html#autotoc_md41',1,'']]], - ['12_207_202017_2002_2025_71',['3.12.7 (2017-02-25)',['../md_ChangeLog.html#autotoc_md40',1,'']]], - ['12_208_202017_2006_2012_72',['3.12.8 (2017-06-12)',['../md_ChangeLog.html#autotoc_md39',1,'']]], - ['12_209_202018_2001_2015_73',['3.12.9 (2018-01-15)',['../md_ChangeLog.html#autotoc_md38',1,'']]], - ['13_74',['13',['../md_ChangeLog.html#autotoc_md116',1,'2.2.1a (2004-05-13)'],['../md_ChangeLog.html#autotoc_md46',1,'3.12.1 (2015-02-13)'],['../md_ChangeLog.html#autotoc_md27',1,'3.13'],['../md_ChangeLog.html#autotoc_md18',1,'3.14.8 (2022-07-13)'],['../md_ChangeLog.html#autotoc_md83',1,'3.5.5 (2009-01-13)']]], - ['13_200_202019_2010_2019_75',['3.13.0 (2019-10-19)',['../md_ChangeLog.html#autotoc_md32',1,'']]], - ['13_201_202020_2003_2011_76',['3.13.1 (2020-03-11)',['../md_ChangeLog.html#autotoc_md31',1,'']]], - ['13_202_202020_2004_2030_77',['3.13.2 (2020-04-30)',['../md_ChangeLog.html#autotoc_md30',1,'']]], - ['13_202019_2004_2008_78',['3.12.13 (2019-04-08)',['../md_ChangeLog.html#autotoc_md34',1,'']]], - ['13_202023_2011_2008_79',['3.14.13 (2023-11-08)',['../md_ChangeLog.html#autotoc_md13',1,'']]], - ['13_203_202020_2010_2016_80',['3.13.3 (2020-10-16)',['../md_ChangeLog.html#autotoc_md29',1,'']]], - ['13_204_202021_2002_2024_81',['3.13.4 (2021-02-24)',['../md_ChangeLog.html#autotoc_md28',1,'']]], - ['14_82',['14',['../md_ChangeLog.html#autotoc_md58',1,'3.11.1 (2013-06-14)'],['../md_ChangeLog.html#autotoc_md10',1,'3.14']]], - ['14_200_202021_2006_2015_83',['3.14.0 (2021-06-15)',['../md_ChangeLog.html#autotoc_md26',1,'']]], - ['14_201_202021_2006_2025_84',['3.14.1 (2021-06-25)',['../md_ChangeLog.html#autotoc_md25',1,'']]], - ['14_2010_202022_2010_2011_85',['3.14.10 (2022-10-11)',['../md_ChangeLog.html#autotoc_md16',1,'']]], - ['14_2011_202023_2002_2007_86',['3.14.11 (2023-02-07)',['../md_ChangeLog.html#autotoc_md15',1,'']]], - ['14_2012_202023_2004_2005_87',['3.14.12 (2023-04-05)',['../md_ChangeLog.html#autotoc_md14',1,'']]], - ['14_2013_202023_2011_2008_88',['3.14.13 (2023-11-08)',['../md_ChangeLog.html#autotoc_md13',1,'']]], - ['14_2014_202024_2001_2018_89',['3.14.14 (2024-01-18)',['../md_ChangeLog.html#autotoc_md12',1,'']]], - ['14_2015_202024_2004_2010_90',['3.14.15 (2024-04-10)',['../md_ChangeLog.html#autotoc_md11',1,'']]], - ['14_202_202021_2007_2021_91',['3.14.2 (2021-07-21)',['../md_ChangeLog.html#autotoc_md24',1,'']]], - ['14_203_202021_2009_2003_92',['3.14.3 (2021-09-03)',['../md_ChangeLog.html#autotoc_md23',1,'']]], - ['14_204_202021_2009_2020_93',['3.14.4 (2021-09-20)',['../md_ChangeLog.html#autotoc_md22',1,'']]], - ['14_205_202022_2002_2009_94',['3.14.5 (2022-02-09)',['../md_ChangeLog.html#autotoc_md21',1,'']]], - ['14_206_202022_2005_2002_95',['3.14.6 (2022-05-02)',['../md_ChangeLog.html#autotoc_md20',1,'']]], - ['14_207_202022_2006_2024_96',['3.14.7 (2022-06-24)',['../md_ChangeLog.html#autotoc_md19',1,'']]], - ['14_208_202022_2007_2013_97',['3.14.8 (2022-07-13)',['../md_ChangeLog.html#autotoc_md18',1,'']]], - ['14_209_202022_2007_2021_98',['3.14.9 (2022-07-21)',['../md_ChangeLog.html#autotoc_md17',1,'']]], - ['14_20dev_20release_20number_20764_99',['3.2.1 (2006-07-14) - dev release number 764',['../md_ChangeLog.html#autotoc_md102',1,'']]], - ['15_100',['15',['../md_ChangeLog.html#autotoc_md44',1,'3.12.3 and 3.11.11 (2015-04-15)'],['../md_ChangeLog.html#autotoc_md38',1,'3.12.9 (2018-01-15)'],['../md_ChangeLog.html#autotoc_md26',1,'3.14.0 (2021-06-15)']]], - ['15_202024_2004_2010_101',['3.14.15 (2024-04-10)',['../md_ChangeLog.html#autotoc_md11',1,'']]], - ['16_102',['16',['../md_ChangeLog.html#autotoc_md53',1,'3.11.6 (2013-11-16)'],['../md_ChangeLog.html#autotoc_md50',1,'3.11.9 (2014-08-16)'],['../md_ChangeLog.html#autotoc_md36',1,'3.12.11 (2018-09-16)'],['../md_ChangeLog.html#autotoc_md29',1,'3.13.3 (2020-10-16)'],['../md_ChangeLog.html#autotoc_md78',1,'3.7.0 (2009-07-16)'],['../md_ChangeLog.html#autotoc_md73',1,'3.8.2 (2010-06-16)']]], - ['17_103',['3.12.12 (2018-11-17)',['../md_ChangeLog.html#autotoc_md35',1,'']]], - ['18_104',['18',['../md_ChangeLog.html#autotoc_md49',1,'3.11.10 (2015-01-18)'],['../md_ChangeLog.html#autotoc_md52',1,'3.11.7 (2013-12-18)'],['../md_ChangeLog.html#autotoc_md12',1,'3.14.14 (2024-01-18)'],['../md_ChangeLog.html#autotoc_md90',1,'3.4.2 (2008-07-18)'],['../md_ChangeLog.html#autotoc_md86',1,'3.5.2 (2008-09-18)']]], - ['19_105',['19',['../md_ChangeLog.html#autotoc_md62',1,'3.10.3 (2012-11-19)'],['../md_ChangeLog.html#autotoc_md32',1,'3.13.0 (2019-10-19)'],['../md_ChangeLog.html#autotoc_md85',1,'3.5.3 (2008-09-19)'],['../md_ChangeLog.html#autotoc_md110',1,'no new release (2005-08-19)']]], - ['1a_202004_2005_2013_106',['2.2.1a (2004-05-13)',['../md_ChangeLog.html#autotoc_md116',1,'']]], - ['1b_202004_2005_2021_107',['2.2.1b (2004-05-21)',['../md_ChangeLog.html#autotoc_md115',1,'']]], - ['1c_202004_2007_2020_108',['2.2.1c (2004-07-20)',['../md_ChangeLog.html#autotoc_md114',1,'']]], - ['1d_202004_2010_2005_109',['2.2.1d (2004-10-05)',['../md_ChangeLog.html#autotoc_md113',1,'']]], - ['1e_202005_2005_2030_110',['2.2.1e (2005-05-30)',['../md_ChangeLog.html#autotoc_md111',1,'']]] + ['1_0',['3.1',['../md_ChangeLog.html#autotoc_md106',1,'']]], + ['1_200_202006_2004_2008_20dev_20release_20number_20714_1',['3.1.0 (2006-04-08) - dev release number 714',['../md_ChangeLog.html#autotoc_md107',1,'']]], + ['1_202004_2004_2025_2',['2.2.1 (2004-04-25)',['../md_ChangeLog.html#autotoc_md120',1,'']]], + ['1_202005_2012_2004_3',['3.0.1 (2005-12-04)',['../md_ChangeLog.html#autotoc_md109',1,'']]], + ['1_202006_2007_2014_20dev_20release_20number_20764_4',['3.2.1 (2006-07-14) - dev release number 764',['../md_ChangeLog.html#autotoc_md104',1,'']]], + ['1_202007_2006_2020_5',['3.3.1 (2007-06-20)',['../md_ChangeLog.html#autotoc_md99',1,'']]], + ['1_202008_2005_2030_6',['3.4.1 (2008-05-30)',['../md_ChangeLog.html#autotoc_md93',1,'']]], + ['1_202008_2008_2026_7',['3.5.1 (2008-08-26)',['../md_ChangeLog.html#autotoc_md89',1,'']]], + ['1_202009_2005_2001_8',['3.6.1 (2009-05-01)',['../md_ChangeLog.html#autotoc_md82',1,'']]], + ['1_202009_2010_2006_9',['3.7.1 (2009-10-06)',['../md_ChangeLog.html#autotoc_md79',1,'']]], + ['1_202009_2010_2030_10',['3.8.1 (2009-10-30)',['../md_ChangeLog.html#autotoc_md76',1,'']]], + ['1_202010_2011_2026_11',['3.9.1 (2010-11-26)',['../md_ChangeLog.html#autotoc_md71',1,'']]], + ['1_202011_2009_2020_12',['3.10.1 (2011-09-20)',['../md_ChangeLog.html#autotoc_md66',1,'']]], + ['1_202013_2006_2014_13',['3.11.1 (2013-06-14)',['../md_ChangeLog.html#autotoc_md60',1,'']]], + ['1_202015_2002_2013_14',['3.12.1 (2015-02-13)',['../md_ChangeLog.html#autotoc_md48',1,'']]], + ['1_202020_2003_2011_15',['3.13.1 (2020-03-11)',['../md_ChangeLog.html#autotoc_md33',1,'']]], + ['1_202021_2006_2025_16',['3.14.1 (2021-06-25)',['../md_ChangeLog.html#autotoc_md27',1,'']]], + ['10_17',['10',['../md_ChangeLog.html#autotoc_md121',1,'2.2.0 (2004-03-10)'],['../md_ChangeLog.html#autotoc_md62',1,'3.10'],['../md_ChangeLog.html#autotoc_md13',1,'3.14.15 (2024-04-10)']]], + ['10_200_202011_2006_2020_18',['3.10.0 (2011-06-20)',['../md_ChangeLog.html#autotoc_md67',1,'']]], + ['10_2005_19',['2.2.1d (2004-10-05)',['../md_ChangeLog.html#autotoc_md115',1,'']]], + ['10_2006_20',['3.7.1 (2009-10-06)',['../md_ChangeLog.html#autotoc_md79',1,'']]], + ['10_201_202011_2009_2020_21',['3.10.1 (2011-09-20)',['../md_ChangeLog.html#autotoc_md66',1,'']]], + ['10_2011_22',['3.2 r795 (2006-10-11)',['../md_ChangeLog.html#autotoc_md103',1,'']]], + ['10_2016_23',['3.13.3 (2020-10-16)',['../md_ChangeLog.html#autotoc_md31',1,'']]], + ['10_2019_24',['3.13.0 (2019-10-19)',['../md_ChangeLog.html#autotoc_md34',1,'']]], + ['10_202_202012_2002_2012_25',['3.10.2 (2012-02-12)',['../md_ChangeLog.html#autotoc_md65',1,'']]], + ['10_202015_2001_2018_26',['3.11.10 (2015-01-18)',['../md_ChangeLog.html#autotoc_md51',1,'']]], + ['10_202018_2006_2002_27',['3.12.10 (2018-06-02)',['../md_ChangeLog.html#autotoc_md39',1,'']]], + ['10_202022_2010_2011_28',['3.14.10 (2022-10-11)',['../md_ChangeLog.html#autotoc_md18',1,'']]], + ['10_2026_29',['3.11.5 (2013-10-26)',['../md_ChangeLog.html#autotoc_md56',1,'']]], + ['10_203_202012_2011_2019_30',['3.10.3 (2012-11-19)',['../md_ChangeLog.html#autotoc_md64',1,'']]], + ['10_2030_31',['10 30',['../md_ChangeLog.html#autotoc_md77',1,'3.8.0 (2009-10-30)'],['../md_ChangeLog.html#autotoc_md76',1,'3.8.1 (2009-10-30)']]], + ['10_204_202013_2005_2005_32',['3.10.4 (2013-05-05)',['../md_ChangeLog.html#autotoc_md63',1,'']]], + ['11_33',['11',['../md_ChangeLog.html#autotoc_md50',1,'3.11'],['../md_ChangeLog.html#autotoc_md33',1,'3.13.1 (2020-03-11)'],['../md_ChangeLog.html#autotoc_md18',1,'3.14.10 (2022-10-11)'],['../md_ChangeLog.html#autotoc_md103',1,'3.2 r795 (2006-10-11)']]], + ['11_200_202013_2005_2007_34',['3.11.0 (2013-05-07)',['../md_ChangeLog.html#autotoc_md61',1,'']]], + ['11_2005_35',['3.9.0 (2010-11-05)',['../md_ChangeLog.html#autotoc_md72',1,'']]], + ['11_2008_36',['3.14.13 (2023-11-08)',['../md_ChangeLog.html#autotoc_md15',1,'']]], + ['11_201_202013_2006_2014_37',['3.11.1 (2013-06-14)',['../md_ChangeLog.html#autotoc_md60',1,'']]], + ['11_2010_202015_2001_2018_38',['3.11.10 (2015-01-18)',['../md_ChangeLog.html#autotoc_md51',1,'']]], + ['11_2011_202015_2004_2015_39',['3.12.3 and 3.11.11 (2015-04-15)',['../md_ChangeLog.html#autotoc_md46',1,'']]], + ['11_2017_40',['3.12.12 (2018-11-17)',['../md_ChangeLog.html#autotoc_md37',1,'']]], + ['11_2019_41',['3.10.3 (2012-11-19)',['../md_ChangeLog.html#autotoc_md64',1,'']]], + ['11_202_202013_2007_2001_42',['3.11.2 (2013-07-01)',['../md_ChangeLog.html#autotoc_md59',1,'']]], + ['11_202018_2009_2016_43',['3.12.11 (2018-09-16)',['../md_ChangeLog.html#autotoc_md38',1,'']]], + ['11_202023_2002_2007_44',['3.14.11 (2023-02-07)',['../md_ChangeLog.html#autotoc_md17',1,'']]], + ['11_2026_45',['3.9.1 (2010-11-26)',['../md_ChangeLog.html#autotoc_md71',1,'']]], + ['11_2029_46',['3.2.3 (2006-11-29)',['../md_ChangeLog.html#autotoc_md102',1,'']]], + ['11_203_202013_2008_2008_47',['3.11.3 (2013-08-08)',['../md_ChangeLog.html#autotoc_md58',1,'']]], + ['11_204_202013_2009_2012_48',['3.11.4 (2013-09-12)',['../md_ChangeLog.html#autotoc_md57',1,'']]], + ['11_205_202013_2010_2026_49',['3.11.5 (2013-10-26)',['../md_ChangeLog.html#autotoc_md56',1,'']]], + ['11_206_202013_2011_2016_50',['3.11.6 (2013-11-16)',['../md_ChangeLog.html#autotoc_md55',1,'']]], + ['11_207_202013_2012_2018_51',['3.11.7 (2013-12-18)',['../md_ChangeLog.html#autotoc_md54',1,'']]], + ['11_208_202014_2004_2008_52',['3.11.8 (2014-04-08)',['../md_ChangeLog.html#autotoc_md53',1,'']]], + ['11_209_202014_2008_2016_53',['3.11.9 (2014-08-16)',['../md_ChangeLog.html#autotoc_md52',1,'']]], + ['12_54',['12',['../md_ChangeLog.html#autotoc_md65',1,'3.10.2 (2012-02-12)'],['../md_ChangeLog.html#autotoc_md57',1,'3.11.4 (2013-09-12)'],['../md_ChangeLog.html#autotoc_md35',1,'3.12']]], + ['12_200_202015_2001_2023_55',['3.12.0 (2015-01-23)',['../md_ChangeLog.html#autotoc_md49',1,'']]], + ['12_2004_56',['3.0.1 (2005-12-04)',['../md_ChangeLog.html#autotoc_md109',1,'']]], + ['12_201_202015_2002_2013_57',['3.12.1 (2015-02-13)',['../md_ChangeLog.html#autotoc_md48',1,'']]], + ['12_2010_202018_2006_2002_58',['3.12.10 (2018-06-02)',['../md_ChangeLog.html#autotoc_md39',1,'']]], + ['12_2011_202018_2009_2016_59',['3.12.11 (2018-09-16)',['../md_ChangeLog.html#autotoc_md38',1,'']]], + ['12_2012_202018_2011_2017_60',['3.12.12 (2018-11-17)',['../md_ChangeLog.html#autotoc_md37',1,'']]], + ['12_2013_202019_2004_2008_61',['3.12.13 (2019-04-08)',['../md_ChangeLog.html#autotoc_md36',1,'']]], + ['12_2014_62',['3.14.17 (2024-12-14)',['../md_ChangeLog.html#autotoc_md11',1,'']]], + ['12_2018_63',['3.11.7 (2013-12-18)',['../md_ChangeLog.html#autotoc_md54',1,'']]], + ['12_202_202015_2004_2004_64',['3.12.2 (2015-04-04)',['../md_ChangeLog.html#autotoc_md47',1,'']]], + ['12_202023_2004_2005_65',['3.14.12 (2023-04-05)',['../md_ChangeLog.html#autotoc_md16',1,'']]], + ['12_2022_66',['3.9.2 (2010-12-22)',['../md_ChangeLog.html#autotoc_md70',1,'']]], + ['12_2027_67',['3.3.4 (2007-12-27)',['../md_ChangeLog.html#autotoc_md97',1,'']]], + ['12_203_20and_203_2011_2011_202015_2004_2015_68',['3.12.3 and 3.11.11 (2015-04-15)',['../md_ChangeLog.html#autotoc_md46',1,'']]], + ['12_204_202015_2008_2009_69',['3.12.4 (2015-08-09)',['../md_ChangeLog.html#autotoc_md45',1,'']]], + ['12_205_202016_2004_2030_70',['3.12.5 (2016-04-30)',['../md_ChangeLog.html#autotoc_md44',1,'']]], + ['12_206_202016_2007_2020_71',['3.12.6 (2016-07-20)',['../md_ChangeLog.html#autotoc_md43',1,'']]], + ['12_207_202017_2002_2025_72',['3.12.7 (2017-02-25)',['../md_ChangeLog.html#autotoc_md42',1,'']]], + ['12_208_202017_2006_2012_73',['3.12.8 (2017-06-12)',['../md_ChangeLog.html#autotoc_md41',1,'']]], + ['12_209_202018_2001_2015_74',['3.12.9 (2018-01-15)',['../md_ChangeLog.html#autotoc_md40',1,'']]], + ['13_75',['13',['../md_ChangeLog.html#autotoc_md118',1,'2.2.1a (2004-05-13)'],['../md_ChangeLog.html#autotoc_md48',1,'3.12.1 (2015-02-13)'],['../md_ChangeLog.html#autotoc_md29',1,'3.13'],['../md_ChangeLog.html#autotoc_md20',1,'3.14.8 (2022-07-13)'],['../md_ChangeLog.html#autotoc_md85',1,'3.5.5 (2009-01-13)']]], + ['13_200_202019_2010_2019_76',['3.13.0 (2019-10-19)',['../md_ChangeLog.html#autotoc_md34',1,'']]], + ['13_201_202020_2003_2011_77',['3.13.1 (2020-03-11)',['../md_ChangeLog.html#autotoc_md33',1,'']]], + ['13_202_202020_2004_2030_78',['3.13.2 (2020-04-30)',['../md_ChangeLog.html#autotoc_md32',1,'']]], + ['13_202019_2004_2008_79',['3.12.13 (2019-04-08)',['../md_ChangeLog.html#autotoc_md36',1,'']]], + ['13_202023_2011_2008_80',['3.14.13 (2023-11-08)',['../md_ChangeLog.html#autotoc_md15',1,'']]], + ['13_203_202020_2010_2016_81',['3.13.3 (2020-10-16)',['../md_ChangeLog.html#autotoc_md31',1,'']]], + ['13_204_202021_2002_2024_82',['3.13.4 (2021-02-24)',['../md_ChangeLog.html#autotoc_md30',1,'']]], + ['14_83',['14',['../md_ChangeLog.html#autotoc_md60',1,'3.11.1 (2013-06-14)'],['../md_ChangeLog.html#autotoc_md10',1,'3.14']]], + ['14_200_202021_2006_2015_84',['3.14.0 (2021-06-15)',['../md_ChangeLog.html#autotoc_md28',1,'']]], + ['14_201_202021_2006_2025_85',['3.14.1 (2021-06-25)',['../md_ChangeLog.html#autotoc_md27',1,'']]], + ['14_2010_202022_2010_2011_86',['3.14.10 (2022-10-11)',['../md_ChangeLog.html#autotoc_md18',1,'']]], + ['14_2011_202023_2002_2007_87',['3.14.11 (2023-02-07)',['../md_ChangeLog.html#autotoc_md17',1,'']]], + ['14_2012_202023_2004_2005_88',['3.14.12 (2023-04-05)',['../md_ChangeLog.html#autotoc_md16',1,'']]], + ['14_2013_202023_2011_2008_89',['3.14.13 (2023-11-08)',['../md_ChangeLog.html#autotoc_md15',1,'']]], + ['14_2014_202024_2001_2018_90',['3.14.14 (2024-01-18)',['../md_ChangeLog.html#autotoc_md14',1,'']]], + ['14_2015_202024_2004_2010_91',['3.14.15 (2024-04-10)',['../md_ChangeLog.html#autotoc_md13',1,'']]], + ['14_2016_202024_2004_2022_92',['3.14.16 (2024-04-22)',['../md_ChangeLog.html#autotoc_md12',1,'']]], + ['14_2017_202024_2012_2014_93',['3.14.17 (2024-12-14)',['../md_ChangeLog.html#autotoc_md11',1,'']]], + ['14_202_202021_2007_2021_94',['3.14.2 (2021-07-21)',['../md_ChangeLog.html#autotoc_md26',1,'']]], + ['14_203_202021_2009_2003_95',['3.14.3 (2021-09-03)',['../md_ChangeLog.html#autotoc_md25',1,'']]], + ['14_204_202021_2009_2020_96',['3.14.4 (2021-09-20)',['../md_ChangeLog.html#autotoc_md24',1,'']]], + ['14_205_202022_2002_2009_97',['3.14.5 (2022-02-09)',['../md_ChangeLog.html#autotoc_md23',1,'']]], + ['14_206_202022_2005_2002_98',['3.14.6 (2022-05-02)',['../md_ChangeLog.html#autotoc_md22',1,'']]], + ['14_207_202022_2006_2024_99',['3.14.7 (2022-06-24)',['../md_ChangeLog.html#autotoc_md21',1,'']]], + ['14_208_202022_2007_2013_100',['3.14.8 (2022-07-13)',['../md_ChangeLog.html#autotoc_md20',1,'']]], + ['14_209_202022_2007_2021_101',['3.14.9 (2022-07-21)',['../md_ChangeLog.html#autotoc_md19',1,'']]], + ['14_20dev_20release_20number_20764_102',['3.2.1 (2006-07-14) - dev release number 764',['../md_ChangeLog.html#autotoc_md104',1,'']]], + ['15_103',['15',['../md_ChangeLog.html#autotoc_md46',1,'3.12.3 and 3.11.11 (2015-04-15)'],['../md_ChangeLog.html#autotoc_md40',1,'3.12.9 (2018-01-15)'],['../md_ChangeLog.html#autotoc_md28',1,'3.14.0 (2021-06-15)']]], + ['15_202024_2004_2010_104',['3.14.15 (2024-04-10)',['../md_ChangeLog.html#autotoc_md13',1,'']]], + ['16_105',['16',['../md_ChangeLog.html#autotoc_md55',1,'3.11.6 (2013-11-16)'],['../md_ChangeLog.html#autotoc_md52',1,'3.11.9 (2014-08-16)'],['../md_ChangeLog.html#autotoc_md38',1,'3.12.11 (2018-09-16)'],['../md_ChangeLog.html#autotoc_md31',1,'3.13.3 (2020-10-16)'],['../md_ChangeLog.html#autotoc_md80',1,'3.7.0 (2009-07-16)'],['../md_ChangeLog.html#autotoc_md75',1,'3.8.2 (2010-06-16)']]], + ['16_202024_2004_2022_106',['3.14.16 (2024-04-22)',['../md_ChangeLog.html#autotoc_md12',1,'']]], + ['17_107',['3.12.12 (2018-11-17)',['../md_ChangeLog.html#autotoc_md37',1,'']]], + ['17_202024_2012_2014_108',['3.14.17 (2024-12-14)',['../md_ChangeLog.html#autotoc_md11',1,'']]], + ['18_109',['18',['../md_ChangeLog.html#autotoc_md51',1,'3.11.10 (2015-01-18)'],['../md_ChangeLog.html#autotoc_md54',1,'3.11.7 (2013-12-18)'],['../md_ChangeLog.html#autotoc_md14',1,'3.14.14 (2024-01-18)'],['../md_ChangeLog.html#autotoc_md92',1,'3.4.2 (2008-07-18)'],['../md_ChangeLog.html#autotoc_md88',1,'3.5.2 (2008-09-18)']]], + ['19_110',['19',['../md_ChangeLog.html#autotoc_md64',1,'3.10.3 (2012-11-19)'],['../md_ChangeLog.html#autotoc_md34',1,'3.13.0 (2019-10-19)'],['../md_ChangeLog.html#autotoc_md87',1,'3.5.3 (2008-09-19)'],['../md_ChangeLog.html#autotoc_md112',1,'no new release (2005-08-19)']]], + ['1a_202004_2005_2013_111',['2.2.1a (2004-05-13)',['../md_ChangeLog.html#autotoc_md118',1,'']]], + ['1b_202004_2005_2021_112',['2.2.1b (2004-05-21)',['../md_ChangeLog.html#autotoc_md117',1,'']]], + ['1c_202004_2007_2020_113',['2.2.1c (2004-07-20)',['../md_ChangeLog.html#autotoc_md116',1,'']]], + ['1d_202004_2010_2005_114',['2.2.1d (2004-10-05)',['../md_ChangeLog.html#autotoc_md115',1,'']]], + ['1e_202005_2005_2030_115',['2.2.1e (2005-05-30)',['../md_ChangeLog.html#autotoc_md113',1,'']]] ]; diff --git a/search/all_12.js b/search/all_12.js index 9b6cad76e..2f91fd570 100644 --- a/search/all_12.js +++ b/search/all_12.js @@ -96,23 +96,23 @@ var searchData= ['initialized_5f_93',['initialized_',['../classIpopt_1_1SymTMatrix.html#acaf8290a1e70fbd0dce6bbbd85379fbe',1,'Ipopt::SymTMatrix::initialized_'],['../classIpopt_1_1IterativePardisoSolverInterface.html#ad80874551afd5074eb7d97549a73d869',1,'Ipopt::IterativePardisoSolverInterface::initialized_'],['../classIpopt_1_1MonotoneMuUpdate.html#a90ed1830175f33333558c2f16399e44d',1,'Ipopt::MonotoneMuUpdate::initialized_'],['../classIpopt_1_1OrigIpoptNLP.html#a5251c4b6fe3909f4e02a9636d553ecb3',1,'Ipopt::OrigIpoptNLP::initialized_'],['../classIpopt_1_1QualityFunctionMuOracle.html#a4462bffda24fd5fa4d8d818c59138520',1,'Ipopt::QualityFunctionMuOracle::initialized_'],['../classIpopt_1_1RestoIpoptNLP.html#a52990c40accf241bb8178d425130bd37',1,'Ipopt::RestoIpoptNLP::initialized_'],['../classIpopt_1_1Ma27TSolverInterface.html#a26704dbaa7e4d6cf2be75ff1ea5924d2',1,'Ipopt::Ma27TSolverInterface::initialized_'],['../classIpopt_1_1SchurData.html#a72e3fc6718a5e745f27560e3cb95a9c9',1,'Ipopt::SchurData::initialized_'],['../classIpopt_1_1GenTMatrix.html#a135ffa11023af87fd2f7e05d3bc380c7',1,'Ipopt::GenTMatrix::initialized_'],['../classIpopt_1_1DenseVector.html#a1b4f217194e9e271d0acbbb2eff2b518',1,'Ipopt::DenseVector::initialized_'],['../classIpopt_1_1DenseSymMatrix.html#a92cf74debf401fb678a5304a64251792',1,'Ipopt::DenseSymMatrix::initialized_'],['../classIpopt_1_1DenseGenMatrix.html#af4f6c2e783fe9a55f715ec3945302266',1,'Ipopt::DenseGenMatrix::initialized_'],['../classIpopt_1_1OptionsList_1_1OptionValue.html#afcbf49bb2eb03c10401b85a592325ce1',1,'Ipopt::OptionsList::OptionValue::initialized_'],['../classIpopt_1_1WsmpSolverInterface.html#a5a41b64c9fa091831fbfeff5daccdd9c',1,'Ipopt::WsmpSolverInterface::initialized_'],['../classIpopt_1_1TripletToCSRConverter.html#aac91825026e2ae37d97594448a1d1d47',1,'Ipopt::TripletToCSRConverter::initialized_'],['../classIpopt_1_1PardisoSolverInterface.html#abc90ec6a9bb4025ca578cd3790e7bf0d',1,'Ipopt::PardisoSolverInterface::initialized_'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a0c8362be9fd7092a99326fe1caec2261',1,'Ipopt::PardisoMKLSolverInterface::initialized_'],['../classIpopt_1_1MumpsSolverInterface.html#ae429537d801ee4605aa9c5741b63541a',1,'Ipopt::MumpsSolverInterface::initialized_'],['../classIpopt_1_1Ma57TSolverInterface.html#a89112d8dc87883444a61573e95152719',1,'Ipopt::Ma57TSolverInterface::initialized_'],['../classIpopt_1_1TSymLinearSolver.html#af1db7fe9fa7bda8eecbe08ee45b20ed3',1,'Ipopt::TSymLinearSolver::initialized_'],['../classIpopt_1_1IterativeWsmpSolverInterface.html#a170ce8487655c2185a0debec27d171ba',1,'Ipopt::IterativeWsmpSolverInterface::initialized_']]], ['initializedatastructures_94',['initializedatastructures',['../classIpopt_1_1CGPenaltyData.html#a354a8b1f768a17a450b66441998f966d',1,'Ipopt::CGPenaltyData::InitializeDataStructures()'],['../classIpopt_1_1IpoptData.html#aca3bd1ad4d743ed17c30f0f0ed6b7409',1,'Ipopt::IpoptData::InitializeDataStructures()'],['../classIpopt_1_1IpoptAdditionalData.html#a98a69e374460339193574e91e21ef994',1,'Ipopt::IpoptAdditionalData::InitializeDataStructures()'],['../classIpopt_1_1InexactData.html#ab0a6803b3e5787ffa28918e07c2d8af7',1,'Ipopt::InexactData::InitializeDataStructures()']]], ['initializefixedmuglobalization_95',['InitializeFixedMuGlobalization',['../classIpopt_1_1AdaptiveMuUpdate.html#ad7f67ab7f708e05d04ebb0fc55fc2cdc',1,'Ipopt::AdaptiveMuUpdate']]], - ['initializeimpl_96',['initializeimpl',['../classIpopt_1_1RestoConvergenceCheck.html#a8be6f4e4eb42c4293ab21a0274ad537b',1,'Ipopt::RestoConvergenceCheck::InitializeImpl()'],['../classIpopt_1_1SearchDirectionCalculator.html#a5dae9d951413f50cccffc0d9d4e54238',1,'Ipopt::SearchDirectionCalculator::InitializeImpl()'],['../classIpopt_1_1RestoRestorationPhase.html#acf47ce58a94e2ece8933e9fe79eda9c3',1,'Ipopt::RestoRestorationPhase::InitializeImpl()'],['../classIpopt_1_1RestorationPhase.html#ad1633c87542a791b88d3640d20b3c71b',1,'Ipopt::RestorationPhase::InitializeImpl()'],['../classIpopt_1_1RestoPenaltyConvergenceCheck.html#a5ebe96a9bd39a749cd76e76e5b15f0ee',1,'Ipopt::RestoPenaltyConvergenceCheck::InitializeImpl()'],['../classIpopt_1_1MinC__1NrmRestorationPhase.html#a220131e265b5e063335bed8ec0d08b58',1,'Ipopt::MinC_1NrmRestorationPhase::InitializeImpl()'],['../classIpopt_1_1RestoIterationOutput.html#a26b7e153f124175f5e0a0d8b908efcf5',1,'Ipopt::RestoIterationOutput::InitializeImpl()'],['../classIpopt_1_1RestoIterateInitializer.html#aba9755c541cada19fd0fcaf8311eeda5',1,'Ipopt::RestoIterateInitializer::InitializeImpl()'],['../classIpopt_1_1RestoFilterConvergenceCheck.html#aa03cf0705dffe108c394ec38207189eb',1,'Ipopt::RestoFilterConvergenceCheck::InitializeImpl()'],['../classIpopt_1_1CGSearchDirCalculator.html#a613c1fea7676890a6fa952feeef8d3ea',1,'Ipopt::CGSearchDirCalculator::InitializeImpl()'],['../classIpopt_1_1IndexPCalculator.html#a2fcbfba028be182f7d92bddccf5e507f',1,'Ipopt::IndexPCalculator::InitializeImpl()'],['../classIpopt_1_1TDependencyDetector.html#a58043fbce376c192beacca789b6c926e',1,'Ipopt::TDependencyDetector::InitializeImpl()'],['../classIpopt_1_1TSymDependencyDetector.html#ab379bc6cffe6118ef51c137639e26c7d',1,'Ipopt::TSymDependencyDetector::InitializeImpl()'],['../classIpopt_1_1TSymLinearSolver.html#a80fad49c3c418396904f8e92859e2c36',1,'Ipopt::TSymLinearSolver::InitializeImpl()'],['../classIpopt_1_1TSymScalingMethod.html#a0575fc1ffc6c32ec3975cff6d13a2981',1,'Ipopt::TSymScalingMethod::InitializeImpl()'],['../classIpopt_1_1WsmpSolverInterface.html#a8d3abda2c7e95182c5328aac23659562',1,'Ipopt::WsmpSolverInterface::InitializeImpl()'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#af6e9420c32f7f4d514dbbee7d31ef19f',1,'Ipopt::CGPenaltyLSAcceptor::InitializeImpl()'],['../classIpopt_1_1CGPerturbationHandler.html#a13b5c8dba214a6f3711792700c4741a7',1,'Ipopt::CGPerturbationHandler::InitializeImpl()'],['../classIpopt_1_1SensAlgorithm.html#a8f27183ded89fe7e278260e400e7fc73',1,'Ipopt::SensAlgorithm::InitializeImpl()'],['../classIpopt_1_1SymLinearSolver.html#a79e41f34d48095b7007784e8a3c60974',1,'Ipopt::SymLinearSolver::InitializeImpl()'],['../classIpopt_1_1MetadataMeasurement.html#ae835a07c5bf9d8bde02bd02da558c767',1,'Ipopt::MetadataMeasurement::InitializeImpl()'],['../classIpopt_1_1PCalculator.html#acc7e28a3c63d60d0ecf004d4a2c6a31e',1,'Ipopt::PCalculator::InitializeImpl()'],['../classIpopt_1_1ReducedHessianCalculator.html#a5cab5c18fd935bbaa1c51f9c3b09bbc3',1,'Ipopt::ReducedHessianCalculator::InitializeImpl()'],['../classIpopt_1_1SchurDriver.html#ae0719399a2e261c63d776a3b3f9f87c6',1,'Ipopt::SchurDriver::InitializeImpl()'],['../classIpopt_1_1SimpleBacksolver.html#af7b3d6149202d6e4be2bc27dfe983820',1,'Ipopt::SimpleBacksolver::InitializeImpl()'],['../classIpopt_1_1StdStepCalculator.html#aac6bcd1d822045387f96379c60d906c6',1,'Ipopt::StdStepCalculator::InitializeImpl()'],['../classIpopt_1_1SensitivityStepCalculator.html#ad0330778dd37df229d5b750908228390',1,'Ipopt::SensitivityStepCalculator::InitializeImpl()'],['../classIpopt_1_1StandardScalingBase.html#a3fd7a27b24188121c14c5e5d88ed9599',1,'Ipopt::StandardScalingBase::InitializeImpl()'],['../classIpopt_1_1Ma97SolverInterface.html#aae916f5d351adf0b0c972fbcbc2abe81',1,'Ipopt::Ma97SolverInterface::InitializeImpl()'],['../classIpopt_1_1WarmStartIterateInitializer.html#a179cc5339d9ac55f8d5686a57b18c904',1,'Ipopt::WarmStartIterateInitializer::InitializeImpl()'],['../classIpopt_1_1GenKKTSolverInterface.html#a4e40b8f8046b588ef3f9c703dd0a35f9',1,'Ipopt::GenKKTSolverInterface::InitializeImpl()'],['../classIpopt_1_1IterativeWsmpSolverInterface.html#ae79b16c31635b4cce33db647558fb65b',1,'Ipopt::IterativeWsmpSolverInterface::InitializeImpl()'],['../classIpopt_1_1Ma27TSolverInterface.html#a08b9b2fa8c0f426503363f810405f56b',1,'Ipopt::Ma27TSolverInterface::InitializeImpl()'],['../classIpopt_1_1Ma28TDependencyDetector.html#a1d31d513b1f536f7d068dd3649f81302',1,'Ipopt::Ma28TDependencyDetector::InitializeImpl()'],['../classIpopt_1_1Ma57TSolverInterface.html#a7fa4469131358f80f68b097da9753f95',1,'Ipopt::Ma57TSolverInterface::InitializeImpl()'],['../classIpopt_1_1Ma77SolverInterface.html#a07059e451225cff016acde278e870190',1,'Ipopt::Ma77SolverInterface::InitializeImpl()'],['../classIpopt_1_1Ma86SolverInterface.html#a35479d2260dd4a24f267ff510e647f7e',1,'Ipopt::Ma86SolverInterface::InitializeImpl()'],['../classIpopt_1_1StdAugSystemSolver.html#a42969bb950e7bd304dd84d9e989c0bde',1,'Ipopt::StdAugSystemSolver::InitializeImpl()'],['../classIpopt_1_1Mc19TSymScalingMethod.html#aefe48031b8927d812eb9d7e0f997b0df',1,'Ipopt::Mc19TSymScalingMethod::InitializeImpl()'],['../classIpopt_1_1MumpsSolverInterface.html#aa821cf1e57f5198fa72f28580c6bb574',1,'Ipopt::MumpsSolverInterface::InitializeImpl()'],['../classIpopt_1_1PardisoMKLSolverInterface.html#afa2d9d099f4153e2d93b1f98d9588771',1,'Ipopt::PardisoMKLSolverInterface::InitializeImpl()'],['../classIpopt_1_1PardisoSolverInterface.html#ac22739903dfdad5c2627eff5c925f49b',1,'Ipopt::PardisoSolverInterface::InitializeImpl()'],['../classIpopt_1_1SlackBasedTSymScalingMethod.html#ab8308741127c896501f57f27f7c0c05e',1,'Ipopt::SlackBasedTSymScalingMethod::InitializeImpl()'],['../classIpopt_1_1SparseSymLinearSolverInterface.html#a667325ec88127e074ae76458d3500da3',1,'Ipopt::SparseSymLinearSolverInterface::InitializeImpl()'],['../classIpopt_1_1SpralSolverInterface.html#a3819a97a4a726657c3c9ad4146691e53',1,'Ipopt::SpralSolverInterface::InitializeImpl()'],['../classIpopt_1_1IpoptAlgorithm.html#a9ad444afb80b4980eec246c05c0e0c41',1,'Ipopt::IpoptAlgorithm::InitializeImpl()'],['../classIpopt_1_1BacktrackingLineSearch.html#ae8f08335c6bc1e52057c3ae4f33988a9',1,'Ipopt::BacktrackingLineSearch::InitializeImpl()'],['../classIpopt_1_1BacktrackingLSAcceptor.html#a8751601ac6d73a8afe8253db6300fc7d',1,'Ipopt::BacktrackingLSAcceptor::InitializeImpl()'],['../classIpopt_1_1ConvergenceCheck.html#ad47fb4b92561c7b05bd5a145878c90bf',1,'Ipopt::ConvergenceCheck::InitializeImpl()'],['../classIpopt_1_1DefaultIterateInitializer.html#a4b82b3f9ee7cb911e3036616499b8a70',1,'Ipopt::DefaultIterateInitializer::InitializeImpl()'],['../classIpopt_1_1EqMultiplierCalculator.html#ab9601ff84ca96a788995fd04c4d775f1',1,'Ipopt::EqMultiplierCalculator::InitializeImpl()'],['../classIpopt_1_1EquilibrationScaling.html#a301ea19d8a61bff1fabfa13395fadf46',1,'Ipopt::EquilibrationScaling::InitializeImpl()'],['../classIpopt_1_1ExactHessianUpdater.html#a27ca3ad77a09c7f9b8aaa0ab660bbe1a',1,'Ipopt::ExactHessianUpdater::InitializeImpl()'],['../classIpopt_1_1FilterLSAcceptor.html#a2810cc21f720a6da1dcf2e73c5cb911b',1,'Ipopt::FilterLSAcceptor::InitializeImpl()'],['../classIpopt_1_1GenAugSystemSolver.html#a20524a3e18b17b1b74554c386f64f491',1,'Ipopt::GenAugSystemSolver::InitializeImpl()'],['../classIpopt_1_1GradientScaling.html#ac29260d1e43a92ddb1af7137a5b2dc83',1,'Ipopt::GradientScaling::InitializeImpl()'],['../classIpopt_1_1HessianUpdater.html#a703e4acf951f7fce479fb346dada6fc8',1,'Ipopt::HessianUpdater::InitializeImpl()'],['../classIpopt_1_1AugSystemSolver.html#ab4e182094fc0f28b1f24ee13014d13e5',1,'Ipopt::AugSystemSolver::InitializeImpl()'],['../classIpopt_1_1IterateInitializer.html#a6671aa37d66b209be707ac41d8c26626',1,'Ipopt::IterateInitializer::InitializeImpl()'],['../classIpopt_1_1IterationOutput.html#abd2bd5bca18a9c5838ebfc91292e0515',1,'Ipopt::IterationOutput::InitializeImpl()'],['../classIpopt_1_1LeastSquareMultipliers.html#aa9464bd68e3ceeb7fa2fc4703397a2a9',1,'Ipopt::LeastSquareMultipliers::InitializeImpl()'],['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#ab6b064e5eff0e16c4aa83983070f20a6',1,'Ipopt::LimMemQuasiNewtonUpdater::InitializeImpl()'],['../classIpopt_1_1LoqoMuOracle.html#ad5ea5a85622a64f25eed3bef30875172',1,'Ipopt::LoqoMuOracle::InitializeImpl()'],['../classIpopt_1_1LowRankAugSystemSolver.html#ace2df16930e390fd483b14a2f18ae82d',1,'Ipopt::LowRankAugSystemSolver::InitializeImpl()'],['../classIpopt_1_1LowRankSSAugSystemSolver.html#a9f4ef32d3157b78fca34b341642acc2e',1,'Ipopt::LowRankSSAugSystemSolver::InitializeImpl()'],['../classIpopt_1_1MonotoneMuUpdate.html#a2310360471a149e0e2b5719b1ca1c120',1,'Ipopt::MonotoneMuUpdate::InitializeImpl()'],['../classIpopt_1_1MuOracle.html#a046083be909dc54e3468484fd35301a0',1,'Ipopt::MuOracle::InitializeImpl()'],['../classIpopt_1_1MuUpdate.html#a69cd4d61fc02814e9937cbcfdbc76270',1,'Ipopt::MuUpdate::InitializeImpl()'],['../classIpopt_1_1NLPScalingObject.html#a47819a31961253c4b38bc9f8c9ee1306',1,'Ipopt::NLPScalingObject::InitializeImpl()'],['../classIpopt_1_1InexactNormalStepCalculator.html#a5097b990160db54ded3d2e58222e28dd',1,'Ipopt::InexactNormalStepCalculator::InitializeImpl()'],['../classIpopt_1_1ProbingMuOracle.html#a6c70ce206ec59a715515646a4f3d246c',1,'Ipopt::ProbingMuOracle::InitializeImpl()'],['../classIpopt_1_1PenaltyLSAcceptor.html#a92cb18fe9b1cb982b0ecda50bb5d6d27',1,'Ipopt::PenaltyLSAcceptor::InitializeImpl()'],['../classIpopt_1_1PDSystemSolver.html#acfd01ecfb821d7577e5e6f71a3e11f7d',1,'Ipopt::PDSystemSolver::InitializeImpl()'],['../classIpopt_1_1PDSearchDirCalculator.html#a25b49874d3863a95e529a912d1eee128',1,'Ipopt::PDSearchDirCalculator::InitializeImpl()'],['../classIpopt_1_1PDPerturbationHandler.html#a24dc8e8550d73d5b1d6563b7f69f8d40',1,'Ipopt::PDPerturbationHandler::InitializeImpl()'],['../classIpopt_1_1PDFullSpaceSolver.html#a6b4a9a6ca82231501bc7920be254100c',1,'Ipopt::PDFullSpaceSolver::InitializeImpl()'],['../classIpopt_1_1OrigIterationOutput.html#a73234ca66e5786bd0aae9898c9a21157',1,'Ipopt::OrigIterationOutput::InitializeImpl()'],['../classIpopt_1_1OptimalityErrorConvergenceCheck.html#ab8402c4dc24e07747e3d0427182aea0b',1,'Ipopt::OptimalityErrorConvergenceCheck::InitializeImpl()'],['../classIpopt_1_1InexactDoglegNormalStep.html#af398a15724d7a1768f8e6cb3f83519b4',1,'Ipopt::InexactDoglegNormalStep::InitializeImpl()'],['../classIpopt_1_1InexactLSAcceptor.html#a2e09513cc109cdc350ce854eddc134b4',1,'Ipopt::InexactLSAcceptor::InitializeImpl()'],['../classIpopt_1_1InexactNewtonNormalStep.html#a62d6be75932e51084dd0c9d0b380da2d',1,'Ipopt::InexactNewtonNormalStep::InitializeImpl()'],['../classIpopt_1_1QualityFunctionMuOracle.html#aaf4fda023368a3251084851410a771ef',1,'Ipopt::QualityFunctionMuOracle::InitializeImpl()'],['../classIpopt_1_1InexactNormalTerminationTester.html#ad0c580856fc2611bc1a8abedf770cc44',1,'Ipopt::InexactNormalTerminationTester::InitializeImpl()'],['../classIpopt_1_1InexactPDSolver.html#aab927b8bd5688eee5c4780e38f706279',1,'Ipopt::InexactPDSolver::InitializeImpl()'],['../classIpopt_1_1InexactPDTerminationTester.html#ad07644fc6f4f1cb99651d42debcddd83',1,'Ipopt::InexactPDTerminationTester::InitializeImpl()'],['../classIpopt_1_1InexactSearchDirCalculator.html#a9b1f96972b2c736f6ab1c076c5338af4',1,'Ipopt::InexactSearchDirCalculator::InitializeImpl()'],['../classIpopt_1_1InexactTSymScalingMethod.html#a01542d415dfb7aed6abc27c770313ca7',1,'Ipopt::InexactTSymScalingMethod::InitializeImpl()'],['../classIpopt_1_1IterativePardisoSolverInterface.html#a7546f5099489c1170e2706a143f20dc9',1,'Ipopt::IterativePardisoSolverInterface::InitializeImpl()'],['../classIpopt_1_1IterativeSolverTerminationTester.html#abbc5ff91e3bec58b6dba94b1d3c463bd',1,'Ipopt::IterativeSolverTerminationTester::InitializeImpl()'],['../classIpopt_1_1AdaptiveMuUpdate.html#ab659df8dbf5e920da2179691e01b85a6',1,'Ipopt::AdaptiveMuUpdate::InitializeImpl()'],['../classIpopt_1_1AlgorithmStrategyObject.html#a6e5ef59a257a61c928515ea78fd5c148',1,'Ipopt::AlgorithmStrategyObject::InitializeImpl()'],['../classIpopt_1_1AugRestoSystemSolver.html#a324a672f4b86ce15c20edb84efd127fd',1,'Ipopt::AugRestoSystemSolver::InitializeImpl()']]], + ['initializeimpl_96',['initializeimpl',['../classIpopt_1_1RestoConvergenceCheck.html#a8be6f4e4eb42c4293ab21a0274ad537b',1,'Ipopt::RestoConvergenceCheck::InitializeImpl()'],['../classIpopt_1_1SearchDirectionCalculator.html#a5dae9d951413f50cccffc0d9d4e54238',1,'Ipopt::SearchDirectionCalculator::InitializeImpl()'],['../classIpopt_1_1RestoRestorationPhase.html#acf47ce58a94e2ece8933e9fe79eda9c3',1,'Ipopt::RestoRestorationPhase::InitializeImpl()'],['../classIpopt_1_1RestorationPhase.html#ad1633c87542a791b88d3640d20b3c71b',1,'Ipopt::RestorationPhase::InitializeImpl()'],['../classIpopt_1_1RestoPenaltyConvergenceCheck.html#a5ebe96a9bd39a749cd76e76e5b15f0ee',1,'Ipopt::RestoPenaltyConvergenceCheck::InitializeImpl()'],['../classIpopt_1_1MinC__1NrmRestorationPhase.html#a220131e265b5e063335bed8ec0d08b58',1,'Ipopt::MinC_1NrmRestorationPhase::InitializeImpl()'],['../classIpopt_1_1RestoIterationOutput.html#a26b7e153f124175f5e0a0d8b908efcf5',1,'Ipopt::RestoIterationOutput::InitializeImpl()'],['../classIpopt_1_1RestoIterateInitializer.html#aba9755c541cada19fd0fcaf8311eeda5',1,'Ipopt::RestoIterateInitializer::InitializeImpl()'],['../classIpopt_1_1RestoFilterConvergenceCheck.html#aa03cf0705dffe108c394ec38207189eb',1,'Ipopt::RestoFilterConvergenceCheck::InitializeImpl()'],['../classIpopt_1_1SensAlgorithm.html#a8f27183ded89fe7e278260e400e7fc73',1,'Ipopt::SensAlgorithm::InitializeImpl()'],['../classIpopt_1_1IndexPCalculator.html#a2fcbfba028be182f7d92bddccf5e507f',1,'Ipopt::IndexPCalculator::InitializeImpl()'],['../classIpopt_1_1TDependencyDetector.html#a58043fbce376c192beacca789b6c926e',1,'Ipopt::TDependencyDetector::InitializeImpl()'],['../classIpopt_1_1TSymDependencyDetector.html#ab379bc6cffe6118ef51c137639e26c7d',1,'Ipopt::TSymDependencyDetector::InitializeImpl()'],['../classIpopt_1_1TSymLinearSolver.html#a80fad49c3c418396904f8e92859e2c36',1,'Ipopt::TSymLinearSolver::InitializeImpl()'],['../classIpopt_1_1TSymScalingMethod.html#a0575fc1ffc6c32ec3975cff6d13a2981',1,'Ipopt::TSymScalingMethod::InitializeImpl()'],['../classIpopt_1_1WsmpSolverInterface.html#a8d3abda2c7e95182c5328aac23659562',1,'Ipopt::WsmpSolverInterface::InitializeImpl()'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#af6e9420c32f7f4d514dbbee7d31ef19f',1,'Ipopt::CGPenaltyLSAcceptor::InitializeImpl()'],['../classIpopt_1_1CGPerturbationHandler.html#a13b5c8dba214a6f3711792700c4741a7',1,'Ipopt::CGPerturbationHandler::InitializeImpl()'],['../classIpopt_1_1CGSearchDirCalculator.html#a613c1fea7676890a6fa952feeef8d3ea',1,'Ipopt::CGSearchDirCalculator::InitializeImpl()'],['../classIpopt_1_1SymLinearSolver.html#a79e41f34d48095b7007784e8a3c60974',1,'Ipopt::SymLinearSolver::InitializeImpl()'],['../classIpopt_1_1MetadataMeasurement.html#ae835a07c5bf9d8bde02bd02da558c767',1,'Ipopt::MetadataMeasurement::InitializeImpl()'],['../classIpopt_1_1PCalculator.html#acc7e28a3c63d60d0ecf004d4a2c6a31e',1,'Ipopt::PCalculator::InitializeImpl()'],['../classIpopt_1_1ReducedHessianCalculator.html#a5cab5c18fd935bbaa1c51f9c3b09bbc3',1,'Ipopt::ReducedHessianCalculator::InitializeImpl()'],['../classIpopt_1_1SchurDriver.html#ae0719399a2e261c63d776a3b3f9f87c6',1,'Ipopt::SchurDriver::InitializeImpl()'],['../classIpopt_1_1SimpleBacksolver.html#af7b3d6149202d6e4be2bc27dfe983820',1,'Ipopt::SimpleBacksolver::InitializeImpl()'],['../classIpopt_1_1StdStepCalculator.html#aac6bcd1d822045387f96379c60d906c6',1,'Ipopt::StdStepCalculator::InitializeImpl()'],['../classIpopt_1_1SensitivityStepCalculator.html#ad0330778dd37df229d5b750908228390',1,'Ipopt::SensitivityStepCalculator::InitializeImpl()'],['../classIpopt_1_1StandardScalingBase.html#a3fd7a27b24188121c14c5e5d88ed9599',1,'Ipopt::StandardScalingBase::InitializeImpl()'],['../classIpopt_1_1Ma97SolverInterface.html#aae916f5d351adf0b0c972fbcbc2abe81',1,'Ipopt::Ma97SolverInterface::InitializeImpl()'],['../classIpopt_1_1WarmStartIterateInitializer.html#a179cc5339d9ac55f8d5686a57b18c904',1,'Ipopt::WarmStartIterateInitializer::InitializeImpl()'],['../classIpopt_1_1GenKKTSolverInterface.html#a4e40b8f8046b588ef3f9c703dd0a35f9',1,'Ipopt::GenKKTSolverInterface::InitializeImpl()'],['../classIpopt_1_1IterativeWsmpSolverInterface.html#ae79b16c31635b4cce33db647558fb65b',1,'Ipopt::IterativeWsmpSolverInterface::InitializeImpl()'],['../classIpopt_1_1Ma27TSolverInterface.html#a08b9b2fa8c0f426503363f810405f56b',1,'Ipopt::Ma27TSolverInterface::InitializeImpl()'],['../classIpopt_1_1Ma28TDependencyDetector.html#a1d31d513b1f536f7d068dd3649f81302',1,'Ipopt::Ma28TDependencyDetector::InitializeImpl()'],['../classIpopt_1_1Ma57TSolverInterface.html#a7fa4469131358f80f68b097da9753f95',1,'Ipopt::Ma57TSolverInterface::InitializeImpl()'],['../classIpopt_1_1Ma77SolverInterface.html#a07059e451225cff016acde278e870190',1,'Ipopt::Ma77SolverInterface::InitializeImpl()'],['../classIpopt_1_1Ma86SolverInterface.html#a35479d2260dd4a24f267ff510e647f7e',1,'Ipopt::Ma86SolverInterface::InitializeImpl()'],['../classIpopt_1_1StdAugSystemSolver.html#a42969bb950e7bd304dd84d9e989c0bde',1,'Ipopt::StdAugSystemSolver::InitializeImpl()'],['../classIpopt_1_1Mc19TSymScalingMethod.html#aefe48031b8927d812eb9d7e0f997b0df',1,'Ipopt::Mc19TSymScalingMethod::InitializeImpl()'],['../classIpopt_1_1MumpsSolverInterface.html#aa821cf1e57f5198fa72f28580c6bb574',1,'Ipopt::MumpsSolverInterface::InitializeImpl()'],['../classIpopt_1_1PardisoMKLSolverInterface.html#afa2d9d099f4153e2d93b1f98d9588771',1,'Ipopt::PardisoMKLSolverInterface::InitializeImpl()'],['../classIpopt_1_1PardisoSolverInterface.html#ac22739903dfdad5c2627eff5c925f49b',1,'Ipopt::PardisoSolverInterface::InitializeImpl()'],['../classIpopt_1_1SlackBasedTSymScalingMethod.html#ab8308741127c896501f57f27f7c0c05e',1,'Ipopt::SlackBasedTSymScalingMethod::InitializeImpl()'],['../classIpopt_1_1SparseSymLinearSolverInterface.html#a667325ec88127e074ae76458d3500da3',1,'Ipopt::SparseSymLinearSolverInterface::InitializeImpl()'],['../classIpopt_1_1SpralSolverInterface.html#a3819a97a4a726657c3c9ad4146691e53',1,'Ipopt::SpralSolverInterface::InitializeImpl()'],['../classIpopt_1_1IpoptAlgorithm.html#a9ad444afb80b4980eec246c05c0e0c41',1,'Ipopt::IpoptAlgorithm::InitializeImpl()'],['../classIpopt_1_1BacktrackingLineSearch.html#ae8f08335c6bc1e52057c3ae4f33988a9',1,'Ipopt::BacktrackingLineSearch::InitializeImpl()'],['../classIpopt_1_1BacktrackingLSAcceptor.html#a8751601ac6d73a8afe8253db6300fc7d',1,'Ipopt::BacktrackingLSAcceptor::InitializeImpl()'],['../classIpopt_1_1ConvergenceCheck.html#ad47fb4b92561c7b05bd5a145878c90bf',1,'Ipopt::ConvergenceCheck::InitializeImpl()'],['../classIpopt_1_1DefaultIterateInitializer.html#a4b82b3f9ee7cb911e3036616499b8a70',1,'Ipopt::DefaultIterateInitializer::InitializeImpl()'],['../classIpopt_1_1EqMultiplierCalculator.html#ab9601ff84ca96a788995fd04c4d775f1',1,'Ipopt::EqMultiplierCalculator::InitializeImpl()'],['../classIpopt_1_1EquilibrationScaling.html#a301ea19d8a61bff1fabfa13395fadf46',1,'Ipopt::EquilibrationScaling::InitializeImpl()'],['../classIpopt_1_1ExactHessianUpdater.html#a27ca3ad77a09c7f9b8aaa0ab660bbe1a',1,'Ipopt::ExactHessianUpdater::InitializeImpl()'],['../classIpopt_1_1FilterLSAcceptor.html#a2810cc21f720a6da1dcf2e73c5cb911b',1,'Ipopt::FilterLSAcceptor::InitializeImpl()'],['../classIpopt_1_1GenAugSystemSolver.html#a20524a3e18b17b1b74554c386f64f491',1,'Ipopt::GenAugSystemSolver::InitializeImpl()'],['../classIpopt_1_1GradientScaling.html#ac29260d1e43a92ddb1af7137a5b2dc83',1,'Ipopt::GradientScaling::InitializeImpl()'],['../classIpopt_1_1HessianUpdater.html#a703e4acf951f7fce479fb346dada6fc8',1,'Ipopt::HessianUpdater::InitializeImpl()'],['../classIpopt_1_1AugSystemSolver.html#ab4e182094fc0f28b1f24ee13014d13e5',1,'Ipopt::AugSystemSolver::InitializeImpl()'],['../classIpopt_1_1IterateInitializer.html#a6671aa37d66b209be707ac41d8c26626',1,'Ipopt::IterateInitializer::InitializeImpl()'],['../classIpopt_1_1IterationOutput.html#abd2bd5bca18a9c5838ebfc91292e0515',1,'Ipopt::IterationOutput::InitializeImpl()'],['../classIpopt_1_1LeastSquareMultipliers.html#aa9464bd68e3ceeb7fa2fc4703397a2a9',1,'Ipopt::LeastSquareMultipliers::InitializeImpl()'],['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#ab6b064e5eff0e16c4aa83983070f20a6',1,'Ipopt::LimMemQuasiNewtonUpdater::InitializeImpl()'],['../classIpopt_1_1LoqoMuOracle.html#ad5ea5a85622a64f25eed3bef30875172',1,'Ipopt::LoqoMuOracle::InitializeImpl()'],['../classIpopt_1_1LowRankAugSystemSolver.html#ace2df16930e390fd483b14a2f18ae82d',1,'Ipopt::LowRankAugSystemSolver::InitializeImpl()'],['../classIpopt_1_1LowRankSSAugSystemSolver.html#a9f4ef32d3157b78fca34b341642acc2e',1,'Ipopt::LowRankSSAugSystemSolver::InitializeImpl()'],['../classIpopt_1_1MonotoneMuUpdate.html#a2310360471a149e0e2b5719b1ca1c120',1,'Ipopt::MonotoneMuUpdate::InitializeImpl()'],['../classIpopt_1_1MuOracle.html#a046083be909dc54e3468484fd35301a0',1,'Ipopt::MuOracle::InitializeImpl()'],['../classIpopt_1_1MuUpdate.html#a69cd4d61fc02814e9937cbcfdbc76270',1,'Ipopt::MuUpdate::InitializeImpl()'],['../classIpopt_1_1NLPScalingObject.html#a47819a31961253c4b38bc9f8c9ee1306',1,'Ipopt::NLPScalingObject::InitializeImpl()'],['../classIpopt_1_1InexactNormalStepCalculator.html#a5097b990160db54ded3d2e58222e28dd',1,'Ipopt::InexactNormalStepCalculator::InitializeImpl()'],['../classIpopt_1_1ProbingMuOracle.html#a6c70ce206ec59a715515646a4f3d246c',1,'Ipopt::ProbingMuOracle::InitializeImpl()'],['../classIpopt_1_1PenaltyLSAcceptor.html#a92cb18fe9b1cb982b0ecda50bb5d6d27',1,'Ipopt::PenaltyLSAcceptor::InitializeImpl()'],['../classIpopt_1_1PDSystemSolver.html#acfd01ecfb821d7577e5e6f71a3e11f7d',1,'Ipopt::PDSystemSolver::InitializeImpl()'],['../classIpopt_1_1PDSearchDirCalculator.html#a25b49874d3863a95e529a912d1eee128',1,'Ipopt::PDSearchDirCalculator::InitializeImpl()'],['../classIpopt_1_1PDPerturbationHandler.html#a24dc8e8550d73d5b1d6563b7f69f8d40',1,'Ipopt::PDPerturbationHandler::InitializeImpl()'],['../classIpopt_1_1PDFullSpaceSolver.html#a6b4a9a6ca82231501bc7920be254100c',1,'Ipopt::PDFullSpaceSolver::InitializeImpl()'],['../classIpopt_1_1OrigIterationOutput.html#a73234ca66e5786bd0aae9898c9a21157',1,'Ipopt::OrigIterationOutput::InitializeImpl()'],['../classIpopt_1_1OptimalityErrorConvergenceCheck.html#ab8402c4dc24e07747e3d0427182aea0b',1,'Ipopt::OptimalityErrorConvergenceCheck::InitializeImpl()'],['../classIpopt_1_1InexactDoglegNormalStep.html#af398a15724d7a1768f8e6cb3f83519b4',1,'Ipopt::InexactDoglegNormalStep::InitializeImpl()'],['../classIpopt_1_1InexactLSAcceptor.html#a2e09513cc109cdc350ce854eddc134b4',1,'Ipopt::InexactLSAcceptor::InitializeImpl()'],['../classIpopt_1_1InexactNewtonNormalStep.html#a62d6be75932e51084dd0c9d0b380da2d',1,'Ipopt::InexactNewtonNormalStep::InitializeImpl()'],['../classIpopt_1_1QualityFunctionMuOracle.html#aaf4fda023368a3251084851410a771ef',1,'Ipopt::QualityFunctionMuOracle::InitializeImpl()'],['../classIpopt_1_1InexactNormalTerminationTester.html#ad0c580856fc2611bc1a8abedf770cc44',1,'Ipopt::InexactNormalTerminationTester::InitializeImpl()'],['../classIpopt_1_1InexactPDSolver.html#aab927b8bd5688eee5c4780e38f706279',1,'Ipopt::InexactPDSolver::InitializeImpl()'],['../classIpopt_1_1InexactPDTerminationTester.html#ad07644fc6f4f1cb99651d42debcddd83',1,'Ipopt::InexactPDTerminationTester::InitializeImpl()'],['../classIpopt_1_1InexactSearchDirCalculator.html#a9b1f96972b2c736f6ab1c076c5338af4',1,'Ipopt::InexactSearchDirCalculator::InitializeImpl()'],['../classIpopt_1_1InexactTSymScalingMethod.html#a01542d415dfb7aed6abc27c770313ca7',1,'Ipopt::InexactTSymScalingMethod::InitializeImpl()'],['../classIpopt_1_1IterativePardisoSolverInterface.html#a7546f5099489c1170e2706a143f20dc9',1,'Ipopt::IterativePardisoSolverInterface::InitializeImpl()'],['../classIpopt_1_1IterativeSolverTerminationTester.html#abbc5ff91e3bec58b6dba94b1d3c463bd',1,'Ipopt::IterativeSolverTerminationTester::InitializeImpl()'],['../classIpopt_1_1AdaptiveMuUpdate.html#ab659df8dbf5e920da2179691e01b85a6',1,'Ipopt::AdaptiveMuUpdate::InitializeImpl()'],['../classIpopt_1_1AlgorithmStrategyObject.html#a6e5ef59a257a61c928515ea78fd5c148',1,'Ipopt::AlgorithmStrategyObject::InitializeImpl()'],['../classIpopt_1_1AugRestoSystemSolver.html#a324a672f4b86ce15c20edb84efd127fd',1,'Ipopt::AugRestoSystemSolver::InitializeImpl()']]], ['initializeiterates_97',['initializeiterates',['../classIpopt_1_1IpoptAlgorithm.html#ab488e3b25633de2f31a7bcfb84587ce3',1,'Ipopt::IpoptAlgorithm::InitializeIterates()'],['../classIpopt_1_1TimingStatistics.html#aba9962eaf22e61085125b48cf4f56280',1,'Ipopt::TimingStatistics::InitializeIterates()']]], ['initializeiterates_5f_98',['InitializeIterates_',['../classIpopt_1_1TimingStatistics.html#ad6a4fd728e17f11fc91b8dd35e6b6b61',1,'Ipopt::TimingStatistics']]], ['initializesolve_99',['initializesolve',['../classIpopt_1_1InexactNormalTerminationTester.html#a7d5dbd49b029f2ddec08de8f86a32eb6',1,'Ipopt::InexactNormalTerminationTester::InitializeSolve()'],['../classIpopt_1_1InexactPDTerminationTester.html#a35a153ba163038c0f4606d60b3fcd09b',1,'Ipopt::InexactPDTerminationTester::InitializeSolve()'],['../classIpopt_1_1IterativeSolverTerminationTester.html#a14a0a0349c493b45e38070fb465db4f1',1,'Ipopt::IterativeSolverTerminationTester::InitializeSolve()']]], - ['initializestructure_100',['initializestructure',['../classIpopt_1_1IterativeWsmpSolverInterface.html#a9e59075b79474c75597548bd7588c852',1,'Ipopt::IterativeWsmpSolverInterface::InitializeStructure()'],['../classIpopt_1_1WsmpSolverInterface.html#a196e9ad419dfbea6e2719c11011c7678',1,'Ipopt::WsmpSolverInterface::InitializeStructure()'],['../classIpopt_1_1PardisoSolverInterface.html#a3ae9b7c0f2d8c3206076e70adb7a1ea8',1,'Ipopt::PardisoSolverInterface::InitializeStructure()'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a798ddf052153fdeeeb5ad8951eefb4b3',1,'Ipopt::PardisoMKLSolverInterface::InitializeStructure()'],['../classIpopt_1_1MumpsSolverInterface.html#a9498bc4d8b9f944657f5e4b25281fa93',1,'Ipopt::MumpsSolverInterface::InitializeStructure()'],['../classIpopt_1_1Ma97SolverInterface.html#a5b7ed4352cbde6330dda56547a2c8067',1,'Ipopt::Ma97SolverInterface::InitializeStructure()'],['../classIpopt_1_1IterativePardisoSolverInterface.html#addb301d2adf363f29c03206b5160d0f2',1,'Ipopt::IterativePardisoSolverInterface::InitializeStructure()'],['../classIpopt_1_1SparseSymLinearSolverInterface.html#a3428ecd1c82262764d1ded8dc2119549',1,'Ipopt::SparseSymLinearSolverInterface::InitializeStructure()'],['../classIpopt_1_1Ma27TSolverInterface.html#a84e002daaedddab9359bd252e5363888',1,'Ipopt::Ma27TSolverInterface::InitializeStructure()'],['../classIpopt_1_1Ma57TSolverInterface.html#a22f1448a01820764310ddf248ab98f5b',1,'Ipopt::Ma57TSolverInterface::InitializeStructure()'],['../classIpopt_1_1Ma77SolverInterface.html#aab3a4cfbabbf3ee2d41cb7997cf0484a',1,'Ipopt::Ma77SolverInterface::InitializeStructure()'],['../classIpopt_1_1Ma86SolverInterface.html#aba7c5f30fecb65caa4b948d0ab6ead84',1,'Ipopt::Ma86SolverInterface::InitializeStructure()'],['../classIpopt_1_1SpralSolverInterface.html#af65f85d609916b1602efcd0a816801d1',1,'Ipopt::SpralSolverInterface::InitializeStructure()'],['../classIpopt_1_1TSymLinearSolver.html#ae6939e237c08faec49d18d3bf0892ffe',1,'Ipopt::TSymLinearSolver::InitializeStructure()']]], + ['initializestructure_100',['initializestructure',['../classIpopt_1_1Ma27TSolverInterface.html#a84e002daaedddab9359bd252e5363888',1,'Ipopt::Ma27TSolverInterface::InitializeStructure()'],['../classIpopt_1_1WsmpSolverInterface.html#a196e9ad419dfbea6e2719c11011c7678',1,'Ipopt::WsmpSolverInterface::InitializeStructure()'],['../classIpopt_1_1SparseSymLinearSolverInterface.html#a3428ecd1c82262764d1ded8dc2119549',1,'Ipopt::SparseSymLinearSolverInterface::InitializeStructure()'],['../classIpopt_1_1PardisoSolverInterface.html#a3ae9b7c0f2d8c3206076e70adb7a1ea8',1,'Ipopt::PardisoSolverInterface::InitializeStructure()'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a798ddf052153fdeeeb5ad8951eefb4b3',1,'Ipopt::PardisoMKLSolverInterface::InitializeStructure()'],['../classIpopt_1_1MumpsSolverInterface.html#a9498bc4d8b9f944657f5e4b25281fa93',1,'Ipopt::MumpsSolverInterface::InitializeStructure()'],['../classIpopt_1_1IterativePardisoSolverInterface.html#addb301d2adf363f29c03206b5160d0f2',1,'Ipopt::IterativePardisoSolverInterface::InitializeStructure()'],['../classIpopt_1_1IterativeWsmpSolverInterface.html#a9e59075b79474c75597548bd7588c852',1,'Ipopt::IterativeWsmpSolverInterface::InitializeStructure()'],['../classIpopt_1_1TSymLinearSolver.html#ae6939e237c08faec49d18d3bf0892ffe',1,'Ipopt::TSymLinearSolver::InitializeStructure()'],['../classIpopt_1_1Ma57TSolverInterface.html#a22f1448a01820764310ddf248ab98f5b',1,'Ipopt::Ma57TSolverInterface::InitializeStructure()'],['../classIpopt_1_1Ma77SolverInterface.html#aab3a4cfbabbf3ee2d41cb7997cf0484a',1,'Ipopt::Ma77SolverInterface::InitializeStructure()'],['../classIpopt_1_1Ma86SolverInterface.html#aba7c5f30fecb65caa4b948d0ab6ead84',1,'Ipopt::Ma86SolverInterface::InitializeStructure()'],['../classIpopt_1_1Ma97SolverInterface.html#a5b7ed4352cbde6330dda56547a2c8067',1,'Ipopt::Ma97SolverInterface::InitializeStructure()'],['../classIpopt_1_1SpralSolverInterface.html#af65f85d609916b1602efcd0a816801d1',1,'Ipopt::SpralSolverInterface::InitializeStructure()']]], ['initializestructures_101',['initializestructures',['../classIpopt_1_1IpoptNLP.html#a70e6fc80da13309678a3a446087b9016',1,'Ipopt::IpoptNLP::InitializeStructures()'],['../classIpopt_1_1OrigIpoptNLP.html#a8ba80f8702c0bcfe314168c4ba744625',1,'Ipopt::OrigIpoptNLP::InitializeStructures()'],['../classIpopt_1_1RestoIpoptNLP.html#a246bd94feae7b7a6cc1be6ba348af937',1,'Ipopt::RestoIpoptNLP::InitializeStructures()']]], ['initpiecewisepenaltylist_102',['InitPiecewisePenaltyList',['../classIpopt_1_1PiecewisePenalty.html#af3a71f0c86ae92d21630ffe95da79967',1,'Ipopt::PiecewisePenalty']]], - ['initthislinesearch_103',['initthislinesearch',['../classIpopt_1_1BacktrackingLSAcceptor.html#a15b3fdfefa3e786ab402ee61529c7394',1,'Ipopt::BacktrackingLSAcceptor::InitThisLineSearch()'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#a325e6d7176fc93d1b1b01417efe357e3',1,'Ipopt::CGPenaltyLSAcceptor::InitThisLineSearch()'],['../classIpopt_1_1PenaltyLSAcceptor.html#a0b9869c0eb598ed19fce53eea53c9f72',1,'Ipopt::PenaltyLSAcceptor::InitThisLineSearch()'],['../classIpopt_1_1FilterLSAcceptor.html#a446775d73606c17c8fdb62205b97b6fe',1,'Ipopt::FilterLSAcceptor::InitThisLineSearch()'],['../classIpopt_1_1InexactLSAcceptor.html#a2eea209ab4aecaa67582cef18ad75e08',1,'Ipopt::InexactLSAcceptor::InitThisLineSearch()']]], + ['initthislinesearch_103',['initthislinesearch',['../classIpopt_1_1InexactLSAcceptor.html#a2eea209ab4aecaa67582cef18ad75e08',1,'Ipopt::InexactLSAcceptor::InitThisLineSearch()'],['../classIpopt_1_1BacktrackingLSAcceptor.html#a15b3fdfefa3e786ab402ee61529c7394',1,'Ipopt::BacktrackingLSAcceptor::InitThisLineSearch()'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#a325e6d7176fc93d1b1b01417efe357e3',1,'Ipopt::CGPenaltyLSAcceptor::InitThisLineSearch()'],['../classIpopt_1_1FilterLSAcceptor.html#a446775d73606c17c8fdb62205b97b6fe',1,'Ipopt::FilterLSAcceptor::InitThisLineSearch()'],['../classIpopt_1_1PenaltyLSAcceptor.html#a0b9869c0eb598ed19fce53eea53c9f72',1,'Ipopt::PenaltyLSAcceptor::InitThisLineSearch()']]], ['install_20dependencies_104',['Download, build, and install dependencies',['../INSTALL.html#EXTERNALCODE',1,'']]], ['install_2edox_105',['install.dox',['../install_8dox.html',1,'']]], ['installing_20ipopt_106',['installing ipopt',['../INSTALL.html#COMPILEINSTALL',1,'Compiling and Installing Ipopt'],['../INSTALL.html',1,'Installing Ipopt']]], ['installing_20the_20r_20interface_20ipoptr_107',['Compiling and Installing the R Interface ipoptr',['../INSTALL.html#INSTALL_R',1,'']]], - ['insufficient_5fmemory_108',['insufficient_memory',['../classorg_1_1coinor_1_1Ipopt.html#a59b78aca47982a3930ff05caa43d89dd',1,'org.coinor.Ipopt.INSUFFICIENT_MEMORY'],['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7a6e1029ad992d12be7b42fe2191bcf984',1,'Insufficient_Memory: IpReturnCodes_inc.h']]], - ['int_109',['int',['../namespaceIpopt.html#a7deb460b5b67f0a165b9062761f1f132',1,'Ipopt::Int'],['../IpStdCInterface_8h.html#a981fcddf5a1e9bbdc3d71ef0f994259b',1,'Int: IpStdCInterface.h']]], + ['insufficient_5fmemory_108',['insufficient_memory',['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7a6e1029ad992d12be7b42fe2191bcf984',1,'Insufficient_Memory: IpReturnCodes_inc.h'],['../classorg_1_1coinor_1_1Ipopt.html#a59b78aca47982a3930ff05caa43d89dd',1,'org.coinor.Ipopt.INSUFFICIENT_MEMORY']]], + ['int_109',['int',['../IpStdCInterface_8h.html#a981fcddf5a1e9bbdc3d71ef0f994259b',1,'Int: IpStdCInterface.h'],['../namespaceIpopt.html#a7deb460b5b67f0a165b9062761f1f132',1,'Ipopt::Int']]], ['integer_5fmeta_5fdata_5f_110',['integer_meta_data_',['../classIpopt_1_1DenseVectorSpace.html#aa3590203566a169066e9e7fc5bb8e68f',1,'Ipopt::DenseVectorSpace']]], ['integer_5foption_111',['Integer_Option',['../classIpopt_1_1AmplOptionsList.html#a855f23a698c4c0a91097b28f36ed8897a9c6074abc3d2af0575fcc0d5550c7b44',1,'Ipopt::AmplOptionsList']]], - ['integermetadatamaptype_112',['integermetadatamaptype',['../classIpopt_1_1TNLP.html#a959b19a2cc071bd127c40aea5f1a7ae7',1,'Ipopt::TNLP::IntegerMetaDataMapType'],['../namespaceIpopt.html#a7b95940bef97320ac5a3635114ac6114',1,'Ipopt::IntegerMetaDataMapType']]], + ['integermetadatamaptype_112',['integermetadatamaptype',['../namespaceIpopt.html#a7b95940bef97320ac5a3635114ac6114',1,'Ipopt::IntegerMetaDataMapType'],['../classIpopt_1_1TNLP.html#a959b19a2cc071bd127c40aea5f1a7ae7',1,'Ipopt::TNLP::IntegerMetaDataMapType']]], ['integers_113',['Building for 64-bit integers',['../INSTALL.html#INT64_BUILD',1,'']]], ['intel_20mkl_114',['Pardiso from Intel MKL',['../INSTALL.html#DOWNLOAD_PARDISOMKL',1,'']]], ['interface_115',['interface',['../OPTIONS.html#OPTIONS_AMPL',1,'Options in the AMPL Interface'],['../INTERFACES.html#INTERFACE_C',1,'The C Interface'],['../INTERFACES.html#INTERFACE_CPP',1,'The C++ Interface'],['../INTERFACES.html#INTERFACE_FORTRAN',1,'The Fortran Interface']]], @@ -121,400 +121,401 @@ var searchData= ['interfaces_2edox_118',['interfaces.dox',['../interfaces_8dox.html',1,'']]], ['interfacing_20with_20ipopt_20through_20code_119',['Interfacing with Ipopt through code',['../INTERFACES.html#INTERFACE_CODE',1,'']]], ['interfacing_20your_20nlp_20to_20ipopt_120',['Interfacing your NLP to Ipopt',['../INTERFACES.html',1,'index']]], - ['intermediate_5fcallback_121',['intermediate_callback',['../classIpopt_1_1TNLPReducer.html#acd2d3d379cd52fc7ce111b16f95713f3',1,'Ipopt::TNLPReducer::intermediate_callback()'],['../classIpopt_1_1TNLP.html#a2f962a4c43464adb7928771af84503d6',1,'Ipopt::TNLP::intermediate_callback()'],['../classIpopt_1_1StdInterfaceTNLP.html#ab4fcfcfb900e02cfa1f9a6c8f2498fcc',1,'Ipopt::StdInterfaceTNLP::intermediate_callback()'],['../classorg_1_1coinor_1_1Ipopt.html#a64b80dde363aebc64802b3ad950a7a06',1,'org.coinor.Ipopt.intermediate_callback()']]], + ['intermediate_5fcallback_121',['intermediate_callback',['../classorg_1_1coinor_1_1Ipopt.html#a64b80dde363aebc64802b3ad950a7a06',1,'org.coinor.Ipopt.intermediate_callback()'],['../classIpopt_1_1TNLPReducer.html#acd2d3d379cd52fc7ce111b16f95713f3',1,'Ipopt::TNLPReducer::intermediate_callback()'],['../classIpopt_1_1TNLP.html#a2f962a4c43464adb7928771af84503d6',1,'Ipopt::TNLP::intermediate_callback()'],['../classIpopt_1_1StdInterfaceTNLP.html#ab4fcfcfb900e02cfa1f9a6c8f2498fcc',1,'Ipopt::StdInterfaceTNLP::intermediate_callback()'],['../classIpopt_1_1AmplTNLP.html#a6f25c70227d6ddadf6f691781007c944',1,'Ipopt::AmplTNLP::intermediate_callback()']]], ['intermediate_5fcb_122',['Intermediate_CB',['../IpStdCInterface_8h.html#a0a2bc6b1dc188466a5eed53a50dd15df',1,'IpStdCInterface.h']]], ['intermediate_5fcb_5f_123',['intermediate_cb_',['../classIpopt_1_1StdInterfaceTNLP.html#aa9e5a15de7c4b52155407c6b47de5e9c',1,'Ipopt::StdInterfaceTNLP']]], - ['intermediatecallback_124',['intermediatecallback',['../classIpopt_1_1TNLPAdapter.html#aa7d7c5e4706688897b2cd6579168f3af',1,'Ipopt::TNLPAdapter::IntermediateCallBack()'],['../classIpopt_1_1IpoptNLP.html#a4288990eceacf3c09c663f3954ff27d6',1,'Ipopt::IpoptNLP::IntermediateCallBack()'],['../classIpopt_1_1NLPBoundsRemover.html#ac2cca4d97a274734535fad204f64fdc9',1,'Ipopt::NLPBoundsRemover::IntermediateCallBack()'],['../classIpopt_1_1OrigIpoptNLP.html#a4a599bba0d3d2a9a0668b705e25d1601',1,'Ipopt::OrigIpoptNLP::IntermediateCallBack()'],['../classIpopt_1_1NLP.html#a9cf00e4fc7ad13c810a6d1e238221fee',1,'Ipopt::NLP::IntermediateCallBack()'],['../classIpopt_1_1RestoIpoptNLP.html#a0c2d0d657fc1e6cfd230aa5915e42407',1,'Ipopt::RestoIpoptNLP::IntermediateCallBack()']]], + ['intermediatecallback_124',['intermediatecallback',['../classIpopt_1_1IpoptNLP.html#a4288990eceacf3c09c663f3954ff27d6',1,'Ipopt::IpoptNLP::IntermediateCallBack()'],['../classIpopt_1_1NLPBoundsRemover.html#ac2cca4d97a274734535fad204f64fdc9',1,'Ipopt::NLPBoundsRemover::IntermediateCallBack()'],['../classIpopt_1_1OrigIpoptNLP.html#a4a599bba0d3d2a9a0668b705e25d1601',1,'Ipopt::OrigIpoptNLP::IntermediateCallBack()'],['../classIpopt_1_1TNLPAdapter.html#aa7d7c5e4706688897b2cd6579168f3af',1,'Ipopt::TNLPAdapter::IntermediateCallBack()'],['../classIpopt_1_1NLP.html#a9cf00e4fc7ad13c810a6d1e238221fee',1,'Ipopt::NLP::IntermediateCallBack()'],['../classIpopt_1_1RestoIpoptNLP.html#a0c2d0d657fc1e6cfd230aa5915e42407',1,'Ipopt::RestoIpoptNLP::IntermediateCallBack()']]], ['internal_125',['INTERNAL',['../classIpopt_1_1IterationOutput.html#aadaec4d7ec1d3a12338b05939907a19faa2d8e9e245b10644073ebd77e07cf438',1,'Ipopt::IterationOutput']]], ['internal_5fconval_126',['internal_conval',['../classIpopt_1_1AmplTNLP.html#a8e690881923e4dd353ac22434951113e',1,'Ipopt::AmplTNLP']]], - ['internal_5ferror_127',['internal_error',['../classorg_1_1coinor_1_1Ipopt.html#afd5a2fcda4688ceef6ad841d2cb7f627',1,'org.coinor.Ipopt.INTERNAL_ERROR'],['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834a94003028443b5aa2485b2af734ec2d65',1,'Ipopt::INTERNAL_ERROR'],['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7a7e80a0d4d157e4badc74e724669a5066',1,'Internal_Error: IpReturnCodes_inc.h']]], + ['internal_5ferror_127',['internal_error',['../classorg_1_1coinor_1_1Ipopt.html#afd5a2fcda4688ceef6ad841d2cb7f627',1,'org.coinor.Ipopt.INTERNAL_ERROR'],['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7a7e80a0d4d157e4badc74e724669a5066',1,'Internal_Error: IpReturnCodes_inc.h'],['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834a94003028443b5aa2485b2af734ec2d65',1,'Ipopt::INTERNAL_ERROR']]], ['internal_5feval_5fg_128',['internal_eval_g',['../classIpopt_1_1TNLPAdapter.html#a56d13298f5e6a265b2571199243b089e',1,'Ipopt::TNLPAdapter']]], ['internal_5feval_5fjac_5fg_129',['internal_eval_jac_g',['../classIpopt_1_1TNLPAdapter.html#aa507ff72122064ba2eb5392c866cad55',1,'Ipopt::TNLPAdapter']]], ['internal_5fobjval_130',['internal_objval',['../classIpopt_1_1AmplTNLP.html#ad5703e41bc0f32bfcb99cd4a31ededbe',1,'Ipopt::AmplTNLP']]], ['internalsymfact_131',['internalsymfact',['../classIpopt_1_1IterativeWsmpSolverInterface.html#a0784ae4efa57632ffcb40c6ac2c4a720',1,'Ipopt::IterativeWsmpSolverInterface::InternalSymFact()'],['../classIpopt_1_1WsmpSolverInterface.html#afc30bc9afa5e18c70d9c6d4c8bc425c5',1,'Ipopt::WsmpSolverInterface::InternalSymFact()']]], - ['invalid_5fnumber_5fdetected_132',['invalid_number_detected',['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834ac90d36a417c5aa70a80da8338c614168',1,'Ipopt::INVALID_NUMBER_DETECTED'],['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7abb3cc51c1d4edc58677138c1ef5698d6',1,'Invalid_Number_Detected: IpReturnCodes_inc.h'],['../classorg_1_1coinor_1_1Ipopt.html#a9005b727656170847da4498472d44be0',1,'org.coinor.Ipopt.INVALID_NUMBER_DETECTED']]], - ['invalid_5foption_133',['invalid_option',['../classorg_1_1coinor_1_1Ipopt.html#aa0b37ea4f81ff1dc33d0738a25aef2cd',1,'org.coinor.Ipopt.INVALID_OPTION'],['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834a0916d055cc6d551743512dc595fb0425',1,'Ipopt::INVALID_OPTION'],['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7a621c0a01dc6cedc7d03b0ff1ea4ac188',1,'Invalid_Option: IpReturnCodes_inc.h']]], - ['invalid_5fproblem_5fdefinition_134',['invalid_problem_definition',['../classorg_1_1coinor_1_1Ipopt.html#a6601c123db771db778c4c25061327048',1,'org.coinor.Ipopt.INVALID_PROBLEM_DEFINITION'],['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7ad0a0d57cad08c84c2051c98915e3233f',1,'Invalid_Problem_Definition: IpReturnCodes_inc.h']]], - ['invalidate_135',['Invalidate',['../classIpopt_1_1DependentResult.html#a8289bd38cdc1588d3e49fc80441cc22e',1,'Ipopt::DependentResult']]], - ['invalidateresult_136',['InvalidateResult',['../classIpopt_1_1CachedResults.html#a4f5dbf98deb6438dd5cef7162600c3b5',1,'Ipopt::CachedResults']]], - ['invp_5f_137',['INVP_',['../classIpopt_1_1WsmpSolverInterface.html#a4b23f58fd68a0199c085433781f8ee0d',1,'Ipopt::WsmpSolverInterface']]], - ['iostat_138',['iostat',['../structmc68__info__i.html#a924bc2e32a43b1b759b1b9815ba3c59f',1,'mc68_info_i::iostat'],['../structma77__info__d.html#aed7ded9b25f6271f36f7b4ec7476aec4',1,'ma77_info_d::iostat'],['../structma77__info__s.html#ad3dc8b5c1e51044ed05d0944f2732c46',1,'ma77_info_s::iostat']]], - ['ip_5fcq_5f_139',['ip_cq_',['../classIpopt_1_1InexactCq.html#a76e7f750bab7b1af0114a8de99861f1c',1,'Ipopt::InexactCq::ip_cq_'],['../classIpopt_1_1AlgorithmStrategyObject.html#a1c339999b0232bdaefc1fb7c623ad761',1,'Ipopt::AlgorithmStrategyObject::ip_cq_'],['../classIpopt_1_1CGPenaltyCq.html#a1955a1bbf1375c101fce1bba0326b199',1,'Ipopt::CGPenaltyCq::ip_cq_'],['../classIpopt_1_1IpoptApplication.html#abb249b2e86584d279bdf5e254ca9094e',1,'Ipopt::IpoptApplication::ip_cq_'],['../classIpopt_1_1StdInterfaceTNLP.html#a0778c94409d27fc57d3a9b31ea02d44f',1,'Ipopt::StdInterfaceTNLP::ip_cq_'],['../classIpopt_1_1SensApplication.html#a335960efe34d7d406ce145a060df7394',1,'Ipopt::SensApplication::ip_cq_']]], - ['ip_5fdata_5f_140',['ip_data_',['../classIpopt_1_1InexactCq.html#ab711ea6dbaf4bd60f7a64ab60d8eb60b',1,'Ipopt::InexactCq::ip_data_'],['../classIpopt_1_1AlgorithmStrategyObject.html#a300fab52e53ccee1223bfaa1585129db',1,'Ipopt::AlgorithmStrategyObject::ip_data_'],['../classIpopt_1_1IpoptCalculatedQuantities.html#a086e2aae9531fc882e2b0a92aed6ef4f',1,'Ipopt::IpoptCalculatedQuantities::ip_data_'],['../classIpopt_1_1CGPenaltyCq.html#adf8a9a01f87558a8d9c9e6372dc147e8',1,'Ipopt::CGPenaltyCq::ip_data_'],['../classIpopt_1_1IpoptApplication.html#ab62194fff9521997d28d9befb6922e07',1,'Ipopt::IpoptApplication::ip_data_'],['../classIpopt_1_1StdInterfaceTNLP.html#af10e7bdc6187d34ef274f58cf61b330f',1,'Ipopt::StdInterfaceTNLP::ip_data_'],['../classIpopt_1_1SensApplication.html#a282b4bf2ae4db792021510e85f21b910',1,'Ipopt::SensApplication::ip_data_']]], - ['ip_5fnlp_5f_141',['ip_nlp_',['../classIpopt_1_1IpoptApplication.html#a5b4190f5db621825c8d0805d7124f8fb',1,'Ipopt::IpoptApplication::ip_nlp_'],['../classIpopt_1_1SensApplication.html#a2888fa79b4a1e8918300fc564348592d',1,'Ipopt::SensApplication::ip_nlp_'],['../classIpopt_1_1InexactCq.html#a2064455be48c8985848f5b6ccd43e98b',1,'Ipopt::InexactCq::ip_nlp_'],['../classIpopt_1_1AlgorithmStrategyObject.html#a52e6df16538cc859e99cb764e67b9acf',1,'Ipopt::AlgorithmStrategyObject::ip_nlp_'],['../classIpopt_1_1CGPenaltyCq.html#ab3aa6277ce982fda386639c1141eb18a',1,'Ipopt::CGPenaltyCq::ip_nlp_'],['../classIpopt_1_1IpoptCalculatedQuantities.html#acdc16cf1dcb29734da5ac8fb1f610506',1,'Ipopt::IpoptCalculatedQuantities::ip_nlp_']]], - ['ipadaptivemuupdate_2ehpp_142',['IpAdaptiveMuUpdate.hpp',['../IpAdaptiveMuUpdate_8hpp.html',1,'']]], - ['ipalgbuilder_2ehpp_143',['IpAlgBuilder.hpp',['../IpAlgBuilder_8hpp.html',1,'']]], - ['ipalgorithmregop_2ehpp_144',['IpAlgorithmRegOp.hpp',['../IpAlgorithmRegOp_8hpp.html',1,'']]], - ['ipalgstrategy_2ehpp_145',['IpAlgStrategy.hpp',['../IpAlgStrategy_8hpp.html',1,'']]], - ['ipalgtypes_2ehpp_146',['IpAlgTypes.hpp',['../IpAlgTypes_8hpp.html',1,'']]], - ['iparm_5f_147',['iparm_',['../classIpopt_1_1WsmpSolverInterface.html#ab1f06ae436a167e11fdfac0c0dc58f7d',1,'Ipopt::WsmpSolverInterface::IPARM_'],['../classIpopt_1_1IterativePardisoSolverInterface.html#ad8d379b4411ebb2a92826dec19f4f063',1,'Ipopt::IterativePardisoSolverInterface::IPARM_'],['../classIpopt_1_1IterativeWsmpSolverInterface.html#a444879d68e90f950c07b662108bb8ea7',1,'Ipopt::IterativeWsmpSolverInterface::IPARM_'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a89e489b526dfa9a63271c541799fd184',1,'Ipopt::PardisoMKLSolverInterface::IPARM_'],['../classIpopt_1_1PardisoSolverInterface.html#ad8b16eabbef77f7bfbab8d5fc22e80f4',1,'Ipopt::PardisoSolverInterface::IPARM_']]], - ['ipaugrestosystemsolver_2ehpp_148',['IpAugRestoSystemSolver.hpp',['../IpAugRestoSystemSolver_8hpp.html',1,'']]], - ['ipaugsystemsolver_2ehpp_149',['IpAugSystemSolver.hpp',['../IpAugSystemSolver_8hpp.html',1,'']]], - ['ipbacktrackinglinesearch_2ehpp_150',['IpBacktrackingLineSearch.hpp',['../IpBacktrackingLineSearch_8hpp.html',1,'']]], - ['ipbacktrackinglsacceptor_2ehpp_151',['IpBacktrackingLSAcceptor.hpp',['../IpBacktrackingLSAcceptor_8hpp.html',1,'']]], - ['ipblas_2ehpp_152',['IpBlas.hpp',['../IpBlas_8hpp.html',1,'']]], - ['ipblasasum_153',['IpBlasAsum',['../namespaceIpopt.html#a8908d0b644969c2a0315530356d30796',1,'Ipopt']]], - ['ipblasaxpy_154',['IpBlasAxpy',['../namespaceIpopt.html#aabf3a1affb5c9b78f68f32638d96f4de',1,'Ipopt']]], - ['ipblascopy_155',['IpBlasCopy',['../namespaceIpopt.html#a2ee730db66b01714475679e1cb4a9839',1,'Ipopt']]], - ['ipblasdasum_156',['IpBlasDasum',['../namespaceIpopt.html#aba44a30c4c81e51b33e23e764fca4928',1,'Ipopt']]], - ['ipblasdaxpy_157',['IpBlasDaxpy',['../namespaceIpopt.html#a2127717ab20fe28ef7ea26f4e77434ec',1,'Ipopt']]], - ['ipblasdcopy_158',['IpBlasDcopy',['../namespaceIpopt.html#aeb798741b3d4090123e203007bad4327',1,'Ipopt']]], - ['ipblasddot_159',['IpBlasDdot',['../namespaceIpopt.html#a70260bbc7a8909a4f7a64b8c03267fba',1,'Ipopt']]], - ['ipblasdgemm_160',['IpBlasDgemm',['../namespaceIpopt.html#a9ff710ba3f93d104e523cdff67fbf167',1,'Ipopt']]], - ['ipblasdgemv_161',['IpBlasDgemv',['../namespaceIpopt.html#a5aabd58043e6c936f326b33614350b37',1,'Ipopt']]], - ['ipblasdnrm2_162',['IpBlasDnrm2',['../namespaceIpopt.html#a31699bd6a7395858340026ef800cfc70',1,'Ipopt']]], - ['ipblasdot_163',['IpBlasDot',['../namespaceIpopt.html#ad5f760e13313b7aa051badf6723019a6',1,'Ipopt']]], - ['ipblasdscal_164',['IpBlasDscal',['../namespaceIpopt.html#a070d0102c57e60e372f3002f9caa81d0',1,'Ipopt']]], - ['ipblasdsymv_165',['IpBlasDsymv',['../namespaceIpopt.html#a0c7a7037490774bc74013ce73d7350e2',1,'Ipopt']]], - ['ipblasdsyrk_166',['IpBlasDsyrk',['../namespaceIpopt.html#a0353f674ed98f6f8c7d7eccbe77bb383',1,'Ipopt']]], - ['ipblasdtrsm_167',['IpBlasDtrsm',['../namespaceIpopt.html#a91a787170b2d3c32daaefb1d16078ba7',1,'Ipopt']]], - ['ipblasgemm_168',['IpBlasGemm',['../namespaceIpopt.html#a0109a3bbe5a42b548cecc669be39cc6d',1,'Ipopt']]], - ['ipblasgemv_169',['IpBlasGemv',['../namespaceIpopt.html#acb1ee20627cc8846952b1432cffd8d4d',1,'Ipopt']]], - ['ipblasiamax_170',['IpBlasIamax',['../namespaceIpopt.html#aeaec95453d47234d446d5431edca2d6d',1,'Ipopt']]], - ['ipblasidamax_171',['IpBlasIdamax',['../namespaceIpopt.html#a14636fede44e3f8a3f22918312caca5c',1,'Ipopt']]], - ['ipblasnrm2_172',['IpBlasNrm2',['../namespaceIpopt.html#a1788ba4ece53c1b26645db89ceb40749',1,'Ipopt']]], - ['ipblasscal_173',['IpBlasScal',['../namespaceIpopt.html#a0e788f82fb17bab1e99273d2dfa34f9f',1,'Ipopt']]], - ['ipblassymv_174',['IpBlasSymv',['../namespaceIpopt.html#a796e739b48fe55644bd1310057be8a4b',1,'Ipopt']]], - ['ipblassyrk_175',['IpBlasSyrk',['../namespaceIpopt.html#adf8ee4cb96257a3d3f71d0f196914b97',1,'Ipopt']]], - ['ipblastrsm_176',['IpBlasTrsm',['../namespaceIpopt.html#aa4ede32a36a15de9408d2aeb2ba38b93',1,'Ipopt']]], - ['ipcachedresults_2ehpp_177',['IpCachedResults.hpp',['../IpCachedResults_8hpp.html',1,'']]], - ['ipcgpenaltycq_2ehpp_178',['IpCGPenaltyCq.hpp',['../IpCGPenaltyCq_8hpp.html',1,'']]], - ['ipcgpenaltydata_2ehpp_179',['IpCGPenaltyData.hpp',['../IpCGPenaltyData_8hpp.html',1,'']]], - ['ipcgpenaltylsacceptor_2ehpp_180',['IpCGPenaltyLSAcceptor.hpp',['../IpCGPenaltyLSAcceptor_8hpp.html',1,'']]], - ['ipcgpenaltyregop_2ehpp_181',['IpCGPenaltyRegOp.hpp',['../IpCGPenaltyRegOp_8hpp.html',1,'']]], - ['ipcgperturbationhandler_2ehpp_182',['IpCGPerturbationHandler.hpp',['../IpCGPerturbationHandler_8hpp.html',1,'']]], - ['ipcgsearchdircalc_2ehpp_183',['IpCGSearchDirCalc.hpp',['../IpCGSearchDirCalc_8hpp.html',1,'']]], - ['ipcompoundmatrix_2ehpp_184',['IpCompoundMatrix.hpp',['../IpCompoundMatrix_8hpp.html',1,'']]], - ['ipcompoundsymmatrix_2ehpp_185',['IpCompoundSymMatrix.hpp',['../IpCompoundSymMatrix_8hpp.html',1,'']]], - ['ipcompoundvector_2ehpp_186',['IpCompoundVector.hpp',['../IpCompoundVector_8hpp.html',1,'']]], - ['ipconvcheck_2ehpp_187',['IpConvCheck.hpp',['../IpConvCheck_8hpp.html',1,'']]], - ['ipcq_188',['IpCq',['../classIpopt_1_1AlgorithmStrategyObject.html#a9330e92f6c2fdabb9741d218d9c64f35',1,'Ipopt::AlgorithmStrategyObject']]], - ['ipdata_189',['IpData',['../classIpopt_1_1AlgorithmStrategyObject.html#a097ab7f6103c3345324a257914fff29a',1,'Ipopt::AlgorithmStrategyObject']]], - ['ipdebug_2ehpp_190',['IpDebug.hpp',['../IpDebug_8hpp.html',1,'']]], - ['ipdefaultiterateinitializer_2ehpp_191',['IpDefaultIterateInitializer.hpp',['../IpDefaultIterateInitializer_8hpp.html',1,'']]], - ['ipdensegenmatrix_2ehpp_192',['IpDenseGenMatrix.hpp',['../IpDenseGenMatrix_8hpp.html',1,'']]], - ['ipdensesymmatrix_2ehpp_193',['IpDenseSymMatrix.hpp',['../IpDenseSymMatrix_8hpp.html',1,'']]], - ['ipdensevector_2ehpp_194',['IpDenseVector.hpp',['../IpDenseVector_8hpp.html',1,'']]], - ['ipdiagmatrix_2ehpp_195',['IpDiagMatrix.hpp',['../IpDiagMatrix_8hpp.html',1,'']]], - ['ipeqmultcalculator_2ehpp_196',['IpEqMultCalculator.hpp',['../IpEqMultCalculator_8hpp.html',1,'']]], - ['ipequilibrationscaling_2ehpp_197',['IpEquilibrationScaling.hpp',['../IpEquilibrationScaling_8hpp.html',1,'']]], - ['ipexacthessianupdater_2ehpp_198',['IpExactHessianUpdater.hpp',['../IpExactHessianUpdater_8hpp.html',1,'']]], - ['ipexception_2ehpp_199',['IpException.hpp',['../IpException_8hpp.html',1,'']]], - ['ipexpandedmultivectormatrix_2ehpp_200',['IpExpandedMultiVectorMatrix.hpp',['../IpExpandedMultiVectorMatrix_8hpp.html',1,'']]], - ['ipexpansionmatrix_2ehpp_201',['IpExpansionMatrix.hpp',['../IpExpansionMatrix_8hpp.html',1,'']]], - ['ipfilter_2ehpp_202',['IpFilter.hpp',['../IpFilter_8hpp.html',1,'']]], - ['ipfilterlsacceptor_2ehpp_203',['IpFilterLSAcceptor.hpp',['../IpFilterLSAcceptor_8hpp.html',1,'']]], - ['ipfint_204',['ipfint',['../IpTypes_8h.html#aba735f678a3411ca9f2d041e77c00d66',1,'IpTypes.h']]], - ['ipgenaugsystemsolver_2ehpp_205',['IpGenAugSystemSolver.hpp',['../IpGenAugSystemSolver_8hpp.html',1,'']]], - ['ipgenkktsolverinterface_2ehpp_206',['IpGenKKTSolverInterface.hpp',['../IpGenKKTSolverInterface_8hpp.html',1,'']]], - ['ipgentmatrix_2ehpp_207',['IpGenTMatrix.hpp',['../IpGenTMatrix_8hpp.html',1,'']]], - ['ipgradientscaling_2ehpp_208',['IpGradientScaling.hpp',['../IpGradientScaling_8hpp.html',1,'']]], - ['iphessianupdater_2ehpp_209',['IpHessianUpdater.hpp',['../IpHessianUpdater_8hpp.html',1,'']]], - ['ipidentitymatrix_2ehpp_210',['IpIdentityMatrix.hpp',['../IpIdentityMatrix_8hpp.html',1,'']]], - ['ipindex_211',['ipindex',['../IpTypes_8h.html#ad45d5b046bfaf56789665c747d5a8cb9',1,'IpTypes.h']]], - ['ipinexactalgbuilder_2ehpp_212',['IpInexactAlgBuilder.hpp',['../IpInexactAlgBuilder_8hpp.html',1,'']]], - ['ipinexactcq_2ehpp_213',['IpInexactCq.hpp',['../IpInexactCq_8hpp.html',1,'']]], - ['ipinexactdata_2ehpp_214',['IpInexactData.hpp',['../IpInexactData_8hpp.html',1,'']]], - ['ipinexactdoglegnormal_2ehpp_215',['IpInexactDoglegNormal.hpp',['../IpInexactDoglegNormal_8hpp.html',1,'']]], - ['ipinexactlsacceptor_2ehpp_216',['IpInexactLSAcceptor.hpp',['../IpInexactLSAcceptor_8hpp.html',1,'']]], - ['ipinexactnewtonnormal_2ehpp_217',['IpInexactNewtonNormal.hpp',['../IpInexactNewtonNormal_8hpp.html',1,'']]], - ['ipinexactnormalstepcalc_2ehpp_218',['IpInexactNormalStepCalc.hpp',['../IpInexactNormalStepCalc_8hpp.html',1,'']]], - ['ipinexactnormalterminationtester_2ehpp_219',['IpInexactNormalTerminationTester.hpp',['../IpInexactNormalTerminationTester_8hpp.html',1,'']]], - ['ipinexactpdsolver_2ehpp_220',['IpInexactPDSolver.hpp',['../IpInexactPDSolver_8hpp.html',1,'']]], - ['ipinexactpdterminationtester_2ehpp_221',['IpInexactPDTerminationTester.hpp',['../IpInexactPDTerminationTester_8hpp.html',1,'']]], - ['ipinexactregop_2ehpp_222',['IpInexactRegOp.hpp',['../IpInexactRegOp_8hpp.html',1,'']]], - ['ipinexactsearchdircalc_2ehpp_223',['IpInexactSearchDirCalc.hpp',['../IpInexactSearchDirCalc_8hpp.html',1,'']]], - ['ipinexacttsymscalingmethod_2ehpp_224',['IpInexactTSymScalingMethod.hpp',['../IpInexactTSymScalingMethod_8hpp.html',1,'']]], - ['ipinterfacesregop_2ehpp_225',['IpInterfacesRegOp.hpp',['../IpInterfacesRegOp_8hpp.html',1,'']]], - ['ipipoptalg_2ehpp_226',['IpIpoptAlg.hpp',['../IpIpoptAlg_8hpp.html',1,'']]], - ['ipipoptapplication_2ehpp_227',['IpIpoptApplication.hpp',['../IpIpoptApplication_8hpp.html',1,'']]], - ['ipipoptcalculatedquantities_2ehpp_228',['IpIpoptCalculatedQuantities.hpp',['../IpIpoptCalculatedQuantities_8hpp.html',1,'']]], - ['ipipoptdata_2ehpp_229',['IpIpoptData.hpp',['../IpIpoptData_8hpp.html',1,'']]], - ['ipipoptnlp_2ehpp_230',['IpIpoptNLP.hpp',['../IpIpoptNLP_8hpp.html',1,'']]], - ['ipiterateinitializer_2ehpp_231',['IpIterateInitializer.hpp',['../IpIterateInitializer_8hpp.html',1,'']]], - ['ipiteratesvector_2ehpp_232',['IpIteratesVector.hpp',['../IpIteratesVector_8hpp.html',1,'']]], - ['ipiterationoutput_2ehpp_233',['IpIterationOutput.hpp',['../IpIterationOutput_8hpp.html',1,'']]], - ['ipiterativepardisosolverinterface_2ehpp_234',['IpIterativePardisoSolverInterface.hpp',['../IpIterativePardisoSolverInterface_8hpp.html',1,'']]], - ['ipiterativesolverterminationtester_2ehpp_235',['IpIterativeSolverTerminationTester.hpp',['../IpIterativeSolverTerminationTester_8hpp.html',1,'']]], - ['ipiterativewsmpsolverinterface_2ehpp_236',['IpIterativeWsmpSolverInterface.hpp',['../IpIterativeWsmpSolverInterface_8hpp.html',1,'']]], - ['ipjournalist_2ehpp_237',['IpJournalist.hpp',['../IpJournalist_8hpp.html',1,'']]], - ['iplapack_2ehpp_238',['IpLapack.hpp',['../IpLapack_8hpp.html',1,'']]], - ['iplapackdgetrf_239',['IpLapackDgetrf',['../namespaceIpopt.html#ab47c87a634ea97578b63fff954881afa',1,'Ipopt']]], - ['iplapackdgetrs_240',['IpLapackDgetrs',['../namespaceIpopt.html#ac7cbff492238449c15db99e6f2533aa5',1,'Ipopt']]], - ['iplapackdpotrf_241',['IpLapackDpotrf',['../namespaceIpopt.html#ababb84d11b335fe27a4a961562a72b09',1,'Ipopt']]], - ['iplapackdpotrs_242',['IpLapackDpotrs',['../namespaceIpopt.html#acd5f4a8d718d8cff78e9ff21978bc80a',1,'Ipopt']]], - ['iplapackdppsv_243',['IpLapackDppsv',['../namespaceIpopt.html#a54c930239df9cadedeed9e1d8db3ea29',1,'Ipopt']]], - ['iplapackdsyev_244',['IpLapackDsyev',['../namespaceIpopt.html#ac2e68bbb60619818b22fde4b55171543',1,'Ipopt']]], - ['iplapackgetrf_245',['IpLapackGetrf',['../namespaceIpopt.html#aa6b8e1f4c39693fe036898493dde4a6e',1,'Ipopt']]], - ['iplapackgetrs_246',['IpLapackGetrs',['../namespaceIpopt.html#ac7c1650c485ae7ca85ee0ee931f8f94b',1,'Ipopt']]], - ['iplapackpotrf_247',['IpLapackPotrf',['../namespaceIpopt.html#aec3e9cb20336135bd9c927472bed37b8',1,'Ipopt']]], - ['iplapackpotrs_248',['IpLapackPotrs',['../namespaceIpopt.html#a3a2c81fb4a417298372e0de530ad63c5',1,'Ipopt']]], - ['iplapackppsv_249',['IpLapackPpsv',['../namespaceIpopt.html#a68b8774e6672b678c0ff595550352f0a',1,'Ipopt']]], - ['iplapacksyev_250',['IpLapackSyev',['../namespaceIpopt.html#a94450be4fdf58f260ef5cb21cb37593b',1,'Ipopt']]], - ['ipleastsquaremults_2ehpp_251',['IpLeastSquareMults.hpp',['../IpLeastSquareMults_8hpp.html',1,'']]], - ['iplibraryloader_2ehpp_252',['IpLibraryLoader.hpp',['../IpLibraryLoader_8hpp.html',1,'']]], - ['iplimmemquasinewtonupdater_2ehpp_253',['IpLimMemQuasiNewtonUpdater.hpp',['../IpLimMemQuasiNewtonUpdater_8hpp.html',1,'']]], - ['iplinearsolvers_2eh_254',['IpLinearSolvers.h',['../IpLinearSolvers_8h.html',1,'']]], - ['iplinearsolversregop_2ehpp_255',['IpLinearSolversRegOp.hpp',['../IpLinearSolversRegOp_8hpp.html',1,'']]], - ['iplinesearch_2ehpp_256',['IpLineSearch.hpp',['../IpLineSearch_8hpp.html',1,'']]], - ['iploqomuoracle_2ehpp_257',['IpLoqoMuOracle.hpp',['../IpLoqoMuOracle_8hpp.html',1,'']]], - ['iplowrankaugsystemsolver_2ehpp_258',['IpLowRankAugSystemSolver.hpp',['../IpLowRankAugSystemSolver_8hpp.html',1,'']]], - ['iplowrankssaugsystemsolver_2ehpp_259',['IpLowRankSSAugSystemSolver.hpp',['../IpLowRankSSAugSystemSolver_8hpp.html',1,'']]], - ['iplowrankupdatesymmatrix_2ehpp_260',['IpLowRankUpdateSymMatrix.hpp',['../IpLowRankUpdateSymMatrix_8hpp.html',1,'']]], - ['ipma27tsolverinterface_2ehpp_261',['IpMa27TSolverInterface.hpp',['../IpMa27TSolverInterface_8hpp.html',1,'']]], - ['ipma28tdependencydetector_2ehpp_262',['IpMa28TDependencyDetector.hpp',['../IpMa28TDependencyDetector_8hpp.html',1,'']]], - ['ipma57tsolverinterface_2ehpp_263',['IpMa57TSolverInterface.hpp',['../IpMa57TSolverInterface_8hpp.html',1,'']]], - ['ipma77solverinterface_2ehpp_264',['IpMa77SolverInterface.hpp',['../IpMa77SolverInterface_8hpp.html',1,'']]], - ['ipma86solverinterface_2ehpp_265',['IpMa86SolverInterface.hpp',['../IpMa86SolverInterface_8hpp.html',1,'']]], - ['ipma97solverinterface_2ehpp_266',['IpMa97SolverInterface.hpp',['../IpMa97SolverInterface_8hpp.html',1,'']]], - ['ipmatrix_2ehpp_267',['IpMatrix.hpp',['../IpMatrix_8hpp.html',1,'']]], - ['ipmc19tsymscalingmethod_2ehpp_268',['IpMc19TSymScalingMethod.hpp',['../IpMc19TSymScalingMethod_8hpp.html',1,'']]], - ['ipmonotonemuupdate_2ehpp_269',['IpMonotoneMuUpdate.hpp',['../IpMonotoneMuUpdate_8hpp.html',1,'']]], - ['ipmultivectormatrix_2ehpp_270',['IpMultiVectorMatrix.hpp',['../IpMultiVectorMatrix_8hpp.html',1,'']]], - ['ipmumpssolverinterface_2ehpp_271',['IpMumpsSolverInterface.hpp',['../IpMumpsSolverInterface_8hpp.html',1,'']]], - ['ipmuoracle_2ehpp_272',['IpMuOracle.hpp',['../IpMuOracle_8hpp.html',1,'']]], - ['ipmuupdate_2ehpp_273',['IpMuUpdate.hpp',['../IpMuUpdate_8hpp.html',1,'']]], - ['ipnlp_274',['IpNLP',['../classIpopt_1_1AlgorithmStrategyObject.html#add7ef129a410b51b3db14a12dea1fd03',1,'Ipopt::AlgorithmStrategyObject']]], - ['ipnlp_2ehpp_275',['IpNLP.hpp',['../IpNLP_8hpp.html',1,'']]], - ['ipnlpboundsremover_2ehpp_276',['IpNLPBoundsRemover.hpp',['../IpNLPBoundsRemover_8hpp.html',1,'']]], - ['ipnlpscaling_2ehpp_277',['IpNLPScaling.hpp',['../IpNLPScaling_8hpp.html',1,'']]], - ['ipnumber_278',['ipnumber',['../IpTypes_8h.html#a5db07e705790a30d1c9081e6910c8b27',1,'IpTypes.h']]], - ['ipobserver_2ehpp_279',['IpObserver.hpp',['../IpObserver_8hpp.html',1,'']]], - ['ipopt_280',['ipopt',['../INSTALL.html#COMPILEINSTALL',1,'Compiling and Installing Ipopt'],['../index.html#HISTORY_IPOPT',1,'History of Ipopt'],['../FAQ.html#autotoc_md1',1,'How do I use Ipopt?'],['../index.html#HOWTOUSE',1,'How to use Ipopt'],['../INSTALL.html',1,'Installing Ipopt'],['../INTERFACES.html',1,'Interfacing your NLP to Ipopt'],['../classorg_1_1coinor_1_1Ipopt.html#a3f65d8c507f1ac7b3386dcd92e9a70e8',1,'org.coinor.Ipopt.Ipopt()'],['../namespaceIpopt.html',1,'Ipopt'],['../classorg_1_1coinor_1_1Ipopt.html',1,'org.coinor.Ipopt'],['../classorg_1_1coinor_1_1Ipopt.html#aaccf6965122e89d86f4ac57d950787e7',1,'org.coinor.Ipopt.ipopt'],['../classorg_1_1coinor_1_1Ipopt.html#a400135e918a4b6377ea4581411ac2298',1,'org.coinor.Ipopt.Ipopt(String path, String DLL)'],['../classorg_1_1coinor_1_1Ipopt.html#ab140cae4c428047f583ca789df5e5495',1,'org.coinor.Ipopt.Ipopt()'],['../SPECIALS.html#SIPOPT',1,'sIpopt: Optimal Sensitivity Based on Ipopt'],['../FAQ.html#autotoc_md3',1,'What do I need to build Ipopt?'],['../FAQ.html#autotoc_md0',1,'What is Ipopt?'],['../FAQ.html#autotoc_md6',1,'What is the method behind Ipopt?'],['../FAQ.html#autotoc_md7',1,'Who do I contact with questions about Ipopt?']]], - ['ipopt_20be_20used_281',['On what operating systems can Ipopt be used?',['../FAQ.html#autotoc_md4',1,'']]], - ['ipopt_20code_282',['Getting the Ipopt Code',['../INSTALL.html#GETIPOPT',1,'']]], - ['ipopt_20code_20as_20a_20tarball_283',['Getting the Ipopt code as a tarball',['../INSTALL.html#GETIPOPT_TAR',1,'']]], - ['ipopt_20code_20via_20git_284',['Getting the Ipopt code via git',['../INSTALL.html#GETIPOPT_GIT',1,'']]], - ['ipopt_20from_20the_20command_20line_285',['Using Ipopt from the command line',['../INTERFACES.html#INTERFACE_AMPL_CL',1,'']]], - ['ipopt_20options_286',['Ipopt Options',['../OPTIONS.html',1,'index']]], - ['ipopt_20output_287',['Ipopt Output',['../OUTPUT.html',1,'index']]], - ['ipopt_20released_20under_288',['What license is Ipopt released under?',['../FAQ.html#autotoc_md2',1,'']]], - ['ipopt_20thread_20safe_289',['Is Ipopt thread-safe?',['../FAQ.html#autotoc_md5',1,'']]], - ['ipopt_20through_20ampl_290',['Using Ipopt through AMPL',['../INTERFACES.html#INTERFACE_AMPL',1,'']]], - ['ipopt_20through_20code_291',['Interfacing with Ipopt through code',['../INTERFACES.html#INTERFACE_CODE',1,'']]], - ['ipopt_2ejava_292',['Ipopt.java',['../Ipopt_8java.html',1,'']]], - ['ipopt_5fblas_5ffunc_293',['IPOPT_BLAS_FUNC',['../config__default_8h.html#ab924fb02d467f6e4842c78bd87219a66',1,'config_default.h']]], - ['ipopt_5fc_5ffinite_294',['IPOPT_C_FINITE',['../config__default_8h.html#aec30f36872c5acb4dee3c14dfa531456',1,'config_default.h']]], - ['ipopt_5fcallconv_295',['IPOPT_CALLCONV',['../IpTypes_8h.html#ae7eaa5fbc2133bb2a78973a87cc7bb5b',1,'IpTypes.h']]], - ['ipopt_5fchecklevel_296',['IPOPT_CHECKLEVEL',['../IpDebug_8hpp.html#aee7eb79e1e5393f437efc832b7919f5c',1,'IpDebug.hpp']]], - ['ipopt_5fdbg_5fsmartptr_5fverbosity_297',['ipopt_dbg_smartptr_verbosity',['../IpSmartPtr_8hpp.html#a471697db00ab19588c793b1b76bbaf60',1,'IpSmartPtr.hpp']]], - ['ipopt_5fdecl_5fma27a_298',['IPOPT_DECL_MA27A',['../IpMa27TSolverInterface_8hpp.html#ad6bab4c0daee3ff96349cbae519ddc5d',1,'IpMa27TSolverInterface.hpp']]], - ['ipopt_5fdecl_5fma27b_299',['IPOPT_DECL_MA27B',['../IpMa27TSolverInterface_8hpp.html#ad42dbbfd7d579fd1b45fe7e017244624',1,'IpMa27TSolverInterface.hpp']]], - ['ipopt_5fdecl_5fma27c_300',['IPOPT_DECL_MA27C',['../IpMa27TSolverInterface_8hpp.html#a4f6f434a1cb91ebdcf31fa2f33ac4d32',1,'IpMa27TSolverInterface.hpp']]], - ['ipopt_5fdecl_5fma27i_301',['IPOPT_DECL_MA27I',['../IpMa27TSolverInterface_8hpp.html#a7a87cf631391836b6af79564851bdda6',1,'IpMa27TSolverInterface.hpp']]], - ['ipopt_5fdecl_5fma57a_302',['IPOPT_DECL_MA57A',['../IpMa57TSolverInterface_8hpp.html#afea7186cc7ee9e0cd6b3652e6544ec04',1,'IpMa57TSolverInterface.hpp']]], - ['ipopt_5fdecl_5fma57b_303',['IPOPT_DECL_MA57B',['../IpMa57TSolverInterface_8hpp.html#a39b131c8eafad02a9e4ceedae8171710',1,'IpMa57TSolverInterface.hpp']]], - ['ipopt_5fdecl_5fma57c_304',['IPOPT_DECL_MA57C',['../IpMa57TSolverInterface_8hpp.html#aa27f36e4dd4560c23b18235da174d540',1,'IpMa57TSolverInterface.hpp']]], - ['ipopt_5fdecl_5fma57e_305',['IPOPT_DECL_MA57E',['../IpMa57TSolverInterface_8hpp.html#a5fd549c1e0038ad8e55325cf3f5481fc',1,'IpMa57TSolverInterface.hpp']]], - ['ipopt_5fdecl_5fma57i_306',['IPOPT_DECL_MA57I',['../IpMa57TSolverInterface_8hpp.html#a98e57dc932efaeabb5c7e693a8863d13',1,'IpMa57TSolverInterface.hpp']]], - ['ipopt_5fdecl_5fma77_5falter_307',['IPOPT_DECL_MA77_ALTER',['../IpMa77SolverInterface_8hpp.html#a6b3ef88fb24f510997bac1937e7351dd',1,'IpMa77SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma77_5fanalyse_308',['IPOPT_DECL_MA77_ANALYSE',['../IpMa77SolverInterface_8hpp.html#a1f4bd7faf007c09644f6e614c12eb05c',1,'IpMa77SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma77_5fdefault_5fcontrol_309',['IPOPT_DECL_MA77_DEFAULT_CONTROL',['../IpMa77SolverInterface_8hpp.html#a6c0816fcd96eb8123ba3a49206e8b368',1,'IpMa77SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma77_5fenquire_5findef_310',['IPOPT_DECL_MA77_ENQUIRE_INDEF',['../IpMa77SolverInterface_8hpp.html#a56989491d1e7c9a752120d7c537ed87b',1,'IpMa77SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma77_5fenquire_5fposdef_311',['IPOPT_DECL_MA77_ENQUIRE_POSDEF',['../IpMa77SolverInterface_8hpp.html#ac36293ddea8924546ce48667ef22db38',1,'IpMa77SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma77_5ffactor_312',['IPOPT_DECL_MA77_FACTOR',['../IpMa77SolverInterface_8hpp.html#ad162b2637a20f84c9bf1a1749bd6ccbe',1,'IpMa77SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma77_5ffactor_5fsolve_313',['IPOPT_DECL_MA77_FACTOR_SOLVE',['../IpMa77SolverInterface_8hpp.html#a419f37f1cae86a78a9cf24c34aac24c8',1,'IpMa77SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma77_5ffinalise_314',['IPOPT_DECL_MA77_FINALISE',['../IpMa77SolverInterface_8hpp.html#abcce1d599ccb9d5449ef219642465c2e',1,'IpMa77SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma77_5finput_5freals_315',['IPOPT_DECL_MA77_INPUT_REALS',['../IpMa77SolverInterface_8hpp.html#a3b13de3ab079494f16d94d9994e8642d',1,'IpMa77SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma77_5finput_5fvars_316',['IPOPT_DECL_MA77_INPUT_VARS',['../IpMa77SolverInterface_8hpp.html#a7d130867da1c8f9be01c76b3371823c5',1,'IpMa77SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma77_5fopen_317',['IPOPT_DECL_MA77_OPEN',['../IpMa77SolverInterface_8hpp.html#ae74c1f76eff22f4a24e20afca6dc9cf1',1,'IpMa77SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma77_5fopen_5fnelt_318',['IPOPT_DECL_MA77_OPEN_NELT',['../IpMa77SolverInterface_8hpp.html#aeb361e232ca0be20874d43bf1936dad6',1,'IpMa77SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma77_5fresid_319',['IPOPT_DECL_MA77_RESID',['../IpMa77SolverInterface_8hpp.html#a31510926ef625d311d8a5148b083c061',1,'IpMa77SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma77_5frestart_320',['IPOPT_DECL_MA77_RESTART',['../IpMa77SolverInterface_8hpp.html#a3efca207c126ab016d936cd5c33465b7',1,'IpMa77SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma77_5fscale_321',['IPOPT_DECL_MA77_SCALE',['../IpMa77SolverInterface_8hpp.html#abed2d575339f64fdcad4f94021a4f0d0',1,'IpMa77SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma77_5fsolve_322',['IPOPT_DECL_MA77_SOLVE',['../IpMa77SolverInterface_8hpp.html#aadc83c94cb8ff3f35286a4dedf2343bb',1,'IpMa77SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma86_5fanalyse_323',['IPOPT_DECL_MA86_ANALYSE',['../IpMa86SolverInterface_8hpp.html#ad7ec5cce318c358de1ebfac9a1f92f97',1,'IpMa86SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma86_5fdefault_5fcontrol_324',['IPOPT_DECL_MA86_DEFAULT_CONTROL',['../IpMa86SolverInterface_8hpp.html#a6e1f20ac31d39ca75ad51f4318a31ff6',1,'IpMa86SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma86_5ffactor_325',['IPOPT_DECL_MA86_FACTOR',['../IpMa86SolverInterface_8hpp.html#a9237e9f021bcc7a4b19b15a8fd0323e4',1,'IpMa86SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma86_5ffactor_5fsolve_326',['IPOPT_DECL_MA86_FACTOR_SOLVE',['../IpMa86SolverInterface_8hpp.html#a00b0c28b3ae276d6dd96d728bc2be618',1,'IpMa86SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma86_5ffinalise_327',['IPOPT_DECL_MA86_FINALISE',['../IpMa86SolverInterface_8hpp.html#a9cc74914db4c4bf89a8284125214aae2',1,'IpMa86SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma86_5fsolve_328',['IPOPT_DECL_MA86_SOLVE',['../IpMa86SolverInterface_8hpp.html#a446f1f04af22019ff7e4a4cbefde21ba',1,'IpMa86SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma97_5fanalyse_329',['IPOPT_DECL_MA97_ANALYSE',['../IpMa97SolverInterface_8hpp.html#acc01e94f62ba2e87890a26e89bebd016',1,'IpMa97SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma97_5fdefault_5fcontrol_330',['IPOPT_DECL_MA97_DEFAULT_CONTROL',['../IpMa97SolverInterface_8hpp.html#aae8248e964814e08e10d8df96df1766a',1,'IpMa97SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma97_5ffactor_331',['IPOPT_DECL_MA97_FACTOR',['../IpMa97SolverInterface_8hpp.html#aeaabc23efbf6d3b3802d28eb3d03f1cd',1,'IpMa97SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma97_5ffactor_5fsolve_332',['IPOPT_DECL_MA97_FACTOR_SOLVE',['../IpMa97SolverInterface_8hpp.html#ab6bde8cd3df06b9ecffb82e9a1f60621',1,'IpMa97SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma97_5ffinalise_333',['IPOPT_DECL_MA97_FINALISE',['../IpMa97SolverInterface_8hpp.html#a3b0284c0f2ec24b261d7b97a038e573d',1,'IpMa97SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma97_5ffree_5fakeep_334',['IPOPT_DECL_MA97_FREE_AKEEP',['../IpMa97SolverInterface_8hpp.html#a2c0001019565cd84d4e829b8afa4005e',1,'IpMa97SolverInterface.hpp']]], - ['ipopt_5fdecl_5fma97_5fsolve_335',['IPOPT_DECL_MA97_SOLVE',['../IpMa97SolverInterface_8hpp.html#a56a892db13b99dfee492e05373d115d1',1,'IpMa97SolverInterface.hpp']]], - ['ipopt_5fdecl_5fmc19a_336',['IPOPT_DECL_MC19A',['../IpMc19TSymScalingMethod_8hpp.html#a9a1040df91c6349975daa3ad39af7581',1,'IpMc19TSymScalingMethod.hpp']]], - ['ipopt_5fdecl_5fmc68_5fdefault_5fcontrol_337',['IPOPT_DECL_MC68_DEFAULT_CONTROL',['../IpMa77SolverInterface_8hpp.html#a28ff1436be5d02027327ea8354b27122',1,'IpMa77SolverInterface.hpp']]], - ['ipopt_5fdecl_5fmc68_5forder_338',['IPOPT_DECL_MC68_ORDER',['../IpMa77SolverInterface_8hpp.html#a0796d9c202801260ce8db14940d29b29',1,'IpMa77SolverInterface.hpp']]], - ['ipopt_5fdecl_5fpardiso_339',['IPOPT_DECL_PARDISO',['../IpPardisoSolverInterface_8hpp.html#a51db38aa19fe7bd16897a84b125a7695',1,'IpPardisoSolverInterface.hpp']]], - ['ipopt_5fdecl_5fpardisoinit_340',['IPOPT_DECL_PARDISOINIT',['../IpPardisoSolverInterface_8hpp.html#a7c232a8f2dea188eb23655695d0be950',1,'IpPardisoSolverInterface.hpp']]], - ['ipopt_5fdecl_5fsetipoptcallbackfunction_341',['IPOPT_DECL_SETIPOPTCALLBACKFUNCTION',['../IpIterativePardisoSolverInterface_8hpp.html#acd95eacf8295c848cff182fe0221a9b7',1,'IpIterativePardisoSolverInterface.hpp']]], - ['ipopt_5fdecl_5fsmat_5freordering_5fpardiso_5fwsmp_342',['IPOPT_DECL_SMAT_REORDERING_PARDISO_WSMP',['../IpPardisoSolverInterface_8hpp.html#a3f4a38a97f359a9dcd8b6f1dce1fa843',1,'IpPardisoSolverInterface.hpp']]], - ['ipopt_5fdeprecated_343',['IPOPT_DEPRECATED',['../IpTypes_8h.html#a24c578b20e2cd4eeb0060056ea13cbe5',1,'IpTypes.h']]], - ['ipopt_5ffortran_5finteger_5ftype_344',['IPOPT_FORTRAN_INTEGER_TYPE',['../config__ipopt__default_8h.html#a28cc129767c9fd377d1a449b433c4190',1,'config_ipopt_default.h']]], - ['ipopt_5fhas_5flapack_345',['IPOPT_HAS_LAPACK',['../config__default_8h.html#aa57ac9c99e9cc69e98d794dbfcd107ca',1,'config_default.h']]], - ['ipopt_5findex_5fformat_346',['IPOPT_INDEX_FORMAT',['../IpTypes_8h.html#a1c42c0877cf9a97cd6fe771769a0754b',1,'IpTypes.h']]], - ['ipopt_5flapack_5ffunc_347',['IPOPT_LAPACK_FUNC',['../config__default_8h.html#af8ba164b2911f1ff6ac15a0453dbabba',1,'config_default.h']]], - ['ipopt_5fname_5f_348',['ipopt_name_',['../classIpopt_1_1AmplOptionsList_1_1PrivatInfo.html#a4b1c32a1843ffec34cb4d483613a409d',1,'Ipopt::AmplOptionsList::PrivatInfo']]], - ['ipopt_5foption_5fname_5f_349',['ipopt_option_name_',['../classIpopt_1_1AmplOptionsList_1_1AmplOption.html#a7dfaab40e7dd285b5cb8d02e5322a6a1',1,'Ipopt::AmplOptionsList::AmplOption']]], - ['ipopt_5fpardiso_5ffunc_350',['IPOPT_PARDISO_FUNC',['../config__default_8h.html#afdd4f08c71f65f539cead88f16217a52',1,'config_default.h']]], - ['ipopt_5fretval_5f_351',['ipopt_retval_',['../classIpopt_1_1SensApplication.html#aa6c246fe22960a3c0c1678a869230264',1,'Ipopt::SensApplication']]], - ['ipopt_5fsharedlibext_352',['IPOPT_SHAREDLIBEXT',['../IpLibraryLoader_8hpp.html#ad237f33f45491342dcbeb3323238276b',1,'IpLibraryLoader.hpp']]], - ['ipopt_5funused_353',['IPOPT_UNUSED',['../IpTypes_8h.html#a0a972dee3128bbb38cad3cebd28b9fd8',1,'IpTypes.h']]], - ['ipopt_5fverbosity_354',['IPOPT_VERBOSITY',['../IpDebug_8hpp.html#a5d050e78bd81677969d6b3850b1624a4',1,'IpDebug.hpp']]], - ['ipopt_5fversion_355',['IPOPT_VERSION',['../config__ipopt__default_8h.html#ae6e2b435f494a5893263d76df0ba0fe5',1,'config_ipopt_default.h']]], - ['ipopt_5fversion_5fmajor_356',['IPOPT_VERSION_MAJOR',['../config__ipopt__default_8h.html#a1c9883b0dbf1bf8994f95598ca98420a',1,'config_ipopt_default.h']]], - ['ipopt_5fversion_5fminor_357',['IPOPT_VERSION_MINOR',['../config__ipopt__default_8h.html#a79fcb3906f022813a3b5e80cebee44cc',1,'config_ipopt_default.h']]], - ['ipopt_5fversion_5frelease_358',['IPOPT_VERSION_RELEASE',['../config__ipopt__default_8h.html#afd6068406ee4d83a3abb26249b8fd421',1,'config_ipopt_default.h']]], - ['ipopt_5fwsmp_5ffunc_359',['IPOPT_WSMP_FUNC',['../config__default_8h.html#a4648adf92cc2c04c0a61c44372f7654d',1,'config_default.h']]], - ['ipopt_5fwsmp_5ffunc_5f_360',['IPOPT_WSMP_FUNC_',['../config__default_8h.html#a741bbd00c3ce862235fb0cf42deb2152',1,'config_default.h']]], - ['ipoptadditionalcq_361',['ipoptadditionalcq',['../classIpopt_1_1IpoptAdditionalCq.html',1,'Ipopt::IpoptAdditionalCq'],['../classIpopt_1_1IpoptAdditionalCq.html#a03e0d8c68bb88c98ec23d420518d5fe0',1,'Ipopt::IpoptAdditionalCq::IpoptAdditionalCq()'],['../classIpopt_1_1IpoptAdditionalCq.html#ac1ab46fdfb27185a509aa3b765a77b1b',1,'Ipopt::IpoptAdditionalCq::IpoptAdditionalCq(const IpoptAdditionalCq &)']]], - ['ipoptadditionaldata_362',['ipoptadditionaldata',['../classIpopt_1_1IpoptAdditionalData.html',1,'Ipopt::IpoptAdditionalData'],['../classIpopt_1_1IpoptAdditionalData.html#a272b22742fd907a4370efc176fd23e8b',1,'Ipopt::IpoptAdditionalData::IpoptAdditionalData()'],['../classIpopt_1_1IpoptAdditionalData.html#a2f563e943e06db93cbf0260f5456f045',1,'Ipopt::IpoptAdditionalData::IpoptAdditionalData(const IpoptAdditionalData &)']]], - ['ipoptalgorithm_363',['ipoptalgorithm',['../classIpopt_1_1IpoptAlgorithm.html',1,'Ipopt::IpoptAlgorithm'],['../classIpopt_1_1IpoptAlgorithm.html#ad4c9f88e50caf9561af1ff076e940060',1,'Ipopt::IpoptAlgorithm::IpoptAlgorithm(const SmartPtr< SearchDirectionCalculator > &search_dir_calculator, const SmartPtr< LineSearch > &line_search, const SmartPtr< MuUpdate > &mu_update, const SmartPtr< ConvergenceCheck > &conv_check, const SmartPtr< IterateInitializer > &iterate_initializer, const SmartPtr< IterationOutput > &iter_output, const SmartPtr< HessianUpdater > &hessian_updater, const SmartPtr< EqMultiplierCalculator > &eq_multiplier_calculator=NULL, const std::string &linear_solver_name="")'],['../classIpopt_1_1IpoptAlgorithm.html#a0ad61e8f4c25f363593a0d0305610339',1,'Ipopt::IpoptAlgorithm::IpoptAlgorithm()'],['../classIpopt_1_1IpoptAlgorithm.html#a6a8218a6544e0a698019ea0f32154cd8',1,'Ipopt::IpoptAlgorithm::IpoptAlgorithm(const IpoptAlgorithm &)']]], - ['ipoptapplication_364',['ipoptapplication',['../classIpopt_1_1IpoptApplication.html',1,'Ipopt::IpoptApplication'],['../classIpopt_1_1IpoptApplication.html#a9eb44ee6ce920890170f63317ffacabf',1,'Ipopt::IpoptApplication::IpoptApplication(bool create_console_out=true, bool create_empty=false)'],['../classIpopt_1_1IpoptApplication.html#a56c37eecd1475a5f73920ae918a49104',1,'Ipopt::IpoptApplication::IpoptApplication(SmartPtr< RegisteredOptions > reg_options, SmartPtr< OptionsList > options, SmartPtr< Journalist > jnlst)'],['../classIpopt_1_1IpoptApplication.html#a5417dbc747fa39a9a2871496f7785f34',1,'Ipopt::IpoptApplication::IpoptApplication(const IpoptApplication &)']]], - ['ipoptapplicationfactory_365',['IpoptApplicationFactory',['../IpIpoptApplication_8hpp.html#a5cd86aa283cdc6ebfdae28c1d673f48a',1,'IpIpoptApplication.hpp']]], - ['ipoptcalculatedquantities_366',['ipoptcalculatedquantities',['../classIpopt_1_1IpoptCalculatedQuantities.html#aaabdaaa20130f495bf17b8b89a7050bf',1,'Ipopt::IpoptCalculatedQuantities::IpoptCalculatedQuantities(const SmartPtr< IpoptNLP > &ip_nlp, const SmartPtr< IpoptData > &ip_data)'],['../classIpopt_1_1IpoptCalculatedQuantities.html#a1628eccfc53c0411519a36afedef7c92',1,'Ipopt::IpoptCalculatedQuantities::IpoptCalculatedQuantities()'],['../classIpopt_1_1IpoptCalculatedQuantities.html#a45b6312ec70c6bdf2319a8bec74a1e83',1,'Ipopt::IpoptCalculatedQuantities::IpoptCalculatedQuantities(const IpoptCalculatedQuantities &)'],['../classIpopt_1_1IpoptCalculatedQuantities.html',1,'Ipopt::IpoptCalculatedQuantities']]], - ['ipoptconfig_2eh_367',['IpoptConfig.h',['../IpoptConfig_8h.html',1,'']]], - ['ipoptcqobject_368',['IpoptCQObject',['../classIpopt_1_1IpoptApplication.html#aa502732a3dee5acae7f6c44b6070216f',1,'Ipopt::IpoptApplication']]], - ['ipoptdata_369',['ipoptdata',['../classIpopt_1_1IpoptData.html#ada1c79e9529b534a5aa92d4893200e3b',1,'Ipopt::IpoptData::IpoptData(SmartPtr< IpoptAdditionalData > add_data=NULL)'],['../classIpopt_1_1IpoptData.html#a7783c9076f9e6057786e6658165a4f76',1,'Ipopt::IpoptData::IpoptData(const IpoptData &)'],['../classIpopt_1_1IpoptData.html',1,'Ipopt::IpoptData']]], - ['ipoptdataobject_370',['IpoptDataObject',['../classIpopt_1_1IpoptApplication.html#a7d68d480c78209eca6acba01e40181f7',1,'Ipopt::IpoptApplication']]], - ['ipopterrorconvcheck_2ehpp_371',['IpOptErrorConvCheck.hpp',['../IpOptErrorConvCheck_8hpp.html',1,'']]], - ['ipoptexception_372',['ipoptexception',['../classIpopt_1_1IpoptException.html',1,'Ipopt::IpoptException'],['../classIpopt_1_1IpoptException.html#a0ddf344ee3efe49405923a61352e6e58',1,'Ipopt::IpoptException::IpoptException(const std::string &msg, const std::string &file_name, Index line_number, const std::string &type="IpoptException")'],['../classIpopt_1_1IpoptException.html#aa85913719ac340e29cd0115e2ec18c35',1,'Ipopt::IpoptException::IpoptException(const IpoptException &copy)'],['../classIpopt_1_1IpoptException.html#af9f46403d01a561e1a97c649b248d903',1,'Ipopt::IpoptException::IpoptException()']]], - ['ipoptgetavailablelinearsolvers_373',['IpoptGetAvailableLinearSolvers',['../IpLinearSolvers_8h.html#a97a3086006741979fffef682e2c0bf37',1,'IpLinearSolvers.h']]], - ['ipoptionslist_2ehpp_374',['IpOptionsList.hpp',['../IpOptionsList_8hpp.html',1,'']]], - ['ipoptlib_5fexport_375',['ipoptlib_export',['../config__ipopt__default_8h.html#a58bb5c104ee5ff44b7175fc992d89b0b',1,'IPOPTLIB_EXPORT: config_ipopt_default.h'],['../config__default_8h.html#a58bb5c104ee5ff44b7175fc992d89b0b',1,'IPOPTLIB_EXPORT: config_default.h']]], - ['ipoptlinearsolver_376',['IpoptLinearSolver',['../IpLinearSolvers_8h.html#abc6afb8d519c650b8276746508e02ec9',1,'IpLinearSolvers.h']]], - ['ipoptlinearsolver_5fallhsl_377',['IPOPTLINEARSOLVER_ALLHSL',['../IpLinearSolvers_8h.html#aef25e7a8ad501d72f1988b0e2565f9a0',1,'IpLinearSolvers.h']]], - ['ipoptlinearsolver_5fma27_378',['IPOPTLINEARSOLVER_MA27',['../IpLinearSolvers_8h.html#a8402ec41e8721e82c0b66470bb9804fe',1,'IpLinearSolvers.h']]], - ['ipoptlinearsolver_5fma57_379',['IPOPTLINEARSOLVER_MA57',['../IpLinearSolvers_8h.html#a8ba60de3161070fc40652ebde596004c',1,'IpLinearSolvers.h']]], - ['ipoptlinearsolver_5fma77_380',['IPOPTLINEARSOLVER_MA77',['../IpLinearSolvers_8h.html#aa56da0376845c1506565237cb500911b',1,'IpLinearSolvers.h']]], - ['ipoptlinearsolver_5fma86_381',['IPOPTLINEARSOLVER_MA86',['../IpLinearSolvers_8h.html#a44e69ccd41a7315c45e4af74822ada8b',1,'IpLinearSolvers.h']]], - ['ipoptlinearsolver_5fma97_382',['IPOPTLINEARSOLVER_MA97',['../IpLinearSolvers_8h.html#a598fda9d04ae1a1fa00473e0b4e79cce',1,'IpLinearSolvers.h']]], - ['ipoptlinearsolver_5fmc19_383',['IPOPTLINEARSOLVER_MC19',['../IpLinearSolvers_8h.html#a740b760fe7d1b75a58e2d4b389eb2847',1,'IpLinearSolvers.h']]], - ['ipoptlinearsolver_5fmumps_384',['IPOPTLINEARSOLVER_MUMPS',['../IpLinearSolvers_8h.html#a541eace7a51090890bb4a01e49995f6f',1,'IpLinearSolvers.h']]], - ['ipoptlinearsolver_5fpardiso_385',['IPOPTLINEARSOLVER_PARDISO',['../IpLinearSolvers_8h.html#af49a9cce5a6bae83913be4df89d2276e',1,'IpLinearSolvers.h']]], - ['ipoptlinearsolver_5fpardisomkl_386',['IPOPTLINEARSOLVER_PARDISOMKL',['../IpLinearSolvers_8h.html#ac58114381fb9cee137a9d6347023ce2a',1,'IpLinearSolvers.h']]], - ['ipoptlinearsolver_5fspral_387',['IPOPTLINEARSOLVER_SPRAL',['../IpLinearSolvers_8h.html#a57ad048e00b14b269a418151cc2862c4',1,'IpLinearSolvers.h']]], - ['ipoptlinearsolver_5fwsmp_388',['IPOPTLINEARSOLVER_WSMP',['../IpLinearSolvers_8h.html#a0387b968ca839c86a296ca49a662d37e',1,'IpLinearSolvers.h']]], - ['ipoptname_389',['IpoptName',['../classIpopt_1_1AmplOptionsList_1_1PrivatInfo.html#a87b6d074dbb56ba2d3791fc499f7e95e',1,'Ipopt::AmplOptionsList::PrivatInfo']]], - ['ipoptnlp_390',['ipoptnlp',['../classIpopt_1_1IpoptNLP.html#aaa7d01346731a53ee42caca4769b0792',1,'Ipopt::IpoptNLP::IpoptNLP()'],['../classIpopt_1_1IpoptNLP.html',1,'Ipopt::IpoptNLP'],['../classIpopt_1_1IpoptNLP.html#a182f6ee331a78ceeaa16921273d947d8',1,'Ipopt::IpoptNLP::IpoptNLP()']]], - ['ipoptnlpobject_391',['IpoptNLPObject',['../classIpopt_1_1IpoptApplication.html#af7cdf46905fe34bda08a58d16a9b263b',1,'Ipopt::IpoptApplication']]], - ['ipoptoptionname_392',['IpoptOptionName',['../classIpopt_1_1AmplOptionsList_1_1AmplOption.html#a059a65240d21d8573efcd2b3699c3eed',1,'Ipopt::AmplOptionsList::AmplOption']]], - ['ipoptproblem_393',['IpoptProblem',['../IpStdCInterface_8h.html#ae32712b8d014ab2144fee84432e4a347',1,'IpStdCInterface.h']]], - ['ipoptr_394',['ipoptr',['../INSTALL.html#INSTALL_R',1,'Compiling and Installing the R Interface ipoptr'],['../INTERFACES.html#INTERFACE_R',1,'The R Interface ipoptr']]], - ['ipoptsolve_395',['IpoptSolve',['../IpStdCInterface_8h.html#a5a68928c505f008c1245088bca5b7b16',1,'IpStdCInterface.h']]], - ['iporigipoptnlp_2ehpp_396',['IpOrigIpoptNLP.hpp',['../IpOrigIpoptNLP_8hpp.html',1,'']]], - ['iporigiterationoutput_2ehpp_397',['IpOrigIterationOutput.hpp',['../IpOrigIterationOutput_8hpp.html',1,'']]], - ['ipos_5fdouble_5fcompressed_5f_398',['ipos_double_compressed_',['../classIpopt_1_1TripletToCSRConverter.html#a77778d1c463c8b1a602e12b0b450ee11',1,'Ipopt::TripletToCSRConverter']]], - ['ipos_5fdouble_5ftriplet_5f_399',['ipos_double_triplet_',['../classIpopt_1_1TripletToCSRConverter.html#a7c28bbd06089a2a3d95cb3cb79b155a3',1,'Ipopt::TripletToCSRConverter']]], - ['ipos_5ffirst_5f_400',['ipos_first_',['../classIpopt_1_1TripletToCSRConverter.html#afa6e0b3380e7cd9c1d5796689a38408f',1,'Ipopt::TripletToCSRConverter']]], - ['iposfirst_401',['iPosFirst',['../classIpopt_1_1TripletToCSRConverter.html#a7290c5eed03b4a5e9f97039a1f7fd5a5',1,'Ipopt::TripletToCSRConverter']]], - ['ippardisomklsolverinterface_2ehpp_402',['IpPardisoMKLSolverInterface.hpp',['../IpPardisoMKLSolverInterface_8hpp.html',1,'']]], - ['ippardisosolverinterface_2ehpp_403',['IpPardisoSolverInterface.hpp',['../IpPardisoSolverInterface_8hpp.html',1,'']]], - ['ippdfullspacesolver_2ehpp_404',['IpPDFullSpaceSolver.hpp',['../IpPDFullSpaceSolver_8hpp.html',1,'']]], - ['ippdperturbationhandler_2ehpp_405',['IpPDPerturbationHandler.hpp',['../IpPDPerturbationHandler_8hpp.html',1,'']]], - ['ippdsearchdircalc_2ehpp_406',['IpPDSearchDirCalc.hpp',['../IpPDSearchDirCalc_8hpp.html',1,'']]], - ['ippdsystemsolver_2ehpp_407',['IpPDSystemSolver.hpp',['../IpPDSystemSolver_8hpp.html',1,'']]], - ['ippenaltylsacceptor_2ehpp_408',['IpPenaltyLSAcceptor.hpp',['../IpPenaltyLSAcceptor_8hpp.html',1,'']]], - ['ippiecewisepenalty_2ehpp_409',['IpPiecewisePenalty.hpp',['../IpPiecewisePenalty_8hpp.html',1,'']]], - ['ipprobingmuoracle_2ehpp_410',['IpProbingMuOracle.hpp',['../IpProbingMuOracle_8hpp.html',1,'']]], - ['ipqualityfunctionmuoracle_2ehpp_411',['IpQualityFunctionMuOracle.hpp',['../IpQualityFunctionMuOracle_8hpp.html',1,'']]], - ['iprandom01_412',['IpRandom01',['../namespaceIpopt.html#ad4946dd05889013b7bba1ac97c28c176',1,'Ipopt']]], - ['ipreferenced_2ehpp_413',['IpReferenced.hpp',['../IpReferenced_8hpp.html',1,'']]], - ['ipregoptions_2ehpp_414',['IpRegOptions.hpp',['../IpRegOptions_8hpp.html',1,'']]], - ['ipresetrandom01_415',['IpResetRandom01',['../namespaceIpopt.html#a938aa5ecbb75facb7e897709caeed751',1,'Ipopt']]], - ['iprestoconvcheck_2ehpp_416',['IpRestoConvCheck.hpp',['../IpRestoConvCheck_8hpp.html',1,'']]], - ['iprestofilterconvcheck_2ehpp_417',['IpRestoFilterConvCheck.hpp',['../IpRestoFilterConvCheck_8hpp.html',1,'']]], - ['iprestoipoptnlp_2ehpp_418',['IpRestoIpoptNLP.hpp',['../IpRestoIpoptNLP_8hpp.html',1,'']]], - ['iprestoiterateinitializer_2ehpp_419',['IpRestoIterateInitializer.hpp',['../IpRestoIterateInitializer_8hpp.html',1,'']]], - ['iprestoiterationoutput_2ehpp_420',['IpRestoIterationOutput.hpp',['../IpRestoIterationOutput_8hpp.html',1,'']]], - ['iprestominc_5f1nrm_2ehpp_421',['IpRestoMinC_1Nrm.hpp',['../IpRestoMinC__1Nrm_8hpp.html',1,'']]], - ['iprestopenaltyconvcheck_2ehpp_422',['IpRestoPenaltyConvCheck.hpp',['../IpRestoPenaltyConvCheck_8hpp.html',1,'']]], - ['iprestophase_2ehpp_423',['IpRestoPhase.hpp',['../IpRestoPhase_8hpp.html',1,'']]], - ['iprestorestophase_2ehpp_424',['IpRestoRestoPhase.hpp',['../IpRestoRestoPhase_8hpp.html',1,'']]], - ['ipreturncodes_2eh_425',['IpReturnCodes.h',['../IpReturnCodes_8h.html',1,'']]], - ['ipreturncodes_2ehpp_426',['IpReturnCodes.hpp',['../IpReturnCodes_8hpp.html',1,'']]], - ['ipreturncodes_5finc_2eh_427',['IpReturnCodes_inc.h',['../IpReturnCodes__inc_8h.html',1,'']]], - ['ipscaledmatrix_2ehpp_428',['IpScaledMatrix.hpp',['../IpScaledMatrix_8hpp.html',1,'']]], - ['ipsearchdircalculator_2ehpp_429',['IpSearchDirCalculator.hpp',['../IpSearchDirCalculator_8hpp.html',1,'']]], - ['ipslackbasedtsymscalingmethod_2ehpp_430',['IpSlackBasedTSymScalingMethod.hpp',['../IpSlackBasedTSymScalingMethod_8hpp.html',1,'']]], - ['ipsmartptr_2ehpp_431',['IpSmartPtr.hpp',['../IpSmartPtr_8hpp.html',1,'']]], - ['ipsolvestatistics_2ehpp_432',['IpSolveStatistics.hpp',['../IpSolveStatistics_8hpp.html',1,'']]], - ['ipsparsesymlinearsolverinterface_2ehpp_433',['IpSparseSymLinearSolverInterface.hpp',['../IpSparseSymLinearSolverInterface_8hpp.html',1,'']]], - ['ipspralsolverinterface_2ehpp_434',['IpSpralSolverInterface.hpp',['../IpSpralSolverInterface_8hpp.html',1,'']]], - ['ipstdaugsystemsolver_2ehpp_435',['IpStdAugSystemSolver.hpp',['../IpStdAugSystemSolver_8hpp.html',1,'']]], - ['ipstdcinterface_2eh_436',['IpStdCInterface.h',['../IpStdCInterface_8h.html',1,'']]], - ['ipstdinterfacetnlp_2ehpp_437',['IpStdInterfaceTNLP.hpp',['../IpStdInterfaceTNLP_8hpp.html',1,'']]], - ['ipsummatrix_2ehpp_438',['IpSumMatrix.hpp',['../IpSumMatrix_8hpp.html',1,'']]], - ['ipsumsymmatrix_2ehpp_439',['IpSumSymMatrix.hpp',['../IpSumSymMatrix_8hpp.html',1,'']]], - ['ipsymlinearsolver_2ehpp_440',['IpSymLinearSolver.hpp',['../IpSymLinearSolver_8hpp.html',1,'']]], - ['ipsymmatrix_2ehpp_441',['IpSymMatrix.hpp',['../IpSymMatrix_8hpp.html',1,'']]], - ['ipsymscaledmatrix_2ehpp_442',['IpSymScaledMatrix.hpp',['../IpSymScaledMatrix_8hpp.html',1,'']]], - ['ipsymtmatrix_2ehpp_443',['IpSymTMatrix.hpp',['../IpSymTMatrix_8hpp.html',1,'']]], - ['iptaggedobject_2ehpp_444',['IpTaggedObject.hpp',['../IpTaggedObject_8hpp.html',1,'']]], - ['iptdependencydetector_2ehpp_445',['IpTDependencyDetector.hpp',['../IpTDependencyDetector_8hpp.html',1,'']]], - ['iptimedtask_2ehpp_446',['IpTimedTask.hpp',['../IpTimedTask_8hpp.html',1,'']]], - ['iptimingstatistics_2ehpp_447',['IpTimingStatistics.hpp',['../IpTimingStatistics_8hpp.html',1,'']]], - ['iptnlp_2ehpp_448',['IpTNLP.hpp',['../IpTNLP_8hpp.html',1,'']]], - ['iptnlpadapter_2ehpp_449',['IpTNLPAdapter.hpp',['../IpTNLPAdapter_8hpp.html',1,'']]], - ['iptnlpreducer_2ehpp_450',['IpTNLPReducer.hpp',['../IpTNLPReducer_8hpp.html',1,'']]], - ['iptransposematrix_2ehpp_451',['IpTransposeMatrix.hpp',['../IpTransposeMatrix_8hpp.html',1,'']]], - ['iptriplethelper_2ehpp_452',['IpTripletHelper.hpp',['../IpTripletHelper_8hpp.html',1,'']]], - ['iptriplettocsrconverter_2ehpp_453',['IpTripletToCSRConverter.hpp',['../IpTripletToCSRConverter_8hpp.html',1,'']]], - ['iptsymdependencydetector_2ehpp_454',['IpTSymDependencyDetector.hpp',['../IpTSymDependencyDetector_8hpp.html',1,'']]], - ['iptsymlinearsolver_2ehpp_455',['IpTSymLinearSolver.hpp',['../IpTSymLinearSolver_8hpp.html',1,'']]], - ['iptsymscalingmethod_2ehpp_456',['IpTSymScalingMethod.hpp',['../IpTSymScalingMethod_8hpp.html',1,'']]], - ['iptypes_2eh_457',['IpTypes.h',['../IpTypes_8h.html',1,'']]], - ['iptypes_2ehpp_458',['IpTypes.hpp',['../IpTypes_8hpp.html',1,'']]], - ['ipuserscaling_2ehpp_459',['IpUserScaling.hpp',['../IpUserScaling_8hpp.html',1,'']]], - ['iputils_2ehpp_460',['IpUtils.hpp',['../IpUtils_8hpp.html',1,'']]], - ['ipvector_2ehpp_461',['IpVector.hpp',['../IpVector_8hpp.html',1,'']]], - ['ipwarmstartiterateinitializer_2ehpp_462',['IpWarmStartIterateInitializer.hpp',['../IpWarmStartIterateInitializer_8hpp.html',1,'']]], - ['ipwsmpsolverinterface_2ehpp_463',['IpWsmpSolverInterface.hpp',['../IpWsmpSolverInterface_8hpp.html',1,'']]], - ['ipzeromatrix_2ehpp_464',['IpZeroMatrix.hpp',['../IpZeroMatrix_8hpp.html',1,'']]], - ['ipzerosymmatrix_2ehpp_465',['IpZeroSymMatrix.hpp',['../IpZeroSymMatrix_8hpp.html',1,'']]], - ['irow_466',['IRow',['../classIpopt_1_1TripletToCSRConverter_1_1TripletEntry.html#a2cddf4e4b7b5097a26851dc627b19e4e',1,'Ipopt::TripletToCSRConverter::TripletEntry']]], - ['irows_467',['irows',['../classIpopt_1_1GenTMatrix.html#adc14ecc96609890bb0125a2144ceb2ed',1,'Ipopt::GenTMatrix::Irows()'],['../classIpopt_1_1GenTMatrixSpace.html#ad1349c86847c29722c930064f1ccc665',1,'Ipopt::GenTMatrixSpace::Irows()'],['../classIpopt_1_1SymTMatrix.html#aac77e43d622b1231920e17afe7a9de82',1,'Ipopt::SymTMatrix::Irows()'],['../classIpopt_1_1SymTMatrixSpace.html#aaf6a3677d762ae7e8e98f6bf35b2d53a',1,'Ipopt::SymTMatrixSpace::Irows() const']]], - ['irows_5f_468',['irows_',['../classIpopt_1_1SymTMatrixSpace.html#a3a72d6f897240e2308eee9c62b98a553',1,'Ipopt::SymTMatrixSpace::iRows_'],['../classIpopt_1_1GenTMatrixSpace.html#ace386f17664c96f1f8cb34ce0e3295d5',1,'Ipopt::GenTMatrixSpace::iRows_']]], - ['is_20ipopt_469',['What is Ipopt?',['../FAQ.html#autotoc_md0',1,'']]], - ['is_20ipopt_20released_20under_470',['What license is Ipopt released under?',['../FAQ.html#autotoc_md2',1,'']]], - ['is_20ipopt_20thread_20safe_471',['Is Ipopt thread-safe?',['../FAQ.html#autotoc_md5',1,'']]], - ['is_20the_20difference_20between_20the_20fortran_20version_20and_20the_20c_20version_472',['What is the difference between the Fortran version and the C++ version?',['../FAQ.html#autotoc_md8',1,'']]], - ['is_20the_20method_20behind_20ipopt_473',['What is the method behind Ipopt?',['../FAQ.html#autotoc_md6',1,'']]], - ['is_5finitialized_474',['Is_Initialized',['../classIpopt_1_1SchurData.html#a9ad24538c5904dc0a8543ae109d29706',1,'Ipopt::SchurData']]], - ['is_5fpardiso_5f_475',['is_pardiso_',['../classIpopt_1_1InexactPDSolver.html#a534a1a1bbd2f78dfbcec15fe642569c9',1,'Ipopt::InexactPDSolver']]], - ['isacceptabletocurrentfilter_476',['IsAcceptableToCurrentFilter',['../classIpopt_1_1FilterLSAcceptor.html#a0dd15a079478f682e21cc92ddff2d0e3',1,'Ipopt::FilterLSAcceptor']]], - ['isacceptabletocurrentiterate_477',['isacceptabletocurrentiterate',['../classIpopt_1_1InexactLSAcceptor.html#a488ba11fa025c5f07ce57fd401d08219',1,'Ipopt::InexactLSAcceptor::IsAcceptableToCurrentIterate()'],['../classIpopt_1_1FilterLSAcceptor.html#a6599ec13413f158950300b8180cf3e9a',1,'Ipopt::FilterLSAcceptor::IsAcceptableToCurrentIterate()'],['../classIpopt_1_1PenaltyLSAcceptor.html#a88d311a5587406ef965a007c6e0d11b6',1,'Ipopt::PenaltyLSAcceptor::IsAcceptableToCurrentIterate()']]], - ['isacceptabletopiecewisepenalty_478',['IsAcceptableToPiecewisePenalty',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a7cfd8483609381328349630ddd914d14',1,'Ipopt::CGPenaltyLSAcceptor']]], - ['isaccepted_479',['IsAccepted',['../classIpopt_1_1Journal.html#a7495d9ce62d480720369c3c20e307d79',1,'Ipopt::Journal']]], - ['iscompconst_480',['IsCompConst',['../classIpopt_1_1CompoundVector.html#a846da0af20d5aebd4e304a63743fbea6',1,'Ipopt::CompoundVector']]], - ['iscompnull_481',['IsCompNull',['../classIpopt_1_1CompoundVector.html#a6f8d73137a69051c46effccdc244db10',1,'Ipopt::CompoundVector']]], - ['isenabled_482',['IsEnabled',['../classIpopt_1_1TimedTask.html#a84cce17e7c8f3842ee1e8ad960e13651',1,'Ipopt::TimedTask']]], - ['isfinitenumber_483',['IsFiniteNumber',['../namespaceIpopt.html#a6e5e857992e79961b466b14cc6ef7df7',1,'Ipopt']]], - ['isftype_484',['IsFtype',['../classIpopt_1_1FilterLSAcceptor.html#ae749b982f5ec180d10acb5c16702f9bc',1,'Ipopt::FilterLSAcceptor']]], - ['isfunctionevaluationtimeenabled_485',['IsFunctionEvaluationTimeEnabled',['../classIpopt_1_1TimingStatistics.html#a891b4c6ff02b31434e8d99c386a17bd6',1,'Ipopt::TimingStatistics']]], - ['ishomogeneous_486',['IsHomogeneous',['../classIpopt_1_1DenseVector.html#a23ac6bcd7d67dda1a6aaea8d531ae0cf',1,'Ipopt::DenseVector']]], - ['ismatrixfromspace_487',['IsMatrixFromSpace',['../classIpopt_1_1MatrixSpace.html#a96f2473f0a89a420ee4f0a59a185704d',1,'Ipopt::MatrixSpace']]], - ['isnull_488',['isnull',['../namespaceIpopt.html#acfc346e8412ed6def2dc1858b78bde1b',1,'Ipopt::IsNull()'],['../classIpopt_1_1SmartPtr.html#a4e3eb718ef30628e0c644bfdcdea989d',1,'Ipopt::SmartPtr::IsNull']]], - ['ispare_489',['ispare',['../structma97__control__s.html#a281a54994ad8d19268e60027e85f87ce',1,'ma97_control_s::ispare'],['../structma97__info__d.html#a3d0ce848b0adb6f1140e2e10bf75cd4f',1,'ma97_info_d::ispare'],['../structma97__info__s.html#a63944efa36a9df62269fa40ae8c73fd0',1,'ma97_info_s::ispare'],['../structma97__control__d.html#a53f9a4496e8647f01fd525a3227a4055',1,'ma97_control_d::ispare'],['../structma77__control__d.html#aaf2a8e83e137e33def01c51154cb3aeb',1,'ma77_control_d::ispare'],['../structma77__info__s.html#a40855dacc81e9157cb0fc72441313a65',1,'ma77_info_s::ispare'],['../structma77__control__s.html#a097b072d38eb476abe3bb5cf00706a16',1,'ma77_control_s::ispare'],['../structma77__info__d.html#acc554f50830e007c99e462d6d4608fd7',1,'ma77_info_d::ispare']]], - ['ispiecewisepenaltylistempty_490',['IsPiecewisePenaltyListEmpty',['../classIpopt_1_1PiecewisePenalty.html#af4a71aa87817ad17ff75fe23ee9cf9e8',1,'Ipopt::PiecewisePenalty']]], - ['issquareproblem_491',['IsSquareProblem',['../classIpopt_1_1IpoptCalculatedQuantities.html#a2566806a74b0573b938298a312ef57f2',1,'Ipopt::IpoptCalculatedQuantities']]], - ['isstale_492',['IsStale',['../classIpopt_1_1DependentResult.html#ae10949b00ea6d500fa1287cc8b4822ee',1,'Ipopt::DependentResult']]], - ['isstarted_493',['IsStarted',['../classIpopt_1_1TimedTask.html#a930bdafa309b6a9860dc87b312c888a9',1,'Ipopt::TimedTask']]], - ['isvalid_494',['isvalid',['../namespaceIpopt.html#a412b04fd3180a55969ff76224d5bfec6',1,'Ipopt::IsValid()'],['../classIpopt_1_1SmartPtr.html#aac969d05f92a0038daf754ac1c5ab876',1,'Ipopt::SmartPtr::IsValid']]], - ['isvalidintegersetting_495',['IsValidIntegerSetting',['../classIpopt_1_1RegisteredOption.html#aa2ae998f5cdfe4542edd608617d77ea7',1,'Ipopt::RegisteredOption']]], - ['isvalidnumbersetting_496',['IsValidNumberSetting',['../classIpopt_1_1RegisteredOption.html#a65470bf913884fdd33447a938762688a',1,'Ipopt::RegisteredOption']]], - ['isvalidstringsetting_497',['IsValidStringSetting',['../classIpopt_1_1RegisteredOption.html#a218f0d8bbae75438beef01498a364f2a',1,'Ipopt::RegisteredOption']]], - ['iter_498',['iter',['../classIpopt_1_1FilterEntry.html#a3fb759a8d2b2c9b5126401796205c237',1,'Ipopt::FilterEntry']]], - ['iter_5f_499',['iter_',['../classIpopt_1_1FilterEntry.html#a5979a86ff43864809fc486a5b3d21193',1,'Ipopt::FilterEntry']]], - ['iter_5fcount_500',['iter_count',['../classIpopt_1_1IpoptData.html#a7d444831a2753caa7e74443897227b99',1,'Ipopt::IpoptData']]], - ['iter_5fcount_5f_501',['iter_count_',['../classIpopt_1_1IpoptData.html#ad3e359f7fde09fe372950003debd09c0',1,'Ipopt::IpoptData']]], - ['iter_5foutput_5f_502',['iter_output_',['../classIpopt_1_1IpoptAlgorithm.html#ab1a4e607c390961f2e35cd1adbdc4e16',1,'Ipopt::IpoptAlgorithm']]], - ['iterate_5finitializer_5f_503',['iterate_initializer_',['../classIpopt_1_1IpoptAlgorithm.html#a8ef51f30cf5ae4d66273388948f101b1',1,'Ipopt::IpoptAlgorithm']]], - ['iterateinitializer_504',['iterateinitializer',['../classIpopt_1_1IterateInitializer.html',1,'Ipopt::IterateInitializer'],['../classIpopt_1_1IterateInitializer.html#a02ab25dbb0da5701873e5bd9c307bfe1',1,'Ipopt::IterateInitializer::IterateInitializer(const IterateInitializer &)'],['../classIpopt_1_1IterateInitializer.html#ac664530b00baf90c5e681543eb7f5bd3',1,'Ipopt::IterateInitializer::IterateInitializer()']]], - ['iterates_5fspace_5f_505',['iterates_space_',['../classIpopt_1_1IpoptData.html#a9ca143d0ba9a1023a613cae517a1513d',1,'Ipopt::IpoptData']]], - ['iteratesvector_506',['iteratesvector',['../classIpopt_1_1IteratesVector.html#a8ae998abee264e4e0372ca8a323ea1fa',1,'Ipopt::IteratesVector::IteratesVector(const IteratesVector &)'],['../classIpopt_1_1IteratesVector.html#af86a4799541add329545ce8d9b746c9a',1,'Ipopt::IteratesVector::IteratesVector()'],['../classIpopt_1_1IteratesVector.html#af419a32ddb70d2d1c57f00626676987f',1,'Ipopt::IteratesVector::IteratesVector(const IteratesVectorSpace *owner_space, bool create_new)'],['../classIpopt_1_1IteratesVector.html',1,'Ipopt::IteratesVector']]], - ['iteratesvectorspace_507',['iteratesvectorspace',['../classIpopt_1_1IteratesVectorSpace.html#af7cceb8955caac0eae7127a1fdcb098e',1,'Ipopt::IteratesVectorSpace::IteratesVectorSpace(const IteratesVectorSpace &)'],['../classIpopt_1_1IteratesVectorSpace.html#ab51e50d7909c8093b7ecdd5ef5aa395f',1,'Ipopt::IteratesVectorSpace::IteratesVectorSpace()'],['../classIpopt_1_1IteratesVectorSpace.html#a9af66049981b2664227c06a38ed9e650',1,'Ipopt::IteratesVectorSpace::IteratesVectorSpace(const VectorSpace &x_space, const VectorSpace &s_space, const VectorSpace &y_c_space, const VectorSpace &y_d_space, const VectorSpace &z_L_space, const VectorSpace &z_U_space, const VectorSpace &v_L_space, const VectorSpace &v_U_space)'],['../classIpopt_1_1IteratesVectorSpace.html',1,'Ipopt::IteratesVectorSpace']]], - ['iteration_5fexceeded_508',['ITERATION_EXCEEDED',['../classorg_1_1coinor_1_1Ipopt.html#a7f2a52a6c5606b6703f02035914a2552',1,'org::coinor::Ipopt']]], - ['iterationcount_509',['IterationCount',['../classIpopt_1_1SolveStatistics.html#aff0e3b249a4d5cf91b91f7af264376b7',1,'Ipopt::SolveStatistics']]], - ['iterationoutput_510',['iterationoutput',['../classIpopt_1_1IterationOutput.html#ad2072815388e37c4c0e3e1e49339f090',1,'Ipopt::IterationOutput::IterationOutput()'],['../classIpopt_1_1IterationOutput.html',1,'Ipopt::IterationOutput'],['../classIpopt_1_1IterationOutput.html#acb214e6e4375b916336e9f76a0548346',1,'Ipopt::IterationOutput::IterationOutput()']]], - ['iterativepardisosolverinterface_511',['iterativepardisosolverinterface',['../classIpopt_1_1IterativePardisoSolverInterface.html',1,'Ipopt::IterativePardisoSolverInterface'],['../classIpopt_1_1IterativePardisoSolverInterface.html#a30265dd3230c0ba98f29e98bd713faec',1,'Ipopt::IterativePardisoSolverInterface::IterativePardisoSolverInterface(const IterativePardisoSolverInterface &)'],['../classIpopt_1_1IterativePardisoSolverInterface.html#a337f02ca73e31428933ac65216452e13',1,'Ipopt::IterativePardisoSolverInterface::IterativePardisoSolverInterface()'],['../classIpopt_1_1IterativePardisoSolverInterface.html#a4bb805cd9eadd7cd91b13db257552569',1,'Ipopt::IterativePardisoSolverInterface::IterativePardisoSolverInterface(IterativeSolverTerminationTester &normal_tester, IterativeSolverTerminationTester &pd_tester, SmartPtr< LibraryLoader > pardisoloader_)']]], - ['iterativesolverterminationtester_512',['iterativesolverterminationtester',['../classIpopt_1_1IterativeSolverTerminationTester.html',1,'Ipopt::IterativeSolverTerminationTester'],['../classIpopt_1_1IterativeSolverTerminationTester.html#a1e094f9a462a3ba0fee207187572efbb',1,'Ipopt::IterativeSolverTerminationTester::IterativeSolverTerminationTester()']]], - ['iterativewsmpsolverinterface_513',['iterativewsmpsolverinterface',['../classIpopt_1_1IterativeWsmpSolverInterface.html',1,'Ipopt::IterativeWsmpSolverInterface'],['../classIpopt_1_1IterativeWsmpSolverInterface.html#a5b5dfc2f038fa54b307b990474af51da',1,'Ipopt::IterativeWsmpSolverInterface::IterativeWsmpSolverInterface(const IterativeWsmpSolverInterface &)'],['../classIpopt_1_1IterativeWsmpSolverInterface.html#a7ee14060f26f5f956bee57f1d5cef6c9',1,'Ipopt::IterativeWsmpSolverInterface::IterativeWsmpSolverInterface()']]], - ['iterinitializer_5f_514',['IterInitializer_',['../classIpopt_1_1AlgorithmBuilder.html#a4da0e00ff35e8f9b1db5ed4943f2e68d',1,'Ipopt::AlgorithmBuilder']]], - ['iteroutput_5f_515',['IterOutput_',['../classIpopt_1_1AlgorithmBuilder.html#a25b5ea1d912348a3366d15b2250b167d',1,'Ipopt::AlgorithmBuilder']]], - ['iw_5f_516',['iw_',['../classIpopt_1_1Ma27TSolverInterface.html#aa4ccf91952c454b5878c1313606ee27b',1,'Ipopt::Ma27TSolverInterface']]] + ['interrupted_5f_132',['interrupted_',['../classIpopt_1_1AmplTNLP.html#a207103b08555ac8ebb38d0cf818e0a46',1,'Ipopt::AmplTNLP']]], + ['invalid_5fnumber_5fdetected_133',['invalid_number_detected',['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7abb3cc51c1d4edc58677138c1ef5698d6',1,'Invalid_Number_Detected: IpReturnCodes_inc.h'],['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834ac90d36a417c5aa70a80da8338c614168',1,'Ipopt::INVALID_NUMBER_DETECTED'],['../classorg_1_1coinor_1_1Ipopt.html#a9005b727656170847da4498472d44be0',1,'org.coinor.Ipopt.INVALID_NUMBER_DETECTED']]], + ['invalid_5foption_134',['invalid_option',['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7a621c0a01dc6cedc7d03b0ff1ea4ac188',1,'Invalid_Option: IpReturnCodes_inc.h'],['../classorg_1_1coinor_1_1Ipopt.html#aa0b37ea4f81ff1dc33d0738a25aef2cd',1,'org.coinor.Ipopt.INVALID_OPTION'],['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834a0916d055cc6d551743512dc595fb0425',1,'Ipopt::INVALID_OPTION']]], + ['invalid_5fproblem_5fdefinition_135',['invalid_problem_definition',['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7ad0a0d57cad08c84c2051c98915e3233f',1,'Invalid_Problem_Definition: IpReturnCodes_inc.h'],['../classorg_1_1coinor_1_1Ipopt.html#a6601c123db771db778c4c25061327048',1,'org.coinor.Ipopt.INVALID_PROBLEM_DEFINITION']]], + ['invalidate_136',['Invalidate',['../classIpopt_1_1DependentResult.html#a8289bd38cdc1588d3e49fc80441cc22e',1,'Ipopt::DependentResult']]], + ['invalidateresult_137',['InvalidateResult',['../classIpopt_1_1CachedResults.html#a4f5dbf98deb6438dd5cef7162600c3b5',1,'Ipopt::CachedResults']]], + ['invp_5f_138',['INVP_',['../classIpopt_1_1WsmpSolverInterface.html#a4b23f58fd68a0199c085433781f8ee0d',1,'Ipopt::WsmpSolverInterface']]], + ['iostat_139',['iostat',['../structma77__info__d.html#aed7ded9b25f6271f36f7b4ec7476aec4',1,'ma77_info_d::iostat'],['../structma77__info__s.html#ad3dc8b5c1e51044ed05d0944f2732c46',1,'ma77_info_s::iostat'],['../structmc68__info__i.html#a924bc2e32a43b1b759b1b9815ba3c59f',1,'mc68_info_i::iostat']]], + ['ip_5fcq_5f_140',['ip_cq_',['../classIpopt_1_1IpoptApplication.html#abb249b2e86584d279bdf5e254ca9094e',1,'Ipopt::IpoptApplication::ip_cq_'],['../classIpopt_1_1SensApplication.html#a335960efe34d7d406ce145a060df7394',1,'Ipopt::SensApplication::ip_cq_'],['../classIpopt_1_1StdInterfaceTNLP.html#a0778c94409d27fc57d3a9b31ea02d44f',1,'Ipopt::StdInterfaceTNLP::ip_cq_'],['../classIpopt_1_1CGPenaltyCq.html#a1955a1bbf1375c101fce1bba0326b199',1,'Ipopt::CGPenaltyCq::ip_cq_'],['../classIpopt_1_1AlgorithmStrategyObject.html#a1c339999b0232bdaefc1fb7c623ad761',1,'Ipopt::AlgorithmStrategyObject::ip_cq_'],['../classIpopt_1_1InexactCq.html#a76e7f750bab7b1af0114a8de99861f1c',1,'Ipopt::InexactCq::ip_cq_']]], + ['ip_5fdata_5f_141',['ip_data_',['../classIpopt_1_1InexactCq.html#ab711ea6dbaf4bd60f7a64ab60d8eb60b',1,'Ipopt::InexactCq::ip_data_'],['../classIpopt_1_1AlgorithmStrategyObject.html#a300fab52e53ccee1223bfaa1585129db',1,'Ipopt::AlgorithmStrategyObject::ip_data_'],['../classIpopt_1_1IpoptCalculatedQuantities.html#a086e2aae9531fc882e2b0a92aed6ef4f',1,'Ipopt::IpoptCalculatedQuantities::ip_data_'],['../classIpopt_1_1CGPenaltyCq.html#adf8a9a01f87558a8d9c9e6372dc147e8',1,'Ipopt::CGPenaltyCq::ip_data_'],['../classIpopt_1_1IpoptApplication.html#ab62194fff9521997d28d9befb6922e07',1,'Ipopt::IpoptApplication::ip_data_'],['../classIpopt_1_1StdInterfaceTNLP.html#af10e7bdc6187d34ef274f58cf61b330f',1,'Ipopt::StdInterfaceTNLP::ip_data_'],['../classIpopt_1_1SensApplication.html#a282b4bf2ae4db792021510e85f21b910',1,'Ipopt::SensApplication::ip_data_']]], + ['ip_5fnlp_5f_142',['ip_nlp_',['../classIpopt_1_1IpoptApplication.html#a5b4190f5db621825c8d0805d7124f8fb',1,'Ipopt::IpoptApplication::ip_nlp_'],['../classIpopt_1_1SensApplication.html#a2888fa79b4a1e8918300fc564348592d',1,'Ipopt::SensApplication::ip_nlp_'],['../classIpopt_1_1InexactCq.html#a2064455be48c8985848f5b6ccd43e98b',1,'Ipopt::InexactCq::ip_nlp_'],['../classIpopt_1_1CGPenaltyCq.html#ab3aa6277ce982fda386639c1141eb18a',1,'Ipopt::CGPenaltyCq::ip_nlp_'],['../classIpopt_1_1IpoptCalculatedQuantities.html#acdc16cf1dcb29734da5ac8fb1f610506',1,'Ipopt::IpoptCalculatedQuantities::ip_nlp_'],['../classIpopt_1_1AlgorithmStrategyObject.html#a52e6df16538cc859e99cb764e67b9acf',1,'Ipopt::AlgorithmStrategyObject::ip_nlp_']]], + ['ipadaptivemuupdate_2ehpp_143',['IpAdaptiveMuUpdate.hpp',['../IpAdaptiveMuUpdate_8hpp.html',1,'']]], + ['ipalgbuilder_2ehpp_144',['IpAlgBuilder.hpp',['../IpAlgBuilder_8hpp.html',1,'']]], + ['ipalgorithmregop_2ehpp_145',['IpAlgorithmRegOp.hpp',['../IpAlgorithmRegOp_8hpp.html',1,'']]], + ['ipalgstrategy_2ehpp_146',['IpAlgStrategy.hpp',['../IpAlgStrategy_8hpp.html',1,'']]], + ['ipalgtypes_2ehpp_147',['IpAlgTypes.hpp',['../IpAlgTypes_8hpp.html',1,'']]], + ['iparm_5f_148',['iparm_',['../classIpopt_1_1WsmpSolverInterface.html#ab1f06ae436a167e11fdfac0c0dc58f7d',1,'Ipopt::WsmpSolverInterface::IPARM_'],['../classIpopt_1_1IterativePardisoSolverInterface.html#ad8d379b4411ebb2a92826dec19f4f063',1,'Ipopt::IterativePardisoSolverInterface::IPARM_'],['../classIpopt_1_1IterativeWsmpSolverInterface.html#a444879d68e90f950c07b662108bb8ea7',1,'Ipopt::IterativeWsmpSolverInterface::IPARM_'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a89e489b526dfa9a63271c541799fd184',1,'Ipopt::PardisoMKLSolverInterface::IPARM_'],['../classIpopt_1_1PardisoSolverInterface.html#ad8b16eabbef77f7bfbab8d5fc22e80f4',1,'Ipopt::PardisoSolverInterface::IPARM_']]], + ['ipaugrestosystemsolver_2ehpp_149',['IpAugRestoSystemSolver.hpp',['../IpAugRestoSystemSolver_8hpp.html',1,'']]], + ['ipaugsystemsolver_2ehpp_150',['IpAugSystemSolver.hpp',['../IpAugSystemSolver_8hpp.html',1,'']]], + ['ipbacktrackinglinesearch_2ehpp_151',['IpBacktrackingLineSearch.hpp',['../IpBacktrackingLineSearch_8hpp.html',1,'']]], + ['ipbacktrackinglsacceptor_2ehpp_152',['IpBacktrackingLSAcceptor.hpp',['../IpBacktrackingLSAcceptor_8hpp.html',1,'']]], + ['ipblas_2ehpp_153',['IpBlas.hpp',['../IpBlas_8hpp.html',1,'']]], + ['ipblasasum_154',['IpBlasAsum',['../namespaceIpopt.html#a8908d0b644969c2a0315530356d30796',1,'Ipopt']]], + ['ipblasaxpy_155',['IpBlasAxpy',['../namespaceIpopt.html#aabf3a1affb5c9b78f68f32638d96f4de',1,'Ipopt']]], + ['ipblascopy_156',['IpBlasCopy',['../namespaceIpopt.html#a2ee730db66b01714475679e1cb4a9839',1,'Ipopt']]], + ['ipblasdasum_157',['IpBlasDasum',['../namespaceIpopt.html#aba44a30c4c81e51b33e23e764fca4928',1,'Ipopt']]], + ['ipblasdaxpy_158',['IpBlasDaxpy',['../namespaceIpopt.html#a2127717ab20fe28ef7ea26f4e77434ec',1,'Ipopt']]], + ['ipblasdcopy_159',['IpBlasDcopy',['../namespaceIpopt.html#aeb798741b3d4090123e203007bad4327',1,'Ipopt']]], + ['ipblasddot_160',['IpBlasDdot',['../namespaceIpopt.html#a70260bbc7a8909a4f7a64b8c03267fba',1,'Ipopt']]], + ['ipblasdgemm_161',['IpBlasDgemm',['../namespaceIpopt.html#a9ff710ba3f93d104e523cdff67fbf167',1,'Ipopt']]], + ['ipblasdgemv_162',['IpBlasDgemv',['../namespaceIpopt.html#a5aabd58043e6c936f326b33614350b37',1,'Ipopt']]], + ['ipblasdnrm2_163',['IpBlasDnrm2',['../namespaceIpopt.html#a31699bd6a7395858340026ef800cfc70',1,'Ipopt']]], + ['ipblasdot_164',['IpBlasDot',['../namespaceIpopt.html#ad5f760e13313b7aa051badf6723019a6',1,'Ipopt']]], + ['ipblasdscal_165',['IpBlasDscal',['../namespaceIpopt.html#a070d0102c57e60e372f3002f9caa81d0',1,'Ipopt']]], + ['ipblasdsymv_166',['IpBlasDsymv',['../namespaceIpopt.html#a0c7a7037490774bc74013ce73d7350e2',1,'Ipopt']]], + ['ipblasdsyrk_167',['IpBlasDsyrk',['../namespaceIpopt.html#a0353f674ed98f6f8c7d7eccbe77bb383',1,'Ipopt']]], + ['ipblasdtrsm_168',['IpBlasDtrsm',['../namespaceIpopt.html#a91a787170b2d3c32daaefb1d16078ba7',1,'Ipopt']]], + ['ipblasgemm_169',['IpBlasGemm',['../namespaceIpopt.html#a0109a3bbe5a42b548cecc669be39cc6d',1,'Ipopt']]], + ['ipblasgemv_170',['IpBlasGemv',['../namespaceIpopt.html#acb1ee20627cc8846952b1432cffd8d4d',1,'Ipopt']]], + ['ipblasiamax_171',['IpBlasIamax',['../namespaceIpopt.html#aeaec95453d47234d446d5431edca2d6d',1,'Ipopt']]], + ['ipblasidamax_172',['IpBlasIdamax',['../namespaceIpopt.html#a14636fede44e3f8a3f22918312caca5c',1,'Ipopt']]], + ['ipblasnrm2_173',['IpBlasNrm2',['../namespaceIpopt.html#a1788ba4ece53c1b26645db89ceb40749',1,'Ipopt']]], + ['ipblasscal_174',['IpBlasScal',['../namespaceIpopt.html#a0e788f82fb17bab1e99273d2dfa34f9f',1,'Ipopt']]], + ['ipblassymv_175',['IpBlasSymv',['../namespaceIpopt.html#a796e739b48fe55644bd1310057be8a4b',1,'Ipopt']]], + ['ipblassyrk_176',['IpBlasSyrk',['../namespaceIpopt.html#adf8ee4cb96257a3d3f71d0f196914b97',1,'Ipopt']]], + ['ipblastrsm_177',['IpBlasTrsm',['../namespaceIpopt.html#aa4ede32a36a15de9408d2aeb2ba38b93',1,'Ipopt']]], + ['ipcachedresults_2ehpp_178',['IpCachedResults.hpp',['../IpCachedResults_8hpp.html',1,'']]], + ['ipcgpenaltycq_2ehpp_179',['IpCGPenaltyCq.hpp',['../IpCGPenaltyCq_8hpp.html',1,'']]], + ['ipcgpenaltydata_2ehpp_180',['IpCGPenaltyData.hpp',['../IpCGPenaltyData_8hpp.html',1,'']]], + ['ipcgpenaltylsacceptor_2ehpp_181',['IpCGPenaltyLSAcceptor.hpp',['../IpCGPenaltyLSAcceptor_8hpp.html',1,'']]], + ['ipcgpenaltyregop_2ehpp_182',['IpCGPenaltyRegOp.hpp',['../IpCGPenaltyRegOp_8hpp.html',1,'']]], + ['ipcgperturbationhandler_2ehpp_183',['IpCGPerturbationHandler.hpp',['../IpCGPerturbationHandler_8hpp.html',1,'']]], + ['ipcgsearchdircalc_2ehpp_184',['IpCGSearchDirCalc.hpp',['../IpCGSearchDirCalc_8hpp.html',1,'']]], + ['ipcompoundmatrix_2ehpp_185',['IpCompoundMatrix.hpp',['../IpCompoundMatrix_8hpp.html',1,'']]], + ['ipcompoundsymmatrix_2ehpp_186',['IpCompoundSymMatrix.hpp',['../IpCompoundSymMatrix_8hpp.html',1,'']]], + ['ipcompoundvector_2ehpp_187',['IpCompoundVector.hpp',['../IpCompoundVector_8hpp.html',1,'']]], + ['ipconvcheck_2ehpp_188',['IpConvCheck.hpp',['../IpConvCheck_8hpp.html',1,'']]], + ['ipcq_189',['IpCq',['../classIpopt_1_1AlgorithmStrategyObject.html#a9330e92f6c2fdabb9741d218d9c64f35',1,'Ipopt::AlgorithmStrategyObject']]], + ['ipdata_190',['IpData',['../classIpopt_1_1AlgorithmStrategyObject.html#a097ab7f6103c3345324a257914fff29a',1,'Ipopt::AlgorithmStrategyObject']]], + ['ipdebug_2ehpp_191',['IpDebug.hpp',['../IpDebug_8hpp.html',1,'']]], + ['ipdefaultiterateinitializer_2ehpp_192',['IpDefaultIterateInitializer.hpp',['../IpDefaultIterateInitializer_8hpp.html',1,'']]], + ['ipdensegenmatrix_2ehpp_193',['IpDenseGenMatrix.hpp',['../IpDenseGenMatrix_8hpp.html',1,'']]], + ['ipdensesymmatrix_2ehpp_194',['IpDenseSymMatrix.hpp',['../IpDenseSymMatrix_8hpp.html',1,'']]], + ['ipdensevector_2ehpp_195',['IpDenseVector.hpp',['../IpDenseVector_8hpp.html',1,'']]], + ['ipdiagmatrix_2ehpp_196',['IpDiagMatrix.hpp',['../IpDiagMatrix_8hpp.html',1,'']]], + ['ipeqmultcalculator_2ehpp_197',['IpEqMultCalculator.hpp',['../IpEqMultCalculator_8hpp.html',1,'']]], + ['ipequilibrationscaling_2ehpp_198',['IpEquilibrationScaling.hpp',['../IpEquilibrationScaling_8hpp.html',1,'']]], + ['ipexacthessianupdater_2ehpp_199',['IpExactHessianUpdater.hpp',['../IpExactHessianUpdater_8hpp.html',1,'']]], + ['ipexception_2ehpp_200',['IpException.hpp',['../IpException_8hpp.html',1,'']]], + ['ipexpandedmultivectormatrix_2ehpp_201',['IpExpandedMultiVectorMatrix.hpp',['../IpExpandedMultiVectorMatrix_8hpp.html',1,'']]], + ['ipexpansionmatrix_2ehpp_202',['IpExpansionMatrix.hpp',['../IpExpansionMatrix_8hpp.html',1,'']]], + ['ipfilter_2ehpp_203',['IpFilter.hpp',['../IpFilter_8hpp.html',1,'']]], + ['ipfilterlsacceptor_2ehpp_204',['IpFilterLSAcceptor.hpp',['../IpFilterLSAcceptor_8hpp.html',1,'']]], + ['ipfint_205',['ipfint',['../IpTypes_8h.html#aba735f678a3411ca9f2d041e77c00d66',1,'IpTypes.h']]], + ['ipgenaugsystemsolver_2ehpp_206',['IpGenAugSystemSolver.hpp',['../IpGenAugSystemSolver_8hpp.html',1,'']]], + ['ipgenkktsolverinterface_2ehpp_207',['IpGenKKTSolverInterface.hpp',['../IpGenKKTSolverInterface_8hpp.html',1,'']]], + ['ipgentmatrix_2ehpp_208',['IpGenTMatrix.hpp',['../IpGenTMatrix_8hpp.html',1,'']]], + ['ipgradientscaling_2ehpp_209',['IpGradientScaling.hpp',['../IpGradientScaling_8hpp.html',1,'']]], + ['iphessianupdater_2ehpp_210',['IpHessianUpdater.hpp',['../IpHessianUpdater_8hpp.html',1,'']]], + ['ipidentitymatrix_2ehpp_211',['IpIdentityMatrix.hpp',['../IpIdentityMatrix_8hpp.html',1,'']]], + ['ipindex_212',['ipindex',['../IpTypes_8h.html#ad45d5b046bfaf56789665c747d5a8cb9',1,'IpTypes.h']]], + ['ipinexactalgbuilder_2ehpp_213',['IpInexactAlgBuilder.hpp',['../IpInexactAlgBuilder_8hpp.html',1,'']]], + ['ipinexactcq_2ehpp_214',['IpInexactCq.hpp',['../IpInexactCq_8hpp.html',1,'']]], + ['ipinexactdata_2ehpp_215',['IpInexactData.hpp',['../IpInexactData_8hpp.html',1,'']]], + ['ipinexactdoglegnormal_2ehpp_216',['IpInexactDoglegNormal.hpp',['../IpInexactDoglegNormal_8hpp.html',1,'']]], + ['ipinexactlsacceptor_2ehpp_217',['IpInexactLSAcceptor.hpp',['../IpInexactLSAcceptor_8hpp.html',1,'']]], + ['ipinexactnewtonnormal_2ehpp_218',['IpInexactNewtonNormal.hpp',['../IpInexactNewtonNormal_8hpp.html',1,'']]], + ['ipinexactnormalstepcalc_2ehpp_219',['IpInexactNormalStepCalc.hpp',['../IpInexactNormalStepCalc_8hpp.html',1,'']]], + ['ipinexactnormalterminationtester_2ehpp_220',['IpInexactNormalTerminationTester.hpp',['../IpInexactNormalTerminationTester_8hpp.html',1,'']]], + ['ipinexactpdsolver_2ehpp_221',['IpInexactPDSolver.hpp',['../IpInexactPDSolver_8hpp.html',1,'']]], + ['ipinexactpdterminationtester_2ehpp_222',['IpInexactPDTerminationTester.hpp',['../IpInexactPDTerminationTester_8hpp.html',1,'']]], + ['ipinexactregop_2ehpp_223',['IpInexactRegOp.hpp',['../IpInexactRegOp_8hpp.html',1,'']]], + ['ipinexactsearchdircalc_2ehpp_224',['IpInexactSearchDirCalc.hpp',['../IpInexactSearchDirCalc_8hpp.html',1,'']]], + ['ipinexacttsymscalingmethod_2ehpp_225',['IpInexactTSymScalingMethod.hpp',['../IpInexactTSymScalingMethod_8hpp.html',1,'']]], + ['ipinterfacesregop_2ehpp_226',['IpInterfacesRegOp.hpp',['../IpInterfacesRegOp_8hpp.html',1,'']]], + ['ipipoptalg_2ehpp_227',['IpIpoptAlg.hpp',['../IpIpoptAlg_8hpp.html',1,'']]], + ['ipipoptapplication_2ehpp_228',['IpIpoptApplication.hpp',['../IpIpoptApplication_8hpp.html',1,'']]], + ['ipipoptcalculatedquantities_2ehpp_229',['IpIpoptCalculatedQuantities.hpp',['../IpIpoptCalculatedQuantities_8hpp.html',1,'']]], + ['ipipoptdata_2ehpp_230',['IpIpoptData.hpp',['../IpIpoptData_8hpp.html',1,'']]], + ['ipipoptnlp_2ehpp_231',['IpIpoptNLP.hpp',['../IpIpoptNLP_8hpp.html',1,'']]], + ['ipiterateinitializer_2ehpp_232',['IpIterateInitializer.hpp',['../IpIterateInitializer_8hpp.html',1,'']]], + ['ipiteratesvector_2ehpp_233',['IpIteratesVector.hpp',['../IpIteratesVector_8hpp.html',1,'']]], + ['ipiterationoutput_2ehpp_234',['IpIterationOutput.hpp',['../IpIterationOutput_8hpp.html',1,'']]], + ['ipiterativepardisosolverinterface_2ehpp_235',['IpIterativePardisoSolverInterface.hpp',['../IpIterativePardisoSolverInterface_8hpp.html',1,'']]], + ['ipiterativesolverterminationtester_2ehpp_236',['IpIterativeSolverTerminationTester.hpp',['../IpIterativeSolverTerminationTester_8hpp.html',1,'']]], + ['ipiterativewsmpsolverinterface_2ehpp_237',['IpIterativeWsmpSolverInterface.hpp',['../IpIterativeWsmpSolverInterface_8hpp.html',1,'']]], + ['ipjournalist_2ehpp_238',['IpJournalist.hpp',['../IpJournalist_8hpp.html',1,'']]], + ['iplapack_2ehpp_239',['IpLapack.hpp',['../IpLapack_8hpp.html',1,'']]], + ['iplapackdgetrf_240',['IpLapackDgetrf',['../namespaceIpopt.html#ab47c87a634ea97578b63fff954881afa',1,'Ipopt']]], + ['iplapackdgetrs_241',['IpLapackDgetrs',['../namespaceIpopt.html#ac7cbff492238449c15db99e6f2533aa5',1,'Ipopt']]], + ['iplapackdpotrf_242',['IpLapackDpotrf',['../namespaceIpopt.html#ababb84d11b335fe27a4a961562a72b09',1,'Ipopt']]], + ['iplapackdpotrs_243',['IpLapackDpotrs',['../namespaceIpopt.html#acd5f4a8d718d8cff78e9ff21978bc80a',1,'Ipopt']]], + ['iplapackdppsv_244',['IpLapackDppsv',['../namespaceIpopt.html#a54c930239df9cadedeed9e1d8db3ea29',1,'Ipopt']]], + ['iplapackdsyev_245',['IpLapackDsyev',['../namespaceIpopt.html#ac2e68bbb60619818b22fde4b55171543',1,'Ipopt']]], + ['iplapackgetrf_246',['IpLapackGetrf',['../namespaceIpopt.html#aa6b8e1f4c39693fe036898493dde4a6e',1,'Ipopt']]], + ['iplapackgetrs_247',['IpLapackGetrs',['../namespaceIpopt.html#ac7c1650c485ae7ca85ee0ee931f8f94b',1,'Ipopt']]], + ['iplapackpotrf_248',['IpLapackPotrf',['../namespaceIpopt.html#aec3e9cb20336135bd9c927472bed37b8',1,'Ipopt']]], + ['iplapackpotrs_249',['IpLapackPotrs',['../namespaceIpopt.html#a3a2c81fb4a417298372e0de530ad63c5',1,'Ipopt']]], + ['iplapackppsv_250',['IpLapackPpsv',['../namespaceIpopt.html#a68b8774e6672b678c0ff595550352f0a',1,'Ipopt']]], + ['iplapacksyev_251',['IpLapackSyev',['../namespaceIpopt.html#a94450be4fdf58f260ef5cb21cb37593b',1,'Ipopt']]], + ['ipleastsquaremults_2ehpp_252',['IpLeastSquareMults.hpp',['../IpLeastSquareMults_8hpp.html',1,'']]], + ['iplibraryloader_2ehpp_253',['IpLibraryLoader.hpp',['../IpLibraryLoader_8hpp.html',1,'']]], + ['iplimmemquasinewtonupdater_2ehpp_254',['IpLimMemQuasiNewtonUpdater.hpp',['../IpLimMemQuasiNewtonUpdater_8hpp.html',1,'']]], + ['iplinearsolvers_2eh_255',['IpLinearSolvers.h',['../IpLinearSolvers_8h.html',1,'']]], + ['iplinearsolversregop_2ehpp_256',['IpLinearSolversRegOp.hpp',['../IpLinearSolversRegOp_8hpp.html',1,'']]], + ['iplinesearch_2ehpp_257',['IpLineSearch.hpp',['../IpLineSearch_8hpp.html',1,'']]], + ['iploqomuoracle_2ehpp_258',['IpLoqoMuOracle.hpp',['../IpLoqoMuOracle_8hpp.html',1,'']]], + ['iplowrankaugsystemsolver_2ehpp_259',['IpLowRankAugSystemSolver.hpp',['../IpLowRankAugSystemSolver_8hpp.html',1,'']]], + ['iplowrankssaugsystemsolver_2ehpp_260',['IpLowRankSSAugSystemSolver.hpp',['../IpLowRankSSAugSystemSolver_8hpp.html',1,'']]], + ['iplowrankupdatesymmatrix_2ehpp_261',['IpLowRankUpdateSymMatrix.hpp',['../IpLowRankUpdateSymMatrix_8hpp.html',1,'']]], + ['ipma27tsolverinterface_2ehpp_262',['IpMa27TSolverInterface.hpp',['../IpMa27TSolverInterface_8hpp.html',1,'']]], + ['ipma28tdependencydetector_2ehpp_263',['IpMa28TDependencyDetector.hpp',['../IpMa28TDependencyDetector_8hpp.html',1,'']]], + ['ipma57tsolverinterface_2ehpp_264',['IpMa57TSolverInterface.hpp',['../IpMa57TSolverInterface_8hpp.html',1,'']]], + ['ipma77solverinterface_2ehpp_265',['IpMa77SolverInterface.hpp',['../IpMa77SolverInterface_8hpp.html',1,'']]], + ['ipma86solverinterface_2ehpp_266',['IpMa86SolverInterface.hpp',['../IpMa86SolverInterface_8hpp.html',1,'']]], + ['ipma97solverinterface_2ehpp_267',['IpMa97SolverInterface.hpp',['../IpMa97SolverInterface_8hpp.html',1,'']]], + ['ipmatrix_2ehpp_268',['IpMatrix.hpp',['../IpMatrix_8hpp.html',1,'']]], + ['ipmc19tsymscalingmethod_2ehpp_269',['IpMc19TSymScalingMethod.hpp',['../IpMc19TSymScalingMethod_8hpp.html',1,'']]], + ['ipmonotonemuupdate_2ehpp_270',['IpMonotoneMuUpdate.hpp',['../IpMonotoneMuUpdate_8hpp.html',1,'']]], + ['ipmultivectormatrix_2ehpp_271',['IpMultiVectorMatrix.hpp',['../IpMultiVectorMatrix_8hpp.html',1,'']]], + ['ipmumpssolverinterface_2ehpp_272',['IpMumpsSolverInterface.hpp',['../IpMumpsSolverInterface_8hpp.html',1,'']]], + ['ipmuoracle_2ehpp_273',['IpMuOracle.hpp',['../IpMuOracle_8hpp.html',1,'']]], + ['ipmuupdate_2ehpp_274',['IpMuUpdate.hpp',['../IpMuUpdate_8hpp.html',1,'']]], + ['ipnlp_275',['IpNLP',['../classIpopt_1_1AlgorithmStrategyObject.html#add7ef129a410b51b3db14a12dea1fd03',1,'Ipopt::AlgorithmStrategyObject']]], + ['ipnlp_2ehpp_276',['IpNLP.hpp',['../IpNLP_8hpp.html',1,'']]], + ['ipnlpboundsremover_2ehpp_277',['IpNLPBoundsRemover.hpp',['../IpNLPBoundsRemover_8hpp.html',1,'']]], + ['ipnlpscaling_2ehpp_278',['IpNLPScaling.hpp',['../IpNLPScaling_8hpp.html',1,'']]], + ['ipnumber_279',['ipnumber',['../IpTypes_8h.html#a5db07e705790a30d1c9081e6910c8b27',1,'IpTypes.h']]], + ['ipobserver_2ehpp_280',['IpObserver.hpp',['../IpObserver_8hpp.html',1,'']]], + ['ipopt_281',['ipopt',['../INSTALL.html#COMPILEINSTALL',1,'Compiling and Installing Ipopt'],['../index.html#HISTORY_IPOPT',1,'History of Ipopt'],['../FAQ.html#autotoc_md1',1,'How do I use Ipopt?'],['../index.html#HOWTOUSE',1,'How to use Ipopt'],['../INSTALL.html',1,'Installing Ipopt'],['../INTERFACES.html',1,'Interfacing your NLP to Ipopt'],['../classorg_1_1coinor_1_1Ipopt.html#ab140cae4c428047f583ca789df5e5495',1,'org.coinor.Ipopt.Ipopt()'],['../namespaceIpopt.html',1,'Ipopt'],['../classorg_1_1coinor_1_1Ipopt.html',1,'org.coinor.Ipopt'],['../classorg_1_1coinor_1_1Ipopt.html#a400135e918a4b6377ea4581411ac2298',1,'org.coinor.Ipopt.Ipopt(String path, String DLL)'],['../classorg_1_1coinor_1_1Ipopt.html#a3f65d8c507f1ac7b3386dcd92e9a70e8',1,'org.coinor.Ipopt.Ipopt(String DLL)'],['../classorg_1_1coinor_1_1Ipopt.html#aaccf6965122e89d86f4ac57d950787e7',1,'org.coinor.Ipopt.ipopt'],['../SPECIALS.html#SIPOPT',1,'sIpopt: Optimal Sensitivity Based on Ipopt'],['../FAQ.html#autotoc_md3',1,'What do I need to build Ipopt?'],['../FAQ.html#autotoc_md0',1,'What is Ipopt?'],['../FAQ.html#autotoc_md6',1,'What is the method behind Ipopt?'],['../FAQ.html#autotoc_md7',1,'Who do I contact with questions about Ipopt?']]], + ['ipopt_20be_20used_282',['On what operating systems can Ipopt be used?',['../FAQ.html#autotoc_md4',1,'']]], + ['ipopt_20code_283',['Getting the Ipopt Code',['../INSTALL.html#GETIPOPT',1,'']]], + ['ipopt_20code_20as_20a_20tarball_284',['Getting the Ipopt code as a tarball',['../INSTALL.html#GETIPOPT_TAR',1,'']]], + ['ipopt_20code_20via_20git_285',['Getting the Ipopt code via git',['../INSTALL.html#GETIPOPT_GIT',1,'']]], + ['ipopt_20from_20the_20command_20line_286',['Using Ipopt from the command line',['../INTERFACES.html#INTERFACE_AMPL_CL',1,'']]], + ['ipopt_20options_287',['Ipopt Options',['../OPTIONS.html',1,'index']]], + ['ipopt_20output_288',['Ipopt Output',['../OUTPUT.html',1,'index']]], + ['ipopt_20released_20under_289',['What license is Ipopt released under?',['../FAQ.html#autotoc_md2',1,'']]], + ['ipopt_20thread_20safe_290',['Is Ipopt thread-safe?',['../FAQ.html#autotoc_md5',1,'']]], + ['ipopt_20through_20ampl_291',['Using Ipopt through AMPL',['../INTERFACES.html#INTERFACE_AMPL',1,'']]], + ['ipopt_20through_20code_292',['Interfacing with Ipopt through code',['../INTERFACES.html#INTERFACE_CODE',1,'']]], + ['ipopt_2ejava_293',['Ipopt.java',['../Ipopt_8java.html',1,'']]], + ['ipopt_5fblas_5ffunc_294',['IPOPT_BLAS_FUNC',['../config__default_8h.html#ab924fb02d467f6e4842c78bd87219a66',1,'config_default.h']]], + ['ipopt_5fc_5ffinite_295',['IPOPT_C_FINITE',['../config__default_8h.html#aec30f36872c5acb4dee3c14dfa531456',1,'config_default.h']]], + ['ipopt_5fcallconv_296',['IPOPT_CALLCONV',['../IpTypes_8h.html#ae7eaa5fbc2133bb2a78973a87cc7bb5b',1,'IpTypes.h']]], + ['ipopt_5fchecklevel_297',['IPOPT_CHECKLEVEL',['../IpDebug_8hpp.html#aee7eb79e1e5393f437efc832b7919f5c',1,'IpDebug.hpp']]], + ['ipopt_5fdbg_5fsmartptr_5fverbosity_298',['ipopt_dbg_smartptr_verbosity',['../IpSmartPtr_8hpp.html#a471697db00ab19588c793b1b76bbaf60',1,'IpSmartPtr.hpp']]], + ['ipopt_5fdecl_5fma27a_299',['IPOPT_DECL_MA27A',['../IpMa27TSolverInterface_8hpp.html#ad6bab4c0daee3ff96349cbae519ddc5d',1,'IpMa27TSolverInterface.hpp']]], + ['ipopt_5fdecl_5fma27b_300',['IPOPT_DECL_MA27B',['../IpMa27TSolverInterface_8hpp.html#ad42dbbfd7d579fd1b45fe7e017244624',1,'IpMa27TSolverInterface.hpp']]], + ['ipopt_5fdecl_5fma27c_301',['IPOPT_DECL_MA27C',['../IpMa27TSolverInterface_8hpp.html#a4f6f434a1cb91ebdcf31fa2f33ac4d32',1,'IpMa27TSolverInterface.hpp']]], + ['ipopt_5fdecl_5fma27i_302',['IPOPT_DECL_MA27I',['../IpMa27TSolverInterface_8hpp.html#a7a87cf631391836b6af79564851bdda6',1,'IpMa27TSolverInterface.hpp']]], + ['ipopt_5fdecl_5fma57a_303',['IPOPT_DECL_MA57A',['../IpMa57TSolverInterface_8hpp.html#afea7186cc7ee9e0cd6b3652e6544ec04',1,'IpMa57TSolverInterface.hpp']]], + ['ipopt_5fdecl_5fma57b_304',['IPOPT_DECL_MA57B',['../IpMa57TSolverInterface_8hpp.html#a39b131c8eafad02a9e4ceedae8171710',1,'IpMa57TSolverInterface.hpp']]], + ['ipopt_5fdecl_5fma57c_305',['IPOPT_DECL_MA57C',['../IpMa57TSolverInterface_8hpp.html#aa27f36e4dd4560c23b18235da174d540',1,'IpMa57TSolverInterface.hpp']]], + ['ipopt_5fdecl_5fma57e_306',['IPOPT_DECL_MA57E',['../IpMa57TSolverInterface_8hpp.html#a5fd549c1e0038ad8e55325cf3f5481fc',1,'IpMa57TSolverInterface.hpp']]], + ['ipopt_5fdecl_5fma57i_307',['IPOPT_DECL_MA57I',['../IpMa57TSolverInterface_8hpp.html#a98e57dc932efaeabb5c7e693a8863d13',1,'IpMa57TSolverInterface.hpp']]], + ['ipopt_5fdecl_5fma77_5falter_308',['IPOPT_DECL_MA77_ALTER',['../IpMa77SolverInterface_8hpp.html#a6b3ef88fb24f510997bac1937e7351dd',1,'IpMa77SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma77_5fanalyse_309',['IPOPT_DECL_MA77_ANALYSE',['../IpMa77SolverInterface_8hpp.html#a1f4bd7faf007c09644f6e614c12eb05c',1,'IpMa77SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma77_5fdefault_5fcontrol_310',['IPOPT_DECL_MA77_DEFAULT_CONTROL',['../IpMa77SolverInterface_8hpp.html#a6c0816fcd96eb8123ba3a49206e8b368',1,'IpMa77SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma77_5fenquire_5findef_311',['IPOPT_DECL_MA77_ENQUIRE_INDEF',['../IpMa77SolverInterface_8hpp.html#a56989491d1e7c9a752120d7c537ed87b',1,'IpMa77SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma77_5fenquire_5fposdef_312',['IPOPT_DECL_MA77_ENQUIRE_POSDEF',['../IpMa77SolverInterface_8hpp.html#ac36293ddea8924546ce48667ef22db38',1,'IpMa77SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma77_5ffactor_313',['IPOPT_DECL_MA77_FACTOR',['../IpMa77SolverInterface_8hpp.html#ad162b2637a20f84c9bf1a1749bd6ccbe',1,'IpMa77SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma77_5ffactor_5fsolve_314',['IPOPT_DECL_MA77_FACTOR_SOLVE',['../IpMa77SolverInterface_8hpp.html#a419f37f1cae86a78a9cf24c34aac24c8',1,'IpMa77SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma77_5ffinalise_315',['IPOPT_DECL_MA77_FINALISE',['../IpMa77SolverInterface_8hpp.html#abcce1d599ccb9d5449ef219642465c2e',1,'IpMa77SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma77_5finput_5freals_316',['IPOPT_DECL_MA77_INPUT_REALS',['../IpMa77SolverInterface_8hpp.html#a3b13de3ab079494f16d94d9994e8642d',1,'IpMa77SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma77_5finput_5fvars_317',['IPOPT_DECL_MA77_INPUT_VARS',['../IpMa77SolverInterface_8hpp.html#a7d130867da1c8f9be01c76b3371823c5',1,'IpMa77SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma77_5fopen_318',['IPOPT_DECL_MA77_OPEN',['../IpMa77SolverInterface_8hpp.html#ae74c1f76eff22f4a24e20afca6dc9cf1',1,'IpMa77SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma77_5fopen_5fnelt_319',['IPOPT_DECL_MA77_OPEN_NELT',['../IpMa77SolverInterface_8hpp.html#aeb361e232ca0be20874d43bf1936dad6',1,'IpMa77SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma77_5fresid_320',['IPOPT_DECL_MA77_RESID',['../IpMa77SolverInterface_8hpp.html#a31510926ef625d311d8a5148b083c061',1,'IpMa77SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma77_5frestart_321',['IPOPT_DECL_MA77_RESTART',['../IpMa77SolverInterface_8hpp.html#a3efca207c126ab016d936cd5c33465b7',1,'IpMa77SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma77_5fscale_322',['IPOPT_DECL_MA77_SCALE',['../IpMa77SolverInterface_8hpp.html#abed2d575339f64fdcad4f94021a4f0d0',1,'IpMa77SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma77_5fsolve_323',['IPOPT_DECL_MA77_SOLVE',['../IpMa77SolverInterface_8hpp.html#aadc83c94cb8ff3f35286a4dedf2343bb',1,'IpMa77SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma86_5fanalyse_324',['IPOPT_DECL_MA86_ANALYSE',['../IpMa86SolverInterface_8hpp.html#ad7ec5cce318c358de1ebfac9a1f92f97',1,'IpMa86SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma86_5fdefault_5fcontrol_325',['IPOPT_DECL_MA86_DEFAULT_CONTROL',['../IpMa86SolverInterface_8hpp.html#a6e1f20ac31d39ca75ad51f4318a31ff6',1,'IpMa86SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma86_5ffactor_326',['IPOPT_DECL_MA86_FACTOR',['../IpMa86SolverInterface_8hpp.html#a9237e9f021bcc7a4b19b15a8fd0323e4',1,'IpMa86SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma86_5ffactor_5fsolve_327',['IPOPT_DECL_MA86_FACTOR_SOLVE',['../IpMa86SolverInterface_8hpp.html#a00b0c28b3ae276d6dd96d728bc2be618',1,'IpMa86SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma86_5ffinalise_328',['IPOPT_DECL_MA86_FINALISE',['../IpMa86SolverInterface_8hpp.html#a9cc74914db4c4bf89a8284125214aae2',1,'IpMa86SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma86_5fsolve_329',['IPOPT_DECL_MA86_SOLVE',['../IpMa86SolverInterface_8hpp.html#a446f1f04af22019ff7e4a4cbefde21ba',1,'IpMa86SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma97_5fanalyse_330',['IPOPT_DECL_MA97_ANALYSE',['../IpMa97SolverInterface_8hpp.html#acc01e94f62ba2e87890a26e89bebd016',1,'IpMa97SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma97_5fdefault_5fcontrol_331',['IPOPT_DECL_MA97_DEFAULT_CONTROL',['../IpMa97SolverInterface_8hpp.html#aae8248e964814e08e10d8df96df1766a',1,'IpMa97SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma97_5ffactor_332',['IPOPT_DECL_MA97_FACTOR',['../IpMa97SolverInterface_8hpp.html#aeaabc23efbf6d3b3802d28eb3d03f1cd',1,'IpMa97SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma97_5ffactor_5fsolve_333',['IPOPT_DECL_MA97_FACTOR_SOLVE',['../IpMa97SolverInterface_8hpp.html#ab6bde8cd3df06b9ecffb82e9a1f60621',1,'IpMa97SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma97_5ffinalise_334',['IPOPT_DECL_MA97_FINALISE',['../IpMa97SolverInterface_8hpp.html#a3b0284c0f2ec24b261d7b97a038e573d',1,'IpMa97SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma97_5ffree_5fakeep_335',['IPOPT_DECL_MA97_FREE_AKEEP',['../IpMa97SolverInterface_8hpp.html#a2c0001019565cd84d4e829b8afa4005e',1,'IpMa97SolverInterface.hpp']]], + ['ipopt_5fdecl_5fma97_5fsolve_336',['IPOPT_DECL_MA97_SOLVE',['../IpMa97SolverInterface_8hpp.html#a56a892db13b99dfee492e05373d115d1',1,'IpMa97SolverInterface.hpp']]], + ['ipopt_5fdecl_5fmc19a_337',['IPOPT_DECL_MC19A',['../IpMc19TSymScalingMethod_8hpp.html#a9a1040df91c6349975daa3ad39af7581',1,'IpMc19TSymScalingMethod.hpp']]], + ['ipopt_5fdecl_5fmc68_5fdefault_5fcontrol_338',['IPOPT_DECL_MC68_DEFAULT_CONTROL',['../IpMa77SolverInterface_8hpp.html#a28ff1436be5d02027327ea8354b27122',1,'IpMa77SolverInterface.hpp']]], + ['ipopt_5fdecl_5fmc68_5forder_339',['IPOPT_DECL_MC68_ORDER',['../IpMa77SolverInterface_8hpp.html#a0796d9c202801260ce8db14940d29b29',1,'IpMa77SolverInterface.hpp']]], + ['ipopt_5fdecl_5fpardiso_340',['IPOPT_DECL_PARDISO',['../IpPardisoSolverInterface_8hpp.html#a51db38aa19fe7bd16897a84b125a7695',1,'IpPardisoSolverInterface.hpp']]], + ['ipopt_5fdecl_5fpardisoinit_341',['IPOPT_DECL_PARDISOINIT',['../IpPardisoSolverInterface_8hpp.html#a7c232a8f2dea188eb23655695d0be950',1,'IpPardisoSolverInterface.hpp']]], + ['ipopt_5fdecl_5fsetipoptcallbackfunction_342',['IPOPT_DECL_SETIPOPTCALLBACKFUNCTION',['../IpIterativePardisoSolverInterface_8hpp.html#acd95eacf8295c848cff182fe0221a9b7',1,'IpIterativePardisoSolverInterface.hpp']]], + ['ipopt_5fdecl_5fsmat_5freordering_5fpardiso_5fwsmp_343',['IPOPT_DECL_SMAT_REORDERING_PARDISO_WSMP',['../IpPardisoSolverInterface_8hpp.html#a3f4a38a97f359a9dcd8b6f1dce1fa843',1,'IpPardisoSolverInterface.hpp']]], + ['ipopt_5fdeprecated_344',['IPOPT_DEPRECATED',['../IpTypes_8h.html#a24c578b20e2cd4eeb0060056ea13cbe5',1,'IpTypes.h']]], + ['ipopt_5ffortran_5finteger_5ftype_345',['IPOPT_FORTRAN_INTEGER_TYPE',['../config__ipopt__default_8h.html#a28cc129767c9fd377d1a449b433c4190',1,'config_ipopt_default.h']]], + ['ipopt_5fhas_5flapack_346',['IPOPT_HAS_LAPACK',['../config__default_8h.html#aa57ac9c99e9cc69e98d794dbfcd107ca',1,'config_default.h']]], + ['ipopt_5findex_5fformat_347',['IPOPT_INDEX_FORMAT',['../IpTypes_8h.html#a1c42c0877cf9a97cd6fe771769a0754b',1,'IpTypes.h']]], + ['ipopt_5flapack_5ffunc_348',['IPOPT_LAPACK_FUNC',['../config__default_8h.html#af8ba164b2911f1ff6ac15a0453dbabba',1,'config_default.h']]], + ['ipopt_5fname_5f_349',['ipopt_name_',['../classIpopt_1_1AmplOptionsList_1_1PrivatInfo.html#a4b1c32a1843ffec34cb4d483613a409d',1,'Ipopt::AmplOptionsList::PrivatInfo']]], + ['ipopt_5foption_5fname_5f_350',['ipopt_option_name_',['../classIpopt_1_1AmplOptionsList_1_1AmplOption.html#a7dfaab40e7dd285b5cb8d02e5322a6a1',1,'Ipopt::AmplOptionsList::AmplOption']]], + ['ipopt_5fpardiso_5ffunc_351',['IPOPT_PARDISO_FUNC',['../config__default_8h.html#afdd4f08c71f65f539cead88f16217a52',1,'config_default.h']]], + ['ipopt_5fretval_5f_352',['ipopt_retval_',['../classIpopt_1_1SensApplication.html#aa6c246fe22960a3c0c1678a869230264',1,'Ipopt::SensApplication']]], + ['ipopt_5fsharedlibext_353',['IPOPT_SHAREDLIBEXT',['../IpLibraryLoader_8hpp.html#ad237f33f45491342dcbeb3323238276b',1,'IpLibraryLoader.hpp']]], + ['ipopt_5funused_354',['IPOPT_UNUSED',['../IpTypes_8h.html#a0a972dee3128bbb38cad3cebd28b9fd8',1,'IpTypes.h']]], + ['ipopt_5fverbosity_355',['IPOPT_VERBOSITY',['../IpDebug_8hpp.html#a5d050e78bd81677969d6b3850b1624a4',1,'IpDebug.hpp']]], + ['ipopt_5fversion_356',['IPOPT_VERSION',['../config__ipopt__default_8h.html#ae6e2b435f494a5893263d76df0ba0fe5',1,'config_ipopt_default.h']]], + ['ipopt_5fversion_5fmajor_357',['IPOPT_VERSION_MAJOR',['../config__ipopt__default_8h.html#a1c9883b0dbf1bf8994f95598ca98420a',1,'config_ipopt_default.h']]], + ['ipopt_5fversion_5fminor_358',['IPOPT_VERSION_MINOR',['../config__ipopt__default_8h.html#a79fcb3906f022813a3b5e80cebee44cc',1,'config_ipopt_default.h']]], + ['ipopt_5fversion_5frelease_359',['IPOPT_VERSION_RELEASE',['../config__ipopt__default_8h.html#afd6068406ee4d83a3abb26249b8fd421',1,'config_ipopt_default.h']]], + ['ipopt_5fwsmp_5ffunc_360',['IPOPT_WSMP_FUNC',['../config__default_8h.html#a4648adf92cc2c04c0a61c44372f7654d',1,'config_default.h']]], + ['ipopt_5fwsmp_5ffunc_5f_361',['IPOPT_WSMP_FUNC_',['../config__default_8h.html#a741bbd00c3ce862235fb0cf42deb2152',1,'config_default.h']]], + ['ipoptadditionalcq_362',['ipoptadditionalcq',['../classIpopt_1_1IpoptAdditionalCq.html',1,'Ipopt::IpoptAdditionalCq'],['../classIpopt_1_1IpoptAdditionalCq.html#a03e0d8c68bb88c98ec23d420518d5fe0',1,'Ipopt::IpoptAdditionalCq::IpoptAdditionalCq()'],['../classIpopt_1_1IpoptAdditionalCq.html#ac1ab46fdfb27185a509aa3b765a77b1b',1,'Ipopt::IpoptAdditionalCq::IpoptAdditionalCq(const IpoptAdditionalCq &)']]], + ['ipoptadditionaldata_363',['ipoptadditionaldata',['../classIpopt_1_1IpoptAdditionalData.html',1,'Ipopt::IpoptAdditionalData'],['../classIpopt_1_1IpoptAdditionalData.html#a272b22742fd907a4370efc176fd23e8b',1,'Ipopt::IpoptAdditionalData::IpoptAdditionalData()'],['../classIpopt_1_1IpoptAdditionalData.html#a2f563e943e06db93cbf0260f5456f045',1,'Ipopt::IpoptAdditionalData::IpoptAdditionalData(const IpoptAdditionalData &)']]], + ['ipoptalgorithm_364',['ipoptalgorithm',['../classIpopt_1_1IpoptAlgorithm.html',1,'Ipopt::IpoptAlgorithm'],['../classIpopt_1_1IpoptAlgorithm.html#ad4c9f88e50caf9561af1ff076e940060',1,'Ipopt::IpoptAlgorithm::IpoptAlgorithm(const SmartPtr< SearchDirectionCalculator > &search_dir_calculator, const SmartPtr< LineSearch > &line_search, const SmartPtr< MuUpdate > &mu_update, const SmartPtr< ConvergenceCheck > &conv_check, const SmartPtr< IterateInitializer > &iterate_initializer, const SmartPtr< IterationOutput > &iter_output, const SmartPtr< HessianUpdater > &hessian_updater, const SmartPtr< EqMultiplierCalculator > &eq_multiplier_calculator=NULL, const std::string &linear_solver_name="")'],['../classIpopt_1_1IpoptAlgorithm.html#a0ad61e8f4c25f363593a0d0305610339',1,'Ipopt::IpoptAlgorithm::IpoptAlgorithm()'],['../classIpopt_1_1IpoptAlgorithm.html#a6a8218a6544e0a698019ea0f32154cd8',1,'Ipopt::IpoptAlgorithm::IpoptAlgorithm(const IpoptAlgorithm &)']]], + ['ipoptapplication_365',['ipoptapplication',['../classIpopt_1_1IpoptApplication.html',1,'Ipopt::IpoptApplication'],['../classIpopt_1_1IpoptApplication.html#a9eb44ee6ce920890170f63317ffacabf',1,'Ipopt::IpoptApplication::IpoptApplication(bool create_console_out=true, bool create_empty=false)'],['../classIpopt_1_1IpoptApplication.html#a56c37eecd1475a5f73920ae918a49104',1,'Ipopt::IpoptApplication::IpoptApplication(SmartPtr< RegisteredOptions > reg_options, SmartPtr< OptionsList > options, SmartPtr< Journalist > jnlst)'],['../classIpopt_1_1IpoptApplication.html#a5417dbc747fa39a9a2871496f7785f34',1,'Ipopt::IpoptApplication::IpoptApplication(const IpoptApplication &)']]], + ['ipoptapplicationfactory_366',['IpoptApplicationFactory',['../IpIpoptApplication_8hpp.html#a5cd86aa283cdc6ebfdae28c1d673f48a',1,'IpIpoptApplication.hpp']]], + ['ipoptcalculatedquantities_367',['ipoptcalculatedquantities',['../classIpopt_1_1IpoptCalculatedQuantities.html#aaabdaaa20130f495bf17b8b89a7050bf',1,'Ipopt::IpoptCalculatedQuantities::IpoptCalculatedQuantities(const SmartPtr< IpoptNLP > &ip_nlp, const SmartPtr< IpoptData > &ip_data)'],['../classIpopt_1_1IpoptCalculatedQuantities.html#a1628eccfc53c0411519a36afedef7c92',1,'Ipopt::IpoptCalculatedQuantities::IpoptCalculatedQuantities()'],['../classIpopt_1_1IpoptCalculatedQuantities.html#a45b6312ec70c6bdf2319a8bec74a1e83',1,'Ipopt::IpoptCalculatedQuantities::IpoptCalculatedQuantities(const IpoptCalculatedQuantities &)'],['../classIpopt_1_1IpoptCalculatedQuantities.html',1,'Ipopt::IpoptCalculatedQuantities']]], + ['ipoptconfig_2eh_368',['IpoptConfig.h',['../IpoptConfig_8h.html',1,'']]], + ['ipoptcqobject_369',['IpoptCQObject',['../classIpopt_1_1IpoptApplication.html#aa502732a3dee5acae7f6c44b6070216f',1,'Ipopt::IpoptApplication']]], + ['ipoptdata_370',['ipoptdata',['../classIpopt_1_1IpoptData.html#ada1c79e9529b534a5aa92d4893200e3b',1,'Ipopt::IpoptData::IpoptData(SmartPtr< IpoptAdditionalData > add_data=NULL)'],['../classIpopt_1_1IpoptData.html#a7783c9076f9e6057786e6658165a4f76',1,'Ipopt::IpoptData::IpoptData(const IpoptData &)'],['../classIpopt_1_1IpoptData.html',1,'Ipopt::IpoptData']]], + ['ipoptdataobject_371',['IpoptDataObject',['../classIpopt_1_1IpoptApplication.html#a7d68d480c78209eca6acba01e40181f7',1,'Ipopt::IpoptApplication']]], + ['ipopterrorconvcheck_2ehpp_372',['IpOptErrorConvCheck.hpp',['../IpOptErrorConvCheck_8hpp.html',1,'']]], + ['ipoptexception_373',['ipoptexception',['../classIpopt_1_1IpoptException.html',1,'Ipopt::IpoptException'],['../classIpopt_1_1IpoptException.html#a0ddf344ee3efe49405923a61352e6e58',1,'Ipopt::IpoptException::IpoptException(const std::string &msg, const std::string &file_name, Index line_number, const std::string &type="IpoptException")'],['../classIpopt_1_1IpoptException.html#aa85913719ac340e29cd0115e2ec18c35',1,'Ipopt::IpoptException::IpoptException(const IpoptException &copy)'],['../classIpopt_1_1IpoptException.html#af9f46403d01a561e1a97c649b248d903',1,'Ipopt::IpoptException::IpoptException()']]], + ['ipoptgetavailablelinearsolvers_374',['IpoptGetAvailableLinearSolvers',['../IpLinearSolvers_8h.html#a97a3086006741979fffef682e2c0bf37',1,'IpLinearSolvers.h']]], + ['ipoptionslist_2ehpp_375',['IpOptionsList.hpp',['../IpOptionsList_8hpp.html',1,'']]], + ['ipoptlib_5fexport_376',['ipoptlib_export',['../config__ipopt__default_8h.html#a58bb5c104ee5ff44b7175fc992d89b0b',1,'IPOPTLIB_EXPORT: config_ipopt_default.h'],['../config__default_8h.html#a58bb5c104ee5ff44b7175fc992d89b0b',1,'IPOPTLIB_EXPORT: config_default.h']]], + ['ipoptlinearsolver_377',['IpoptLinearSolver',['../IpLinearSolvers_8h.html#abc6afb8d519c650b8276746508e02ec9',1,'IpLinearSolvers.h']]], + ['ipoptlinearsolver_5fallhsl_378',['IPOPTLINEARSOLVER_ALLHSL',['../IpLinearSolvers_8h.html#aef25e7a8ad501d72f1988b0e2565f9a0',1,'IpLinearSolvers.h']]], + ['ipoptlinearsolver_5fma27_379',['IPOPTLINEARSOLVER_MA27',['../IpLinearSolvers_8h.html#a8402ec41e8721e82c0b66470bb9804fe',1,'IpLinearSolvers.h']]], + ['ipoptlinearsolver_5fma57_380',['IPOPTLINEARSOLVER_MA57',['../IpLinearSolvers_8h.html#a8ba60de3161070fc40652ebde596004c',1,'IpLinearSolvers.h']]], + ['ipoptlinearsolver_5fma77_381',['IPOPTLINEARSOLVER_MA77',['../IpLinearSolvers_8h.html#aa56da0376845c1506565237cb500911b',1,'IpLinearSolvers.h']]], + ['ipoptlinearsolver_5fma86_382',['IPOPTLINEARSOLVER_MA86',['../IpLinearSolvers_8h.html#a44e69ccd41a7315c45e4af74822ada8b',1,'IpLinearSolvers.h']]], + ['ipoptlinearsolver_5fma97_383',['IPOPTLINEARSOLVER_MA97',['../IpLinearSolvers_8h.html#a598fda9d04ae1a1fa00473e0b4e79cce',1,'IpLinearSolvers.h']]], + ['ipoptlinearsolver_5fmc19_384',['IPOPTLINEARSOLVER_MC19',['../IpLinearSolvers_8h.html#a740b760fe7d1b75a58e2d4b389eb2847',1,'IpLinearSolvers.h']]], + ['ipoptlinearsolver_5fmumps_385',['IPOPTLINEARSOLVER_MUMPS',['../IpLinearSolvers_8h.html#a541eace7a51090890bb4a01e49995f6f',1,'IpLinearSolvers.h']]], + ['ipoptlinearsolver_5fpardiso_386',['IPOPTLINEARSOLVER_PARDISO',['../IpLinearSolvers_8h.html#af49a9cce5a6bae83913be4df89d2276e',1,'IpLinearSolvers.h']]], + ['ipoptlinearsolver_5fpardisomkl_387',['IPOPTLINEARSOLVER_PARDISOMKL',['../IpLinearSolvers_8h.html#ac58114381fb9cee137a9d6347023ce2a',1,'IpLinearSolvers.h']]], + ['ipoptlinearsolver_5fspral_388',['IPOPTLINEARSOLVER_SPRAL',['../IpLinearSolvers_8h.html#a57ad048e00b14b269a418151cc2862c4',1,'IpLinearSolvers.h']]], + ['ipoptlinearsolver_5fwsmp_389',['IPOPTLINEARSOLVER_WSMP',['../IpLinearSolvers_8h.html#a0387b968ca839c86a296ca49a662d37e',1,'IpLinearSolvers.h']]], + ['ipoptname_390',['IpoptName',['../classIpopt_1_1AmplOptionsList_1_1PrivatInfo.html#a87b6d074dbb56ba2d3791fc499f7e95e',1,'Ipopt::AmplOptionsList::PrivatInfo']]], + ['ipoptnlp_391',['ipoptnlp',['../classIpopt_1_1IpoptNLP.html#aaa7d01346731a53ee42caca4769b0792',1,'Ipopt::IpoptNLP::IpoptNLP()'],['../classIpopt_1_1IpoptNLP.html',1,'Ipopt::IpoptNLP'],['../classIpopt_1_1IpoptNLP.html#a182f6ee331a78ceeaa16921273d947d8',1,'Ipopt::IpoptNLP::IpoptNLP()']]], + ['ipoptnlpobject_392',['IpoptNLPObject',['../classIpopt_1_1IpoptApplication.html#af7cdf46905fe34bda08a58d16a9b263b',1,'Ipopt::IpoptApplication']]], + ['ipoptoptionname_393',['IpoptOptionName',['../classIpopt_1_1AmplOptionsList_1_1AmplOption.html#a059a65240d21d8573efcd2b3699c3eed',1,'Ipopt::AmplOptionsList::AmplOption']]], + ['ipoptproblem_394',['IpoptProblem',['../IpStdCInterface_8h.html#ae32712b8d014ab2144fee84432e4a347',1,'IpStdCInterface.h']]], + ['ipoptr_395',['ipoptr',['../INSTALL.html#INSTALL_R',1,'Compiling and Installing the R Interface ipoptr'],['../INTERFACES.html#INTERFACE_R',1,'The R Interface ipoptr']]], + ['ipoptsolve_396',['IpoptSolve',['../IpStdCInterface_8h.html#a5a68928c505f008c1245088bca5b7b16',1,'IpStdCInterface.h']]], + ['iporigipoptnlp_2ehpp_397',['IpOrigIpoptNLP.hpp',['../IpOrigIpoptNLP_8hpp.html',1,'']]], + ['iporigiterationoutput_2ehpp_398',['IpOrigIterationOutput.hpp',['../IpOrigIterationOutput_8hpp.html',1,'']]], + ['ipos_5fdouble_5fcompressed_5f_399',['ipos_double_compressed_',['../classIpopt_1_1TripletToCSRConverter.html#a77778d1c463c8b1a602e12b0b450ee11',1,'Ipopt::TripletToCSRConverter']]], + ['ipos_5fdouble_5ftriplet_5f_400',['ipos_double_triplet_',['../classIpopt_1_1TripletToCSRConverter.html#a7c28bbd06089a2a3d95cb3cb79b155a3',1,'Ipopt::TripletToCSRConverter']]], + ['ipos_5ffirst_5f_401',['ipos_first_',['../classIpopt_1_1TripletToCSRConverter.html#afa6e0b3380e7cd9c1d5796689a38408f',1,'Ipopt::TripletToCSRConverter']]], + ['iposfirst_402',['iPosFirst',['../classIpopt_1_1TripletToCSRConverter.html#a7290c5eed03b4a5e9f97039a1f7fd5a5',1,'Ipopt::TripletToCSRConverter']]], + ['ippardisomklsolverinterface_2ehpp_403',['IpPardisoMKLSolverInterface.hpp',['../IpPardisoMKLSolverInterface_8hpp.html',1,'']]], + ['ippardisosolverinterface_2ehpp_404',['IpPardisoSolverInterface.hpp',['../IpPardisoSolverInterface_8hpp.html',1,'']]], + ['ippdfullspacesolver_2ehpp_405',['IpPDFullSpaceSolver.hpp',['../IpPDFullSpaceSolver_8hpp.html',1,'']]], + ['ippdperturbationhandler_2ehpp_406',['IpPDPerturbationHandler.hpp',['../IpPDPerturbationHandler_8hpp.html',1,'']]], + ['ippdsearchdircalc_2ehpp_407',['IpPDSearchDirCalc.hpp',['../IpPDSearchDirCalc_8hpp.html',1,'']]], + ['ippdsystemsolver_2ehpp_408',['IpPDSystemSolver.hpp',['../IpPDSystemSolver_8hpp.html',1,'']]], + ['ippenaltylsacceptor_2ehpp_409',['IpPenaltyLSAcceptor.hpp',['../IpPenaltyLSAcceptor_8hpp.html',1,'']]], + ['ippiecewisepenalty_2ehpp_410',['IpPiecewisePenalty.hpp',['../IpPiecewisePenalty_8hpp.html',1,'']]], + ['ipprobingmuoracle_2ehpp_411',['IpProbingMuOracle.hpp',['../IpProbingMuOracle_8hpp.html',1,'']]], + ['ipqualityfunctionmuoracle_2ehpp_412',['IpQualityFunctionMuOracle.hpp',['../IpQualityFunctionMuOracle_8hpp.html',1,'']]], + ['iprandom01_413',['IpRandom01',['../namespaceIpopt.html#ad4946dd05889013b7bba1ac97c28c176',1,'Ipopt']]], + ['ipreferenced_2ehpp_414',['IpReferenced.hpp',['../IpReferenced_8hpp.html',1,'']]], + ['ipregoptions_2ehpp_415',['IpRegOptions.hpp',['../IpRegOptions_8hpp.html',1,'']]], + ['ipresetrandom01_416',['IpResetRandom01',['../namespaceIpopt.html#a938aa5ecbb75facb7e897709caeed751',1,'Ipopt']]], + ['iprestoconvcheck_2ehpp_417',['IpRestoConvCheck.hpp',['../IpRestoConvCheck_8hpp.html',1,'']]], + ['iprestofilterconvcheck_2ehpp_418',['IpRestoFilterConvCheck.hpp',['../IpRestoFilterConvCheck_8hpp.html',1,'']]], + ['iprestoipoptnlp_2ehpp_419',['IpRestoIpoptNLP.hpp',['../IpRestoIpoptNLP_8hpp.html',1,'']]], + ['iprestoiterateinitializer_2ehpp_420',['IpRestoIterateInitializer.hpp',['../IpRestoIterateInitializer_8hpp.html',1,'']]], + ['iprestoiterationoutput_2ehpp_421',['IpRestoIterationOutput.hpp',['../IpRestoIterationOutput_8hpp.html',1,'']]], + ['iprestominc_5f1nrm_2ehpp_422',['IpRestoMinC_1Nrm.hpp',['../IpRestoMinC__1Nrm_8hpp.html',1,'']]], + ['iprestopenaltyconvcheck_2ehpp_423',['IpRestoPenaltyConvCheck.hpp',['../IpRestoPenaltyConvCheck_8hpp.html',1,'']]], + ['iprestophase_2ehpp_424',['IpRestoPhase.hpp',['../IpRestoPhase_8hpp.html',1,'']]], + ['iprestorestophase_2ehpp_425',['IpRestoRestoPhase.hpp',['../IpRestoRestoPhase_8hpp.html',1,'']]], + ['ipreturncodes_2eh_426',['IpReturnCodes.h',['../IpReturnCodes_8h.html',1,'']]], + ['ipreturncodes_2ehpp_427',['IpReturnCodes.hpp',['../IpReturnCodes_8hpp.html',1,'']]], + ['ipreturncodes_5finc_2eh_428',['IpReturnCodes_inc.h',['../IpReturnCodes__inc_8h.html',1,'']]], + ['ipscaledmatrix_2ehpp_429',['IpScaledMatrix.hpp',['../IpScaledMatrix_8hpp.html',1,'']]], + ['ipsearchdircalculator_2ehpp_430',['IpSearchDirCalculator.hpp',['../IpSearchDirCalculator_8hpp.html',1,'']]], + ['ipslackbasedtsymscalingmethod_2ehpp_431',['IpSlackBasedTSymScalingMethod.hpp',['../IpSlackBasedTSymScalingMethod_8hpp.html',1,'']]], + ['ipsmartptr_2ehpp_432',['IpSmartPtr.hpp',['../IpSmartPtr_8hpp.html',1,'']]], + ['ipsolvestatistics_2ehpp_433',['IpSolveStatistics.hpp',['../IpSolveStatistics_8hpp.html',1,'']]], + ['ipsparsesymlinearsolverinterface_2ehpp_434',['IpSparseSymLinearSolverInterface.hpp',['../IpSparseSymLinearSolverInterface_8hpp.html',1,'']]], + ['ipspralsolverinterface_2ehpp_435',['IpSpralSolverInterface.hpp',['../IpSpralSolverInterface_8hpp.html',1,'']]], + ['ipstdaugsystemsolver_2ehpp_436',['IpStdAugSystemSolver.hpp',['../IpStdAugSystemSolver_8hpp.html',1,'']]], + ['ipstdcinterface_2eh_437',['IpStdCInterface.h',['../IpStdCInterface_8h.html',1,'']]], + ['ipstdinterfacetnlp_2ehpp_438',['IpStdInterfaceTNLP.hpp',['../IpStdInterfaceTNLP_8hpp.html',1,'']]], + ['ipsummatrix_2ehpp_439',['IpSumMatrix.hpp',['../IpSumMatrix_8hpp.html',1,'']]], + ['ipsumsymmatrix_2ehpp_440',['IpSumSymMatrix.hpp',['../IpSumSymMatrix_8hpp.html',1,'']]], + ['ipsymlinearsolver_2ehpp_441',['IpSymLinearSolver.hpp',['../IpSymLinearSolver_8hpp.html',1,'']]], + ['ipsymmatrix_2ehpp_442',['IpSymMatrix.hpp',['../IpSymMatrix_8hpp.html',1,'']]], + ['ipsymscaledmatrix_2ehpp_443',['IpSymScaledMatrix.hpp',['../IpSymScaledMatrix_8hpp.html',1,'']]], + ['ipsymtmatrix_2ehpp_444',['IpSymTMatrix.hpp',['../IpSymTMatrix_8hpp.html',1,'']]], + ['iptaggedobject_2ehpp_445',['IpTaggedObject.hpp',['../IpTaggedObject_8hpp.html',1,'']]], + ['iptdependencydetector_2ehpp_446',['IpTDependencyDetector.hpp',['../IpTDependencyDetector_8hpp.html',1,'']]], + ['iptimedtask_2ehpp_447',['IpTimedTask.hpp',['../IpTimedTask_8hpp.html',1,'']]], + ['iptimingstatistics_2ehpp_448',['IpTimingStatistics.hpp',['../IpTimingStatistics_8hpp.html',1,'']]], + ['iptnlp_2ehpp_449',['IpTNLP.hpp',['../IpTNLP_8hpp.html',1,'']]], + ['iptnlpadapter_2ehpp_450',['IpTNLPAdapter.hpp',['../IpTNLPAdapter_8hpp.html',1,'']]], + ['iptnlpreducer_2ehpp_451',['IpTNLPReducer.hpp',['../IpTNLPReducer_8hpp.html',1,'']]], + ['iptransposematrix_2ehpp_452',['IpTransposeMatrix.hpp',['../IpTransposeMatrix_8hpp.html',1,'']]], + ['iptriplethelper_2ehpp_453',['IpTripletHelper.hpp',['../IpTripletHelper_8hpp.html',1,'']]], + ['iptriplettocsrconverter_2ehpp_454',['IpTripletToCSRConverter.hpp',['../IpTripletToCSRConverter_8hpp.html',1,'']]], + ['iptsymdependencydetector_2ehpp_455',['IpTSymDependencyDetector.hpp',['../IpTSymDependencyDetector_8hpp.html',1,'']]], + ['iptsymlinearsolver_2ehpp_456',['IpTSymLinearSolver.hpp',['../IpTSymLinearSolver_8hpp.html',1,'']]], + ['iptsymscalingmethod_2ehpp_457',['IpTSymScalingMethod.hpp',['../IpTSymScalingMethod_8hpp.html',1,'']]], + ['iptypes_2eh_458',['IpTypes.h',['../IpTypes_8h.html',1,'']]], + ['iptypes_2ehpp_459',['IpTypes.hpp',['../IpTypes_8hpp.html',1,'']]], + ['ipuserscaling_2ehpp_460',['IpUserScaling.hpp',['../IpUserScaling_8hpp.html',1,'']]], + ['iputils_2ehpp_461',['IpUtils.hpp',['../IpUtils_8hpp.html',1,'']]], + ['ipvector_2ehpp_462',['IpVector.hpp',['../IpVector_8hpp.html',1,'']]], + ['ipwarmstartiterateinitializer_2ehpp_463',['IpWarmStartIterateInitializer.hpp',['../IpWarmStartIterateInitializer_8hpp.html',1,'']]], + ['ipwsmpsolverinterface_2ehpp_464',['IpWsmpSolverInterface.hpp',['../IpWsmpSolverInterface_8hpp.html',1,'']]], + ['ipzeromatrix_2ehpp_465',['IpZeroMatrix.hpp',['../IpZeroMatrix_8hpp.html',1,'']]], + ['ipzerosymmatrix_2ehpp_466',['IpZeroSymMatrix.hpp',['../IpZeroSymMatrix_8hpp.html',1,'']]], + ['irow_467',['IRow',['../classIpopt_1_1TripletToCSRConverter_1_1TripletEntry.html#a2cddf4e4b7b5097a26851dc627b19e4e',1,'Ipopt::TripletToCSRConverter::TripletEntry']]], + ['irows_468',['irows',['../classIpopt_1_1GenTMatrix.html#adc14ecc96609890bb0125a2144ceb2ed',1,'Ipopt::GenTMatrix::Irows()'],['../classIpopt_1_1GenTMatrixSpace.html#ad1349c86847c29722c930064f1ccc665',1,'Ipopt::GenTMatrixSpace::Irows()'],['../classIpopt_1_1SymTMatrix.html#aac77e43d622b1231920e17afe7a9de82',1,'Ipopt::SymTMatrix::Irows()'],['../classIpopt_1_1SymTMatrixSpace.html#aaf6a3677d762ae7e8e98f6bf35b2d53a',1,'Ipopt::SymTMatrixSpace::Irows() const']]], + ['irows_5f_469',['irows_',['../classIpopt_1_1SymTMatrixSpace.html#a3a72d6f897240e2308eee9c62b98a553',1,'Ipopt::SymTMatrixSpace::iRows_'],['../classIpopt_1_1GenTMatrixSpace.html#ace386f17664c96f1f8cb34ce0e3295d5',1,'Ipopt::GenTMatrixSpace::iRows_']]], + ['is_20ipopt_470',['What is Ipopt?',['../FAQ.html#autotoc_md0',1,'']]], + ['is_20ipopt_20released_20under_471',['What license is Ipopt released under?',['../FAQ.html#autotoc_md2',1,'']]], + ['is_20ipopt_20thread_20safe_472',['Is Ipopt thread-safe?',['../FAQ.html#autotoc_md5',1,'']]], + ['is_20the_20difference_20between_20the_20fortran_20version_20and_20the_20c_20version_473',['What is the difference between the Fortran version and the C++ version?',['../FAQ.html#autotoc_md8',1,'']]], + ['is_20the_20method_20behind_20ipopt_474',['What is the method behind Ipopt?',['../FAQ.html#autotoc_md6',1,'']]], + ['is_5finitialized_475',['Is_Initialized',['../classIpopt_1_1SchurData.html#a9ad24538c5904dc0a8543ae109d29706',1,'Ipopt::SchurData']]], + ['is_5fpardiso_5f_476',['is_pardiso_',['../classIpopt_1_1InexactPDSolver.html#a534a1a1bbd2f78dfbcec15fe642569c9',1,'Ipopt::InexactPDSolver']]], + ['isacceptabletocurrentfilter_477',['IsAcceptableToCurrentFilter',['../classIpopt_1_1FilterLSAcceptor.html#a0dd15a079478f682e21cc92ddff2d0e3',1,'Ipopt::FilterLSAcceptor']]], + ['isacceptabletocurrentiterate_478',['isacceptabletocurrentiterate',['../classIpopt_1_1InexactLSAcceptor.html#a488ba11fa025c5f07ce57fd401d08219',1,'Ipopt::InexactLSAcceptor::IsAcceptableToCurrentIterate()'],['../classIpopt_1_1FilterLSAcceptor.html#a6599ec13413f158950300b8180cf3e9a',1,'Ipopt::FilterLSAcceptor::IsAcceptableToCurrentIterate()'],['../classIpopt_1_1PenaltyLSAcceptor.html#a88d311a5587406ef965a007c6e0d11b6',1,'Ipopt::PenaltyLSAcceptor::IsAcceptableToCurrentIterate()']]], + ['isacceptabletopiecewisepenalty_479',['IsAcceptableToPiecewisePenalty',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a7cfd8483609381328349630ddd914d14',1,'Ipopt::CGPenaltyLSAcceptor']]], + ['isaccepted_480',['IsAccepted',['../classIpopt_1_1Journal.html#a7495d9ce62d480720369c3c20e307d79',1,'Ipopt::Journal']]], + ['iscompconst_481',['IsCompConst',['../classIpopt_1_1CompoundVector.html#a846da0af20d5aebd4e304a63743fbea6',1,'Ipopt::CompoundVector']]], + ['iscompnull_482',['IsCompNull',['../classIpopt_1_1CompoundVector.html#a6f8d73137a69051c46effccdc244db10',1,'Ipopt::CompoundVector']]], + ['isenabled_483',['IsEnabled',['../classIpopt_1_1TimedTask.html#a84cce17e7c8f3842ee1e8ad960e13651',1,'Ipopt::TimedTask']]], + ['isfinitenumber_484',['IsFiniteNumber',['../namespaceIpopt.html#a6e5e857992e79961b466b14cc6ef7df7',1,'Ipopt']]], + ['isftype_485',['IsFtype',['../classIpopt_1_1FilterLSAcceptor.html#ae749b982f5ec180d10acb5c16702f9bc',1,'Ipopt::FilterLSAcceptor']]], + ['isfunctionevaluationtimeenabled_486',['IsFunctionEvaluationTimeEnabled',['../classIpopt_1_1TimingStatistics.html#a891b4c6ff02b31434e8d99c386a17bd6',1,'Ipopt::TimingStatistics']]], + ['ishomogeneous_487',['IsHomogeneous',['../classIpopt_1_1DenseVector.html#a23ac6bcd7d67dda1a6aaea8d531ae0cf',1,'Ipopt::DenseVector']]], + ['ismatrixfromspace_488',['IsMatrixFromSpace',['../classIpopt_1_1MatrixSpace.html#a96f2473f0a89a420ee4f0a59a185704d',1,'Ipopt::MatrixSpace']]], + ['isnull_489',['isnull',['../namespaceIpopt.html#acfc346e8412ed6def2dc1858b78bde1b',1,'Ipopt::IsNull()'],['../classIpopt_1_1SmartPtr.html#a4e3eb718ef30628e0c644bfdcdea989d',1,'Ipopt::SmartPtr::IsNull']]], + ['ispare_490',['ispare',['../structma97__control__s.html#a281a54994ad8d19268e60027e85f87ce',1,'ma97_control_s::ispare'],['../structma97__info__d.html#a3d0ce848b0adb6f1140e2e10bf75cd4f',1,'ma97_info_d::ispare'],['../structma97__info__s.html#a63944efa36a9df62269fa40ae8c73fd0',1,'ma97_info_s::ispare'],['../structma97__control__d.html#a53f9a4496e8647f01fd525a3227a4055',1,'ma97_control_d::ispare'],['../structma77__control__d.html#aaf2a8e83e137e33def01c51154cb3aeb',1,'ma77_control_d::ispare'],['../structma77__info__s.html#a40855dacc81e9157cb0fc72441313a65',1,'ma77_info_s::ispare'],['../structma77__control__s.html#a097b072d38eb476abe3bb5cf00706a16',1,'ma77_control_s::ispare'],['../structma77__info__d.html#acc554f50830e007c99e462d6d4608fd7',1,'ma77_info_d::ispare']]], + ['ispiecewisepenaltylistempty_491',['IsPiecewisePenaltyListEmpty',['../classIpopt_1_1PiecewisePenalty.html#af4a71aa87817ad17ff75fe23ee9cf9e8',1,'Ipopt::PiecewisePenalty']]], + ['issquareproblem_492',['IsSquareProblem',['../classIpopt_1_1IpoptCalculatedQuantities.html#a2566806a74b0573b938298a312ef57f2',1,'Ipopt::IpoptCalculatedQuantities']]], + ['isstale_493',['IsStale',['../classIpopt_1_1DependentResult.html#ae10949b00ea6d500fa1287cc8b4822ee',1,'Ipopt::DependentResult']]], + ['isstarted_494',['IsStarted',['../classIpopt_1_1TimedTask.html#a930bdafa309b6a9860dc87b312c888a9',1,'Ipopt::TimedTask']]], + ['isvalid_495',['isvalid',['../namespaceIpopt.html#a412b04fd3180a55969ff76224d5bfec6',1,'Ipopt::IsValid()'],['../classIpopt_1_1SmartPtr.html#aac969d05f92a0038daf754ac1c5ab876',1,'Ipopt::SmartPtr::IsValid']]], + ['isvalidintegersetting_496',['IsValidIntegerSetting',['../classIpopt_1_1RegisteredOption.html#aa2ae998f5cdfe4542edd608617d77ea7',1,'Ipopt::RegisteredOption']]], + ['isvalidnumbersetting_497',['IsValidNumberSetting',['../classIpopt_1_1RegisteredOption.html#a65470bf913884fdd33447a938762688a',1,'Ipopt::RegisteredOption']]], + ['isvalidstringsetting_498',['IsValidStringSetting',['../classIpopt_1_1RegisteredOption.html#a218f0d8bbae75438beef01498a364f2a',1,'Ipopt::RegisteredOption']]], + ['iter_499',['iter',['../classIpopt_1_1FilterEntry.html#a3fb759a8d2b2c9b5126401796205c237',1,'Ipopt::FilterEntry']]], + ['iter_5f_500',['iter_',['../classIpopt_1_1FilterEntry.html#a5979a86ff43864809fc486a5b3d21193',1,'Ipopt::FilterEntry']]], + ['iter_5fcount_501',['iter_count',['../classIpopt_1_1IpoptData.html#a7d444831a2753caa7e74443897227b99',1,'Ipopt::IpoptData']]], + ['iter_5fcount_5f_502',['iter_count_',['../classIpopt_1_1IpoptData.html#ad3e359f7fde09fe372950003debd09c0',1,'Ipopt::IpoptData']]], + ['iter_5foutput_5f_503',['iter_output_',['../classIpopt_1_1IpoptAlgorithm.html#ab1a4e607c390961f2e35cd1adbdc4e16',1,'Ipopt::IpoptAlgorithm']]], + ['iterate_5finitializer_5f_504',['iterate_initializer_',['../classIpopt_1_1IpoptAlgorithm.html#a8ef51f30cf5ae4d66273388948f101b1',1,'Ipopt::IpoptAlgorithm']]], + ['iterateinitializer_505',['iterateinitializer',['../classIpopt_1_1IterateInitializer.html',1,'Ipopt::IterateInitializer'],['../classIpopt_1_1IterateInitializer.html#a02ab25dbb0da5701873e5bd9c307bfe1',1,'Ipopt::IterateInitializer::IterateInitializer(const IterateInitializer &)'],['../classIpopt_1_1IterateInitializer.html#ac664530b00baf90c5e681543eb7f5bd3',1,'Ipopt::IterateInitializer::IterateInitializer()']]], + ['iterates_5fspace_5f_506',['iterates_space_',['../classIpopt_1_1IpoptData.html#a9ca143d0ba9a1023a613cae517a1513d',1,'Ipopt::IpoptData']]], + ['iteratesvector_507',['iteratesvector',['../classIpopt_1_1IteratesVector.html#a8ae998abee264e4e0372ca8a323ea1fa',1,'Ipopt::IteratesVector::IteratesVector(const IteratesVector &)'],['../classIpopt_1_1IteratesVector.html#af86a4799541add329545ce8d9b746c9a',1,'Ipopt::IteratesVector::IteratesVector()'],['../classIpopt_1_1IteratesVector.html#af419a32ddb70d2d1c57f00626676987f',1,'Ipopt::IteratesVector::IteratesVector(const IteratesVectorSpace *owner_space, bool create_new)'],['../classIpopt_1_1IteratesVector.html',1,'Ipopt::IteratesVector']]], + ['iteratesvectorspace_508',['iteratesvectorspace',['../classIpopt_1_1IteratesVectorSpace.html#af7cceb8955caac0eae7127a1fdcb098e',1,'Ipopt::IteratesVectorSpace::IteratesVectorSpace(const IteratesVectorSpace &)'],['../classIpopt_1_1IteratesVectorSpace.html#ab51e50d7909c8093b7ecdd5ef5aa395f',1,'Ipopt::IteratesVectorSpace::IteratesVectorSpace()'],['../classIpopt_1_1IteratesVectorSpace.html#a9af66049981b2664227c06a38ed9e650',1,'Ipopt::IteratesVectorSpace::IteratesVectorSpace(const VectorSpace &x_space, const VectorSpace &s_space, const VectorSpace &y_c_space, const VectorSpace &y_d_space, const VectorSpace &z_L_space, const VectorSpace &z_U_space, const VectorSpace &v_L_space, const VectorSpace &v_U_space)'],['../classIpopt_1_1IteratesVectorSpace.html',1,'Ipopt::IteratesVectorSpace']]], + ['iteration_5fexceeded_509',['ITERATION_EXCEEDED',['../classorg_1_1coinor_1_1Ipopt.html#a7f2a52a6c5606b6703f02035914a2552',1,'org::coinor::Ipopt']]], + ['iterationcount_510',['IterationCount',['../classIpopt_1_1SolveStatistics.html#aff0e3b249a4d5cf91b91f7af264376b7',1,'Ipopt::SolveStatistics']]], + ['iterationoutput_511',['iterationoutput',['../classIpopt_1_1IterationOutput.html#ad2072815388e37c4c0e3e1e49339f090',1,'Ipopt::IterationOutput::IterationOutput()'],['../classIpopt_1_1IterationOutput.html',1,'Ipopt::IterationOutput'],['../classIpopt_1_1IterationOutput.html#acb214e6e4375b916336e9f76a0548346',1,'Ipopt::IterationOutput::IterationOutput()']]], + ['iterativepardisosolverinterface_512',['iterativepardisosolverinterface',['../classIpopt_1_1IterativePardisoSolverInterface.html',1,'Ipopt::IterativePardisoSolverInterface'],['../classIpopt_1_1IterativePardisoSolverInterface.html#a30265dd3230c0ba98f29e98bd713faec',1,'Ipopt::IterativePardisoSolverInterface::IterativePardisoSolverInterface(const IterativePardisoSolverInterface &)'],['../classIpopt_1_1IterativePardisoSolverInterface.html#a337f02ca73e31428933ac65216452e13',1,'Ipopt::IterativePardisoSolverInterface::IterativePardisoSolverInterface()'],['../classIpopt_1_1IterativePardisoSolverInterface.html#a4bb805cd9eadd7cd91b13db257552569',1,'Ipopt::IterativePardisoSolverInterface::IterativePardisoSolverInterface(IterativeSolverTerminationTester &normal_tester, IterativeSolverTerminationTester &pd_tester, SmartPtr< LibraryLoader > pardisoloader_)']]], + ['iterativesolverterminationtester_513',['iterativesolverterminationtester',['../classIpopt_1_1IterativeSolverTerminationTester.html',1,'Ipopt::IterativeSolverTerminationTester'],['../classIpopt_1_1IterativeSolverTerminationTester.html#a1e094f9a462a3ba0fee207187572efbb',1,'Ipopt::IterativeSolverTerminationTester::IterativeSolverTerminationTester()']]], + ['iterativewsmpsolverinterface_514',['iterativewsmpsolverinterface',['../classIpopt_1_1IterativeWsmpSolverInterface.html',1,'Ipopt::IterativeWsmpSolverInterface'],['../classIpopt_1_1IterativeWsmpSolverInterface.html#a5b5dfc2f038fa54b307b990474af51da',1,'Ipopt::IterativeWsmpSolverInterface::IterativeWsmpSolverInterface(const IterativeWsmpSolverInterface &)'],['../classIpopt_1_1IterativeWsmpSolverInterface.html#a7ee14060f26f5f956bee57f1d5cef6c9',1,'Ipopt::IterativeWsmpSolverInterface::IterativeWsmpSolverInterface()']]], + ['iterinitializer_5f_515',['IterInitializer_',['../classIpopt_1_1AlgorithmBuilder.html#a4da0e00ff35e8f9b1db5ed4943f2e68d',1,'Ipopt::AlgorithmBuilder']]], + ['iteroutput_5f_516',['IterOutput_',['../classIpopt_1_1AlgorithmBuilder.html#a25b5ea1d912348a3366d15b2250b167d',1,'Ipopt::AlgorithmBuilder']]], + ['iw_5f_517',['iw_',['../classIpopt_1_1Ma27TSolverInterface.html#aa4ccf91952c454b5878c1313606ee27b',1,'Ipopt::Ma27TSolverInterface']]] ]; diff --git a/search/all_13.js b/search/all_13.js index 64752ea9e..5c4607788 100644 --- a/search/all_13.js +++ b/search/all_13.js @@ -63,7 +63,7 @@ var searchData= ['jac_5fc_5feval_5ftime_5f_60',['jac_c_eval_time_',['../classIpopt_1_1TimingStatistics.html#aa6a57e7c5503bfa827d08019a4756d1a',1,'Ipopt::TimingStatistics']]], ['jac_5fc_5fevals_61',['jac_c_evals',['../classIpopt_1_1RestoIpoptNLP.html#a784ab3b080c8ef0a9024e9f6d667a77a',1,'Ipopt::RestoIpoptNLP::jac_c_evals()'],['../classIpopt_1_1IpoptNLP.html#ace941433752a08ea1a3a802d70d7394f',1,'Ipopt::IpoptNLP::jac_c_evals()'],['../classIpopt_1_1OrigIpoptNLP.html#a58235bb85718035806e82062b426c118',1,'Ipopt::OrigIpoptNLP::jac_c_evals()']]], ['jac_5fc_5fevals_5f_62',['jac_c_evals_',['../classIpopt_1_1RestoIpoptNLP.html#a224c6ea35c10670e76ef5eabe1bcfbe6',1,'Ipopt::RestoIpoptNLP::jac_c_evals_'],['../classIpopt_1_1OrigIpoptNLP.html#a99418f13432b6cb8b117faaade3394c9',1,'Ipopt::OrigIpoptNLP::jac_c_evals_']]], - ['jac_5fc_5fspace_5f_63',['jac_c_space_',['../classIpopt_1_1TNLPAdapter.html#a03acfea8551d3f701d8854f2a994f659',1,'Ipopt::TNLPAdapter::Jac_c_space_'],['../classIpopt_1_1RestoIpoptNLP.html#a6b4fd74c7c7e02c2248b0c6ef41f354d',1,'Ipopt::RestoIpoptNLP::jac_c_space_'],['../classIpopt_1_1OrigIpoptNLP.html#af57472577cb7d86ee74e70a3fef1cbaf',1,'Ipopt::OrigIpoptNLP::jac_c_space_']]], + ['jac_5fc_5fspace_5f_63',['jac_c_space_',['../classIpopt_1_1RestoIpoptNLP.html#a6b4fd74c7c7e02c2248b0c6ef41f354d',1,'Ipopt::RestoIpoptNLP::jac_c_space_'],['../classIpopt_1_1OrigIpoptNLP.html#af57472577cb7d86ee74e70a3fef1cbaf',1,'Ipopt::OrigIpoptNLP::jac_c_space_'],['../classIpopt_1_1TNLPAdapter.html#a03acfea8551d3f701d8854f2a994f659',1,'Ipopt::TNLPAdapter::Jac_c_space_']]], ['jac_5fd_64',['jac_d',['../classIpopt_1_1RestoIpoptNLP.html#a932ac492c7515dd4910ff6d037f0debb',1,'Ipopt::RestoIpoptNLP::jac_d()'],['../classIpopt_1_1IpoptNLP.html#ac19936ac5d3bb9f1c31e69404e10e79d',1,'Ipopt::IpoptNLP::jac_d()'],['../classIpopt_1_1OrigIpoptNLP.html#a21c187c943ed930ccd49962e563adda7',1,'Ipopt::OrigIpoptNLP::jac_d(const Vector &x)']]], ['jac_5fd_5fcache_5f_65',['jac_d_cache_',['../classIpopt_1_1OrigIpoptNLP.html#a2171a5cd8e6fcb5ac679f90ffb99df90',1,'Ipopt::OrigIpoptNLP']]], ['jac_5fd_5fconstant_5f_66',['jac_d_constant_',['../classIpopt_1_1OrigIpoptNLP.html#a18e56de2090163ea5a1503468c9dafc4',1,'Ipopt::OrigIpoptNLP']]], diff --git a/search/all_17.js b/search/all_17.js index f7153ecde..8bc3c4965 100644 --- a/search/all_17.js +++ b/search/all_17.js @@ -59,9 +59,9 @@ var searchData= ['never_5fuse_5fpiecewise_5fpenalty_5fls_5f_56',['never_use_piecewise_penalty_ls_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a4783852b75cb0974a52eb71e38d922cb',1,'Ipopt::CGPenaltyLSAcceptor']]], ['neverrestorationphase_57',['neverrestorationphase',['../classIpopt_1_1BacktrackingLSAcceptor.html#af92ac60229d6178a26ad262b3f52047b',1,'Ipopt::BacktrackingLSAcceptor::NeverRestorationPhase()'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#aaaacf6d74827a91fb18c0488c3649bca',1,'Ipopt::CGPenaltyLSAcceptor::NeverRestorationPhase()']]], ['nevertrypurenewton_58',['NeverTryPureNewton',['../classIpopt_1_1CGPenaltyData.html#a4530027c093e2a863a1b288a6ff547ed',1,'Ipopt::CGPenaltyData']]], - ['new_20release_202004_2004_2028_59',['no new release (2004-04-28)',['../md_ChangeLog.html#autotoc_md117',1,'']]], - ['new_20release_202005_2001_2007_60',['no new release (2005-01-07)',['../md_ChangeLog.html#autotoc_md112',1,'']]], - ['new_20release_202005_2008_2019_61',['no new release (2005-08-19)',['../md_ChangeLog.html#autotoc_md110',1,'']]], + ['new_20release_202004_2004_2028_59',['no new release (2004-04-28)',['../md_ChangeLog.html#autotoc_md119',1,'']]], + ['new_20release_202005_2001_2007_60',['no new release (2005-01-07)',['../md_ChangeLog.html#autotoc_md114',1,'']]], + ['new_20release_202005_2008_2019_61',['no new release (2005-08-19)',['../md_ChangeLog.html#autotoc_md112',1,'']]], ['newfixedmu_62',['NewFixedMu',['../classIpopt_1_1AdaptiveMuUpdate.html#a3b26d485c42e77db222f3fb80f4ac86a',1,'Ipopt::AdaptiveMuUpdate']]], ['newton_20approximation_20of_20second_20derivatives_63',['Quasi-Newton Approximation of Second Derivatives',['../SPECIALS.html#QUASI_NEWTON',1,'']]], ['newton_5fstep_5f_64',['newton_step_',['../classIpopt_1_1InexactDoglegNormalStep.html#ad19e47c8298451de78bdbe3cc9083b65',1,'Ipopt::InexactDoglegNormalStep']]], @@ -94,9 +94,9 @@ var searchData= ['nnz_5fjac_5fg_5forig_5f_91',['nnz_jac_g_orig_',['../classIpopt_1_1TNLPReducer.html#a6d8fb3eba13314abc73aa84f989f1c0e',1,'Ipopt::TNLPReducer']]], ['nnz_5fjac_5fg_5freduced_5f_92',['nnz_jac_g_reduced_',['../classIpopt_1_1TNLPReducer.html#a3a5f74798e20461bd98d9c6f17f18a2a',1,'Ipopt::TNLPReducer']]], ['nnz_5fjac_5fg_5fskipped_5f_93',['nnz_jac_g_skipped_',['../classIpopt_1_1TNLPReducer.html#ad61e6a723e209368327dceb6fe09fa80',1,'Ipopt::TNLPReducer']]], - ['no_20new_20release_202004_2004_2028_94',['no new release (2004-04-28)',['../md_ChangeLog.html#autotoc_md117',1,'']]], - ['no_20new_20release_202005_2001_2007_95',['no new release (2005-01-07)',['../md_ChangeLog.html#autotoc_md112',1,'']]], - ['no_20new_20release_202005_2008_2019_96',['no new release (2005-08-19)',['../md_ChangeLog.html#autotoc_md110',1,'']]], + ['no_20new_20release_202004_2004_2028_94',['no new release (2004-04-28)',['../md_ChangeLog.html#autotoc_md119',1,'']]], + ['no_20new_20release_202005_2001_2007_95',['no new release (2005-01-07)',['../md_ChangeLog.html#autotoc_md114',1,'']]], + ['no_20new_20release_202005_2008_2019_96',['no new release (2005-08-19)',['../md_ChangeLog.html#autotoc_md112',1,'']]], ['no_5fbounds_5f_97',['no_bounds_',['../classIpopt_1_1AdaptiveMuUpdate.html#a9741ce2e334d9a577ee120932a7c3b33',1,'Ipopt::AdaptiveMuUpdate']]], ['no_5fcorrector_98',['NO_CORRECTOR',['../classIpopt_1_1FilterLSAcceptor.html#a9fdb48eba6aac599c3d3d077a315828aacb85b09c0c426133e93e6d2a901edf7f',1,'Ipopt::FilterLSAcceptor']]], ['no_5ftest_99',['no_test',['../classIpopt_1_1TNLPAdapter.html#af8cb74ea21f4e825c746861f8d1e515aaf63fe0dcad1ffe7cf31f456abd570553',1,'Ipopt::TNLPAdapter::NO_TEST'],['../classIpopt_1_1PDPerturbationHandler.html#aeba46dcffb42bef16860cbb40c2a77f1aef124577f57ea005166a7f3f276b1bb1',1,'Ipopt::PDPerturbationHandler::NO_TEST']]], @@ -111,7 +111,7 @@ var searchData= ['nonlpscalingobject_108',['nonlpscalingobject',['../classIpopt_1_1NoNLPScalingObject.html',1,'Ipopt::NoNLPScalingObject'],['../classIpopt_1_1NoNLPScalingObject.html#a70c477e6a1a72fea9d16ea7846beb10c',1,'Ipopt::NoNLPScalingObject::NoNLPScalingObject()'],['../classIpopt_1_1NoNLPScalingObject.html#a5961f710f859580479ff0473e637423e',1,'Ipopt::NoNLPScalingObject::NoNLPScalingObject(const NoNLPScalingObject &)']]], ['nonmonotone_5fpen_5fupdate_5fcounter_5f_109',['nonmonotone_pen_update_counter_',['../classIpopt_1_1CGSearchDirCalculator.html#a74fdfaf5dc53c89193248dbc90b4fed1',1,'Ipopt::CGSearchDirCalculator']]], ['nonzeros_110',['nonzeros',['../classIpopt_1_1SymTMatrix.html#a51e1bb3858166e4022540c995914e1b7',1,'Ipopt::SymTMatrix::Nonzeros()'],['../classIpopt_1_1GenTMatrix.html#a86525693c7e8bef302f05a97cce869d6',1,'Ipopt::GenTMatrix::Nonzeros()'],['../classIpopt_1_1GenTMatrixSpace.html#aaf72cd0785a3f5f30a823fcb841a75ff',1,'Ipopt::GenTMatrixSpace::Nonzeros()'],['../classIpopt_1_1SymTMatrixSpace.html#a52ed44010bbf9cfb592bc94aa14968b1',1,'Ipopt::SymTMatrixSpace::Nonzeros()']]], - ['nonzeros_5f_111',['nonzeros_',['../classIpopt_1_1GenTMatrixSpace.html#abaeb33ff553e6b3a1c462ec619af64a2',1,'Ipopt::GenTMatrixSpace::nonZeros_'],['../classIpopt_1_1SymTMatrixSpace.html#af766c0c384b3504a8c220fa5b8e98b14',1,'Ipopt::SymTMatrixSpace::nonZeros_'],['../classIpopt_1_1IterativePardisoSolverInterface.html#adee55633dfa4c72dd0e5229ca323e53a',1,'Ipopt::IterativePardisoSolverInterface::nonzeros_'],['../classIpopt_1_1Ma27TSolverInterface.html#af3204245e78c42a654af3a39af7c249c',1,'Ipopt::Ma27TSolverInterface::nonzeros_'],['../classIpopt_1_1Ma57TSolverInterface.html#a476851dc1a18da45a17239b1ccd20cef',1,'Ipopt::Ma57TSolverInterface::nonzeros_'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a51d03d3de73f541b636e7aeea774eb8e',1,'Ipopt::PardisoMKLSolverInterface::nonzeros_'],['../classIpopt_1_1PardisoSolverInterface.html#a550f41bb001f05d9bbf0ec40b89d86d9',1,'Ipopt::PardisoSolverInterface::nonzeros_'],['../classIpopt_1_1WsmpSolverInterface.html#a761e4088aac852e941331ac5050e841e',1,'Ipopt::WsmpSolverInterface::nonzeros_']]], + ['nonzeros_5f_111',['nonzeros_',['../classIpopt_1_1IterativePardisoSolverInterface.html#adee55633dfa4c72dd0e5229ca323e53a',1,'Ipopt::IterativePardisoSolverInterface::nonzeros_'],['../classIpopt_1_1Ma27TSolverInterface.html#af3204245e78c42a654af3a39af7c249c',1,'Ipopt::Ma27TSolverInterface::nonzeros_'],['../classIpopt_1_1Ma57TSolverInterface.html#a476851dc1a18da45a17239b1ccd20cef',1,'Ipopt::Ma57TSolverInterface::nonzeros_'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a51d03d3de73f541b636e7aeea774eb8e',1,'Ipopt::PardisoMKLSolverInterface::nonzeros_'],['../classIpopt_1_1PardisoSolverInterface.html#a550f41bb001f05d9bbf0ec40b89d86d9',1,'Ipopt::PardisoSolverInterface::nonzeros_'],['../classIpopt_1_1WsmpSolverInterface.html#a761e4088aac852e941331ac5050e841e',1,'Ipopt::WsmpSolverInterface::nonzeros_'],['../classIpopt_1_1GenTMatrixSpace.html#abaeb33ff553e6b3a1c462ec619af64a2',1,'Ipopt::GenTMatrixSpace::nonZeros_'],['../classIpopt_1_1SymTMatrixSpace.html#af766c0c384b3504a8c220fa5b8e98b14',1,'Ipopt::SymTMatrixSpace::nonZeros_']]], ['nonzeros_5fcompressed_5f_112',['nonzeros_compressed_',['../classIpopt_1_1TSymLinearSolver.html#a3829f644edd9b5d54050fb988bdf5ddb',1,'Ipopt::TSymLinearSolver::nonzeros_compressed_'],['../classIpopt_1_1TripletToCSRConverter.html#a9267cd6ac93e84e9dae103acbe95c84e',1,'Ipopt::TripletToCSRConverter::nonzeros_compressed_']]], ['nonzeros_5ftriplet_5f_113',['nonzeros_triplet_',['../classIpopt_1_1TripletToCSRConverter.html#a811a3f449e3542a45498e1de34240fb2',1,'Ipopt::TripletToCSRConverter::nonzeros_triplet_'],['../classIpopt_1_1TSymLinearSolver.html#ab8549a015c360b2e31e331914ea2465b',1,'Ipopt::TSymLinearSolver::nonzeros_triplet_']]], ['norm_5f1_114',['NORM_1',['../namespaceIpopt.html#a168170a804e6c2f0721e134d5ec0f2e5a5cc46573cba24270f1830018e377c596',1,'Ipopt']]], @@ -146,7 +146,7 @@ var searchData= ['nrm2_5fcache_5ftag_5f_143',['nrm2_cache_tag_',['../classIpopt_1_1Vector.html#a29c13a03f941940f50d555954bbf9e95',1,'Ipopt::Vector']]], ['nrm2impl_144',['nrm2impl',['../classIpopt_1_1CompoundVector.html#a0c867b5d3993afcb6f2769ad9b9eabb1',1,'Ipopt::CompoundVector::Nrm2Impl()'],['../classIpopt_1_1DenseVector.html#a7aeb32af812355a789f8b05905730230',1,'Ipopt::DenseVector::Nrm2Impl()'],['../classIpopt_1_1Vector.html#abd2aa055d5aa4f5e3ccce4b2601a7381',1,'Ipopt::Vector::Nrm2Impl()']]], ['nrows_145',['nrows',['../classIpopt_1_1MatrixSpace.html#ac3bce98bc7f6ff39f94ca697bc5dcc89',1,'Ipopt::MatrixSpace::NRows()'],['../classIpopt_1_1Matrix.html#a266552e7da69b010fb9aff8852a89ce1',1,'Ipopt::Matrix::NRows()']]], - ['nrows_5f_146',['nrows_',['../classIpopt_1_1MatrixSpace.html#a156d99aca8da52830b67cd64e00280aa',1,'Ipopt::MatrixSpace::nRows_'],['../classIpopt_1_1IndexPCalculator.html#aa3e83851cbec02a015f8d92dcfa3f394',1,'Ipopt::IndexPCalculator::nrows_'],['../classIpopt_1_1SchurData.html#a94209d32f74ab7fcf6ba489788d87685',1,'Ipopt::SchurData::nrows_']]], + ['nrows_5f_146',['nrows_',['../classIpopt_1_1IndexPCalculator.html#aa3e83851cbec02a015f8d92dcfa3f394',1,'Ipopt::IndexPCalculator::nrows_'],['../classIpopt_1_1SchurData.html#a94209d32f74ab7fcf6ba489788d87685',1,'Ipopt::SchurData::nrows_'],['../classIpopt_1_1MatrixSpace.html#a156d99aca8da52830b67cd64e00280aa',1,'Ipopt::MatrixSpace::nRows_']]], ['ns_147',['ns',['../classIpopt_1_1SensAlgorithm.html#ae5c9271bceb89a26fda724d84d867e4e',1,'Ipopt::SensAlgorithm']]], ['ns_5f_148',['ns_',['../classIpopt_1_1SensAlgorithm.html#a16c172bc51744a99f1396f7fd111cc58',1,'Ipopt::SensAlgorithm']]], ['nsteps_5f_149',['nsteps_',['../classIpopt_1_1Ma27TSolverInterface.html#a7ccbc97641d119a3647a0ab33c9ec225',1,'Ipopt::Ma27TSolverInterface']]], @@ -189,10 +189,10 @@ var searchData= ['num_5fsup_186',['num_sup',['../structma97__info__d.html#a14fb0391505cb340685b3aa4ac9ca34f',1,'ma97_info_d::num_sup'],['../structma97__info__s.html#ad3ba5a3ee3c042cc1759654a5078965e',1,'ma97_info_s::num_sup']]], ['num_5ftwo_187',['num_two',['../structma97__info__d.html#abd8f4ec6a87fc3558bcec320251c830b',1,'ma97_info_d::num_two'],['../structma86__info__d.html#a748fd9531230bfb9c52fa034b3b24852',1,'ma86_info_d::num_two'],['../structma86__info__s.html#aceaea17f101e538727ad4b1d3aac00b0',1,'ma86_info_s::num_two'],['../structma97__info__s.html#a4b504e6c81e0d83f1288b95ab50d3a6e',1,'ma97_info_s::num_two']]], ['number_188',['number',['../namespaceIpopt.html#ab75ce5f2ad60aa86e4dff723998e653f',1,'Ipopt::Number'],['../IpStdCInterface_8h.html#ab974f23c40ccaad0dacd611e3f4885e9',1,'Number: IpStdCInterface.h']]], - ['number_20510_189',['3.0.0 (2005-08-26) - dev release number 510',['../md_ChangeLog.html#autotoc_md108',1,'']]], - ['number_20714_190',['3.1.0 (2006-04-08) - dev release number 714',['../md_ChangeLog.html#autotoc_md105',1,'']]], - ['number_20757_191',['3.2.0 (2006-07-07) - dev release number 757',['../md_ChangeLog.html#autotoc_md103',1,'']]], - ['number_20764_192',['3.2.1 (2006-07-14) - dev release number 764',['../md_ChangeLog.html#autotoc_md102',1,'']]], + ['number_20510_189',['3.0.0 (2005-08-26) - dev release number 510',['../md_ChangeLog.html#autotoc_md110',1,'']]], + ['number_20714_190',['3.1.0 (2006-04-08) - dev release number 714',['../md_ChangeLog.html#autotoc_md107',1,'']]], + ['number_20757_191',['3.2.0 (2006-07-07) - dev release number 757',['../md_ChangeLog.html#autotoc_md105',1,'']]], + ['number_20764_192',['3.2.1 (2006-07-14) - dev release number 764',['../md_ChangeLog.html#autotoc_md104',1,'']]], ['number_5foption_193',['Number_Option',['../classIpopt_1_1AmplOptionsList.html#a855f23a698c4c0a91097b28f36ed8897aba5c5c295883dcd5d732d8da611ffcdd',1,'Ipopt::AmplOptionsList']]], ['number_5ftype_194',['Number_Type',['../classIpopt_1_1AmplSuffixHandler.html#ac866c4a1eb1c49ab083e167b462563fda34aa558e0568d193c35d772caa62c2d4',1,'Ipopt::AmplSuffixHandler']]], ['numberofamploptions_195',['NumberOfAmplOptions',['../classIpopt_1_1AmplOptionsList.html#a8b60f057be05a2cc06ebcbd1dcca39dc',1,'Ipopt::AmplOptionsList']]], diff --git a/search/all_1b.js b/search/all_1b.js index 3f97b1f0d..4fc20fce8 100644 --- a/search/all_1b.js +++ b/search/all_1b.js @@ -1,7 +1,7 @@ var searchData= [ ['r_20interface_20ipoptr_0',['r interface ipoptr',['../INSTALL.html#INSTALL_R',1,'Compiling and Installing the R Interface ipoptr'],['../INTERFACES.html#INTERFACE_R',1,'The R Interface ipoptr']]], - ['r795_202006_2010_2011_1',['3.2 r795 (2006-10-11)',['../md_ChangeLog.html#autotoc_md101',1,'']]], + ['r795_202006_2010_2011_1',['3.2 r795 (2006-10-11)',['../md_ChangeLog.html#autotoc_md103',1,'']]], ['read_5fparams_5fdat_5f_2',['read_params_dat_',['../classIpopt_1_1IpoptApplication.html#a9c834ca864a8b3e1a50de000dd4e3332',1,'Ipopt::IpoptApplication']]], ['readfromstream_3',['ReadFromStream',['../classIpopt_1_1OptionsList.html#ab20d3fc17421f7458e758eae374542cf',1,'Ipopt::OptionsList']]], ['readnexttoken_4',['readnexttoken',['../classIpopt_1_1OptionsList.html#a7aa8ba9afa3736ae363d4b24028114ba',1,'Ipopt::OptionsList']]], @@ -45,107 +45,108 @@ var searchData= ['registeredcategoriesbypriority_42',['RegisteredCategoriesByPriority',['../classIpopt_1_1RegisteredOptions.html#ad75709e4cd2e5eee6622a0c703bfc05f',1,'Ipopt::RegisteredOptions']]], ['registeredcategory_43',['registeredcategory',['../classIpopt_1_1RegisteredCategory.html#a5e2c6c3dc25df89df5da757b9bec08bc',1,'Ipopt::RegisteredCategory::RegisteredCategory()'],['../classIpopt_1_1RegisteredCategory.html',1,'Ipopt::RegisteredCategory'],['../classIpopt_1_1RegisteredCategory.html#ac8654952daca10e6755f2eb1431e2798',1,'Ipopt::RegisteredCategory::RegisteredCategory()'],['../classIpopt_1_1RegisteredCategory.html#a73a1d789578c19e1de2fd84c870552e0',1,'Ipopt::RegisteredCategory::RegisteredCategory(const RegisteredCategory &)']]], ['registeredoption_44',['registeredoption',['../classIpopt_1_1RegisteredOption.html#a1072b6c4b8b3b5c251374b316077b325',1,'Ipopt::RegisteredOption::RegisteredOption(Index counter)'],['../classIpopt_1_1RegisteredOption.html#ae92139ba8880db1b4faa132fbf81c5b5',1,'Ipopt::RegisteredOption::RegisteredOption(const RegisteredOption &copy)'],['../classIpopt_1_1RegisteredOption.html#a2fbabcc5428fb5411b58f127e40c7982',1,'Ipopt::RegisteredOption::RegisteredOption(const std::string &name, const std::string &short_description, const std::string &long_description, const SmartPtr< RegisteredCategory > &registering_category, Index counter, bool advanced=false)'],['../classIpopt_1_1RegisteredOption.html',1,'Ipopt::RegisteredOption']]], - ['registeredoptions_45',['registeredoptions',['../classIpopt_1_1RegisteredOption.html#a6cdca39d68b836f63a73424adb096483',1,'Ipopt::RegisteredOption::RegisteredOptions'],['../classIpopt_1_1RegisteredOptions.html#a323f6aabcc53c3735c4d5c2983af7652',1,'Ipopt::RegisteredOptions::RegisteredOptions()'],['../classIpopt_1_1RegisteredCategory.html#aea5adb2b4f25ac8750d9a1f96a668f3a',1,'Ipopt::RegisteredCategory::RegisteredOptions() const'],['../classIpopt_1_1RegisteredCategory.html#a6cdca39d68b836f63a73424adb096483',1,'Ipopt::RegisteredCategory::RegisteredOptions'],['../classIpopt_1_1RegisteredOptions.html',1,'Ipopt::RegisteredOptions']]], + ['registeredoptions_45',['registeredoptions',['../classIpopt_1_1RegisteredCategory.html#aea5adb2b4f25ac8750d9a1f96a668f3a',1,'Ipopt::RegisteredCategory::RegisteredOptions()'],['../classIpopt_1_1RegisteredOptions.html#a323f6aabcc53c3735c4d5c2983af7652',1,'Ipopt::RegisteredOptions::RegisteredOptions()'],['../classIpopt_1_1RegisteredOption.html#a6cdca39d68b836f63a73424adb096483',1,'Ipopt::RegisteredOption::RegisteredOptions'],['../classIpopt_1_1RegisteredCategory.html#a6cdca39d68b836f63a73424adb096483',1,'Ipopt::RegisteredCategory::RegisteredOptions'],['../classIpopt_1_1RegisteredOptions.html',1,'Ipopt::RegisteredOptions']]], ['registeredoptionslist_46',['RegisteredOptionsList',['../classIpopt_1_1RegisteredOptions.html#aeaa6e0a416d75748184ac1f282908970',1,'Ipopt::RegisteredOptions']]], ['registeredoptiontype_47',['RegisteredOptionType',['../namespaceIpopt.html#a8fa4729b02ed5a27c39209cc75864bb6',1,'Ipopt']]], ['registering_5fcategory_5f_48',['registering_category_',['../classIpopt_1_1RegisteredOption.html#ab607fdc3d788b134144e4df77a101a3e',1,'Ipopt::RegisteredOption']]], ['registeringcategory_49',['registeringcategory',['../classIpopt_1_1RegisteredOption.html#a52552d7e615200651f12ecaf962e08c8',1,'Ipopt::RegisteredOption::RegisteringCategory()'],['../classIpopt_1_1RegisteredOptions.html#a5f287411b5b481164803ada7dbcf7a2e',1,'Ipopt::RegisteredOptions::RegisteringCategory()']]], - ['registeroptions_50',['registeroptions',['../classIpopt_1_1Ma86SolverInterface.html#ad1b52287e8b2c500b909d924970baba4',1,'Ipopt::Ma86SolverInterface::RegisterOptions()'],['../classIpopt_1_1PenaltyLSAcceptor.html#ac6abe9f599fb294ee597891c41f2f032',1,'Ipopt::PenaltyLSAcceptor::RegisterOptions()'],['../classIpopt_1_1Ma77SolverInterface.html#ae4aa999611ef53e230086f450d27dc2c',1,'Ipopt::Ma77SolverInterface::RegisterOptions()'],['../classIpopt_1_1Ma57TSolverInterface.html#a179f75991cbc1e72f29fe39d96dc8b75',1,'Ipopt::Ma57TSolverInterface::RegisterOptions()'],['../classIpopt_1_1Ma28TDependencyDetector.html#a200ddcb1f7063bf8fec35469c827a49f',1,'Ipopt::Ma28TDependencyDetector::RegisterOptions()'],['../classIpopt_1_1Ma27TSolverInterface.html#a75956e60e11e47f9defd21448168e187',1,'Ipopt::Ma27TSolverInterface::RegisterOptions()'],['../classIpopt_1_1IterativeWsmpSolverInterface.html#afe030df840e6e688f2ea3a9ee527eb13',1,'Ipopt::IterativeWsmpSolverInterface::RegisterOptions()'],['../classIpopt_1_1WarmStartIterateInitializer.html#a938724ed700eca30c32c3f7f9017eb0c',1,'Ipopt::WarmStartIterateInitializer::RegisterOptions()'],['../classIpopt_1_1RestoPenaltyConvergenceCheck.html#ac84145578c754797bce41ee2af177e2b',1,'Ipopt::RestoPenaltyConvergenceCheck::RegisterOptions()'],['../classIpopt_1_1MinC__1NrmRestorationPhase.html#aaed60810f6751ec3e46668e945b08b76',1,'Ipopt::MinC_1NrmRestorationPhase::RegisterOptions()'],['../classIpopt_1_1RestoIterateInitializer.html#af00b36b6bd6aa0a0177aef7f51d7f51b',1,'Ipopt::RestoIterateInitializer::RegisterOptions()'],['../classIpopt_1_1RestoIpoptNLP.html#aca2c0e491607b5291fe47de944373e0c',1,'Ipopt::RestoIpoptNLP::RegisterOptions()'],['../classIpopt_1_1RestoFilterConvergenceCheck.html#a9d6424ef4356ab2694e548daad9b39b2',1,'Ipopt::RestoFilterConvergenceCheck::RegisterOptions()'],['../classIpopt_1_1RestoConvergenceCheck.html#a92c6ec2e331dc5085b6600ac977bb7e2',1,'Ipopt::RestoConvergenceCheck::RegisterOptions()'],['../classIpopt_1_1QualityFunctionMuOracle.html#a159434694a4a0b414341ab5de80dc32f',1,'Ipopt::QualityFunctionMuOracle::RegisterOptions()'],['../classIpopt_1_1ProbingMuOracle.html#a27081c7adc587ed76474cca99175fce5',1,'Ipopt::ProbingMuOracle::RegisterOptions()'],['../classIpopt_1_1PDPerturbationHandler.html#a4550a7afc13bb81c07b04f9127518748',1,'Ipopt::PDPerturbationHandler::RegisterOptions()'],['../classIpopt_1_1Ma97SolverInterface.html#a8bbb074fb095afc9232b21a4f969ac51',1,'Ipopt::Ma97SolverInterface::RegisterOptions()'],['../classIpopt_1_1MumpsSolverInterface.html#a1c87092ecca460918419008593c3f140',1,'Ipopt::MumpsSolverInterface::RegisterOptions()'],['../classIpopt_1_1PardisoMKLSolverInterface.html#ab199200c418434848c5bf0d22360c612',1,'Ipopt::PardisoMKLSolverInterface::RegisterOptions()'],['../classIpopt_1_1PardisoSolverInterface.html#a2714301e798b4c1ae6e87dd41c7000a2',1,'Ipopt::PardisoSolverInterface::RegisterOptions()'],['../classIpopt_1_1SpralSolverInterface.html#ac2257103d9a1f3a83ca9f397aa75d2fe',1,'Ipopt::SpralSolverInterface::RegisterOptions()'],['../classIpopt_1_1TSymDependencyDetector.html#a8eee5e6395d339313258aae4499b35fc',1,'Ipopt::TSymDependencyDetector::RegisterOptions()'],['../classIpopt_1_1TSymLinearSolver.html#ad09894475039a90d87b564c7cb2f185d',1,'Ipopt::TSymLinearSolver::RegisterOptions()'],['../classIpopt_1_1WsmpSolverInterface.html#aeeb760e84110b8415d9c2bc7940efd2c',1,'Ipopt::WsmpSolverInterface::RegisterOptions()'],['../classIpopt_1_1RegisteredOptions.html#a20f15c22268c9098ed751d32d1125683',1,'Ipopt::RegisteredOptions::RegisterOptions()'],['../classIpopt_1_1CGPenaltyCq.html#a308c64081261b031d11ab9fce557f717',1,'Ipopt::CGPenaltyCq::RegisterOptions()'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#a6a24374dc62c0cf7bfd4ed04bad9f3f9',1,'Ipopt::CGPenaltyLSAcceptor::RegisterOptions()'],['../classIpopt_1_1CGPerturbationHandler.html#af7c091e66d74b8c9e0d41d6ab5bfd592',1,'Ipopt::CGPerturbationHandler::RegisterOptions()'],['../classIpopt_1_1CGSearchDirCalculator.html#a3b83859027473244f84045313a18c1e5',1,'Ipopt::CGSearchDirCalculator::RegisterOptions()'],['../classIpopt_1_1IpoptApplication.html#afa9569b07b3cec161c3d998e0fc520ba',1,'Ipopt::IpoptApplication::RegisterOptions()'],['../classIpopt_1_1TNLPAdapter.html#a470d71ff0c3e7fec7f00d34e7c0253bf',1,'Ipopt::TNLPAdapter::RegisterOptions()'],['../classIpopt_1_1SensApplication.html#aedbaa582139dc53f69a6e0f77ecc3ba2',1,'Ipopt::SensApplication::RegisterOptions()'],['../classIpopt_1_1PDSearchDirCalculator.html#a7d20d557c24eafe7ceec21946121044d',1,'Ipopt::PDSearchDirCalculator::RegisterOptions()'],['../classIpopt_1_1InexactAlgorithmBuilder.html#a61dbb31f0b21765a10e3922e45eacfa9',1,'Ipopt::InexactAlgorithmBuilder::RegisterOptions()'],['../classIpopt_1_1InexactCq.html#a881d81cdeac7c46c35b8ea1fb5554fb9',1,'Ipopt::InexactCq::RegisterOptions()'],['../classIpopt_1_1InexactDoglegNormalStep.html#a82278b5ec2ede5687e9a239da69964a6',1,'Ipopt::InexactDoglegNormalStep::RegisterOptions()'],['../classIpopt_1_1InexactLSAcceptor.html#a440c3ed5086ddf6f4597264071e24bb3',1,'Ipopt::InexactLSAcceptor::RegisterOptions()'],['../classIpopt_1_1InexactNewtonNormalStep.html#aef234fb92871404831b9c9809a888831',1,'Ipopt::InexactNewtonNormalStep::RegisterOptions()'],['../classIpopt_1_1InexactNormalTerminationTester.html#a2504b3e1d0e3e52b7c310cf0c16eea0c',1,'Ipopt::InexactNormalTerminationTester::RegisterOptions()'],['../classIpopt_1_1InexactPDSolver.html#a001f7c31ab64f3720b5aa930892507cf',1,'Ipopt::InexactPDSolver::RegisterOptions()'],['../classIpopt_1_1InexactPDTerminationTester.html#af72465cd36d75cedd602456be728c0d9',1,'Ipopt::InexactPDTerminationTester::RegisterOptions()'],['../classIpopt_1_1InexactSearchDirCalculator.html#a6b02443fe844835d954c3138c61bd0bf',1,'Ipopt::InexactSearchDirCalculator::RegisterOptions()'],['../classIpopt_1_1IterativePardisoSolverInterface.html#a1646042f9217546da3f50c95d1f1032f',1,'Ipopt::IterativePardisoSolverInterface::RegisterOptions()'],['../classIpopt_1_1AdaptiveMuUpdate.html#a3ea28e8222cc9b1442c6d8534126c490',1,'Ipopt::AdaptiveMuUpdate::RegisterOptions()'],['../classIpopt_1_1AlgorithmBuilder.html#abb36238fabd5aa3ea5f6ecfc4c40d6a7',1,'Ipopt::AlgorithmBuilder::RegisterOptions()'],['../classIpopt_1_1BacktrackingLineSearch.html#a8bf0859cf762f870bf270f0c4c87c8fa',1,'Ipopt::BacktrackingLineSearch::RegisterOptions()'],['../classIpopt_1_1BacktrackingLSAcceptor.html#a948e091f9b593bfd4b057053f3c7077e',1,'Ipopt::BacktrackingLSAcceptor::RegisterOptions()'],['../classIpopt_1_1EquilibrationScaling.html#a443dd4fda46e8911de15150018052260',1,'Ipopt::EquilibrationScaling::RegisterOptions()'],['../classIpopt_1_1PDFullSpaceSolver.html#a48ccadea2bef95f5f335830463a6c8e5',1,'Ipopt::PDFullSpaceSolver::RegisterOptions()'],['../classIpopt_1_1OrigIterationOutput.html#a8e6fb688861aa41e6f4659b431ec8dca',1,'Ipopt::OrigIterationOutput::RegisterOptions()'],['../classIpopt_1_1OrigIpoptNLP.html#a2d43d86f8ff146fa09edc769cfd0dbcf',1,'Ipopt::OrigIpoptNLP::RegisterOptions()'],['../classIpopt_1_1OptimalityErrorConvergenceCheck.html#ac0b719e6525a8ebfef6bbf3ed26712f6',1,'Ipopt::OptimalityErrorConvergenceCheck::RegisterOptions()'],['../classIpopt_1_1StandardScalingBase.html#aa70659fdcafd46e6e8a26a37cbf48c28',1,'Ipopt::StandardScalingBase::RegisterOptions()'],['../classIpopt_1_1MonotoneMuUpdate.html#ae2c8414202ca817cc77a06815413aa41',1,'Ipopt::MonotoneMuUpdate::RegisterOptions()'],['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a3188133b8913b894c778ddc89d6c3dd2',1,'Ipopt::LimMemQuasiNewtonUpdater::RegisterOptions()'],['../classIpopt_1_1IpoptData.html#ab597ccfaab6bb0171d5c65196f804ded',1,'Ipopt::IpoptData::RegisterOptions()'],['../classIpopt_1_1IpoptCalculatedQuantities.html#afe82ce10ea4ab69b38a81fc5f439370b',1,'Ipopt::IpoptCalculatedQuantities::RegisterOptions()'],['../classIpopt_1_1IpoptAlgorithm.html#ac8e03902f681e8d3e7089efc103f58ed',1,'Ipopt::IpoptAlgorithm::RegisterOptions()'],['../classIpopt_1_1GradientScaling.html#af99cbf0d22944681ec7afd11be00a8df',1,'Ipopt::GradientScaling::RegisterOptions()'],['../classIpopt_1_1FilterLSAcceptor.html#a1641246a9e392227b67bbd688c67f031',1,'Ipopt::FilterLSAcceptor::RegisterOptions()'],['../classIpopt_1_1DefaultIterateInitializer.html#aef6fd1af247a0219573b9071a31bc3f7',1,'Ipopt::DefaultIterateInitializer::RegisterOptions()']]], - ['registeroptions_5falgorithm_51',['RegisterOptions_Algorithm',['../namespaceIpopt.html#a385e6ad5a3662c457aa4af3fa0b2c24d',1,'Ipopt']]], - ['registeroptions_5fcgpenalty_52',['RegisterOptions_CGPenalty',['../namespaceIpopt.html#a4456b4cd31d5d2859c972c71b5804118',1,'Ipopt']]], - ['registeroptions_5finexact_53',['RegisterOptions_Inexact',['../namespaceIpopt.html#af7180660bd07fa8efb669a2b6ffd6f97',1,'Ipopt']]], - ['registeroptions_5finterfaces_54',['RegisterOptions_Interfaces',['../namespaceIpopt.html#a5c6bb3514c26c65d40d06a490c2c34a2',1,'Ipopt']]], - ['registeroptions_5flinearsolvers_55',['RegisterOptions_LinearSolvers',['../namespaceIpopt.html#ac13fbf74ce650285025c5a6e84bb511b',1,'Ipopt']]], - ['registeroptions_5fsipopt_56',['RegisterOptions_sIPOPT',['../namespaceIpopt.html#a9f8cdfe8a995380c9e20595952178386',1,'Ipopt']]], - ['regoptions_57',['RegOptions',['../classIpopt_1_1IpoptApplication.html#a6f0bfd1cac08fa9a3fe9de4d47d42e04',1,'Ipopt::IpoptApplication']]], - ['regoptions_5f_58',['regoptions_',['../classIpopt_1_1RegisteredCategory.html#aa0aecaeb261e8b8d90c7e740e3d9352e',1,'Ipopt::RegisteredCategory']]], - ['regoptionslist_59',['RegOptionsList',['../classIpopt_1_1RegisteredOptions.html#ae13f9ef9aeba8fb5eb4aa4fae754094d',1,'Ipopt::RegisteredOptions']]], - ['regularmode_60',['regularmode',['../IpReturnCodes__inc_8h.html#a5daff61568f9909c518fb61116260387aaab2802dbcdfe8648618b9bdcd02e3cb',1,'RegularMode: IpReturnCodes_inc.h'],['../classorg_1_1coinor_1_1Ipopt.html#af185184ae1fe687e64a5f5880c48813d',1,'org.coinor.Ipopt.REGULARMODE']]], - ['relax_5fbounds_61',['relax_bounds',['../classIpopt_1_1TNLPAdapter.html#a9613d9f090849cf038c2e27d847fe723a23d6783c50ae47d4d8f6f486db23ff5a',1,'Ipopt::TNLPAdapter::RELAX_BOUNDS'],['../classIpopt_1_1OrigIpoptNLP.html#a527887cb622251b97802ec2d862cbef5',1,'Ipopt::OrigIpoptNLP::relax_bounds()']]], - ['release_202004_2004_2028_62',['no new release (2004-04-28)',['../md_ChangeLog.html#autotoc_md117',1,'']]], - ['release_202005_2001_2007_63',['no new release (2005-01-07)',['../md_ChangeLog.html#autotoc_md112',1,'']]], - ['release_202005_2008_2019_64',['no new release (2005-08-19)',['../md_ChangeLog.html#autotoc_md110',1,'']]], - ['release_20number_20510_65',['3.0.0 (2005-08-26) - dev release number 510',['../md_ChangeLog.html#autotoc_md108',1,'']]], - ['release_20number_20714_66',['3.1.0 (2006-04-08) - dev release number 714',['../md_ChangeLog.html#autotoc_md105',1,'']]], - ['release_20number_20757_67',['3.2.0 (2006-07-07) - dev release number 757',['../md_ChangeLog.html#autotoc_md103',1,'']]], - ['release_20number_20764_68',['3.2.1 (2006-07-14) - dev release number 764',['../md_ChangeLog.html#autotoc_md102',1,'']]], - ['released_20under_69',['What license is Ipopt released under?',['../FAQ.html#autotoc_md2',1,'']]], - ['releasepointer_5f_70',['ReleasePointer_',['../classIpopt_1_1SmartPtr.html#ab74ca6e796ac58fa4ad335d8112ffae2',1,'Ipopt::SmartPtr']]], - ['releaseref_71',['ReleaseRef',['../classIpopt_1_1ReferencedObject.html#ae6c952e7d1a63080dc8f121c008944fc',1,'Ipopt::ReferencedObject']]], - ['remembercurrentpointasaccepted_72',['RememberCurrentPointAsAccepted',['../classIpopt_1_1AdaptiveMuUpdate.html#aa81a487e86ff119827c39c11eb43beba',1,'Ipopt::AdaptiveMuUpdate']]], - ['reoptimizenlp_73',['ReOptimizeNLP',['../classIpopt_1_1IpoptApplication.html#a483aa387ec56687a106d414da5df4ad8',1,'Ipopt::IpoptApplication']]], - ['reoptimizetnlp_74',['ReOptimizeTNLP',['../classIpopt_1_1IpoptApplication.html#a24de5d491b570b01e36a329c5a3c9471',1,'Ipopt::IpoptApplication']]], - ['replace_5fbounds_5f_75',['replace_bounds_',['../classIpopt_1_1IpoptApplication.html#ab92fa64e176440496ef8c4986752b369',1,'Ipopt::IpoptApplication']]], - ['reportexception_76',['ReportException',['../classIpopt_1_1IpoptException.html#a590c35a9c2f5984574933f9fcaab25c4',1,'Ipopt::IpoptException']]], - ['representation_77',['Coding the Problem Representation',['../INTERFACES.html#INTERFACE_CPP_NLP',1,'']]], - ['requestattach_78',['RequestAttach',['../classIpopt_1_1Observer.html#ad8a27925a917ba926d713ceaac3efd7d',1,'Ipopt::Observer']]], - ['requestdetach_79',['RequestDetach',['../classIpopt_1_1Observer.html#a7006c91bc2893aa7aaa03799820f76dd',1,'Ipopt::Observer']]], - ['requires_5fscaling_5f_80',['requires_scaling_',['../classIpopt_1_1InexactNormalTerminationTester.html#a50a785f30f6d780f95305c60a5f7928d',1,'Ipopt::InexactNormalTerminationTester::requires_scaling_'],['../classIpopt_1_1InexactPDTerminationTester.html#a3cd35df38dc35f23034119d6482af87e',1,'Ipopt::InexactPDTerminationTester::requires_scaling_']]], - ['rescale_5f_81',['rescale_',['../classIpopt_1_1Ma97SolverInterface.html#ac5206adc2a591813af6faac0c55fdada',1,'Ipopt::Ma97SolverInterface::rescale_'],['../classIpopt_1_1SpralSolverInterface.html#a82b95f9f2d3359f346758ecf49667627',1,'Ipopt::SpralSolverInterface::rescale_']]], - ['reset_82',['reset',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a9d9c631b4bd1d3c1ee4800addb702a1a',1,'Ipopt::CGPenaltyLSAcceptor::Reset()'],['../classIpopt_1_1InexactLSAcceptor.html#a1a7cccb588951eebf3ea838d3af14581',1,'Ipopt::InexactLSAcceptor::Reset()'],['../classIpopt_1_1BacktrackingLineSearch.html#ac5f93da335cb0a2d7d2eb324664839a9',1,'Ipopt::BacktrackingLineSearch::Reset()'],['../classIpopt_1_1BacktrackingLSAcceptor.html#a9186dcaa4d969aaeb9579dc47de70acc',1,'Ipopt::BacktrackingLSAcceptor::Reset()'],['../classIpopt_1_1FilterLSAcceptor.html#aa7719befa41ec1b44db3c752814fa17d',1,'Ipopt::FilterLSAcceptor::Reset()'],['../classIpopt_1_1LineSearch.html#ad33f5703834e99614d2eace2846ac5c0',1,'Ipopt::LineSearch::Reset()'],['../classIpopt_1_1PenaltyLSAcceptor.html#a840b8529b9f2f3b42e90ba33d8a932fe',1,'Ipopt::PenaltyLSAcceptor::Reset()'],['../classIpopt_1_1TimedTask.html#a7f249501c707ba9c0bec5cecee93cc65',1,'Ipopt::TimedTask::Reset()']]], - ['reset_5fdata_5fa_83',['reset_data_A',['../classIpopt_1_1PCalculator.html#a61c8c9077bc0147a389039b9d322ef67',1,'Ipopt::PCalculator']]], - ['reset_5flast_5f_84',['reset_last_',['../classIpopt_1_1PDPerturbationHandler.html#aa343fb3486b55a5c181f246bdf375c2c',1,'Ipopt::PDPerturbationHandler']]], - ['reset_5fpiecewise_5fpenalty_5f_85',['reset_piecewise_penalty_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#aface14d70b5a851ae582b09769174ebf',1,'Ipopt::CGPenaltyLSAcceptor']]], - ['resetadjustedtrialslacks_86',['ResetAdjustedTrialSlacks',['../classIpopt_1_1IpoptCalculatedQuantities.html#aff56a0ca444d41d9330d314bb49d681f',1,'Ipopt::IpoptCalculatedQuantities']]], - ['resetinfo_87',['ResetInfo',['../classIpopt_1_1IpoptData.html#a885f82e4eed0d97b5f0e99a862a4bc42',1,'Ipopt::IpoptData']]], - ['resetlist_88',['ResetList',['../classIpopt_1_1PiecewisePenalty.html#a6cf7901c5173b6bbade4d1f59eccc967',1,'Ipopt::PiecewisePenalty']]], - ['resetslacks_89',['ResetSlacks',['../classIpopt_1_1InexactLSAcceptor.html#a70c538d464d4c11c7e7fb13854f1c73f',1,'Ipopt::InexactLSAcceptor']]], - ['resettimes_90',['ResetTimes',['../classIpopt_1_1TimingStatistics.html#a5d48b224373c66adc04d72577205a9ae',1,'Ipopt::TimingStatistics']]], - ['residual_5fimprovement_5ffactor_5f_91',['residual_improvement_factor_',['../classIpopt_1_1PDFullSpaceSolver.html#ad3b0584f56b6f8e4efa18baaf9935b65',1,'Ipopt::PDFullSpaceSolver']]], - ['residual_5fratio_5fmax_5f_92',['residual_ratio_max_',['../classIpopt_1_1PDFullSpaceSolver.html#a849d798f5baf7c6f6cbbbc1f50bc66b9',1,'Ipopt::PDFullSpaceSolver']]], - ['residual_5fratio_5fsingular_5f_93',['residual_ratio_singular_',['../classIpopt_1_1PDFullSpaceSolver.html#a51bfe28b534b5edae4b172b9f6e338ea',1,'Ipopt::PDFullSpaceSolver']]], - ['resortbnds_94',['ResortBnds',['../classIpopt_1_1TNLPAdapter.html#a27af8d1553bc89fc1c003459bb082fcc',1,'Ipopt::TNLPAdapter']]], - ['resortboundmultipliers_95',['ResortBoundMultipliers',['../classIpopt_1_1TNLPAdapter.html#acd0254ec27ef13e6dc8527154f9713bc',1,'Ipopt::TNLPAdapter']]], - ['resortbounds_96',['ResortBounds',['../classIpopt_1_1TNLPAdapter.html#a0c135f4a0ca1a65154feb164ff3e45ae',1,'Ipopt::TNLPAdapter']]], - ['resortg_97',['ResortG',['../classIpopt_1_1TNLPAdapter.html#aa7d13eace81ff7d3181ef629ce3a4a6d',1,'Ipopt::TNLPAdapter']]], - ['resortx_98',['ResortX',['../classIpopt_1_1TNLPAdapter.html#a1f19ad31a25cbed6090f504857e85959',1,'Ipopt::TNLPAdapter']]], - ['resto_5falg_5f_99',['resto_alg_',['../classIpopt_1_1MinC__1NrmRestorationPhase.html#ad9cd4c1c85e57143ce20032ca80527f1',1,'Ipopt::MinC_1NrmRestorationPhase']]], - ['resto_5feq_5fmult_5fcalculator_5f_100',['resto_eq_mult_calculator_',['../classIpopt_1_1RestoIterateInitializer.html#a1f65fd85978e6711fc117adfd10fc485',1,'Ipopt::RestoIterateInitializer']]], - ['resto_5ffailure_5ffeasibility_5fthreshold_5f_101',['resto_failure_feasibility_threshold_',['../classIpopt_1_1MinC__1NrmRestorationPhase.html#a3907c6e88721be5f0a4bd84048e9b2a2',1,'Ipopt::MinC_1NrmRestorationPhase']]], - ['resto_5foptions_5f_102',['resto_options_',['../classIpopt_1_1MinC__1NrmRestorationPhase.html#a4c9ca3387257bee1907d657e8fa148b3',1,'Ipopt::MinC_1NrmRestorationPhase']]], - ['resto_5forig_5fiteration_5foutput_5f_103',['resto_orig_iteration_output_',['../classIpopt_1_1RestoIterationOutput.html#a3a513942ae3b29528486ae1225d07450',1,'Ipopt::RestoIterationOutput']]], - ['resto_5fphase_5f_104',['resto_phase_',['../classIpopt_1_1BacktrackingLineSearch.html#ada2890e814f72f72556b43dc50630a9f',1,'Ipopt::BacktrackingLineSearch']]], - ['resto_5fpred_5f_105',['resto_pred_',['../classIpopt_1_1PenaltyLSAcceptor.html#a622b63cf06d89162dd6d1586b06518ba',1,'Ipopt::PenaltyLSAcceptor::resto_pred_'],['../classIpopt_1_1InexactLSAcceptor.html#aed27ed7f9098f2cdaecfcf78c57a946a',1,'Ipopt::InexactLSAcceptor::resto_pred_']]], - ['restoconvergencecheck_106',['restoconvergencecheck',['../classIpopt_1_1RestoConvergenceCheck.html#aa98e9bbe93bca27a571085ce9ff4a972',1,'Ipopt::RestoConvergenceCheck::RestoConvergenceCheck()'],['../classIpopt_1_1RestoConvergenceCheck.html',1,'Ipopt::RestoConvergenceCheck'],['../classIpopt_1_1RestoConvergenceCheck.html#aea0959028bda24ac812ea66d43f26354',1,'Ipopt::RestoConvergenceCheck::RestoConvergenceCheck()']]], - ['restofilterconvergencecheck_107',['restofilterconvergencecheck',['../classIpopt_1_1RestoFilterConvergenceCheck.html#a6154d5424191ef92b9b010965ff6e401',1,'Ipopt::RestoFilterConvergenceCheck::RestoFilterConvergenceCheck()'],['../classIpopt_1_1RestoFilterConvergenceCheck.html',1,'Ipopt::RestoFilterConvergenceCheck'],['../classIpopt_1_1RestoFilterConvergenceCheck.html#a260d4be553eaa335187f4e394d72e89d',1,'Ipopt::RestoFilterConvergenceCheck::RestoFilterConvergenceCheck()']]], - ['restoipoptnlp_108',['restoipoptnlp',['../classIpopt_1_1RestoIpoptNLP.html',1,'Ipopt::RestoIpoptNLP'],['../classIpopt_1_1RestoIpoptNLP.html#ae7921dfab15c5c9c7bd042babd4b9f9a',1,'Ipopt::RestoIpoptNLP::RestoIpoptNLP(IpoptNLP &orig_ip_nlp, IpoptData &orig_ip_data, IpoptCalculatedQuantities &orig_ip_cq)'],['../classIpopt_1_1RestoIpoptNLP.html#a61da4a7113966f6fafc70afe2aa93e64',1,'Ipopt::RestoIpoptNLP::RestoIpoptNLP()'],['../classIpopt_1_1RestoIpoptNLP.html#ae59df458609ca72cfb4da737d79b5048',1,'Ipopt::RestoIpoptNLP::RestoIpoptNLP(const RestoIpoptNLP &)']]], - ['restoiterateinitializer_109',['restoiterateinitializer',['../classIpopt_1_1RestoIterateInitializer.html#ad66c5638a71aca4c5604cc018bf6675c',1,'Ipopt::RestoIterateInitializer::RestoIterateInitializer(const SmartPtr< EqMultiplierCalculator > &eq_mult_calculator)'],['../classIpopt_1_1RestoIterateInitializer.html#a42a7d05dc6bf280e9e97796ebd30f04d',1,'Ipopt::RestoIterateInitializer::RestoIterateInitializer()'],['../classIpopt_1_1RestoIterateInitializer.html#a69815e84a3971f39c387324ab390fdee',1,'Ipopt::RestoIterateInitializer::RestoIterateInitializer(const RestoIterateInitializer &)'],['../classIpopt_1_1RestoIterateInitializer.html',1,'Ipopt::RestoIterateInitializer']]], - ['restoiterationoutput_110',['restoiterationoutput',['../classIpopt_1_1RestoIterationOutput.html#abc7a583078b7bd5eae6092db3a57c500',1,'Ipopt::RestoIterationOutput::RestoIterationOutput(const SmartPtr< OrigIterationOutput > &resto_orig_iteration_output)'],['../classIpopt_1_1RestoIterationOutput.html#ac717737ae83fb59be251e7c97e543a9b',1,'Ipopt::RestoIterationOutput::RestoIterationOutput()'],['../classIpopt_1_1RestoIterationOutput.html#a0df6e60988124aa3a74b61b96e9d339e',1,'Ipopt::RestoIterationOutput::RestoIterationOutput(const RestoIterationOutput &)'],['../classIpopt_1_1RestoIterationOutput.html',1,'Ipopt::RestoIterationOutput']]], - ['restopenaltyconvergencecheck_111',['restopenaltyconvergencecheck',['../classIpopt_1_1RestoPenaltyConvergenceCheck.html#ac5a0d7a55f3008d594f72227656f94ec',1,'Ipopt::RestoPenaltyConvergenceCheck::RestoPenaltyConvergenceCheck()'],['../classIpopt_1_1RestoPenaltyConvergenceCheck.html',1,'Ipopt::RestoPenaltyConvergenceCheck'],['../classIpopt_1_1RestoPenaltyConvergenceCheck.html#a2022b6e91f58eb4721b143552a6e8548',1,'Ipopt::RestoPenaltyConvergenceCheck::RestoPenaltyConvergenceCheck()']]], - ['restor_5fcounter_112',['restor_counter',['../classIpopt_1_1CGPenaltyData.html#af3636e593be3a1a50b6b967e77bc934b',1,'Ipopt::CGPenaltyData']]], - ['restor_5fcounter_5f_113',['restor_counter_',['../classIpopt_1_1CGPenaltyData.html#ac5e7498173de1c11129713647d80cdae',1,'Ipopt::CGPenaltyData']]], - ['restor_5fiter_114',['restor_iter',['../classIpopt_1_1CGPenaltyData.html#a4f517e4f4fbb18d667c78fb476744c1f',1,'Ipopt::CGPenaltyData']]], - ['restor_5fiter_5f_115',['restor_iter_',['../classIpopt_1_1CGPenaltyData.html#a8fc789403dc890a519ba916a2a0f5175',1,'Ipopt::CGPenaltyData']]], - ['restoration_20phase_116',['Restoration Phase',['../OPTIONS.html#OPT_Restoration_Phase',1,'']]], - ['restoration_5ffailed_117',['restoration_failed',['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7a019adb1693a37754d6e4835fe9f84bd0',1,'Restoration_Failed: IpReturnCodes_inc.h'],['../classorg_1_1coinor_1_1Ipopt.html#ac7f5039b29dd61866610e3a8e8a403b8',1,'org.coinor.Ipopt.RESTORATION_FAILED']]], - ['restoration_5ffailure_118',['RESTORATION_FAILURE',['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834a06801e8b7ed2cce86a01b6ccf3bdc591',1,'Ipopt']]], - ['restorationphase_119',['restorationphase',['../classIpopt_1_1RestorationPhase.html#ac5ef685cf3f924bf9ff370842b7cdfee',1,'Ipopt::RestorationPhase::RestorationPhase()'],['../classIpopt_1_1RestorationPhase.html',1,'Ipopt::RestorationPhase'],['../classIpopt_1_1RestorationPhase.html#a84bf22fc34120f0f79d080d6236919bc',1,'Ipopt::RestorationPhase::RestorationPhase()']]], - ['restorationphasemode_120',['restorationphasemode',['../IpReturnCodes__inc_8h.html#a5daff61568f9909c518fb61116260387accee74140d41706398be37bc4b04a703',1,'RestorationPhaseMode: IpReturnCodes_inc.h'],['../classorg_1_1coinor_1_1Ipopt.html#a3f2f733983ced5bb2db465a6e9329a45',1,'org.coinor.Ipopt.RESTORATIONPHASEMODE']]], - ['restore_5faccepted_5fiterate_5f_121',['restore_accepted_iterate_',['../classIpopt_1_1AdaptiveMuUpdate.html#a4ccc21df9993cadb091dfd10182fd5af',1,'Ipopt::AdaptiveMuUpdate']]], - ['restoreacceptablepoint_122',['RestoreAcceptablePoint',['../classIpopt_1_1BacktrackingLineSearch.html#aa0a57f17d8646480bb31b424039bcb3b',1,'Ipopt::BacktrackingLineSearch']]], - ['restorebestpoint_123',['RestoreBestPoint',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a622419aee9d39bc2649f5213b8d774e0',1,'Ipopt::CGPenaltyLSAcceptor']]], - ['restorediterate_124',['restorediterate',['../classIpopt_1_1BacktrackingLSAcceptor.html#a23f8a7e07b7ab0e0d91a40d846b59472',1,'Ipopt::BacktrackingLSAcceptor::RestoredIterate()'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#abe021b3ea44200bbb04acc75391927d3',1,'Ipopt::CGPenaltyLSAcceptor::RestoredIterate()']]], - ['restoreinternaldatabackup_125',['RestoreInternalDataBackup',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a8e7c02278b58807cd441410d983e3fd0',1,'Ipopt::LimMemQuasiNewtonUpdater']]], - ['restorestorationphase_126',['restorestorationphase',['../classIpopt_1_1RestoRestorationPhase.html',1,'Ipopt::RestoRestorationPhase'],['../classIpopt_1_1RestoRestorationPhase.html#ae49dbf5dad4b3ac021a084a165581472',1,'Ipopt::RestoRestorationPhase::RestoRestorationPhase(const RestoRestorationPhase &)'],['../classIpopt_1_1RestoRestorationPhase.html#a0f0fea6e91a9fca43605a799358d8967',1,'Ipopt::RestoRestorationPhase::RestoRestorationPhase()']]], - ['result_5f_127',['result_',['../classIpopt_1_1DependentResult.html#a4095cad07fe069984328506b30b3821c',1,'Ipopt::DependentResult']]], - ['rethrow_5fnonipoptexception_5f_128',['rethrow_nonipoptexception_',['../classIpopt_1_1IpoptApplication.html#a344967945748a2dba0025829c95c3649',1,'Ipopt::IpoptApplication']]], - ['rethrownonipoptexception_129',['RethrowNonIpoptException',['../classIpopt_1_1IpoptApplication.html#a83e1b7a32982852aee98f8a43e3e77a6',1,'Ipopt::IpoptApplication']]], - ['rho_130',['Rho',['../classIpopt_1_1RestoIpoptNLP.html#a24cbed6e8488d2562f3357a9a6605988',1,'Ipopt::RestoIpoptNLP']]], - ['rho_5f_131',['rho_',['../classIpopt_1_1InexactLSAcceptor.html#a16d8506723fef0663607c31ade4be31b',1,'Ipopt::InexactLSAcceptor::rho_'],['../classIpopt_1_1InexactPDTerminationTester.html#a20f8f3ca87f5b481f74f6f2800639c06',1,'Ipopt::InexactPDTerminationTester::rho_'],['../classIpopt_1_1PenaltyLSAcceptor.html#ad55e28010d389378489f306e6b128964',1,'Ipopt::PenaltyLSAcceptor::rho_'],['../classIpopt_1_1RestoIpoptNLP.html#a483d56d70fd60d3ffbaa6a8e5513744a',1,'Ipopt::RestoIpoptNLP::rho_']]], - ['rhs_5fcr_132',['Rhs_cR',['../classIpopt_1_1AugRestoSystemSolver.html#a14c03a65d291a06f7ececa74b3482bc6',1,'Ipopt::AugRestoSystemSolver']]], - ['rhs_5fcr_5fcache_5f_133',['rhs_cR_cache_',['../classIpopt_1_1AugRestoSystemSolver.html#afc053e09bc495b187f27e6c826e2bfa3',1,'Ipopt::AugRestoSystemSolver']]], - ['rhs_5fdr_134',['Rhs_dR',['../classIpopt_1_1AugRestoSystemSolver.html#a55ee19722884c032cce55471351b45b1',1,'Ipopt::AugRestoSystemSolver']]], - ['rhs_5fdr_5fcache_5f_135',['rhs_dR_cache_',['../classIpopt_1_1AugRestoSystemSolver.html#a6d89b6aaddfdebd9feaff74463524faf',1,'Ipopt::AugRestoSystemSolver']]], - ['rigorous_5f_136',['rigorous_',['../classIpopt_1_1BacktrackingLineSearch.html#a81cc850183ffef4215927545b8fe8451',1,'Ipopt::BacktrackingLineSearch']]], - ['robust_20algorithms_20library_137',['SPRAL (Sparse Parallel Robust Algorithms Library)',['../INSTALL.html#DOWNLOAD_SPRAL',1,'']]], - ['row_5ffull_5fthresh_138',['row_full_thresh',['../structmc68__control__i.html#abe30f64b3362248eed7036142d386f2c',1,'mc68_control_i']]], - ['row_5fscaling_5f_139',['row_scaling_',['../classIpopt_1_1ScaledMatrixSpace.html#a9439e7c2c6c4cd5e4e23fba89fb63750',1,'Ipopt::ScaledMatrixSpace']]], - ['row_5fsearch_140',['row_search',['../structmc68__control__i.html#a8f88261e7bef1e947173ffc68cad0162',1,'mc68_control_i']]], - ['rowcolscaling_141',['rowcolscaling',['../classIpopt_1_1SymScaledMatrixSpace.html#a0d26e0d8ababff487c004ff1a9d95272',1,'Ipopt::SymScaledMatrixSpace::RowColScaling()'],['../classIpopt_1_1SymScaledMatrix.html#a02e5ed72d6f99d5add1116f46a02641a',1,'Ipopt::SymScaledMatrix::RowColScaling()']]], - ['rowscaling_142',['rowscaling',['../classIpopt_1_1ScaledMatrix.html#a6d196b32119ec34a8f11d8e47d5f050f',1,'Ipopt::ScaledMatrix::RowScaling()'],['../classIpopt_1_1ScaledMatrixSpace.html#a0ae7816bb0219df6907903217b32630f',1,'Ipopt::ScaledMatrixSpace::RowScaling()']]], - ['rowvectorspace_143',['rowvectorspace',['../classIpopt_1_1ExpandedMultiVectorMatrix.html#a7a154afa75a5c5facbb95ffd7228b709',1,'Ipopt::ExpandedMultiVectorMatrix::RowVectorSpace()'],['../classIpopt_1_1ExpandedMultiVectorMatrixSpace.html#a9c71d1269e2fb826c16a2fe357e08034',1,'Ipopt::ExpandedMultiVectorMatrixSpace::RowVectorSpace()']]], - ['rspare_144',['rspare',['../structma97__info__s.html#a2aec1d294212368ddf425f9a195f7cd4',1,'ma97_info_s::rspare'],['../structma97__control__s.html#aab450009c5e974bf3b0f50918fcb51e8',1,'ma97_control_s::rspare'],['../structma97__info__d.html#acfd7e244c5da68fbf485435aa4ed1351',1,'ma97_info_d::rspare'],['../structma97__control__d.html#a384c8260fc9cbe069d20e7a0e24bdeaa',1,'ma97_control_d::rspare'],['../structma77__info__s.html#aa035bffb2139be7756c87e79df3503a8',1,'ma77_info_s::rspare'],['../structma77__control__s.html#aa288b021afb088522a5e5956d3d16fa0',1,'ma77_control_s::rspare'],['../structma77__info__d.html#a5fee72858637ac9108d4863298ed5ebd',1,'ma77_info_d::rspare'],['../structma77__control__d.html#a3854dab3e149e9d72c4c91d2abf9eb04',1,'ma77_control_d::rspare']]], - ['run_145',['run',['../classIpopt_1_1SensAlgorithm.html#a6170ca071834ff03e981e010412d4f98',1,'Ipopt::SensAlgorithm::Run()'],['../classIpopt_1_1SensApplication.html#a83eebc2a9636e2ab26f3ba3755ed0416',1,'Ipopt::SensApplication::Run()']]], - ['run_5fsens_5f_146',['run_sens_',['../classIpopt_1_1SensApplication.html#a2da41778758559a9bff0767d352ae711',1,'Ipopt::SensApplication::run_sens_'],['../classIpopt_1_1SensAmplTNLP.html#a365130391fecebb01f0e0b29fd660ed4',1,'Ipopt::SensAmplTNLP::run_sens_']]], - ['runtime_147',['Providing a HSL library at runtime',['../INSTALL.html#LINEARSOLVERLOADER',1,'']]] + ['registerinterrupthandler_50',['RegisterInterruptHandler',['../namespaceIpopt.html#a67b597ce79fdd866ca80f49e553439ea',1,'Ipopt']]], + ['registeroptions_51',['registeroptions',['../classIpopt_1_1Ma86SolverInterface.html#ad1b52287e8b2c500b909d924970baba4',1,'Ipopt::Ma86SolverInterface::RegisterOptions()'],['../classIpopt_1_1ProbingMuOracle.html#a27081c7adc587ed76474cca99175fce5',1,'Ipopt::ProbingMuOracle::RegisterOptions()'],['../classIpopt_1_1Ma77SolverInterface.html#ae4aa999611ef53e230086f450d27dc2c',1,'Ipopt::Ma77SolverInterface::RegisterOptions()'],['../classIpopt_1_1Ma57TSolverInterface.html#a179f75991cbc1e72f29fe39d96dc8b75',1,'Ipopt::Ma57TSolverInterface::RegisterOptions()'],['../classIpopt_1_1Ma28TDependencyDetector.html#a200ddcb1f7063bf8fec35469c827a49f',1,'Ipopt::Ma28TDependencyDetector::RegisterOptions()'],['../classIpopt_1_1Ma27TSolverInterface.html#a75956e60e11e47f9defd21448168e187',1,'Ipopt::Ma27TSolverInterface::RegisterOptions()'],['../classIpopt_1_1IterativeWsmpSolverInterface.html#afe030df840e6e688f2ea3a9ee527eb13',1,'Ipopt::IterativeWsmpSolverInterface::RegisterOptions()'],['../classIpopt_1_1WarmStartIterateInitializer.html#a938724ed700eca30c32c3f7f9017eb0c',1,'Ipopt::WarmStartIterateInitializer::RegisterOptions()'],['../classIpopt_1_1RestoPenaltyConvergenceCheck.html#ac84145578c754797bce41ee2af177e2b',1,'Ipopt::RestoPenaltyConvergenceCheck::RegisterOptions()'],['../classIpopt_1_1MinC__1NrmRestorationPhase.html#aaed60810f6751ec3e46668e945b08b76',1,'Ipopt::MinC_1NrmRestorationPhase::RegisterOptions()'],['../classIpopt_1_1RestoIterateInitializer.html#af00b36b6bd6aa0a0177aef7f51d7f51b',1,'Ipopt::RestoIterateInitializer::RegisterOptions()'],['../classIpopt_1_1RestoIpoptNLP.html#aca2c0e491607b5291fe47de944373e0c',1,'Ipopt::RestoIpoptNLP::RegisterOptions()'],['../classIpopt_1_1RestoFilterConvergenceCheck.html#a9d6424ef4356ab2694e548daad9b39b2',1,'Ipopt::RestoFilterConvergenceCheck::RegisterOptions()'],['../classIpopt_1_1RestoConvergenceCheck.html#a92c6ec2e331dc5085b6600ac977bb7e2',1,'Ipopt::RestoConvergenceCheck::RegisterOptions()'],['../classIpopt_1_1QualityFunctionMuOracle.html#a159434694a4a0b414341ab5de80dc32f',1,'Ipopt::QualityFunctionMuOracle::RegisterOptions()'],['../classIpopt_1_1PDSearchDirCalculator.html#a7d20d557c24eafe7ceec21946121044d',1,'Ipopt::PDSearchDirCalculator::RegisterOptions()'],['../classIpopt_1_1Ma97SolverInterface.html#a8bbb074fb095afc9232b21a4f969ac51',1,'Ipopt::Ma97SolverInterface::RegisterOptions()'],['../classIpopt_1_1MumpsSolverInterface.html#a1c87092ecca460918419008593c3f140',1,'Ipopt::MumpsSolverInterface::RegisterOptions()'],['../classIpopt_1_1PardisoMKLSolverInterface.html#ab199200c418434848c5bf0d22360c612',1,'Ipopt::PardisoMKLSolverInterface::RegisterOptions()'],['../classIpopt_1_1PardisoSolverInterface.html#a2714301e798b4c1ae6e87dd41c7000a2',1,'Ipopt::PardisoSolverInterface::RegisterOptions()'],['../classIpopt_1_1SpralSolverInterface.html#ac2257103d9a1f3a83ca9f397aa75d2fe',1,'Ipopt::SpralSolverInterface::RegisterOptions()'],['../classIpopt_1_1TSymDependencyDetector.html#a8eee5e6395d339313258aae4499b35fc',1,'Ipopt::TSymDependencyDetector::RegisterOptions()'],['../classIpopt_1_1TSymLinearSolver.html#ad09894475039a90d87b564c7cb2f185d',1,'Ipopt::TSymLinearSolver::RegisterOptions()'],['../classIpopt_1_1WsmpSolverInterface.html#aeeb760e84110b8415d9c2bc7940efd2c',1,'Ipopt::WsmpSolverInterface::RegisterOptions()'],['../classIpopt_1_1RegisteredOptions.html#a20f15c22268c9098ed751d32d1125683',1,'Ipopt::RegisteredOptions::RegisterOptions()'],['../classIpopt_1_1CGPenaltyCq.html#a308c64081261b031d11ab9fce557f717',1,'Ipopt::CGPenaltyCq::RegisterOptions()'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#a6a24374dc62c0cf7bfd4ed04bad9f3f9',1,'Ipopt::CGPenaltyLSAcceptor::RegisterOptions()'],['../classIpopt_1_1CGPerturbationHandler.html#af7c091e66d74b8c9e0d41d6ab5bfd592',1,'Ipopt::CGPerturbationHandler::RegisterOptions()'],['../classIpopt_1_1CGSearchDirCalculator.html#a3b83859027473244f84045313a18c1e5',1,'Ipopt::CGSearchDirCalculator::RegisterOptions()'],['../classIpopt_1_1IpoptApplication.html#afa9569b07b3cec161c3d998e0fc520ba',1,'Ipopt::IpoptApplication::RegisterOptions()'],['../classIpopt_1_1TNLPAdapter.html#a470d71ff0c3e7fec7f00d34e7c0253bf',1,'Ipopt::TNLPAdapter::RegisterOptions()'],['../classIpopt_1_1SensApplication.html#aedbaa582139dc53f69a6e0f77ecc3ba2',1,'Ipopt::SensApplication::RegisterOptions()'],['../classIpopt_1_1PenaltyLSAcceptor.html#ac6abe9f599fb294ee597891c41f2f032',1,'Ipopt::PenaltyLSAcceptor::RegisterOptions()'],['../classIpopt_1_1InexactAlgorithmBuilder.html#a61dbb31f0b21765a10e3922e45eacfa9',1,'Ipopt::InexactAlgorithmBuilder::RegisterOptions()'],['../classIpopt_1_1InexactCq.html#a881d81cdeac7c46c35b8ea1fb5554fb9',1,'Ipopt::InexactCq::RegisterOptions()'],['../classIpopt_1_1InexactDoglegNormalStep.html#a82278b5ec2ede5687e9a239da69964a6',1,'Ipopt::InexactDoglegNormalStep::RegisterOptions()'],['../classIpopt_1_1InexactLSAcceptor.html#a440c3ed5086ddf6f4597264071e24bb3',1,'Ipopt::InexactLSAcceptor::RegisterOptions()'],['../classIpopt_1_1InexactNewtonNormalStep.html#aef234fb92871404831b9c9809a888831',1,'Ipopt::InexactNewtonNormalStep::RegisterOptions()'],['../classIpopt_1_1InexactNormalTerminationTester.html#a2504b3e1d0e3e52b7c310cf0c16eea0c',1,'Ipopt::InexactNormalTerminationTester::RegisterOptions()'],['../classIpopt_1_1InexactPDSolver.html#a001f7c31ab64f3720b5aa930892507cf',1,'Ipopt::InexactPDSolver::RegisterOptions()'],['../classIpopt_1_1InexactPDTerminationTester.html#af72465cd36d75cedd602456be728c0d9',1,'Ipopt::InexactPDTerminationTester::RegisterOptions()'],['../classIpopt_1_1InexactSearchDirCalculator.html#a6b02443fe844835d954c3138c61bd0bf',1,'Ipopt::InexactSearchDirCalculator::RegisterOptions()'],['../classIpopt_1_1IterativePardisoSolverInterface.html#a1646042f9217546da3f50c95d1f1032f',1,'Ipopt::IterativePardisoSolverInterface::RegisterOptions()'],['../classIpopt_1_1AdaptiveMuUpdate.html#a3ea28e8222cc9b1442c6d8534126c490',1,'Ipopt::AdaptiveMuUpdate::RegisterOptions()'],['../classIpopt_1_1AlgorithmBuilder.html#abb36238fabd5aa3ea5f6ecfc4c40d6a7',1,'Ipopt::AlgorithmBuilder::RegisterOptions()'],['../classIpopt_1_1BacktrackingLineSearch.html#a8bf0859cf762f870bf270f0c4c87c8fa',1,'Ipopt::BacktrackingLineSearch::RegisterOptions()'],['../classIpopt_1_1BacktrackingLSAcceptor.html#a948e091f9b593bfd4b057053f3c7077e',1,'Ipopt::BacktrackingLSAcceptor::RegisterOptions()'],['../classIpopt_1_1DefaultIterateInitializer.html#aef6fd1af247a0219573b9071a31bc3f7',1,'Ipopt::DefaultIterateInitializer::RegisterOptions()'],['../classIpopt_1_1FilterLSAcceptor.html#a1641246a9e392227b67bbd688c67f031',1,'Ipopt::FilterLSAcceptor::RegisterOptions()'],['../classIpopt_1_1PDPerturbationHandler.html#a4550a7afc13bb81c07b04f9127518748',1,'Ipopt::PDPerturbationHandler::RegisterOptions()'],['../classIpopt_1_1PDFullSpaceSolver.html#a48ccadea2bef95f5f335830463a6c8e5',1,'Ipopt::PDFullSpaceSolver::RegisterOptions()'],['../classIpopt_1_1OrigIterationOutput.html#a8e6fb688861aa41e6f4659b431ec8dca',1,'Ipopt::OrigIterationOutput::RegisterOptions()'],['../classIpopt_1_1OrigIpoptNLP.html#a2d43d86f8ff146fa09edc769cfd0dbcf',1,'Ipopt::OrigIpoptNLP::RegisterOptions()'],['../classIpopt_1_1OptimalityErrorConvergenceCheck.html#ac0b719e6525a8ebfef6bbf3ed26712f6',1,'Ipopt::OptimalityErrorConvergenceCheck::RegisterOptions()'],['../classIpopt_1_1StandardScalingBase.html#aa70659fdcafd46e6e8a26a37cbf48c28',1,'Ipopt::StandardScalingBase::RegisterOptions()'],['../classIpopt_1_1MonotoneMuUpdate.html#ae2c8414202ca817cc77a06815413aa41',1,'Ipopt::MonotoneMuUpdate::RegisterOptions()'],['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a3188133b8913b894c778ddc89d6c3dd2',1,'Ipopt::LimMemQuasiNewtonUpdater::RegisterOptions()'],['../classIpopt_1_1IpoptData.html#ab597ccfaab6bb0171d5c65196f804ded',1,'Ipopt::IpoptData::RegisterOptions()'],['../classIpopt_1_1IpoptCalculatedQuantities.html#afe82ce10ea4ab69b38a81fc5f439370b',1,'Ipopt::IpoptCalculatedQuantities::RegisterOptions()'],['../classIpopt_1_1IpoptAlgorithm.html#ac8e03902f681e8d3e7089efc103f58ed',1,'Ipopt::IpoptAlgorithm::RegisterOptions()'],['../classIpopt_1_1GradientScaling.html#af99cbf0d22944681ec7afd11be00a8df',1,'Ipopt::GradientScaling::RegisterOptions()'],['../classIpopt_1_1EquilibrationScaling.html#a443dd4fda46e8911de15150018052260',1,'Ipopt::EquilibrationScaling::RegisterOptions()']]], + ['registeroptions_5falgorithm_52',['RegisterOptions_Algorithm',['../namespaceIpopt.html#a385e6ad5a3662c457aa4af3fa0b2c24d',1,'Ipopt']]], + ['registeroptions_5fcgpenalty_53',['RegisterOptions_CGPenalty',['../namespaceIpopt.html#a4456b4cd31d5d2859c972c71b5804118',1,'Ipopt']]], + ['registeroptions_5finexact_54',['RegisterOptions_Inexact',['../namespaceIpopt.html#af7180660bd07fa8efb669a2b6ffd6f97',1,'Ipopt']]], + ['registeroptions_5finterfaces_55',['RegisterOptions_Interfaces',['../namespaceIpopt.html#a5c6bb3514c26c65d40d06a490c2c34a2',1,'Ipopt']]], + ['registeroptions_5flinearsolvers_56',['RegisterOptions_LinearSolvers',['../namespaceIpopt.html#ac13fbf74ce650285025c5a6e84bb511b',1,'Ipopt']]], + ['registeroptions_5fsipopt_57',['RegisterOptions_sIPOPT',['../namespaceIpopt.html#a9f8cdfe8a995380c9e20595952178386',1,'Ipopt']]], + ['regoptions_58',['RegOptions',['../classIpopt_1_1IpoptApplication.html#a6f0bfd1cac08fa9a3fe9de4d47d42e04',1,'Ipopt::IpoptApplication']]], + ['regoptions_5f_59',['regoptions_',['../classIpopt_1_1RegisteredCategory.html#aa0aecaeb261e8b8d90c7e740e3d9352e',1,'Ipopt::RegisteredCategory']]], + ['regoptionslist_60',['RegOptionsList',['../classIpopt_1_1RegisteredOptions.html#ae13f9ef9aeba8fb5eb4aa4fae754094d',1,'Ipopt::RegisteredOptions']]], + ['regularmode_61',['regularmode',['../IpReturnCodes__inc_8h.html#a5daff61568f9909c518fb61116260387aaab2802dbcdfe8648618b9bdcd02e3cb',1,'RegularMode: IpReturnCodes_inc.h'],['../classorg_1_1coinor_1_1Ipopt.html#af185184ae1fe687e64a5f5880c48813d',1,'org.coinor.Ipopt.REGULARMODE']]], + ['relax_5fbounds_62',['relax_bounds',['../classIpopt_1_1TNLPAdapter.html#a9613d9f090849cf038c2e27d847fe723a23d6783c50ae47d4d8f6f486db23ff5a',1,'Ipopt::TNLPAdapter::RELAX_BOUNDS'],['../classIpopt_1_1OrigIpoptNLP.html#a527887cb622251b97802ec2d862cbef5',1,'Ipopt::OrigIpoptNLP::relax_bounds()']]], + ['release_202004_2004_2028_63',['no new release (2004-04-28)',['../md_ChangeLog.html#autotoc_md119',1,'']]], + ['release_202005_2001_2007_64',['no new release (2005-01-07)',['../md_ChangeLog.html#autotoc_md114',1,'']]], + ['release_202005_2008_2019_65',['no new release (2005-08-19)',['../md_ChangeLog.html#autotoc_md112',1,'']]], + ['release_20number_20510_66',['3.0.0 (2005-08-26) - dev release number 510',['../md_ChangeLog.html#autotoc_md110',1,'']]], + ['release_20number_20714_67',['3.1.0 (2006-04-08) - dev release number 714',['../md_ChangeLog.html#autotoc_md107',1,'']]], + ['release_20number_20757_68',['3.2.0 (2006-07-07) - dev release number 757',['../md_ChangeLog.html#autotoc_md105',1,'']]], + ['release_20number_20764_69',['3.2.1 (2006-07-14) - dev release number 764',['../md_ChangeLog.html#autotoc_md104',1,'']]], + ['released_20under_70',['What license is Ipopt released under?',['../FAQ.html#autotoc_md2',1,'']]], + ['releasepointer_5f_71',['ReleasePointer_',['../classIpopt_1_1SmartPtr.html#ab74ca6e796ac58fa4ad335d8112ffae2',1,'Ipopt::SmartPtr']]], + ['releaseref_72',['ReleaseRef',['../classIpopt_1_1ReferencedObject.html#ae6c952e7d1a63080dc8f121c008944fc',1,'Ipopt::ReferencedObject']]], + ['remembercurrentpointasaccepted_73',['RememberCurrentPointAsAccepted',['../classIpopt_1_1AdaptiveMuUpdate.html#aa81a487e86ff119827c39c11eb43beba',1,'Ipopt::AdaptiveMuUpdate']]], + ['reoptimizenlp_74',['ReOptimizeNLP',['../classIpopt_1_1IpoptApplication.html#a483aa387ec56687a106d414da5df4ad8',1,'Ipopt::IpoptApplication']]], + ['reoptimizetnlp_75',['ReOptimizeTNLP',['../classIpopt_1_1IpoptApplication.html#a24de5d491b570b01e36a329c5a3c9471',1,'Ipopt::IpoptApplication']]], + ['replace_5fbounds_5f_76',['replace_bounds_',['../classIpopt_1_1IpoptApplication.html#ab92fa64e176440496ef8c4986752b369',1,'Ipopt::IpoptApplication']]], + ['reportexception_77',['ReportException',['../classIpopt_1_1IpoptException.html#a590c35a9c2f5984574933f9fcaab25c4',1,'Ipopt::IpoptException']]], + ['representation_78',['Coding the Problem Representation',['../INTERFACES.html#INTERFACE_CPP_NLP',1,'']]], + ['requestattach_79',['RequestAttach',['../classIpopt_1_1Observer.html#ad8a27925a917ba926d713ceaac3efd7d',1,'Ipopt::Observer']]], + ['requestdetach_80',['RequestDetach',['../classIpopt_1_1Observer.html#a7006c91bc2893aa7aaa03799820f76dd',1,'Ipopt::Observer']]], + ['requires_5fscaling_5f_81',['requires_scaling_',['../classIpopt_1_1InexactNormalTerminationTester.html#a50a785f30f6d780f95305c60a5f7928d',1,'Ipopt::InexactNormalTerminationTester::requires_scaling_'],['../classIpopt_1_1InexactPDTerminationTester.html#a3cd35df38dc35f23034119d6482af87e',1,'Ipopt::InexactPDTerminationTester::requires_scaling_']]], + ['rescale_5f_82',['rescale_',['../classIpopt_1_1Ma97SolverInterface.html#ac5206adc2a591813af6faac0c55fdada',1,'Ipopt::Ma97SolverInterface::rescale_'],['../classIpopt_1_1SpralSolverInterface.html#a82b95f9f2d3359f346758ecf49667627',1,'Ipopt::SpralSolverInterface::rescale_']]], + ['reset_83',['reset',['../classIpopt_1_1FilterLSAcceptor.html#aa7719befa41ec1b44db3c752814fa17d',1,'Ipopt::FilterLSAcceptor::Reset()'],['../classIpopt_1_1InexactLSAcceptor.html#a1a7cccb588951eebf3ea838d3af14581',1,'Ipopt::InexactLSAcceptor::Reset()'],['../classIpopt_1_1BacktrackingLineSearch.html#ac5f93da335cb0a2d7d2eb324664839a9',1,'Ipopt::BacktrackingLineSearch::Reset()'],['../classIpopt_1_1BacktrackingLSAcceptor.html#a9186dcaa4d969aaeb9579dc47de70acc',1,'Ipopt::BacktrackingLSAcceptor::Reset()'],['../classIpopt_1_1LineSearch.html#ad33f5703834e99614d2eace2846ac5c0',1,'Ipopt::LineSearch::Reset()'],['../classIpopt_1_1PenaltyLSAcceptor.html#a840b8529b9f2f3b42e90ba33d8a932fe',1,'Ipopt::PenaltyLSAcceptor::Reset()'],['../classIpopt_1_1TimedTask.html#a7f249501c707ba9c0bec5cecee93cc65',1,'Ipopt::TimedTask::Reset()'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#a9d9c631b4bd1d3c1ee4800addb702a1a',1,'Ipopt::CGPenaltyLSAcceptor::Reset()']]], + ['reset_5fdata_5fa_84',['reset_data_A',['../classIpopt_1_1PCalculator.html#a61c8c9077bc0147a389039b9d322ef67',1,'Ipopt::PCalculator']]], + ['reset_5flast_5f_85',['reset_last_',['../classIpopt_1_1PDPerturbationHandler.html#aa343fb3486b55a5c181f246bdf375c2c',1,'Ipopt::PDPerturbationHandler']]], + ['reset_5fpiecewise_5fpenalty_5f_86',['reset_piecewise_penalty_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#aface14d70b5a851ae582b09769174ebf',1,'Ipopt::CGPenaltyLSAcceptor']]], + ['resetadjustedtrialslacks_87',['ResetAdjustedTrialSlacks',['../classIpopt_1_1IpoptCalculatedQuantities.html#aff56a0ca444d41d9330d314bb49d681f',1,'Ipopt::IpoptCalculatedQuantities']]], + ['resetinfo_88',['ResetInfo',['../classIpopt_1_1IpoptData.html#a885f82e4eed0d97b5f0e99a862a4bc42',1,'Ipopt::IpoptData']]], + ['resetlist_89',['ResetList',['../classIpopt_1_1PiecewisePenalty.html#a6cf7901c5173b6bbade4d1f59eccc967',1,'Ipopt::PiecewisePenalty']]], + ['resetslacks_90',['ResetSlacks',['../classIpopt_1_1InexactLSAcceptor.html#a70c538d464d4c11c7e7fb13854f1c73f',1,'Ipopt::InexactLSAcceptor']]], + ['resettimes_91',['ResetTimes',['../classIpopt_1_1TimingStatistics.html#a5d48b224373c66adc04d72577205a9ae',1,'Ipopt::TimingStatistics']]], + ['residual_5fimprovement_5ffactor_5f_92',['residual_improvement_factor_',['../classIpopt_1_1PDFullSpaceSolver.html#ad3b0584f56b6f8e4efa18baaf9935b65',1,'Ipopt::PDFullSpaceSolver']]], + ['residual_5fratio_5fmax_5f_93',['residual_ratio_max_',['../classIpopt_1_1PDFullSpaceSolver.html#a849d798f5baf7c6f6cbbbc1f50bc66b9',1,'Ipopt::PDFullSpaceSolver']]], + ['residual_5fratio_5fsingular_5f_94',['residual_ratio_singular_',['../classIpopt_1_1PDFullSpaceSolver.html#a51bfe28b534b5edae4b172b9f6e338ea',1,'Ipopt::PDFullSpaceSolver']]], + ['resortbnds_95',['ResortBnds',['../classIpopt_1_1TNLPAdapter.html#a27af8d1553bc89fc1c003459bb082fcc',1,'Ipopt::TNLPAdapter']]], + ['resortboundmultipliers_96',['ResortBoundMultipliers',['../classIpopt_1_1TNLPAdapter.html#acd0254ec27ef13e6dc8527154f9713bc',1,'Ipopt::TNLPAdapter']]], + ['resortbounds_97',['ResortBounds',['../classIpopt_1_1TNLPAdapter.html#a0c135f4a0ca1a65154feb164ff3e45ae',1,'Ipopt::TNLPAdapter']]], + ['resortg_98',['ResortG',['../classIpopt_1_1TNLPAdapter.html#aa7d13eace81ff7d3181ef629ce3a4a6d',1,'Ipopt::TNLPAdapter']]], + ['resortx_99',['ResortX',['../classIpopt_1_1TNLPAdapter.html#a1f19ad31a25cbed6090f504857e85959',1,'Ipopt::TNLPAdapter']]], + ['resto_5falg_5f_100',['resto_alg_',['../classIpopt_1_1MinC__1NrmRestorationPhase.html#ad9cd4c1c85e57143ce20032ca80527f1',1,'Ipopt::MinC_1NrmRestorationPhase']]], + ['resto_5feq_5fmult_5fcalculator_5f_101',['resto_eq_mult_calculator_',['../classIpopt_1_1RestoIterateInitializer.html#a1f65fd85978e6711fc117adfd10fc485',1,'Ipopt::RestoIterateInitializer']]], + ['resto_5ffailure_5ffeasibility_5fthreshold_5f_102',['resto_failure_feasibility_threshold_',['../classIpopt_1_1MinC__1NrmRestorationPhase.html#a3907c6e88721be5f0a4bd84048e9b2a2',1,'Ipopt::MinC_1NrmRestorationPhase']]], + ['resto_5foptions_5f_103',['resto_options_',['../classIpopt_1_1MinC__1NrmRestorationPhase.html#a4c9ca3387257bee1907d657e8fa148b3',1,'Ipopt::MinC_1NrmRestorationPhase']]], + ['resto_5forig_5fiteration_5foutput_5f_104',['resto_orig_iteration_output_',['../classIpopt_1_1RestoIterationOutput.html#a3a513942ae3b29528486ae1225d07450',1,'Ipopt::RestoIterationOutput']]], + ['resto_5fphase_5f_105',['resto_phase_',['../classIpopt_1_1BacktrackingLineSearch.html#ada2890e814f72f72556b43dc50630a9f',1,'Ipopt::BacktrackingLineSearch']]], + ['resto_5fpred_5f_106',['resto_pred_',['../classIpopt_1_1PenaltyLSAcceptor.html#a622b63cf06d89162dd6d1586b06518ba',1,'Ipopt::PenaltyLSAcceptor::resto_pred_'],['../classIpopt_1_1InexactLSAcceptor.html#aed27ed7f9098f2cdaecfcf78c57a946a',1,'Ipopt::InexactLSAcceptor::resto_pred_']]], + ['restoconvergencecheck_107',['restoconvergencecheck',['../classIpopt_1_1RestoConvergenceCheck.html',1,'Ipopt::RestoConvergenceCheck'],['../classIpopt_1_1RestoConvergenceCheck.html#aea0959028bda24ac812ea66d43f26354',1,'Ipopt::RestoConvergenceCheck::RestoConvergenceCheck()'],['../classIpopt_1_1RestoConvergenceCheck.html#aa98e9bbe93bca27a571085ce9ff4a972',1,'Ipopt::RestoConvergenceCheck::RestoConvergenceCheck(const RestoConvergenceCheck &)']]], + ['restofilterconvergencecheck_108',['restofilterconvergencecheck',['../classIpopt_1_1RestoFilterConvergenceCheck.html',1,'Ipopt::RestoFilterConvergenceCheck'],['../classIpopt_1_1RestoFilterConvergenceCheck.html#a6154d5424191ef92b9b010965ff6e401',1,'Ipopt::RestoFilterConvergenceCheck::RestoFilterConvergenceCheck()'],['../classIpopt_1_1RestoFilterConvergenceCheck.html#a260d4be553eaa335187f4e394d72e89d',1,'Ipopt::RestoFilterConvergenceCheck::RestoFilterConvergenceCheck(const RestoFilterConvergenceCheck &)']]], + ['restoipoptnlp_109',['restoipoptnlp',['../classIpopt_1_1RestoIpoptNLP.html#ae7921dfab15c5c9c7bd042babd4b9f9a',1,'Ipopt::RestoIpoptNLP::RestoIpoptNLP(IpoptNLP &orig_ip_nlp, IpoptData &orig_ip_data, IpoptCalculatedQuantities &orig_ip_cq)'],['../classIpopt_1_1RestoIpoptNLP.html#a61da4a7113966f6fafc70afe2aa93e64',1,'Ipopt::RestoIpoptNLP::RestoIpoptNLP()'],['../classIpopt_1_1RestoIpoptNLP.html#ae59df458609ca72cfb4da737d79b5048',1,'Ipopt::RestoIpoptNLP::RestoIpoptNLP(const RestoIpoptNLP &)'],['../classIpopt_1_1RestoIpoptNLP.html',1,'Ipopt::RestoIpoptNLP']]], + ['restoiterateinitializer_110',['restoiterateinitializer',['../classIpopt_1_1RestoIterateInitializer.html',1,'Ipopt::RestoIterateInitializer'],['../classIpopt_1_1RestoIterateInitializer.html#ad66c5638a71aca4c5604cc018bf6675c',1,'Ipopt::RestoIterateInitializer::RestoIterateInitializer(const SmartPtr< EqMultiplierCalculator > &eq_mult_calculator)'],['../classIpopt_1_1RestoIterateInitializer.html#a42a7d05dc6bf280e9e97796ebd30f04d',1,'Ipopt::RestoIterateInitializer::RestoIterateInitializer()'],['../classIpopt_1_1RestoIterateInitializer.html#a69815e84a3971f39c387324ab390fdee',1,'Ipopt::RestoIterateInitializer::RestoIterateInitializer(const RestoIterateInitializer &)']]], + ['restoiterationoutput_111',['restoiterationoutput',['../classIpopt_1_1RestoIterationOutput.html',1,'Ipopt::RestoIterationOutput'],['../classIpopt_1_1RestoIterationOutput.html#a0df6e60988124aa3a74b61b96e9d339e',1,'Ipopt::RestoIterationOutput::RestoIterationOutput(const RestoIterationOutput &)'],['../classIpopt_1_1RestoIterationOutput.html#ac717737ae83fb59be251e7c97e543a9b',1,'Ipopt::RestoIterationOutput::RestoIterationOutput()'],['../classIpopt_1_1RestoIterationOutput.html#abc7a583078b7bd5eae6092db3a57c500',1,'Ipopt::RestoIterationOutput::RestoIterationOutput(const SmartPtr< OrigIterationOutput > &resto_orig_iteration_output)']]], + ['restopenaltyconvergencecheck_112',['restopenaltyconvergencecheck',['../classIpopt_1_1RestoPenaltyConvergenceCheck.html#a2022b6e91f58eb4721b143552a6e8548',1,'Ipopt::RestoPenaltyConvergenceCheck::RestoPenaltyConvergenceCheck(const RestoPenaltyConvergenceCheck &)'],['../classIpopt_1_1RestoPenaltyConvergenceCheck.html#ac5a0d7a55f3008d594f72227656f94ec',1,'Ipopt::RestoPenaltyConvergenceCheck::RestoPenaltyConvergenceCheck()'],['../classIpopt_1_1RestoPenaltyConvergenceCheck.html',1,'Ipopt::RestoPenaltyConvergenceCheck']]], + ['restor_5fcounter_113',['restor_counter',['../classIpopt_1_1CGPenaltyData.html#af3636e593be3a1a50b6b967e77bc934b',1,'Ipopt::CGPenaltyData']]], + ['restor_5fcounter_5f_114',['restor_counter_',['../classIpopt_1_1CGPenaltyData.html#ac5e7498173de1c11129713647d80cdae',1,'Ipopt::CGPenaltyData']]], + ['restor_5fiter_115',['restor_iter',['../classIpopt_1_1CGPenaltyData.html#a4f517e4f4fbb18d667c78fb476744c1f',1,'Ipopt::CGPenaltyData']]], + ['restor_5fiter_5f_116',['restor_iter_',['../classIpopt_1_1CGPenaltyData.html#a8fc789403dc890a519ba916a2a0f5175',1,'Ipopt::CGPenaltyData']]], + ['restoration_20phase_117',['Restoration Phase',['../OPTIONS.html#OPT_Restoration_Phase',1,'']]], + ['restoration_5ffailed_118',['restoration_failed',['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7a019adb1693a37754d6e4835fe9f84bd0',1,'Restoration_Failed: IpReturnCodes_inc.h'],['../classorg_1_1coinor_1_1Ipopt.html#ac7f5039b29dd61866610e3a8e8a403b8',1,'org.coinor.Ipopt.RESTORATION_FAILED']]], + ['restoration_5ffailure_119',['RESTORATION_FAILURE',['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834a06801e8b7ed2cce86a01b6ccf3bdc591',1,'Ipopt']]], + ['restorationphase_120',['restorationphase',['../classIpopt_1_1RestorationPhase.html',1,'Ipopt::RestorationPhase'],['../classIpopt_1_1RestorationPhase.html#ac5ef685cf3f924bf9ff370842b7cdfee',1,'Ipopt::RestorationPhase::RestorationPhase()'],['../classIpopt_1_1RestorationPhase.html#a84bf22fc34120f0f79d080d6236919bc',1,'Ipopt::RestorationPhase::RestorationPhase(const RestorationPhase &)']]], + ['restorationphasemode_121',['restorationphasemode',['../classorg_1_1coinor_1_1Ipopt.html#a3f2f733983ced5bb2db465a6e9329a45',1,'org.coinor.Ipopt.RESTORATIONPHASEMODE'],['../IpReturnCodes__inc_8h.html#a5daff61568f9909c518fb61116260387accee74140d41706398be37bc4b04a703',1,'RestorationPhaseMode: IpReturnCodes_inc.h']]], + ['restore_5faccepted_5fiterate_5f_122',['restore_accepted_iterate_',['../classIpopt_1_1AdaptiveMuUpdate.html#a4ccc21df9993cadb091dfd10182fd5af',1,'Ipopt::AdaptiveMuUpdate']]], + ['restoreacceptablepoint_123',['RestoreAcceptablePoint',['../classIpopt_1_1BacktrackingLineSearch.html#aa0a57f17d8646480bb31b424039bcb3b',1,'Ipopt::BacktrackingLineSearch']]], + ['restorebestpoint_124',['RestoreBestPoint',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a622419aee9d39bc2649f5213b8d774e0',1,'Ipopt::CGPenaltyLSAcceptor']]], + ['restorediterate_125',['restorediterate',['../classIpopt_1_1BacktrackingLSAcceptor.html#a23f8a7e07b7ab0e0d91a40d846b59472',1,'Ipopt::BacktrackingLSAcceptor::RestoredIterate()'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#abe021b3ea44200bbb04acc75391927d3',1,'Ipopt::CGPenaltyLSAcceptor::RestoredIterate()']]], + ['restoreinternaldatabackup_126',['RestoreInternalDataBackup',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a8e7c02278b58807cd441410d983e3fd0',1,'Ipopt::LimMemQuasiNewtonUpdater']]], + ['restorestorationphase_127',['restorestorationphase',['../classIpopt_1_1RestoRestorationPhase.html',1,'Ipopt::RestoRestorationPhase'],['../classIpopt_1_1RestoRestorationPhase.html#a0f0fea6e91a9fca43605a799358d8967',1,'Ipopt::RestoRestorationPhase::RestoRestorationPhase()'],['../classIpopt_1_1RestoRestorationPhase.html#ae49dbf5dad4b3ac021a084a165581472',1,'Ipopt::RestoRestorationPhase::RestoRestorationPhase(const RestoRestorationPhase &)']]], + ['result_5f_128',['result_',['../classIpopt_1_1DependentResult.html#a4095cad07fe069984328506b30b3821c',1,'Ipopt::DependentResult']]], + ['rethrow_5fnonipoptexception_5f_129',['rethrow_nonipoptexception_',['../classIpopt_1_1IpoptApplication.html#a344967945748a2dba0025829c95c3649',1,'Ipopt::IpoptApplication']]], + ['rethrownonipoptexception_130',['RethrowNonIpoptException',['../classIpopt_1_1IpoptApplication.html#a83e1b7a32982852aee98f8a43e3e77a6',1,'Ipopt::IpoptApplication']]], + ['rho_131',['Rho',['../classIpopt_1_1RestoIpoptNLP.html#a24cbed6e8488d2562f3357a9a6605988',1,'Ipopt::RestoIpoptNLP']]], + ['rho_5f_132',['rho_',['../classIpopt_1_1PenaltyLSAcceptor.html#ad55e28010d389378489f306e6b128964',1,'Ipopt::PenaltyLSAcceptor::rho_'],['../classIpopt_1_1RestoIpoptNLP.html#a483d56d70fd60d3ffbaa6a8e5513744a',1,'Ipopt::RestoIpoptNLP::rho_'],['../classIpopt_1_1InexactPDTerminationTester.html#a20f8f3ca87f5b481f74f6f2800639c06',1,'Ipopt::InexactPDTerminationTester::rho_'],['../classIpopt_1_1InexactLSAcceptor.html#a16d8506723fef0663607c31ade4be31b',1,'Ipopt::InexactLSAcceptor::rho_']]], + ['rhs_5fcr_133',['Rhs_cR',['../classIpopt_1_1AugRestoSystemSolver.html#a14c03a65d291a06f7ececa74b3482bc6',1,'Ipopt::AugRestoSystemSolver']]], + ['rhs_5fcr_5fcache_5f_134',['rhs_cR_cache_',['../classIpopt_1_1AugRestoSystemSolver.html#afc053e09bc495b187f27e6c826e2bfa3',1,'Ipopt::AugRestoSystemSolver']]], + ['rhs_5fdr_135',['Rhs_dR',['../classIpopt_1_1AugRestoSystemSolver.html#a55ee19722884c032cce55471351b45b1',1,'Ipopt::AugRestoSystemSolver']]], + ['rhs_5fdr_5fcache_5f_136',['rhs_dR_cache_',['../classIpopt_1_1AugRestoSystemSolver.html#a6d89b6aaddfdebd9feaff74463524faf',1,'Ipopt::AugRestoSystemSolver']]], + ['rigorous_5f_137',['rigorous_',['../classIpopt_1_1BacktrackingLineSearch.html#a81cc850183ffef4215927545b8fe8451',1,'Ipopt::BacktrackingLineSearch']]], + ['robust_20algorithms_20library_138',['SPRAL (Sparse Parallel Robust Algorithms Library)',['../INSTALL.html#DOWNLOAD_SPRAL',1,'']]], + ['row_5ffull_5fthresh_139',['row_full_thresh',['../structmc68__control__i.html#abe30f64b3362248eed7036142d386f2c',1,'mc68_control_i']]], + ['row_5fscaling_5f_140',['row_scaling_',['../classIpopt_1_1ScaledMatrixSpace.html#a9439e7c2c6c4cd5e4e23fba89fb63750',1,'Ipopt::ScaledMatrixSpace']]], + ['row_5fsearch_141',['row_search',['../structmc68__control__i.html#a8f88261e7bef1e947173ffc68cad0162',1,'mc68_control_i']]], + ['rowcolscaling_142',['rowcolscaling',['../classIpopt_1_1SymScaledMatrix.html#a02e5ed72d6f99d5add1116f46a02641a',1,'Ipopt::SymScaledMatrix::RowColScaling()'],['../classIpopt_1_1SymScaledMatrixSpace.html#a0d26e0d8ababff487c004ff1a9d95272',1,'Ipopt::SymScaledMatrixSpace::RowColScaling()']]], + ['rowscaling_143',['rowscaling',['../classIpopt_1_1ScaledMatrix.html#a6d196b32119ec34a8f11d8e47d5f050f',1,'Ipopt::ScaledMatrix::RowScaling()'],['../classIpopt_1_1ScaledMatrixSpace.html#a0ae7816bb0219df6907903217b32630f',1,'Ipopt::ScaledMatrixSpace::RowScaling()']]], + ['rowvectorspace_144',['rowvectorspace',['../classIpopt_1_1ExpandedMultiVectorMatrix.html#a7a154afa75a5c5facbb95ffd7228b709',1,'Ipopt::ExpandedMultiVectorMatrix::RowVectorSpace()'],['../classIpopt_1_1ExpandedMultiVectorMatrixSpace.html#a9c71d1269e2fb826c16a2fe357e08034',1,'Ipopt::ExpandedMultiVectorMatrixSpace::RowVectorSpace()']]], + ['rspare_145',['rspare',['../structma77__control__s.html#aa288b021afb088522a5e5956d3d16fa0',1,'ma77_control_s::rspare'],['../structma97__control__d.html#a384c8260fc9cbe069d20e7a0e24bdeaa',1,'ma97_control_d::rspare'],['../structma77__control__d.html#a3854dab3e149e9d72c4c91d2abf9eb04',1,'ma77_control_d::rspare'],['../structma77__info__d.html#a5fee72858637ac9108d4863298ed5ebd',1,'ma77_info_d::rspare'],['../structma97__info__d.html#acfd7e244c5da68fbf485435aa4ed1351',1,'ma97_info_d::rspare'],['../structma97__control__s.html#aab450009c5e974bf3b0f50918fcb51e8',1,'ma97_control_s::rspare'],['../structma97__info__s.html#a2aec1d294212368ddf425f9a195f7cd4',1,'ma97_info_s::rspare'],['../structma77__info__s.html#aa035bffb2139be7756c87e79df3503a8',1,'ma77_info_s::rspare']]], + ['run_146',['run',['../classIpopt_1_1SensAlgorithm.html#a6170ca071834ff03e981e010412d4f98',1,'Ipopt::SensAlgorithm::Run()'],['../classIpopt_1_1SensApplication.html#a83eebc2a9636e2ab26f3ba3755ed0416',1,'Ipopt::SensApplication::Run()']]], + ['run_5fsens_5f_147',['run_sens_',['../classIpopt_1_1SensAmplTNLP.html#a365130391fecebb01f0e0b29fd660ed4',1,'Ipopt::SensAmplTNLP::run_sens_'],['../classIpopt_1_1SensApplication.html#a2da41778758559a9bff0767d352ae711',1,'Ipopt::SensApplication::run_sens_']]], + ['runtime_148',['Providing a HSL library at runtime',['../INSTALL.html#LINEARSOLVERLOADER',1,'']]] ]; diff --git a/search/all_1c.js b/search/all_1c.js index deacfd080..266c6c9b3 100644 --- a/search/all_1c.js +++ b/search/all_1c.js @@ -71,7 +71,7 @@ var searchData= ['sensalgorithm_68',['sensalgorithm',['../classIpopt_1_1SensAlgorithm.html#a9b109c8835fab74cc71d462bb0176078',1,'Ipopt::SensAlgorithm::SensAlgorithm()'],['../classIpopt_1_1SensAlgorithm.html',1,'Ipopt::SensAlgorithm']]], ['sensalgorithm_2ehpp_69',['SensAlgorithm.hpp',['../SensAlgorithm_8hpp.html',1,'']]], ['sensalgorithmexitstatus_70',['SensAlgorithmExitStatus',['../namespaceIpopt.html#add98abac06d6862395ef27d827938126',1,'Ipopt']]], - ['sensampltnlp_71',['sensampltnlp',['../classIpopt_1_1SensAmplTNLP.html#a322d3d3fc1a695924ba292b3f53e871f',1,'Ipopt::SensAmplTNLP::SensAmplTNLP()'],['../classIpopt_1_1SensAmplTNLP.html',1,'Ipopt::SensAmplTNLP']]], + ['sensampltnlp_71',['sensampltnlp',['../classIpopt_1_1SensAmplTNLP.html#a692a526e9a76b1737db34107d3c0d3ce',1,'Ipopt::SensAmplTNLP::SensAmplTNLP()'],['../classIpopt_1_1SensAmplTNLP.html',1,'Ipopt::SensAmplTNLP']]], ['sensampltnlp_2ehpp_72',['SensAmplTNLP.hpp',['../SensAmplTNLP_8hpp.html',1,'']]], ['sensapplication_73',['sensapplication',['../classIpopt_1_1SensApplication.html',1,'Ipopt::SensApplication'],['../classIpopt_1_1SensApplication.html#a7a3dbe67000effcb766bd9d441b37e8f',1,'Ipopt::SensApplication::SensApplication()']]], ['sensapplication_2ehpp_74',['SensApplication.hpp',['../SensApplication_8hpp.html',1,'']]], diff --git a/search/all_1d.js b/search/all_1d.js index 673f406e7..8cec0993b 100644 --- a/search/all_1d.js +++ b/search/all_1d.js @@ -109,7 +109,7 @@ var searchData= ['tmp_5fx_5fu_5f_106',['tmp_x_U_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a08cc4d14500ff58be65623c78111513e',1,'Ipopt::IpoptCalculatedQuantities']]], ['tmp_5fz_5fl_5f_107',['tmp_z_L_',['../classIpopt_1_1QualityFunctionMuOracle.html#a161442e00adf548d6c378c62dd4156e4',1,'Ipopt::QualityFunctionMuOracle']]], ['tmp_5fz_5fu_5f_108',['tmp_z_U_',['../classIpopt_1_1QualityFunctionMuOracle.html#a0e0b277f75b86e0cfd6a2335d758804c',1,'Ipopt::QualityFunctionMuOracle']]], - ['tnlp_109',['tnlp',['../INTERFACES.html#INTERFACE_CPP_ADDITIONAL',1,'Additional methods in TNLP'],['../classIpopt_1_1TNLP.html',1,'Ipopt::TNLP'],['../classIpopt_1_1TNLP.html#a7d09a6de47e8bd7a1048f8dc5fe21a04',1,'Ipopt::TNLP::TNLP()'],['../classIpopt_1_1TNLP.html#ac60badc0020972128377e91cdcb4cc81',1,'Ipopt::TNLP::TNLP(const TNLP &)'],['../classIpopt_1_1TNLPAdapter.html#af3fb8fe429af7294f07a050323b1fec8',1,'Ipopt::TNLPAdapter::tnlp()']]], + ['tnlp_109',['tnlp',['../INTERFACES.html#INTERFACE_CPP_ADDITIONAL',1,'Additional methods in TNLP'],['../classIpopt_1_1TNLP.html',1,'Ipopt::TNLP'],['../classIpopt_1_1TNLPAdapter.html#af3fb8fe429af7294f07a050323b1fec8',1,'Ipopt::TNLPAdapter::tnlp()'],['../classIpopt_1_1TNLP.html#a7d09a6de47e8bd7a1048f8dc5fe21a04',1,'Ipopt::TNLP::TNLP()'],['../classIpopt_1_1TNLP.html#ac60badc0020972128377e91cdcb4cc81',1,'Ipopt::TNLP::TNLP(const TNLP &)']]], ['tnlp_5f_110',['tnlp_',['../classIpopt_1_1TNLPReducer.html#a023e40ed750e48425b67fb66bdbfde41',1,'Ipopt::TNLPReducer::tnlp_'],['../classIpopt_1_1TNLPAdapter.html#a6877e36d6b043d885c48534cde04d9e8',1,'Ipopt::TNLPAdapter::tnlp_']]], ['tnlpadapter_111',['tnlpadapter',['../classIpopt_1_1TNLPAdapter.html',1,'Ipopt::TNLPAdapter'],['../classIpopt_1_1TNLPAdapter.html#a1010390adc57a4abaae35be0eea101cc',1,'Ipopt::TNLPAdapter::TNLPAdapter(const SmartPtr< TNLP > tnlp, const SmartPtr< const Journalist > jnlst=NULL)'],['../classIpopt_1_1TNLPAdapter.html#aa160c36cc9adc31525df45c7d33dc135',1,'Ipopt::TNLPAdapter::TNLPAdapter(const TNLPAdapter &)']]], ['tnlpreducer_112',['tnlpreducer',['../classIpopt_1_1TNLPReducer.html#ad8bb7fd991a22cf171df5135e974df51',1,'Ipopt::TNLPReducer::TNLPReducer()'],['../classIpopt_1_1TNLPReducer.html',1,'Ipopt::TNLPReducer'],['../classIpopt_1_1TNLPReducer.html#a0f882a21ea1fc504ca9289f03dc223c3',1,'Ipopt::TNLPReducer::TNLPReducer()'],['../classIpopt_1_1TNLPReducer.html#abe13bf11bfba8aae278ad5eb8d80af0e',1,'Ipopt::TNLPReducer::TNLPReducer(const TNLPReducer &)']]], diff --git a/search/all_1e.js b/search/all_1e.js index e6a671b3c..40bc3ebaf 100644 --- a/search/all_1e.js +++ b/search/all_1e.js @@ -24,68 +24,69 @@ var searchData= ['unit_5fdiagnostics_21',['unit_diagnostics',['../structma77__control__d.html#af4801f20033c1262e1e36b6cec32e5bb',1,'ma77_control_d::unit_diagnostics'],['../structma77__control__s.html#afd5429d244eda5da35e008063c393fdc',1,'ma77_control_s::unit_diagnostics'],['../structma86__control__d.html#a81c419ba224ec9fa5cdb5715b34f3719',1,'ma86_control_d::unit_diagnostics'],['../structma86__control__s.html#a946ce8c8246c828b14cdcec5855eb9ac',1,'ma86_control_s::unit_diagnostics'],['../structma97__control__d.html#af31bc9e15e60358e6bde4924332ee263',1,'ma97_control_d::unit_diagnostics'],['../structma97__control__s.html#a690340ef6f35688a76496730a3bcd285',1,'ma97_control_s::unit_diagnostics']]], ['unit_5ferror_22',['unit_error',['../structma77__control__d.html#ae760f918d377e720292cd7b58dbb00e4',1,'ma77_control_d::unit_error'],['../structma97__control__s.html#a08855eacc813d8ce68ad00d8b7f7a817',1,'ma97_control_s::unit_error'],['../structma97__control__d.html#ac7da94d6f336ecd803296b33843fc178',1,'ma97_control_d::unit_error'],['../structma86__control__s.html#aaf52535d745cd62ab9b0ce60319de82d',1,'ma86_control_s::unit_error'],['../structma86__control__d.html#a8569c9b348f6cd57c442ef8ee685aad0',1,'ma86_control_d::unit_error'],['../structma77__control__s.html#a9ec7d7c2f541f86dd1a0fa450377b080',1,'ma77_control_s::unit_error']]], ['unit_5frestart_23',['unit_restart',['../structma77__info__d.html#a7a75c06952c903533dd8ec0b9989b3eb',1,'ma77_info_d::unit_restart'],['../structma77__info__s.html#a75e35d42a3b16f21d26864ff8def8131',1,'ma77_info_s::unit_restart']]], - ['unit_5fwarning_24',['unit_warning',['../structma77__control__s.html#aa64b7114e5d9686fd55ebb981aec6d0c',1,'ma77_control_s::unit_warning'],['../structma97__control__s.html#a854317555958b807a9db38bbe6f2da4b',1,'ma97_control_s::unit_warning'],['../structma97__control__d.html#a9ff577ec8af3f77b3e954ef1e7965da5',1,'ma97_control_d::unit_warning'],['../structma86__control__d.html#a719bd838a1a6536315d188ee7e44a08a',1,'ma86_control_d::unit_warning'],['../structma86__control__s.html#ac99a33a00ef3298b2bcc4d597fc815ae',1,'ma86_control_s::unit_warning'],['../structma77__control__d.html#ab71a88d7d3f2b947d307f396b7800273',1,'ma77_control_d::unit_warning']]], + ['unit_5fwarning_24',['unit_warning',['../structma97__control__s.html#a854317555958b807a9db38bbe6f2da4b',1,'ma97_control_s::unit_warning'],['../structma86__control__d.html#a719bd838a1a6536315d188ee7e44a08a',1,'ma86_control_d::unit_warning'],['../structma97__control__d.html#a9ff577ec8af3f77b3e954ef1e7965da5',1,'ma97_control_d::unit_warning'],['../structma77__control__s.html#aa64b7114e5d9686fd55ebb981aec6d0c',1,'ma77_control_s::unit_warning'],['../structma86__control__s.html#ac99a33a00ef3298b2bcc4d597fc815ae',1,'ma86_control_s::unit_warning'],['../structma77__control__d.html#ab71a88d7d3f2b947d307f396b7800273',1,'ma77_control_d::unit_warning']]], ['unloadlibrary_25',['unloadLibrary',['../classIpopt_1_1LibraryLoader.html#af6547f11835bdc254ccda2a97c294f8a',1,'Ipopt::LibraryLoader']]], ['unrecoverable_5fexception_26',['unrecoverable_exception',['../classorg_1_1coinor_1_1Ipopt.html#a40720118bf5c1cfe52c265700c1a7ab7',1,'org.coinor.Ipopt.UNRECOVERABLE_EXCEPTION'],['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7a77a7456dabd944cce710ce7266cf5f68',1,'Unrecoverable_Exception: IpReturnCodes_inc.h']]], - ['unscaled_5fcurr_5fc_27',['unscaled_curr_c',['../classIpopt_1_1IpoptCalculatedQuantities.html#a28ba0a2ae16f590be7efeb03d1bdea6b',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5fcomplementarity_28',['unscaled_curr_complementarity',['../classIpopt_1_1IpoptCalculatedQuantities.html#ac3ec4a890bd836895f9eb730df844162',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5fd_29',['unscaled_curr_d',['../classIpopt_1_1IpoptCalculatedQuantities.html#a56653f80c8781bff2f3c34a46c3ca223',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5fdual_5finfeasibility_30',['unscaled_curr_dual_infeasibility',['../classIpopt_1_1IpoptCalculatedQuantities.html#a22b96d28ea9c59335cc631fdc001e1a8',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5fdual_5finfeasibility_5fcache_5f_31',['unscaled_curr_dual_infeasibility_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a7c9c8184dd7e2558aa0fdcc2c551c7a1',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5ff_32',['unscaled_curr_f',['../classIpopt_1_1IpoptCalculatedQuantities.html#ae00c8cb128cd32fae07111f81362c7e9',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5fnlp_5fconstraint_5fviolation_33',['unscaled_curr_nlp_constraint_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a10b3fcfcf4d2bd8fde1eb0533065aae4',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5fnlp_5fconstraint_5fviolation_5fcache_5f_34',['unscaled_curr_nlp_constraint_violation_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aecb6c2e878720d91894be37e34d5e692',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5fnlp_5ferror_35',['unscaled_curr_nlp_error',['../classIpopt_1_1IpoptCalculatedQuantities.html#a6f94654a1874f0a832a7779b779dffc6',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5fnlp_5ferror_5fcache_5f_36',['unscaled_curr_nlp_error_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a47ad480605fda307b5f29dd76cd78545',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5forig_5fbounds_5fviol_5fcache_5f_37',['unscaled_curr_orig_bounds_viol_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a338d74b0298a3a1f062bc2aa99b640f7',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5forig_5fbounds_5fviolation_38',['unscaled_curr_orig_bounds_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#af61324b36a2f00960e4f57e7acd8f87a',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5forig_5fx_5fl_5fviolation_39',['unscaled_curr_orig_x_L_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a64dee858e9f3a95f7df098ac08f1d462',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5forig_5fx_5flu_5fviol_5fcache_5f_40',['unscaled_curr_orig_x_LU_viol_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a3cfc1c5bd0eb05efc3772092a777241f',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5forig_5fx_5fu_5fviolation_41',['unscaled_curr_orig_x_U_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a7aeef4631a7b9da00e60aeaeaf48f26a',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fmatrix_5fspace_5f_42',['unscaled_matrix_space_',['../classIpopt_1_1ScaledMatrixSpace.html#abe6ebe19352a593045df4bb0ea579f7a',1,'Ipopt::ScaledMatrixSpace::unscaled_matrix_space_'],['../classIpopt_1_1SymScaledMatrixSpace.html#a4a9b8c8e79d247b319657affb4cb68c4',1,'Ipopt::SymScaledMatrixSpace::unscaled_matrix_space_']]], - ['unscaled_5forig_5fx_5fl_5fviolation_43',['unscaled_orig_x_L_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#aa0c2d45703cdc2ffe6cf4c2baf53eeb3',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5forig_5fx_5fu_5fviolation_44',['unscaled_orig_x_U_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a9844d2838de3ea6515dd8dbca0d70c3d',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5ftrial_5fc_45',['unscaled_trial_c',['../classIpopt_1_1IpoptCalculatedQuantities.html#aee98cccf9b5ce1b80ee3c7566dbbd505',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5ftrial_5ff_46',['unscaled_trial_f',['../classIpopt_1_1IpoptCalculatedQuantities.html#a5e543575458e3904b980e8d6d001ff60',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5ftrial_5fnlp_5fconstraint_5fviolation_47',['unscaled_trial_nlp_constraint_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#ac50f6d827fa581931d4c14bc99e9d37d',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5ftrial_5fnlp_5fconstraint_5fviolation_5fcache_5f_48',['unscaled_trial_nlp_constraint_violation_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a257496ff0023be0f669847c27773a2e1',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fx_5fcache_5f_49',['unscaled_x_cache_',['../classIpopt_1_1OrigIpoptNLP.html#a100ce567ac673f6b533a9ffd92754eb7',1,'Ipopt::OrigIpoptNLP']]], - ['unscaledmatrixspace_50',['unscaledmatrixspace',['../classIpopt_1_1ScaledMatrixSpace.html#a504382bd96c362757b6edb51382111f9',1,'Ipopt::ScaledMatrixSpace::UnscaledMatrixSpace()'],['../classIpopt_1_1SymScaledMatrixSpace.html#a1cb3b05fe45852bf89c58ccd95ac3bef',1,'Ipopt::SymScaledMatrixSpace::UnscaledMatrixSpace()']]], - ['unscaleiteratesvector_51',['UnScaleIteratesVector',['../classIpopt_1_1SensAlgorithm.html#a06eb1bcf30c8f8ff9e7cf351c2f677c1',1,'Ipopt::SensAlgorithm']]], - ['unscalesigma_52',['UnscaleSigma',['../classIpopt_1_1QualityFunctionMuOracle.html#a91f524e1a119adc5909124e6f226469e',1,'Ipopt::QualityFunctionMuOracle']]], - ['unsetvalue_53',['UnsetValue',['../classIpopt_1_1OptionsList.html#a2ea4d285a8a8ea7120df250dea2658be',1,'Ipopt::OptionsList']]], - ['unused_54',['unused',['../structma77__info__d.html#a1254bf87f8ecb6d23e3d63a34bd8c708',1,'ma77_info_d::unused'],['../structma77__info__s.html#aab3c709b3a9b05fb2ee38eff99d0230e',1,'ma77_info_s::unused']]], - ['update_55',['Barrier Parameter Update',['../OPTIONS.html#OPT_Barrier_Parameter_Update',1,'']]], - ['update_5ffor_5fresto_5f_56',['update_for_resto_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a5bf884f069d635a28721132018e82408',1,'Ipopt::LimMemQuasiNewtonUpdater']]], - ['update_5flocal_5flambda_57',['update_local_lambda',['../classIpopt_1_1TNLPAdapter.html#ae135d8e9291446b71b156319505ca31d',1,'Ipopt::TNLPAdapter']]], - ['update_5flocal_5fx_58',['update_local_x',['../classIpopt_1_1TNLPAdapter.html#a1bea5aaa4454046c19381af8a1e4330e',1,'Ipopt::TNLPAdapter']]], - ['updatebarrierparameter_59',['updatebarrierparameter',['../classIpopt_1_1IpoptAlgorithm.html#a0e7daa434dba12abc84b716948e2d8de',1,'Ipopt::IpoptAlgorithm::UpdateBarrierParameter()'],['../classIpopt_1_1TimingStatistics.html#a9cba55e94dc74ec91eb265bccd8519bf',1,'Ipopt::TimingStatistics::UpdateBarrierParameter()'],['../classIpopt_1_1AdaptiveMuUpdate.html#a2e3a6126a513f7995295ddff93cf192c',1,'Ipopt::AdaptiveMuUpdate::UpdateBarrierParameter()'],['../classIpopt_1_1MonotoneMuUpdate.html#aa84205504ff686600d4519df84d1a49a',1,'Ipopt::MonotoneMuUpdate::UpdateBarrierParameter()'],['../classIpopt_1_1MuUpdate.html#a16552e6e04fcc1f2216d7226b11d3169',1,'Ipopt::MuUpdate::UpdateBarrierParameter()']]], - ['updatebarrierparameter_5f_60',['UpdateBarrierParameter_',['../classIpopt_1_1TimingStatistics.html#aa8e66ed99f04360afef2bd862fc2005c',1,'Ipopt::TimingStatistics']]], - ['updateentry_61',['UpdateEntry',['../classIpopt_1_1PiecewisePenalty.html#a715fee332c35d1eb99f8e2f1bdbfbfad',1,'Ipopt::PiecewisePenalty']]], - ['updateextendeddata_62',['UpdateExtendedData',['../classIpopt_1_1LowRankSSAugSystemSolver.html#ab551655462dfa149959c1d6d71923ae7',1,'Ipopt::LowRankSSAugSystemSolver']]], - ['updatefactorization_63',['UpdateFactorization',['../classIpopt_1_1LowRankAugSystemSolver.html#a40e46550fe0f8349852b41381f391265',1,'Ipopt::LowRankAugSystemSolver']]], - ['updatefornextiteration_64',['updatefornextiteration',['../classIpopt_1_1BacktrackingLSAcceptor.html#a51c4588ba9440362916593fb5e8e53da',1,'Ipopt::BacktrackingLSAcceptor::UpdateForNextIteration()'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#ae929b890949ab2f5ba77799f58e27762',1,'Ipopt::CGPenaltyLSAcceptor::UpdateForNextIteration()'],['../classIpopt_1_1InexactLSAcceptor.html#a0bf5c79aa8a6d7ee4bbc734469a62285',1,'Ipopt::InexactLSAcceptor::UpdateForNextIteration()'],['../classIpopt_1_1FilterLSAcceptor.html#a26afeb58ad6102b65c3e12088bb6fbe3',1,'Ipopt::FilterLSAcceptor::UpdateForNextIteration()'],['../classIpopt_1_1PenaltyLSAcceptor.html#af76ccd039d4d4b80fb830ca0cf78fb27',1,'Ipopt::PenaltyLSAcceptor::UpdateForNextIteration()']]], - ['updatehessian_65',['updatehessian',['../classIpopt_1_1ExactHessianUpdater.html#a687ff6fc5a413b5e5a338c7ae8b4f392',1,'Ipopt::ExactHessianUpdater::UpdateHessian()'],['../classIpopt_1_1TimingStatistics.html#a27911945a2ffe11b7209c29ba7df52c4',1,'Ipopt::TimingStatistics::UpdateHessian()'],['../classIpopt_1_1HessianUpdater.html#a4d00334fd4bdb03260e44b10dda85a33',1,'Ipopt::HessianUpdater::UpdateHessian()'],['../classIpopt_1_1IpoptAlgorithm.html#a62fa01d8850fbf12adc9fbe6c9abcfba',1,'Ipopt::IpoptAlgorithm::UpdateHessian()'],['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a7a195f4bcb6d1c184068e69c97e4b206',1,'Ipopt::LimMemQuasiNewtonUpdater::UpdateHessian()']]], - ['updatehessian_5f_66',['UpdateHessian_',['../classIpopt_1_1TimingStatistics.html#a3831b8f28f5aec64d7c79d7618a83673',1,'Ipopt::TimingStatistics']]], - ['updateinternaldata_67',['UpdateInternalData',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a4ea94f5ef65c96962c804c289085af51',1,'Ipopt::LimMemQuasiNewtonUpdater']]], - ['updatepenaltyparameter_68',['UpdatePenaltyParameter',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a4c7c73fa17348e7886cecd0ed7034d32',1,'Ipopt::CGPenaltyLSAcceptor']]], - ['updatetags_69',['UpdateTags',['../classIpopt_1_1GenAugSystemSolver.html#a834b96e90ac533f9adc16a4f08a95ef5',1,'Ipopt::GenAugSystemSolver']]], - ['upper_5f_70',['upper_',['../classIpopt_1_1RegisteredOption.html#a7f2943fd536a87cb8e141ad50331d173',1,'Ipopt::RegisteredOption']]], - ['upper_5fstrict_5f_71',['upper_strict_',['../classIpopt_1_1RegisteredOption.html#acf1147b245db45b35046b28c9aabfd83',1,'Ipopt::RegisteredOption']]], - ['upperinteger_72',['UpperInteger',['../classIpopt_1_1RegisteredOption.html#a91a18df17dd85b0bbf5f16e7a7fc327d',1,'Ipopt::RegisteredOption']]], - ['uppernumber_73',['UpperNumber',['../classIpopt_1_1RegisteredOption.html#a5916a976bc734ccb6277f0cf9e07de52',1,'Ipopt::RegisteredOption']]], - ['upperstrict_74',['UpperStrict',['../classIpopt_1_1RegisteredOption.html#a8c644d9053b2e8cd633d8767accb5d5a',1,'Ipopt::RegisteredOption']]], - ['use_20ipopt_75',['use ipopt',['../FAQ.html#autotoc_md1',1,'How do I use Ipopt?'],['../index.html#HOWTOUSE',1,'How to use Ipopt']]], - ['use_5fscaling_5f_76',['use_scaling_',['../classIpopt_1_1TSymLinearSolver.html#a459b342c88dbbe7f9eac1add6f01b4ea',1,'Ipopt::TSymLinearSolver']]], - ['used_77',['On what operating systems can Ipopt be used?',['../FAQ.html#autotoc_md4',1,'']]], - ['user_5fdata_5f_78',['user_data_',['../classIpopt_1_1StdInterfaceTNLP.html#afa3ba3b721e5e77081c8e1a4d7f0c074',1,'Ipopt::StdInterfaceTNLP']]], - ['user_5frequested_5fstop_79',['user_requested_stop',['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7adc86c05bff28bad8f7aac1c137a3f41b',1,'User_Requested_Stop: IpReturnCodes_inc.h'],['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834a22eecf4996da7cc0d36cdc47c83d6320',1,'Ipopt::USER_REQUESTED_STOP'],['../classorg_1_1coinor_1_1Ipopt.html#abb69198b1498dbb9c51c56607406a414',1,'org.coinor.Ipopt.USER_REQUESTED_STOP']]], - ['user_5fstop_80',['USER_STOP',['../classIpopt_1_1ConvergenceCheck.html#a0c6c029f369b9529443d945db60c6a98ab42f85acd14df65771faa300210b8cb9',1,'Ipopt::ConvergenceCheck']]], - ['userdataptr_81',['UserDataPtr',['../IpStdCInterface_8h.html#a34729529d9e43f5954710164cafe4894',1,'IpStdCInterface.h']]], - ['userscaling_82',['userscaling',['../classIpopt_1_1UserScaling.html',1,'Ipopt::UserScaling'],['../classIpopt_1_1UserScaling.html#ae5e755c567dde8242cfed24e3adcec75',1,'Ipopt::UserScaling::UserScaling(const UserScaling &)'],['../classIpopt_1_1UserScaling.html#acd3ac1550bfb0bc0885ebb28dfadae10',1,'Ipopt::UserScaling::UserScaling(const SmartPtr< const NLP > &nlp)']]], - ['using_20coinbrew_83',['Using CoinBrew',['../INSTALL.html#COINBREW',1,'']]], - ['using_20ipopt_20from_20the_20command_20line_84',['Using Ipopt from the command line',['../INTERFACES.html#INTERFACE_AMPL_CL',1,'']]], - ['using_20ipopt_20through_20ampl_85',['Using Ipopt through AMPL',['../INTERFACES.html#INTERFACE_AMPL',1,'']]], - ['usmall_86',['usmall',['../structma86__info__s.html#a8f6e889587abc1776dfe1bcec836bdf3',1,'ma86_info_s::usmall'],['../structma86__info__d.html#a47cae97915d4aa1e9e561c2247261d0a',1,'ma86_info_d::usmall'],['../structma77__info__s.html#a3a83f710fee983866ff385c03916dcb6',1,'ma77_info_s::usmall'],['../structma77__info__d.html#a319dc176dc224dbfc266e966da9df7aa',1,'ma77_info_d::usmall']]], - ['utilde2_5f_87',['Utilde2_',['../classIpopt_1_1LowRankAugSystemSolver.html#a80c86fbf6e1520a39af50c9d29e494a9',1,'Ipopt::LowRankAugSystemSolver']]] + ['unregisterinterrupthandler_27',['UnregisterInterruptHandler',['../namespaceIpopt.html#abd79708db843db3ec1a195cf1e1d7f82',1,'Ipopt']]], + ['unscaled_5fcurr_5fc_28',['unscaled_curr_c',['../classIpopt_1_1IpoptCalculatedQuantities.html#a28ba0a2ae16f590be7efeb03d1bdea6b',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5fcomplementarity_29',['unscaled_curr_complementarity',['../classIpopt_1_1IpoptCalculatedQuantities.html#ac3ec4a890bd836895f9eb730df844162',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5fd_30',['unscaled_curr_d',['../classIpopt_1_1IpoptCalculatedQuantities.html#a56653f80c8781bff2f3c34a46c3ca223',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5fdual_5finfeasibility_31',['unscaled_curr_dual_infeasibility',['../classIpopt_1_1IpoptCalculatedQuantities.html#a22b96d28ea9c59335cc631fdc001e1a8',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5fdual_5finfeasibility_5fcache_5f_32',['unscaled_curr_dual_infeasibility_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a7c9c8184dd7e2558aa0fdcc2c551c7a1',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5ff_33',['unscaled_curr_f',['../classIpopt_1_1IpoptCalculatedQuantities.html#ae00c8cb128cd32fae07111f81362c7e9',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5fnlp_5fconstraint_5fviolation_34',['unscaled_curr_nlp_constraint_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a10b3fcfcf4d2bd8fde1eb0533065aae4',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5fnlp_5fconstraint_5fviolation_5fcache_5f_35',['unscaled_curr_nlp_constraint_violation_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aecb6c2e878720d91894be37e34d5e692',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5fnlp_5ferror_36',['unscaled_curr_nlp_error',['../classIpopt_1_1IpoptCalculatedQuantities.html#a6f94654a1874f0a832a7779b779dffc6',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5fnlp_5ferror_5fcache_5f_37',['unscaled_curr_nlp_error_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a47ad480605fda307b5f29dd76cd78545',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5forig_5fbounds_5fviol_5fcache_5f_38',['unscaled_curr_orig_bounds_viol_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a338d74b0298a3a1f062bc2aa99b640f7',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5forig_5fbounds_5fviolation_39',['unscaled_curr_orig_bounds_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#af61324b36a2f00960e4f57e7acd8f87a',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5forig_5fx_5fl_5fviolation_40',['unscaled_curr_orig_x_L_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a64dee858e9f3a95f7df098ac08f1d462',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5forig_5fx_5flu_5fviol_5fcache_5f_41',['unscaled_curr_orig_x_LU_viol_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a3cfc1c5bd0eb05efc3772092a777241f',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5forig_5fx_5fu_5fviolation_42',['unscaled_curr_orig_x_U_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a7aeef4631a7b9da00e60aeaeaf48f26a',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fmatrix_5fspace_5f_43',['unscaled_matrix_space_',['../classIpopt_1_1ScaledMatrixSpace.html#abe6ebe19352a593045df4bb0ea579f7a',1,'Ipopt::ScaledMatrixSpace::unscaled_matrix_space_'],['../classIpopt_1_1SymScaledMatrixSpace.html#a4a9b8c8e79d247b319657affb4cb68c4',1,'Ipopt::SymScaledMatrixSpace::unscaled_matrix_space_']]], + ['unscaled_5forig_5fx_5fl_5fviolation_44',['unscaled_orig_x_L_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#aa0c2d45703cdc2ffe6cf4c2baf53eeb3',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5forig_5fx_5fu_5fviolation_45',['unscaled_orig_x_U_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a9844d2838de3ea6515dd8dbca0d70c3d',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5ftrial_5fc_46',['unscaled_trial_c',['../classIpopt_1_1IpoptCalculatedQuantities.html#aee98cccf9b5ce1b80ee3c7566dbbd505',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5ftrial_5ff_47',['unscaled_trial_f',['../classIpopt_1_1IpoptCalculatedQuantities.html#a5e543575458e3904b980e8d6d001ff60',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5ftrial_5fnlp_5fconstraint_5fviolation_48',['unscaled_trial_nlp_constraint_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#ac50f6d827fa581931d4c14bc99e9d37d',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5ftrial_5fnlp_5fconstraint_5fviolation_5fcache_5f_49',['unscaled_trial_nlp_constraint_violation_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a257496ff0023be0f669847c27773a2e1',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fx_5fcache_5f_50',['unscaled_x_cache_',['../classIpopt_1_1OrigIpoptNLP.html#a100ce567ac673f6b533a9ffd92754eb7',1,'Ipopt::OrigIpoptNLP']]], + ['unscaledmatrixspace_51',['unscaledmatrixspace',['../classIpopt_1_1ScaledMatrixSpace.html#a504382bd96c362757b6edb51382111f9',1,'Ipopt::ScaledMatrixSpace::UnscaledMatrixSpace()'],['../classIpopt_1_1SymScaledMatrixSpace.html#a1cb3b05fe45852bf89c58ccd95ac3bef',1,'Ipopt::SymScaledMatrixSpace::UnscaledMatrixSpace()']]], + ['unscaleiteratesvector_52',['UnScaleIteratesVector',['../classIpopt_1_1SensAlgorithm.html#a06eb1bcf30c8f8ff9e7cf351c2f677c1',1,'Ipopt::SensAlgorithm']]], + ['unscalesigma_53',['UnscaleSigma',['../classIpopt_1_1QualityFunctionMuOracle.html#a91f524e1a119adc5909124e6f226469e',1,'Ipopt::QualityFunctionMuOracle']]], + ['unsetvalue_54',['UnsetValue',['../classIpopt_1_1OptionsList.html#a2ea4d285a8a8ea7120df250dea2658be',1,'Ipopt::OptionsList']]], + ['unused_55',['unused',['../structma77__info__d.html#a1254bf87f8ecb6d23e3d63a34bd8c708',1,'ma77_info_d::unused'],['../structma77__info__s.html#aab3c709b3a9b05fb2ee38eff99d0230e',1,'ma77_info_s::unused']]], + ['update_56',['Barrier Parameter Update',['../OPTIONS.html#OPT_Barrier_Parameter_Update',1,'']]], + ['update_5ffor_5fresto_5f_57',['update_for_resto_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a5bf884f069d635a28721132018e82408',1,'Ipopt::LimMemQuasiNewtonUpdater']]], + ['update_5flocal_5flambda_58',['update_local_lambda',['../classIpopt_1_1TNLPAdapter.html#ae135d8e9291446b71b156319505ca31d',1,'Ipopt::TNLPAdapter']]], + ['update_5flocal_5fx_59',['update_local_x',['../classIpopt_1_1TNLPAdapter.html#a1bea5aaa4454046c19381af8a1e4330e',1,'Ipopt::TNLPAdapter']]], + ['updatebarrierparameter_60',['updatebarrierparameter',['../classIpopt_1_1MonotoneMuUpdate.html#aa84205504ff686600d4519df84d1a49a',1,'Ipopt::MonotoneMuUpdate::UpdateBarrierParameter()'],['../classIpopt_1_1AdaptiveMuUpdate.html#a2e3a6126a513f7995295ddff93cf192c',1,'Ipopt::AdaptiveMuUpdate::UpdateBarrierParameter()'],['../classIpopt_1_1IpoptAlgorithm.html#a0e7daa434dba12abc84b716948e2d8de',1,'Ipopt::IpoptAlgorithm::UpdateBarrierParameter()'],['../classIpopt_1_1MuUpdate.html#a16552e6e04fcc1f2216d7226b11d3169',1,'Ipopt::MuUpdate::UpdateBarrierParameter()'],['../classIpopt_1_1TimingStatistics.html#a9cba55e94dc74ec91eb265bccd8519bf',1,'Ipopt::TimingStatistics::UpdateBarrierParameter()']]], + ['updatebarrierparameter_5f_61',['UpdateBarrierParameter_',['../classIpopt_1_1TimingStatistics.html#aa8e66ed99f04360afef2bd862fc2005c',1,'Ipopt::TimingStatistics']]], + ['updateentry_62',['UpdateEntry',['../classIpopt_1_1PiecewisePenalty.html#a715fee332c35d1eb99f8e2f1bdbfbfad',1,'Ipopt::PiecewisePenalty']]], + ['updateextendeddata_63',['UpdateExtendedData',['../classIpopt_1_1LowRankSSAugSystemSolver.html#ab551655462dfa149959c1d6d71923ae7',1,'Ipopt::LowRankSSAugSystemSolver']]], + ['updatefactorization_64',['UpdateFactorization',['../classIpopt_1_1LowRankAugSystemSolver.html#a40e46550fe0f8349852b41381f391265',1,'Ipopt::LowRankAugSystemSolver']]], + ['updatefornextiteration_65',['updatefornextiteration',['../classIpopt_1_1CGPenaltyLSAcceptor.html#ae929b890949ab2f5ba77799f58e27762',1,'Ipopt::CGPenaltyLSAcceptor::UpdateForNextIteration()'],['../classIpopt_1_1InexactLSAcceptor.html#a0bf5c79aa8a6d7ee4bbc734469a62285',1,'Ipopt::InexactLSAcceptor::UpdateForNextIteration()'],['../classIpopt_1_1BacktrackingLSAcceptor.html#a51c4588ba9440362916593fb5e8e53da',1,'Ipopt::BacktrackingLSAcceptor::UpdateForNextIteration()'],['../classIpopt_1_1FilterLSAcceptor.html#a26afeb58ad6102b65c3e12088bb6fbe3',1,'Ipopt::FilterLSAcceptor::UpdateForNextIteration()'],['../classIpopt_1_1PenaltyLSAcceptor.html#af76ccd039d4d4b80fb830ca0cf78fb27',1,'Ipopt::PenaltyLSAcceptor::UpdateForNextIteration()']]], + ['updatehessian_66',['updatehessian',['../classIpopt_1_1TimingStatistics.html#a27911945a2ffe11b7209c29ba7df52c4',1,'Ipopt::TimingStatistics::UpdateHessian()'],['../classIpopt_1_1ExactHessianUpdater.html#a687ff6fc5a413b5e5a338c7ae8b4f392',1,'Ipopt::ExactHessianUpdater::UpdateHessian()'],['../classIpopt_1_1HessianUpdater.html#a4d00334fd4bdb03260e44b10dda85a33',1,'Ipopt::HessianUpdater::UpdateHessian()'],['../classIpopt_1_1IpoptAlgorithm.html#a62fa01d8850fbf12adc9fbe6c9abcfba',1,'Ipopt::IpoptAlgorithm::UpdateHessian()'],['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a7a195f4bcb6d1c184068e69c97e4b206',1,'Ipopt::LimMemQuasiNewtonUpdater::UpdateHessian()']]], + ['updatehessian_5f_67',['UpdateHessian_',['../classIpopt_1_1TimingStatistics.html#a3831b8f28f5aec64d7c79d7618a83673',1,'Ipopt::TimingStatistics']]], + ['updateinternaldata_68',['UpdateInternalData',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a4ea94f5ef65c96962c804c289085af51',1,'Ipopt::LimMemQuasiNewtonUpdater']]], + ['updatepenaltyparameter_69',['UpdatePenaltyParameter',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a4c7c73fa17348e7886cecd0ed7034d32',1,'Ipopt::CGPenaltyLSAcceptor']]], + ['updatetags_70',['UpdateTags',['../classIpopt_1_1GenAugSystemSolver.html#a834b96e90ac533f9adc16a4f08a95ef5',1,'Ipopt::GenAugSystemSolver']]], + ['upper_5f_71',['upper_',['../classIpopt_1_1RegisteredOption.html#a7f2943fd536a87cb8e141ad50331d173',1,'Ipopt::RegisteredOption']]], + ['upper_5fstrict_5f_72',['upper_strict_',['../classIpopt_1_1RegisteredOption.html#acf1147b245db45b35046b28c9aabfd83',1,'Ipopt::RegisteredOption']]], + ['upperinteger_73',['UpperInteger',['../classIpopt_1_1RegisteredOption.html#a91a18df17dd85b0bbf5f16e7a7fc327d',1,'Ipopt::RegisteredOption']]], + ['uppernumber_74',['UpperNumber',['../classIpopt_1_1RegisteredOption.html#a5916a976bc734ccb6277f0cf9e07de52',1,'Ipopt::RegisteredOption']]], + ['upperstrict_75',['UpperStrict',['../classIpopt_1_1RegisteredOption.html#a8c644d9053b2e8cd633d8767accb5d5a',1,'Ipopt::RegisteredOption']]], + ['use_20ipopt_76',['use ipopt',['../FAQ.html#autotoc_md1',1,'How do I use Ipopt?'],['../index.html#HOWTOUSE',1,'How to use Ipopt']]], + ['use_5fscaling_5f_77',['use_scaling_',['../classIpopt_1_1TSymLinearSolver.html#a459b342c88dbbe7f9eac1add6f01b4ea',1,'Ipopt::TSymLinearSolver']]], + ['used_78',['On what operating systems can Ipopt be used?',['../FAQ.html#autotoc_md4',1,'']]], + ['user_5fdata_5f_79',['user_data_',['../classIpopt_1_1StdInterfaceTNLP.html#afa3ba3b721e5e77081c8e1a4d7f0c074',1,'Ipopt::StdInterfaceTNLP']]], + ['user_5frequested_5fstop_80',['user_requested_stop',['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7adc86c05bff28bad8f7aac1c137a3f41b',1,'User_Requested_Stop: IpReturnCodes_inc.h'],['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834a22eecf4996da7cc0d36cdc47c83d6320',1,'Ipopt::USER_REQUESTED_STOP'],['../classorg_1_1coinor_1_1Ipopt.html#abb69198b1498dbb9c51c56607406a414',1,'org.coinor.Ipopt.USER_REQUESTED_STOP']]], + ['user_5fstop_81',['USER_STOP',['../classIpopt_1_1ConvergenceCheck.html#a0c6c029f369b9529443d945db60c6a98ab42f85acd14df65771faa300210b8cb9',1,'Ipopt::ConvergenceCheck']]], + ['userdataptr_82',['UserDataPtr',['../IpStdCInterface_8h.html#a34729529d9e43f5954710164cafe4894',1,'IpStdCInterface.h']]], + ['userscaling_83',['userscaling',['../classIpopt_1_1UserScaling.html',1,'Ipopt::UserScaling'],['../classIpopt_1_1UserScaling.html#ae5e755c567dde8242cfed24e3adcec75',1,'Ipopt::UserScaling::UserScaling(const UserScaling &)'],['../classIpopt_1_1UserScaling.html#acd3ac1550bfb0bc0885ebb28dfadae10',1,'Ipopt::UserScaling::UserScaling(const SmartPtr< const NLP > &nlp)']]], + ['using_20coinbrew_84',['Using CoinBrew',['../INSTALL.html#COINBREW',1,'']]], + ['using_20ipopt_20from_20the_20command_20line_85',['Using Ipopt from the command line',['../INTERFACES.html#INTERFACE_AMPL_CL',1,'']]], + ['using_20ipopt_20through_20ampl_86',['Using Ipopt through AMPL',['../INTERFACES.html#INTERFACE_AMPL',1,'']]], + ['usmall_87',['usmall',['../structma86__info__s.html#a8f6e889587abc1776dfe1bcec836bdf3',1,'ma86_info_s::usmall'],['../structma86__info__d.html#a47cae97915d4aa1e9e561c2247261d0a',1,'ma86_info_d::usmall'],['../structma77__info__s.html#a3a83f710fee983866ff385c03916dcb6',1,'ma77_info_s::usmall'],['../structma77__info__d.html#a319dc176dc224dbfc266e966da9df7aa',1,'ma77_info_d::usmall']]], + ['utilde2_5f_88',['Utilde2_',['../classIpopt_1_1LowRankAugSystemSolver.html#a80c86fbf6e1520a39af50c9d29e494a9',1,'Ipopt::LowRankAugSystemSolver']]] ]; diff --git a/search/all_2.js b/search/all_2.js index 462cc1cdd..66d65d47c 100644 --- a/search/all_2.js +++ b/search/all_2.js @@ -1,130 +1,132 @@ var searchData= [ - ['2_0',['3.2',['../md_ChangeLog.html#autotoc_md98',1,'']]], - ['2_200_202006_2007_2007_20dev_20release_20number_20757_1',['3.2.0 (2006-07-07) - dev release number 757',['../md_ChangeLog.html#autotoc_md103',1,'']]], - ['2_201_202006_2007_2014_20dev_20release_20number_20764_2',['3.2.1 (2006-07-14) - dev release number 764',['../md_ChangeLog.html#autotoc_md102',1,'']]], - ['2_202_3',['2.2',['../md_ChangeLog.html#autotoc_md109',1,'']]], - ['2_202_200_202004_2003_2010_4',['2.2.0 (2004-03-10)',['../md_ChangeLog.html#autotoc_md119',1,'']]], - ['2_202_201_202004_2004_2025_5',['2.2.1 (2004-04-25)',['../md_ChangeLog.html#autotoc_md118',1,'']]], - ['2_202_201a_202004_2005_2013_6',['2.2.1a (2004-05-13)',['../md_ChangeLog.html#autotoc_md116',1,'']]], - ['2_202_201b_202004_2005_2021_7',['2.2.1b (2004-05-21)',['../md_ChangeLog.html#autotoc_md115',1,'']]], - ['2_202_201c_202004_2007_2020_8',['2.2.1c (2004-07-20)',['../md_ChangeLog.html#autotoc_md114',1,'']]], - ['2_202_201d_202004_2010_2005_9',['2.2.1d (2004-10-05)',['../md_ChangeLog.html#autotoc_md113',1,'']]], - ['2_202_201e_202005_2005_2030_10',['2.2.1e (2005-05-30)',['../md_ChangeLog.html#autotoc_md111',1,'']]], - ['2_202008_2007_2018_11',['3.4.2 (2008-07-18)',['../md_ChangeLog.html#autotoc_md90',1,'']]], - ['2_202008_2009_2018_12',['3.5.2 (2008-09-18)',['../md_ChangeLog.html#autotoc_md86',1,'']]], - ['2_202010_2006_2016_13',['3.8.2 (2010-06-16)',['../md_ChangeLog.html#autotoc_md73',1,'']]], - ['2_202010_2012_2022_14',['3.9.2 (2010-12-22)',['../md_ChangeLog.html#autotoc_md68',1,'']]], - ['2_202012_2002_2012_15',['3.10.2 (2012-02-12)',['../md_ChangeLog.html#autotoc_md63',1,'']]], - ['2_202013_2007_2001_16',['3.11.2 (2013-07-01)',['../md_ChangeLog.html#autotoc_md57',1,'']]], - ['2_202015_2004_2004_17',['3.12.2 (2015-04-04)',['../md_ChangeLog.html#autotoc_md45',1,'']]], - ['2_202020_2004_2030_18',['3.13.2 (2020-04-30)',['../md_ChangeLog.html#autotoc_md30',1,'']]], - ['2_202021_2007_2021_19',['3.14.2 (2021-07-21)',['../md_ChangeLog.html#autotoc_md24',1,'']]], - ['2_203_202006_2011_2029_20',['3.2.3 (2006-11-29)',['../md_ChangeLog.html#autotoc_md100',1,'']]], - ['2_204_202007_2004_2024_21',['3.2.4 (2007-04-24)',['../md_ChangeLog.html#autotoc_md99',1,'']]], - ['2_20r795_202006_2010_2011_22',['3.2 r795 (2006-10-11)',['../md_ChangeLog.html#autotoc_md101',1,'']]], - ['20_23',['20',['../md_ChangeLog.html#autotoc_md114',1,'2.2.1c (2004-07-20)'],['../md_ChangeLog.html#autotoc_md65',1,'3.10.0 (2011-06-20)'],['../md_ChangeLog.html#autotoc_md64',1,'3.10.1 (2011-09-20)'],['../md_ChangeLog.html#autotoc_md41',1,'3.12.6 (2016-07-20)'],['../md_ChangeLog.html#autotoc_md22',1,'3.14.4 (2021-09-20)'],['../md_ChangeLog.html#autotoc_md97',1,'3.3.1 (2007-06-20)']]], - ['2004_2003_2010_24',['2.2.0 (2004-03-10)',['../md_ChangeLog.html#autotoc_md119',1,'']]], - ['2004_2004_2025_25',['2.2.1 (2004-04-25)',['../md_ChangeLog.html#autotoc_md118',1,'']]], - ['2004_2004_2028_26',['no new release (2004-04-28)',['../md_ChangeLog.html#autotoc_md117',1,'']]], - ['2004_2005_2013_27',['2.2.1a (2004-05-13)',['../md_ChangeLog.html#autotoc_md116',1,'']]], - ['2004_2005_2021_28',['2.2.1b (2004-05-21)',['../md_ChangeLog.html#autotoc_md115',1,'']]], - ['2004_2007_2020_29',['2.2.1c (2004-07-20)',['../md_ChangeLog.html#autotoc_md114',1,'']]], - ['2004_2010_2005_30',['2.2.1d (2004-10-05)',['../md_ChangeLog.html#autotoc_md113',1,'']]], - ['2005_2001_2007_31',['no new release (2005-01-07)',['../md_ChangeLog.html#autotoc_md112',1,'']]], - ['2005_2005_2030_32',['2.2.1e (2005-05-30)',['../md_ChangeLog.html#autotoc_md111',1,'']]], - ['2005_2008_2019_33',['no new release (2005-08-19)',['../md_ChangeLog.html#autotoc_md110',1,'']]], - ['2005_2008_2026_20dev_20release_20number_20510_34',['3.0.0 (2005-08-26) - dev release number 510',['../md_ChangeLog.html#autotoc_md108',1,'']]], - ['2005_2012_2004_35',['3.0.1 (2005-12-04)',['../md_ChangeLog.html#autotoc_md107',1,'']]], - ['2006_2004_2008_20dev_20release_20number_20714_36',['3.1.0 (2006-04-08) - dev release number 714',['../md_ChangeLog.html#autotoc_md105',1,'']]], - ['2006_2007_2007_20dev_20release_20number_20757_37',['3.2.0 (2006-07-07) - dev release number 757',['../md_ChangeLog.html#autotoc_md103',1,'']]], - ['2006_2007_2014_20dev_20release_20number_20764_38',['3.2.1 (2006-07-14) - dev release number 764',['../md_ChangeLog.html#autotoc_md102',1,'']]], - ['2006_2010_2011_39',['3.2 r795 (2006-10-11)',['../md_ChangeLog.html#autotoc_md101',1,'']]], - ['2006_2011_2029_40',['3.2.3 (2006-11-29)',['../md_ChangeLog.html#autotoc_md100',1,'']]], - ['2007_2004_2024_41',['3.2.4 (2007-04-24)',['../md_ChangeLog.html#autotoc_md99',1,'']]], - ['2007_2006_2020_42',['3.3.1 (2007-06-20)',['../md_ChangeLog.html#autotoc_md97',1,'']]], - ['2007_2009_2025_43',['3.3.3 (2007-09-25)',['../md_ChangeLog.html#autotoc_md96',1,'']]], - ['2007_2012_2027_44',['3.3.4 (2007-12-27)',['../md_ChangeLog.html#autotoc_md95',1,'']]], - ['2008_2002_2028_45',['3.3.5 (2008-02-28)',['../md_ChangeLog.html#autotoc_md94',1,'']]], - ['2008_2004_2025_46',['3.4.0 (2008-04-25)',['../md_ChangeLog.html#autotoc_md92',1,'']]], - ['2008_2005_2030_47',['3.4.1 (2008-05-30)',['../md_ChangeLog.html#autotoc_md91',1,'']]], - ['2008_2007_2018_48',['3.4.2 (2008-07-18)',['../md_ChangeLog.html#autotoc_md90',1,'']]], - ['2008_2008_2025_49',['3.5.0 (2008-08-25)',['../md_ChangeLog.html#autotoc_md88',1,'']]], - ['2008_2008_2026_50',['3.5.1 (2008-08-26)',['../md_ChangeLog.html#autotoc_md87',1,'']]], - ['2008_2009_2018_51',['3.5.2 (2008-09-18)',['../md_ChangeLog.html#autotoc_md86',1,'']]], - ['2008_2009_2019_52',['3.5.3 (2008-09-19)',['../md_ChangeLog.html#autotoc_md85',1,'']]], - ['2008_2009_2029_53',['3.5.4 (2008-09-29)',['../md_ChangeLog.html#autotoc_md84',1,'']]], - ['2009_2001_2013_54',['3.5.5 (2009-01-13)',['../md_ChangeLog.html#autotoc_md83',1,'']]], - ['2009_2004_2029_55',['3.6.0 (2009-04-29)',['../md_ChangeLog.html#autotoc_md81',1,'']]], - ['2009_2005_2001_56',['3.6.1 (2009-05-01)',['../md_ChangeLog.html#autotoc_md80',1,'']]], - ['2009_2007_2016_57',['3.7.0 (2009-07-16)',['../md_ChangeLog.html#autotoc_md78',1,'']]], - ['2009_2010_2006_58',['3.7.1 (2009-10-06)',['../md_ChangeLog.html#autotoc_md77',1,'']]], - ['2009_2010_2030_59',['2009 10 30',['../md_ChangeLog.html#autotoc_md75',1,'3.8.0 (2009-10-30)'],['../md_ChangeLog.html#autotoc_md74',1,'3.8.1 (2009-10-30)']]], - ['2010_2006_2016_60',['3.8.2 (2010-06-16)',['../md_ChangeLog.html#autotoc_md73',1,'']]], - ['2010_2006_2029_61',['3.8.3 (2010-06-29)',['../md_ChangeLog.html#autotoc_md72',1,'']]], - ['2010_2011_2005_62',['3.9.0 (2010-11-05)',['../md_ChangeLog.html#autotoc_md70',1,'']]], - ['2010_2011_2026_63',['3.9.1 (2010-11-26)',['../md_ChangeLog.html#autotoc_md69',1,'']]], - ['2010_2012_2022_64',['3.9.2 (2010-12-22)',['../md_ChangeLog.html#autotoc_md68',1,'']]], - ['2011_2004_2007_65',['3.9.3 (2011-04-07)',['../md_ChangeLog.html#autotoc_md67',1,'']]], - ['2011_2006_2020_66',['3.10.0 (2011-06-20)',['../md_ChangeLog.html#autotoc_md65',1,'']]], - ['2011_2009_2020_67',['3.10.1 (2011-09-20)',['../md_ChangeLog.html#autotoc_md64',1,'']]], - ['2012_2002_2012_68',['3.10.2 (2012-02-12)',['../md_ChangeLog.html#autotoc_md63',1,'']]], - ['2012_2011_2019_69',['3.10.3 (2012-11-19)',['../md_ChangeLog.html#autotoc_md62',1,'']]], - ['2013_2005_2005_70',['3.10.4 (2013-05-05)',['../md_ChangeLog.html#autotoc_md61',1,'']]], - ['2013_2005_2007_71',['3.11.0 (2013-05-07)',['../md_ChangeLog.html#autotoc_md59',1,'']]], - ['2013_2006_2014_72',['3.11.1 (2013-06-14)',['../md_ChangeLog.html#autotoc_md58',1,'']]], - ['2013_2007_2001_73',['3.11.2 (2013-07-01)',['../md_ChangeLog.html#autotoc_md57',1,'']]], - ['2013_2008_2008_74',['3.11.3 (2013-08-08)',['../md_ChangeLog.html#autotoc_md56',1,'']]], - ['2013_2009_2012_75',['3.11.4 (2013-09-12)',['../md_ChangeLog.html#autotoc_md55',1,'']]], - ['2013_2010_2026_76',['3.11.5 (2013-10-26)',['../md_ChangeLog.html#autotoc_md54',1,'']]], - ['2013_2011_2016_77',['3.11.6 (2013-11-16)',['../md_ChangeLog.html#autotoc_md53',1,'']]], - ['2013_2012_2018_78',['3.11.7 (2013-12-18)',['../md_ChangeLog.html#autotoc_md52',1,'']]], - ['2014_2004_2008_79',['3.11.8 (2014-04-08)',['../md_ChangeLog.html#autotoc_md51',1,'']]], - ['2014_2008_2016_80',['3.11.9 (2014-08-16)',['../md_ChangeLog.html#autotoc_md50',1,'']]], - ['2015_2001_2018_81',['3.11.10 (2015-01-18)',['../md_ChangeLog.html#autotoc_md49',1,'']]], - ['2015_2001_2023_82',['3.12.0 (2015-01-23)',['../md_ChangeLog.html#autotoc_md47',1,'']]], - ['2015_2002_2013_83',['3.12.1 (2015-02-13)',['../md_ChangeLog.html#autotoc_md46',1,'']]], - ['2015_2004_2004_84',['3.12.2 (2015-04-04)',['../md_ChangeLog.html#autotoc_md45',1,'']]], - ['2015_2004_2015_85',['3.12.3 and 3.11.11 (2015-04-15)',['../md_ChangeLog.html#autotoc_md44',1,'']]], - ['2015_2008_2009_86',['3.12.4 (2015-08-09)',['../md_ChangeLog.html#autotoc_md43',1,'']]], - ['2016_2004_2030_87',['3.12.5 (2016-04-30)',['../md_ChangeLog.html#autotoc_md42',1,'']]], - ['2016_2007_2020_88',['3.12.6 (2016-07-20)',['../md_ChangeLog.html#autotoc_md41',1,'']]], - ['2017_2002_2025_89',['3.12.7 (2017-02-25)',['../md_ChangeLog.html#autotoc_md40',1,'']]], - ['2017_2006_2012_90',['3.12.8 (2017-06-12)',['../md_ChangeLog.html#autotoc_md39',1,'']]], - ['2018_2001_2015_91',['3.12.9 (2018-01-15)',['../md_ChangeLog.html#autotoc_md38',1,'']]], - ['2018_2006_2002_92',['3.12.10 (2018-06-02)',['../md_ChangeLog.html#autotoc_md37',1,'']]], - ['2018_2009_2016_93',['3.12.11 (2018-09-16)',['../md_ChangeLog.html#autotoc_md36',1,'']]], - ['2018_2011_2017_94',['3.12.12 (2018-11-17)',['../md_ChangeLog.html#autotoc_md35',1,'']]], - ['2019_2004_2008_95',['3.12.13 (2019-04-08)',['../md_ChangeLog.html#autotoc_md34',1,'']]], - ['2019_2010_2019_96',['3.13.0 (2019-10-19)',['../md_ChangeLog.html#autotoc_md32',1,'']]], - ['2020_2003_2011_97',['3.13.1 (2020-03-11)',['../md_ChangeLog.html#autotoc_md31',1,'']]], - ['2020_2004_2030_98',['3.13.2 (2020-04-30)',['../md_ChangeLog.html#autotoc_md30',1,'']]], - ['2020_2010_2016_99',['3.13.3 (2020-10-16)',['../md_ChangeLog.html#autotoc_md29',1,'']]], - ['2021_2002_2024_100',['3.13.4 (2021-02-24)',['../md_ChangeLog.html#autotoc_md28',1,'']]], - ['2021_2006_2015_101',['3.14.0 (2021-06-15)',['../md_ChangeLog.html#autotoc_md26',1,'']]], - ['2021_2006_2025_102',['3.14.1 (2021-06-25)',['../md_ChangeLog.html#autotoc_md25',1,'']]], - ['2021_2007_2021_103',['3.14.2 (2021-07-21)',['../md_ChangeLog.html#autotoc_md24',1,'']]], - ['2021_2009_2003_104',['3.14.3 (2021-09-03)',['../md_ChangeLog.html#autotoc_md23',1,'']]], - ['2021_2009_2020_105',['3.14.4 (2021-09-20)',['../md_ChangeLog.html#autotoc_md22',1,'']]], - ['2022_2002_2009_106',['3.14.5 (2022-02-09)',['../md_ChangeLog.html#autotoc_md21',1,'']]], - ['2022_2005_2002_107',['3.14.6 (2022-05-02)',['../md_ChangeLog.html#autotoc_md20',1,'']]], - ['2022_2006_2024_108',['3.14.7 (2022-06-24)',['../md_ChangeLog.html#autotoc_md19',1,'']]], - ['2022_2007_2013_109',['3.14.8 (2022-07-13)',['../md_ChangeLog.html#autotoc_md18',1,'']]], - ['2022_2007_2021_110',['3.14.9 (2022-07-21)',['../md_ChangeLog.html#autotoc_md17',1,'']]], - ['2022_2010_2011_111',['3.14.10 (2022-10-11)',['../md_ChangeLog.html#autotoc_md16',1,'']]], - ['2023_2002_2007_112',['3.14.11 (2023-02-07)',['../md_ChangeLog.html#autotoc_md15',1,'']]], - ['2023_2004_2005_113',['3.14.12 (2023-04-05)',['../md_ChangeLog.html#autotoc_md14',1,'']]], - ['2023_2011_2008_114',['3.14.13 (2023-11-08)',['../md_ChangeLog.html#autotoc_md13',1,'']]], - ['2024_2001_2018_115',['3.14.14 (2024-01-18)',['../md_ChangeLog.html#autotoc_md12',1,'']]], - ['2024_2004_2010_116',['3.14.15 (2024-04-10)',['../md_ChangeLog.html#autotoc_md11',1,'']]], - ['21_117',['21',['../md_ChangeLog.html#autotoc_md115',1,'2.2.1b (2004-05-21)'],['../md_ChangeLog.html#autotoc_md24',1,'3.14.2 (2021-07-21)'],['../md_ChangeLog.html#autotoc_md17',1,'3.14.9 (2022-07-21)']]], - ['22_118',['3.9.2 (2010-12-22)',['../md_ChangeLog.html#autotoc_md68',1,'']]], - ['23_119',['3.12.0 (2015-01-23)',['../md_ChangeLog.html#autotoc_md47',1,'']]], - ['24_120',['24',['../md_ChangeLog.html#autotoc_md28',1,'3.13.4 (2021-02-24)'],['../md_ChangeLog.html#autotoc_md19',1,'3.14.7 (2022-06-24)'],['../md_ChangeLog.html#autotoc_md99',1,'3.2.4 (2007-04-24)']]], - ['25_121',['25',['../md_ChangeLog.html#autotoc_md118',1,'2.2.1 (2004-04-25)'],['../md_ChangeLog.html#autotoc_md40',1,'3.12.7 (2017-02-25)'],['../md_ChangeLog.html#autotoc_md25',1,'3.14.1 (2021-06-25)'],['../md_ChangeLog.html#autotoc_md96',1,'3.3.3 (2007-09-25)'],['../md_ChangeLog.html#autotoc_md92',1,'3.4.0 (2008-04-25)'],['../md_ChangeLog.html#autotoc_md88',1,'3.5.0 (2008-08-25)']]], - ['26_122',['26',['../md_ChangeLog.html#autotoc_md54',1,'3.11.5 (2013-10-26)'],['../md_ChangeLog.html#autotoc_md87',1,'3.5.1 (2008-08-26)'],['../md_ChangeLog.html#autotoc_md69',1,'3.9.1 (2010-11-26)']]], - ['26_20dev_20release_20number_20510_123',['3.0.0 (2005-08-26) - dev release number 510',['../md_ChangeLog.html#autotoc_md108',1,'']]], - ['27_124',['3.3.4 (2007-12-27)',['../md_ChangeLog.html#autotoc_md95',1,'']]], - ['28_125',['28',['../md_ChangeLog.html#autotoc_md94',1,'3.3.5 (2008-02-28)'],['../md_ChangeLog.html#autotoc_md117',1,'no new release (2004-04-28)']]], - ['29_126',['29',['../md_ChangeLog.html#autotoc_md100',1,'3.2.3 (2006-11-29)'],['../md_ChangeLog.html#autotoc_md84',1,'3.5.4 (2008-09-29)'],['../md_ChangeLog.html#autotoc_md81',1,'3.6.0 (2009-04-29)'],['../md_ChangeLog.html#autotoc_md72',1,'3.8.3 (2010-06-29)']]] + ['2_0',['3.2',['../md_ChangeLog.html#autotoc_md100',1,'']]], + ['2_200_202006_2007_2007_20dev_20release_20number_20757_1',['3.2.0 (2006-07-07) - dev release number 757',['../md_ChangeLog.html#autotoc_md105',1,'']]], + ['2_201_202006_2007_2014_20dev_20release_20number_20764_2',['3.2.1 (2006-07-14) - dev release number 764',['../md_ChangeLog.html#autotoc_md104',1,'']]], + ['2_202_3',['2.2',['../md_ChangeLog.html#autotoc_md111',1,'']]], + ['2_202_200_202004_2003_2010_4',['2.2.0 (2004-03-10)',['../md_ChangeLog.html#autotoc_md121',1,'']]], + ['2_202_201_202004_2004_2025_5',['2.2.1 (2004-04-25)',['../md_ChangeLog.html#autotoc_md120',1,'']]], + ['2_202_201a_202004_2005_2013_6',['2.2.1a (2004-05-13)',['../md_ChangeLog.html#autotoc_md118',1,'']]], + ['2_202_201b_202004_2005_2021_7',['2.2.1b (2004-05-21)',['../md_ChangeLog.html#autotoc_md117',1,'']]], + ['2_202_201c_202004_2007_2020_8',['2.2.1c (2004-07-20)',['../md_ChangeLog.html#autotoc_md116',1,'']]], + ['2_202_201d_202004_2010_2005_9',['2.2.1d (2004-10-05)',['../md_ChangeLog.html#autotoc_md115',1,'']]], + ['2_202_201e_202005_2005_2030_10',['2.2.1e (2005-05-30)',['../md_ChangeLog.html#autotoc_md113',1,'']]], + ['2_202008_2007_2018_11',['3.4.2 (2008-07-18)',['../md_ChangeLog.html#autotoc_md92',1,'']]], + ['2_202008_2009_2018_12',['3.5.2 (2008-09-18)',['../md_ChangeLog.html#autotoc_md88',1,'']]], + ['2_202010_2006_2016_13',['3.8.2 (2010-06-16)',['../md_ChangeLog.html#autotoc_md75',1,'']]], + ['2_202010_2012_2022_14',['3.9.2 (2010-12-22)',['../md_ChangeLog.html#autotoc_md70',1,'']]], + ['2_202012_2002_2012_15',['3.10.2 (2012-02-12)',['../md_ChangeLog.html#autotoc_md65',1,'']]], + ['2_202013_2007_2001_16',['3.11.2 (2013-07-01)',['../md_ChangeLog.html#autotoc_md59',1,'']]], + ['2_202015_2004_2004_17',['3.12.2 (2015-04-04)',['../md_ChangeLog.html#autotoc_md47',1,'']]], + ['2_202020_2004_2030_18',['3.13.2 (2020-04-30)',['../md_ChangeLog.html#autotoc_md32',1,'']]], + ['2_202021_2007_2021_19',['3.14.2 (2021-07-21)',['../md_ChangeLog.html#autotoc_md26',1,'']]], + ['2_203_202006_2011_2029_20',['3.2.3 (2006-11-29)',['../md_ChangeLog.html#autotoc_md102',1,'']]], + ['2_204_202007_2004_2024_21',['3.2.4 (2007-04-24)',['../md_ChangeLog.html#autotoc_md101',1,'']]], + ['2_20r795_202006_2010_2011_22',['3.2 r795 (2006-10-11)',['../md_ChangeLog.html#autotoc_md103',1,'']]], + ['20_23',['20',['../md_ChangeLog.html#autotoc_md116',1,'2.2.1c (2004-07-20)'],['../md_ChangeLog.html#autotoc_md67',1,'3.10.0 (2011-06-20)'],['../md_ChangeLog.html#autotoc_md66',1,'3.10.1 (2011-09-20)'],['../md_ChangeLog.html#autotoc_md43',1,'3.12.6 (2016-07-20)'],['../md_ChangeLog.html#autotoc_md24',1,'3.14.4 (2021-09-20)'],['../md_ChangeLog.html#autotoc_md99',1,'3.3.1 (2007-06-20)']]], + ['2004_2003_2010_24',['2.2.0 (2004-03-10)',['../md_ChangeLog.html#autotoc_md121',1,'']]], + ['2004_2004_2025_25',['2.2.1 (2004-04-25)',['../md_ChangeLog.html#autotoc_md120',1,'']]], + ['2004_2004_2028_26',['no new release (2004-04-28)',['../md_ChangeLog.html#autotoc_md119',1,'']]], + ['2004_2005_2013_27',['2.2.1a (2004-05-13)',['../md_ChangeLog.html#autotoc_md118',1,'']]], + ['2004_2005_2021_28',['2.2.1b (2004-05-21)',['../md_ChangeLog.html#autotoc_md117',1,'']]], + ['2004_2007_2020_29',['2.2.1c (2004-07-20)',['../md_ChangeLog.html#autotoc_md116',1,'']]], + ['2004_2010_2005_30',['2.2.1d (2004-10-05)',['../md_ChangeLog.html#autotoc_md115',1,'']]], + ['2005_2001_2007_31',['no new release (2005-01-07)',['../md_ChangeLog.html#autotoc_md114',1,'']]], + ['2005_2005_2030_32',['2.2.1e (2005-05-30)',['../md_ChangeLog.html#autotoc_md113',1,'']]], + ['2005_2008_2019_33',['no new release (2005-08-19)',['../md_ChangeLog.html#autotoc_md112',1,'']]], + ['2005_2008_2026_20dev_20release_20number_20510_34',['3.0.0 (2005-08-26) - dev release number 510',['../md_ChangeLog.html#autotoc_md110',1,'']]], + ['2005_2012_2004_35',['3.0.1 (2005-12-04)',['../md_ChangeLog.html#autotoc_md109',1,'']]], + ['2006_2004_2008_20dev_20release_20number_20714_36',['3.1.0 (2006-04-08) - dev release number 714',['../md_ChangeLog.html#autotoc_md107',1,'']]], + ['2006_2007_2007_20dev_20release_20number_20757_37',['3.2.0 (2006-07-07) - dev release number 757',['../md_ChangeLog.html#autotoc_md105',1,'']]], + ['2006_2007_2014_20dev_20release_20number_20764_38',['3.2.1 (2006-07-14) - dev release number 764',['../md_ChangeLog.html#autotoc_md104',1,'']]], + ['2006_2010_2011_39',['3.2 r795 (2006-10-11)',['../md_ChangeLog.html#autotoc_md103',1,'']]], + ['2006_2011_2029_40',['3.2.3 (2006-11-29)',['../md_ChangeLog.html#autotoc_md102',1,'']]], + ['2007_2004_2024_41',['3.2.4 (2007-04-24)',['../md_ChangeLog.html#autotoc_md101',1,'']]], + ['2007_2006_2020_42',['3.3.1 (2007-06-20)',['../md_ChangeLog.html#autotoc_md99',1,'']]], + ['2007_2009_2025_43',['3.3.3 (2007-09-25)',['../md_ChangeLog.html#autotoc_md98',1,'']]], + ['2007_2012_2027_44',['3.3.4 (2007-12-27)',['../md_ChangeLog.html#autotoc_md97',1,'']]], + ['2008_2002_2028_45',['3.3.5 (2008-02-28)',['../md_ChangeLog.html#autotoc_md96',1,'']]], + ['2008_2004_2025_46',['3.4.0 (2008-04-25)',['../md_ChangeLog.html#autotoc_md94',1,'']]], + ['2008_2005_2030_47',['3.4.1 (2008-05-30)',['../md_ChangeLog.html#autotoc_md93',1,'']]], + ['2008_2007_2018_48',['3.4.2 (2008-07-18)',['../md_ChangeLog.html#autotoc_md92',1,'']]], + ['2008_2008_2025_49',['3.5.0 (2008-08-25)',['../md_ChangeLog.html#autotoc_md90',1,'']]], + ['2008_2008_2026_50',['3.5.1 (2008-08-26)',['../md_ChangeLog.html#autotoc_md89',1,'']]], + ['2008_2009_2018_51',['3.5.2 (2008-09-18)',['../md_ChangeLog.html#autotoc_md88',1,'']]], + ['2008_2009_2019_52',['3.5.3 (2008-09-19)',['../md_ChangeLog.html#autotoc_md87',1,'']]], + ['2008_2009_2029_53',['3.5.4 (2008-09-29)',['../md_ChangeLog.html#autotoc_md86',1,'']]], + ['2009_2001_2013_54',['3.5.5 (2009-01-13)',['../md_ChangeLog.html#autotoc_md85',1,'']]], + ['2009_2004_2029_55',['3.6.0 (2009-04-29)',['../md_ChangeLog.html#autotoc_md83',1,'']]], + ['2009_2005_2001_56',['3.6.1 (2009-05-01)',['../md_ChangeLog.html#autotoc_md82',1,'']]], + ['2009_2007_2016_57',['3.7.0 (2009-07-16)',['../md_ChangeLog.html#autotoc_md80',1,'']]], + ['2009_2010_2006_58',['3.7.1 (2009-10-06)',['../md_ChangeLog.html#autotoc_md79',1,'']]], + ['2009_2010_2030_59',['2009 10 30',['../md_ChangeLog.html#autotoc_md77',1,'3.8.0 (2009-10-30)'],['../md_ChangeLog.html#autotoc_md76',1,'3.8.1 (2009-10-30)']]], + ['2010_2006_2016_60',['3.8.2 (2010-06-16)',['../md_ChangeLog.html#autotoc_md75',1,'']]], + ['2010_2006_2029_61',['3.8.3 (2010-06-29)',['../md_ChangeLog.html#autotoc_md74',1,'']]], + ['2010_2011_2005_62',['3.9.0 (2010-11-05)',['../md_ChangeLog.html#autotoc_md72',1,'']]], + ['2010_2011_2026_63',['3.9.1 (2010-11-26)',['../md_ChangeLog.html#autotoc_md71',1,'']]], + ['2010_2012_2022_64',['3.9.2 (2010-12-22)',['../md_ChangeLog.html#autotoc_md70',1,'']]], + ['2011_2004_2007_65',['3.9.3 (2011-04-07)',['../md_ChangeLog.html#autotoc_md69',1,'']]], + ['2011_2006_2020_66',['3.10.0 (2011-06-20)',['../md_ChangeLog.html#autotoc_md67',1,'']]], + ['2011_2009_2020_67',['3.10.1 (2011-09-20)',['../md_ChangeLog.html#autotoc_md66',1,'']]], + ['2012_2002_2012_68',['3.10.2 (2012-02-12)',['../md_ChangeLog.html#autotoc_md65',1,'']]], + ['2012_2011_2019_69',['3.10.3 (2012-11-19)',['../md_ChangeLog.html#autotoc_md64',1,'']]], + ['2013_2005_2005_70',['3.10.4 (2013-05-05)',['../md_ChangeLog.html#autotoc_md63',1,'']]], + ['2013_2005_2007_71',['3.11.0 (2013-05-07)',['../md_ChangeLog.html#autotoc_md61',1,'']]], + ['2013_2006_2014_72',['3.11.1 (2013-06-14)',['../md_ChangeLog.html#autotoc_md60',1,'']]], + ['2013_2007_2001_73',['3.11.2 (2013-07-01)',['../md_ChangeLog.html#autotoc_md59',1,'']]], + ['2013_2008_2008_74',['3.11.3 (2013-08-08)',['../md_ChangeLog.html#autotoc_md58',1,'']]], + ['2013_2009_2012_75',['3.11.4 (2013-09-12)',['../md_ChangeLog.html#autotoc_md57',1,'']]], + ['2013_2010_2026_76',['3.11.5 (2013-10-26)',['../md_ChangeLog.html#autotoc_md56',1,'']]], + ['2013_2011_2016_77',['3.11.6 (2013-11-16)',['../md_ChangeLog.html#autotoc_md55',1,'']]], + ['2013_2012_2018_78',['3.11.7 (2013-12-18)',['../md_ChangeLog.html#autotoc_md54',1,'']]], + ['2014_2004_2008_79',['3.11.8 (2014-04-08)',['../md_ChangeLog.html#autotoc_md53',1,'']]], + ['2014_2008_2016_80',['3.11.9 (2014-08-16)',['../md_ChangeLog.html#autotoc_md52',1,'']]], + ['2015_2001_2018_81',['3.11.10 (2015-01-18)',['../md_ChangeLog.html#autotoc_md51',1,'']]], + ['2015_2001_2023_82',['3.12.0 (2015-01-23)',['../md_ChangeLog.html#autotoc_md49',1,'']]], + ['2015_2002_2013_83',['3.12.1 (2015-02-13)',['../md_ChangeLog.html#autotoc_md48',1,'']]], + ['2015_2004_2004_84',['3.12.2 (2015-04-04)',['../md_ChangeLog.html#autotoc_md47',1,'']]], + ['2015_2004_2015_85',['3.12.3 and 3.11.11 (2015-04-15)',['../md_ChangeLog.html#autotoc_md46',1,'']]], + ['2015_2008_2009_86',['3.12.4 (2015-08-09)',['../md_ChangeLog.html#autotoc_md45',1,'']]], + ['2016_2004_2030_87',['3.12.5 (2016-04-30)',['../md_ChangeLog.html#autotoc_md44',1,'']]], + ['2016_2007_2020_88',['3.12.6 (2016-07-20)',['../md_ChangeLog.html#autotoc_md43',1,'']]], + ['2017_2002_2025_89',['3.12.7 (2017-02-25)',['../md_ChangeLog.html#autotoc_md42',1,'']]], + ['2017_2006_2012_90',['3.12.8 (2017-06-12)',['../md_ChangeLog.html#autotoc_md41',1,'']]], + ['2018_2001_2015_91',['3.12.9 (2018-01-15)',['../md_ChangeLog.html#autotoc_md40',1,'']]], + ['2018_2006_2002_92',['3.12.10 (2018-06-02)',['../md_ChangeLog.html#autotoc_md39',1,'']]], + ['2018_2009_2016_93',['3.12.11 (2018-09-16)',['../md_ChangeLog.html#autotoc_md38',1,'']]], + ['2018_2011_2017_94',['3.12.12 (2018-11-17)',['../md_ChangeLog.html#autotoc_md37',1,'']]], + ['2019_2004_2008_95',['3.12.13 (2019-04-08)',['../md_ChangeLog.html#autotoc_md36',1,'']]], + ['2019_2010_2019_96',['3.13.0 (2019-10-19)',['../md_ChangeLog.html#autotoc_md34',1,'']]], + ['2020_2003_2011_97',['3.13.1 (2020-03-11)',['../md_ChangeLog.html#autotoc_md33',1,'']]], + ['2020_2004_2030_98',['3.13.2 (2020-04-30)',['../md_ChangeLog.html#autotoc_md32',1,'']]], + ['2020_2010_2016_99',['3.13.3 (2020-10-16)',['../md_ChangeLog.html#autotoc_md31',1,'']]], + ['2021_2002_2024_100',['3.13.4 (2021-02-24)',['../md_ChangeLog.html#autotoc_md30',1,'']]], + ['2021_2006_2015_101',['3.14.0 (2021-06-15)',['../md_ChangeLog.html#autotoc_md28',1,'']]], + ['2021_2006_2025_102',['3.14.1 (2021-06-25)',['../md_ChangeLog.html#autotoc_md27',1,'']]], + ['2021_2007_2021_103',['3.14.2 (2021-07-21)',['../md_ChangeLog.html#autotoc_md26',1,'']]], + ['2021_2009_2003_104',['3.14.3 (2021-09-03)',['../md_ChangeLog.html#autotoc_md25',1,'']]], + ['2021_2009_2020_105',['3.14.4 (2021-09-20)',['../md_ChangeLog.html#autotoc_md24',1,'']]], + ['2022_2002_2009_106',['3.14.5 (2022-02-09)',['../md_ChangeLog.html#autotoc_md23',1,'']]], + ['2022_2005_2002_107',['3.14.6 (2022-05-02)',['../md_ChangeLog.html#autotoc_md22',1,'']]], + ['2022_2006_2024_108',['3.14.7 (2022-06-24)',['../md_ChangeLog.html#autotoc_md21',1,'']]], + ['2022_2007_2013_109',['3.14.8 (2022-07-13)',['../md_ChangeLog.html#autotoc_md20',1,'']]], + ['2022_2007_2021_110',['3.14.9 (2022-07-21)',['../md_ChangeLog.html#autotoc_md19',1,'']]], + ['2022_2010_2011_111',['3.14.10 (2022-10-11)',['../md_ChangeLog.html#autotoc_md18',1,'']]], + ['2023_2002_2007_112',['3.14.11 (2023-02-07)',['../md_ChangeLog.html#autotoc_md17',1,'']]], + ['2023_2004_2005_113',['3.14.12 (2023-04-05)',['../md_ChangeLog.html#autotoc_md16',1,'']]], + ['2023_2011_2008_114',['3.14.13 (2023-11-08)',['../md_ChangeLog.html#autotoc_md15',1,'']]], + ['2024_2001_2018_115',['3.14.14 (2024-01-18)',['../md_ChangeLog.html#autotoc_md14',1,'']]], + ['2024_2004_2010_116',['3.14.15 (2024-04-10)',['../md_ChangeLog.html#autotoc_md13',1,'']]], + ['2024_2004_2022_117',['3.14.16 (2024-04-22)',['../md_ChangeLog.html#autotoc_md12',1,'']]], + ['2024_2012_2014_118',['3.14.17 (2024-12-14)',['../md_ChangeLog.html#autotoc_md11',1,'']]], + ['21_119',['21',['../md_ChangeLog.html#autotoc_md117',1,'2.2.1b (2004-05-21)'],['../md_ChangeLog.html#autotoc_md26',1,'3.14.2 (2021-07-21)'],['../md_ChangeLog.html#autotoc_md19',1,'3.14.9 (2022-07-21)']]], + ['22_120',['22',['../md_ChangeLog.html#autotoc_md12',1,'3.14.16 (2024-04-22)'],['../md_ChangeLog.html#autotoc_md70',1,'3.9.2 (2010-12-22)']]], + ['23_121',['3.12.0 (2015-01-23)',['../md_ChangeLog.html#autotoc_md49',1,'']]], + ['24_122',['24',['../md_ChangeLog.html#autotoc_md30',1,'3.13.4 (2021-02-24)'],['../md_ChangeLog.html#autotoc_md21',1,'3.14.7 (2022-06-24)'],['../md_ChangeLog.html#autotoc_md101',1,'3.2.4 (2007-04-24)']]], + ['25_123',['25',['../md_ChangeLog.html#autotoc_md120',1,'2.2.1 (2004-04-25)'],['../md_ChangeLog.html#autotoc_md42',1,'3.12.7 (2017-02-25)'],['../md_ChangeLog.html#autotoc_md27',1,'3.14.1 (2021-06-25)'],['../md_ChangeLog.html#autotoc_md98',1,'3.3.3 (2007-09-25)'],['../md_ChangeLog.html#autotoc_md94',1,'3.4.0 (2008-04-25)'],['../md_ChangeLog.html#autotoc_md90',1,'3.5.0 (2008-08-25)']]], + ['26_124',['26',['../md_ChangeLog.html#autotoc_md56',1,'3.11.5 (2013-10-26)'],['../md_ChangeLog.html#autotoc_md89',1,'3.5.1 (2008-08-26)'],['../md_ChangeLog.html#autotoc_md71',1,'3.9.1 (2010-11-26)']]], + ['26_20dev_20release_20number_20510_125',['3.0.0 (2005-08-26) - dev release number 510',['../md_ChangeLog.html#autotoc_md110',1,'']]], + ['27_126',['3.3.4 (2007-12-27)',['../md_ChangeLog.html#autotoc_md97',1,'']]], + ['28_127',['28',['../md_ChangeLog.html#autotoc_md96',1,'3.3.5 (2008-02-28)'],['../md_ChangeLog.html#autotoc_md119',1,'no new release (2004-04-28)']]], + ['29_128',['29',['../md_ChangeLog.html#autotoc_md102',1,'3.2.3 (2006-11-29)'],['../md_ChangeLog.html#autotoc_md86',1,'3.5.4 (2008-09-29)'],['../md_ChangeLog.html#autotoc_md83',1,'3.6.0 (2009-04-29)'],['../md_ChangeLog.html#autotoc_md74',1,'3.8.3 (2010-06-29)']]] ]; diff --git a/search/all_3.js b/search/all_3.js index 56681a7e8..3c5138df6 100644 --- a/search/all_3.js +++ b/search/all_3.js @@ -1,103 +1,105 @@ var searchData= [ - ['3_200_0',['3.0',['../md_ChangeLog.html#autotoc_md106',1,'']]], - ['3_200_200_202005_2008_2026_20dev_20release_20number_20510_1',['3.0.0 (2005-08-26) - dev release number 510',['../md_ChangeLog.html#autotoc_md108',1,'']]], - ['3_200_201_202005_2012_2004_2',['3.0.1 (2005-12-04)',['../md_ChangeLog.html#autotoc_md107',1,'']]], - ['3_201_3',['3.1',['../md_ChangeLog.html#autotoc_md104',1,'']]], - ['3_201_200_202006_2004_2008_20dev_20release_20number_20714_4',['3.1.0 (2006-04-08) - dev release number 714',['../md_ChangeLog.html#autotoc_md105',1,'']]], - ['3_2010_5',['3.10',['../md_ChangeLog.html#autotoc_md60',1,'']]], - ['3_2010_200_202011_2006_2020_6',['3.10.0 (2011-06-20)',['../md_ChangeLog.html#autotoc_md65',1,'']]], - ['3_2010_201_202011_2009_2020_7',['3.10.1 (2011-09-20)',['../md_ChangeLog.html#autotoc_md64',1,'']]], - ['3_2010_202_202012_2002_2012_8',['3.10.2 (2012-02-12)',['../md_ChangeLog.html#autotoc_md63',1,'']]], - ['3_2010_203_202012_2011_2019_9',['3.10.3 (2012-11-19)',['../md_ChangeLog.html#autotoc_md62',1,'']]], - ['3_2010_204_202013_2005_2005_10',['3.10.4 (2013-05-05)',['../md_ChangeLog.html#autotoc_md61',1,'']]], - ['3_2011_11',['3.11',['../md_ChangeLog.html#autotoc_md48',1,'']]], - ['3_2011_200_202013_2005_2007_12',['3.11.0 (2013-05-07)',['../md_ChangeLog.html#autotoc_md59',1,'']]], - ['3_2011_201_202013_2006_2014_13',['3.11.1 (2013-06-14)',['../md_ChangeLog.html#autotoc_md58',1,'']]], - ['3_2011_2010_202015_2001_2018_14',['3.11.10 (2015-01-18)',['../md_ChangeLog.html#autotoc_md49',1,'']]], - ['3_2011_202_202013_2007_2001_15',['3.11.2 (2013-07-01)',['../md_ChangeLog.html#autotoc_md57',1,'']]], - ['3_2011_203_202013_2008_2008_16',['3.11.3 (2013-08-08)',['../md_ChangeLog.html#autotoc_md56',1,'']]], - ['3_2011_204_202013_2009_2012_17',['3.11.4 (2013-09-12)',['../md_ChangeLog.html#autotoc_md55',1,'']]], - ['3_2011_205_202013_2010_2026_18',['3.11.5 (2013-10-26)',['../md_ChangeLog.html#autotoc_md54',1,'']]], - ['3_2011_206_202013_2011_2016_19',['3.11.6 (2013-11-16)',['../md_ChangeLog.html#autotoc_md53',1,'']]], - ['3_2011_207_202013_2012_2018_20',['3.11.7 (2013-12-18)',['../md_ChangeLog.html#autotoc_md52',1,'']]], - ['3_2011_208_202014_2004_2008_21',['3.11.8 (2014-04-08)',['../md_ChangeLog.html#autotoc_md51',1,'']]], - ['3_2011_209_202014_2008_2016_22',['3.11.9 (2014-08-16)',['../md_ChangeLog.html#autotoc_md50',1,'']]], - ['3_2012_23',['3.12',['../md_ChangeLog.html#autotoc_md33',1,'']]], - ['3_2012_200_202015_2001_2023_24',['3.12.0 (2015-01-23)',['../md_ChangeLog.html#autotoc_md47',1,'']]], - ['3_2012_201_202015_2002_2013_25',['3.12.1 (2015-02-13)',['../md_ChangeLog.html#autotoc_md46',1,'']]], - ['3_2012_2010_202018_2006_2002_26',['3.12.10 (2018-06-02)',['../md_ChangeLog.html#autotoc_md37',1,'']]], - ['3_2012_2011_202018_2009_2016_27',['3.12.11 (2018-09-16)',['../md_ChangeLog.html#autotoc_md36',1,'']]], - ['3_2012_2012_202018_2011_2017_28',['3.12.12 (2018-11-17)',['../md_ChangeLog.html#autotoc_md35',1,'']]], - ['3_2012_2013_202019_2004_2008_29',['3.12.13 (2019-04-08)',['../md_ChangeLog.html#autotoc_md34',1,'']]], - ['3_2012_202_202015_2004_2004_30',['3.12.2 (2015-04-04)',['../md_ChangeLog.html#autotoc_md45',1,'']]], - ['3_2012_203_20and_203_2011_2011_202015_2004_2015_31',['3.12.3 and 3.11.11 (2015-04-15)',['../md_ChangeLog.html#autotoc_md44',1,'']]], - ['3_2012_204_202015_2008_2009_32',['3.12.4 (2015-08-09)',['../md_ChangeLog.html#autotoc_md43',1,'']]], - ['3_2012_205_202016_2004_2030_33',['3.12.5 (2016-04-30)',['../md_ChangeLog.html#autotoc_md42',1,'']]], - ['3_2012_206_202016_2007_2020_34',['3.12.6 (2016-07-20)',['../md_ChangeLog.html#autotoc_md41',1,'']]], - ['3_2012_207_202017_2002_2025_35',['3.12.7 (2017-02-25)',['../md_ChangeLog.html#autotoc_md40',1,'']]], - ['3_2012_208_202017_2006_2012_36',['3.12.8 (2017-06-12)',['../md_ChangeLog.html#autotoc_md39',1,'']]], - ['3_2012_209_202018_2001_2015_37',['3.12.9 (2018-01-15)',['../md_ChangeLog.html#autotoc_md38',1,'']]], - ['3_2013_38',['3.13',['../md_ChangeLog.html#autotoc_md27',1,'']]], - ['3_2013_200_202019_2010_2019_39',['3.13.0 (2019-10-19)',['../md_ChangeLog.html#autotoc_md32',1,'']]], - ['3_2013_201_202020_2003_2011_40',['3.13.1 (2020-03-11)',['../md_ChangeLog.html#autotoc_md31',1,'']]], - ['3_2013_202_202020_2004_2030_41',['3.13.2 (2020-04-30)',['../md_ChangeLog.html#autotoc_md30',1,'']]], - ['3_2013_203_202020_2010_2016_42',['3.13.3 (2020-10-16)',['../md_ChangeLog.html#autotoc_md29',1,'']]], - ['3_2013_204_202021_2002_2024_43',['3.13.4 (2021-02-24)',['../md_ChangeLog.html#autotoc_md28',1,'']]], + ['3_200_0',['3.0',['../md_ChangeLog.html#autotoc_md108',1,'']]], + ['3_200_200_202005_2008_2026_20dev_20release_20number_20510_1',['3.0.0 (2005-08-26) - dev release number 510',['../md_ChangeLog.html#autotoc_md110',1,'']]], + ['3_200_201_202005_2012_2004_2',['3.0.1 (2005-12-04)',['../md_ChangeLog.html#autotoc_md109',1,'']]], + ['3_201_3',['3.1',['../md_ChangeLog.html#autotoc_md106',1,'']]], + ['3_201_200_202006_2004_2008_20dev_20release_20number_20714_4',['3.1.0 (2006-04-08) - dev release number 714',['../md_ChangeLog.html#autotoc_md107',1,'']]], + ['3_2010_5',['3.10',['../md_ChangeLog.html#autotoc_md62',1,'']]], + ['3_2010_200_202011_2006_2020_6',['3.10.0 (2011-06-20)',['../md_ChangeLog.html#autotoc_md67',1,'']]], + ['3_2010_201_202011_2009_2020_7',['3.10.1 (2011-09-20)',['../md_ChangeLog.html#autotoc_md66',1,'']]], + ['3_2010_202_202012_2002_2012_8',['3.10.2 (2012-02-12)',['../md_ChangeLog.html#autotoc_md65',1,'']]], + ['3_2010_203_202012_2011_2019_9',['3.10.3 (2012-11-19)',['../md_ChangeLog.html#autotoc_md64',1,'']]], + ['3_2010_204_202013_2005_2005_10',['3.10.4 (2013-05-05)',['../md_ChangeLog.html#autotoc_md63',1,'']]], + ['3_2011_11',['3.11',['../md_ChangeLog.html#autotoc_md50',1,'']]], + ['3_2011_200_202013_2005_2007_12',['3.11.0 (2013-05-07)',['../md_ChangeLog.html#autotoc_md61',1,'']]], + ['3_2011_201_202013_2006_2014_13',['3.11.1 (2013-06-14)',['../md_ChangeLog.html#autotoc_md60',1,'']]], + ['3_2011_2010_202015_2001_2018_14',['3.11.10 (2015-01-18)',['../md_ChangeLog.html#autotoc_md51',1,'']]], + ['3_2011_202_202013_2007_2001_15',['3.11.2 (2013-07-01)',['../md_ChangeLog.html#autotoc_md59',1,'']]], + ['3_2011_203_202013_2008_2008_16',['3.11.3 (2013-08-08)',['../md_ChangeLog.html#autotoc_md58',1,'']]], + ['3_2011_204_202013_2009_2012_17',['3.11.4 (2013-09-12)',['../md_ChangeLog.html#autotoc_md57',1,'']]], + ['3_2011_205_202013_2010_2026_18',['3.11.5 (2013-10-26)',['../md_ChangeLog.html#autotoc_md56',1,'']]], + ['3_2011_206_202013_2011_2016_19',['3.11.6 (2013-11-16)',['../md_ChangeLog.html#autotoc_md55',1,'']]], + ['3_2011_207_202013_2012_2018_20',['3.11.7 (2013-12-18)',['../md_ChangeLog.html#autotoc_md54',1,'']]], + ['3_2011_208_202014_2004_2008_21',['3.11.8 (2014-04-08)',['../md_ChangeLog.html#autotoc_md53',1,'']]], + ['3_2011_209_202014_2008_2016_22',['3.11.9 (2014-08-16)',['../md_ChangeLog.html#autotoc_md52',1,'']]], + ['3_2012_23',['3.12',['../md_ChangeLog.html#autotoc_md35',1,'']]], + ['3_2012_200_202015_2001_2023_24',['3.12.0 (2015-01-23)',['../md_ChangeLog.html#autotoc_md49',1,'']]], + ['3_2012_201_202015_2002_2013_25',['3.12.1 (2015-02-13)',['../md_ChangeLog.html#autotoc_md48',1,'']]], + ['3_2012_2010_202018_2006_2002_26',['3.12.10 (2018-06-02)',['../md_ChangeLog.html#autotoc_md39',1,'']]], + ['3_2012_2011_202018_2009_2016_27',['3.12.11 (2018-09-16)',['../md_ChangeLog.html#autotoc_md38',1,'']]], + ['3_2012_2012_202018_2011_2017_28',['3.12.12 (2018-11-17)',['../md_ChangeLog.html#autotoc_md37',1,'']]], + ['3_2012_2013_202019_2004_2008_29',['3.12.13 (2019-04-08)',['../md_ChangeLog.html#autotoc_md36',1,'']]], + ['3_2012_202_202015_2004_2004_30',['3.12.2 (2015-04-04)',['../md_ChangeLog.html#autotoc_md47',1,'']]], + ['3_2012_203_20and_203_2011_2011_202015_2004_2015_31',['3.12.3 and 3.11.11 (2015-04-15)',['../md_ChangeLog.html#autotoc_md46',1,'']]], + ['3_2012_204_202015_2008_2009_32',['3.12.4 (2015-08-09)',['../md_ChangeLog.html#autotoc_md45',1,'']]], + ['3_2012_205_202016_2004_2030_33',['3.12.5 (2016-04-30)',['../md_ChangeLog.html#autotoc_md44',1,'']]], + ['3_2012_206_202016_2007_2020_34',['3.12.6 (2016-07-20)',['../md_ChangeLog.html#autotoc_md43',1,'']]], + ['3_2012_207_202017_2002_2025_35',['3.12.7 (2017-02-25)',['../md_ChangeLog.html#autotoc_md42',1,'']]], + ['3_2012_208_202017_2006_2012_36',['3.12.8 (2017-06-12)',['../md_ChangeLog.html#autotoc_md41',1,'']]], + ['3_2012_209_202018_2001_2015_37',['3.12.9 (2018-01-15)',['../md_ChangeLog.html#autotoc_md40',1,'']]], + ['3_2013_38',['3.13',['../md_ChangeLog.html#autotoc_md29',1,'']]], + ['3_2013_200_202019_2010_2019_39',['3.13.0 (2019-10-19)',['../md_ChangeLog.html#autotoc_md34',1,'']]], + ['3_2013_201_202020_2003_2011_40',['3.13.1 (2020-03-11)',['../md_ChangeLog.html#autotoc_md33',1,'']]], + ['3_2013_202_202020_2004_2030_41',['3.13.2 (2020-04-30)',['../md_ChangeLog.html#autotoc_md32',1,'']]], + ['3_2013_203_202020_2010_2016_42',['3.13.3 (2020-10-16)',['../md_ChangeLog.html#autotoc_md31',1,'']]], + ['3_2013_204_202021_2002_2024_43',['3.13.4 (2021-02-24)',['../md_ChangeLog.html#autotoc_md30',1,'']]], ['3_2014_44',['3.14',['../md_ChangeLog.html#autotoc_md10',1,'']]], - ['3_2014_200_202021_2006_2015_45',['3.14.0 (2021-06-15)',['../md_ChangeLog.html#autotoc_md26',1,'']]], - ['3_2014_201_202021_2006_2025_46',['3.14.1 (2021-06-25)',['../md_ChangeLog.html#autotoc_md25',1,'']]], - ['3_2014_2010_202022_2010_2011_47',['3.14.10 (2022-10-11)',['../md_ChangeLog.html#autotoc_md16',1,'']]], - ['3_2014_2011_202023_2002_2007_48',['3.14.11 (2023-02-07)',['../md_ChangeLog.html#autotoc_md15',1,'']]], - ['3_2014_2012_202023_2004_2005_49',['3.14.12 (2023-04-05)',['../md_ChangeLog.html#autotoc_md14',1,'']]], - ['3_2014_2013_202023_2011_2008_50',['3.14.13 (2023-11-08)',['../md_ChangeLog.html#autotoc_md13',1,'']]], - ['3_2014_2014_202024_2001_2018_51',['3.14.14 (2024-01-18)',['../md_ChangeLog.html#autotoc_md12',1,'']]], - ['3_2014_2015_202024_2004_2010_52',['3.14.15 (2024-04-10)',['../md_ChangeLog.html#autotoc_md11',1,'']]], - ['3_2014_202_202021_2007_2021_53',['3.14.2 (2021-07-21)',['../md_ChangeLog.html#autotoc_md24',1,'']]], - ['3_2014_203_202021_2009_2003_54',['3.14.3 (2021-09-03)',['../md_ChangeLog.html#autotoc_md23',1,'']]], - ['3_2014_204_202021_2009_2020_55',['3.14.4 (2021-09-20)',['../md_ChangeLog.html#autotoc_md22',1,'']]], - ['3_2014_205_202022_2002_2009_56',['3.14.5 (2022-02-09)',['../md_ChangeLog.html#autotoc_md21',1,'']]], - ['3_2014_206_202022_2005_2002_57',['3.14.6 (2022-05-02)',['../md_ChangeLog.html#autotoc_md20',1,'']]], - ['3_2014_207_202022_2006_2024_58',['3.14.7 (2022-06-24)',['../md_ChangeLog.html#autotoc_md19',1,'']]], - ['3_2014_208_202022_2007_2013_59',['3.14.8 (2022-07-13)',['../md_ChangeLog.html#autotoc_md18',1,'']]], - ['3_2014_209_202022_2007_2021_60',['3.14.9 (2022-07-21)',['../md_ChangeLog.html#autotoc_md17',1,'']]], - ['3_202_61',['3.2',['../md_ChangeLog.html#autotoc_md98',1,'']]], - ['3_202_200_202006_2007_2007_20dev_20release_20number_20757_62',['3.2.0 (2006-07-07) - dev release number 757',['../md_ChangeLog.html#autotoc_md103',1,'']]], - ['3_202_201_202006_2007_2014_20dev_20release_20number_20764_63',['3.2.1 (2006-07-14) - dev release number 764',['../md_ChangeLog.html#autotoc_md102',1,'']]], - ['3_202_203_202006_2011_2029_64',['3.2.3 (2006-11-29)',['../md_ChangeLog.html#autotoc_md100',1,'']]], - ['3_202_204_202007_2004_2024_65',['3.2.4 (2007-04-24)',['../md_ChangeLog.html#autotoc_md99',1,'']]], - ['3_202_20r795_202006_2010_2011_66',['3.2 r795 (2006-10-11)',['../md_ChangeLog.html#autotoc_md101',1,'']]], - ['3_203_67',['3.3',['../md_ChangeLog.html#autotoc_md93',1,'']]], - ['3_203_201_202007_2006_2020_68',['3.3.1 (2007-06-20)',['../md_ChangeLog.html#autotoc_md97',1,'']]], - ['3_203_203_202007_2009_2025_69',['3.3.3 (2007-09-25)',['../md_ChangeLog.html#autotoc_md96',1,'']]], - ['3_203_204_202007_2012_2027_70',['3.3.4 (2007-12-27)',['../md_ChangeLog.html#autotoc_md95',1,'']]], - ['3_203_205_202008_2002_2028_71',['3.3.5 (2008-02-28)',['../md_ChangeLog.html#autotoc_md94',1,'']]], - ['3_204_72',['3.4',['../md_ChangeLog.html#autotoc_md89',1,'']]], - ['3_204_200_202008_2004_2025_73',['3.4.0 (2008-04-25)',['../md_ChangeLog.html#autotoc_md92',1,'']]], - ['3_204_201_202008_2005_2030_74',['3.4.1 (2008-05-30)',['../md_ChangeLog.html#autotoc_md91',1,'']]], - ['3_204_202_202008_2007_2018_75',['3.4.2 (2008-07-18)',['../md_ChangeLog.html#autotoc_md90',1,'']]], - ['3_205_76',['3.5',['../md_ChangeLog.html#autotoc_md82',1,'']]], - ['3_205_200_202008_2008_2025_77',['3.5.0 (2008-08-25)',['../md_ChangeLog.html#autotoc_md88',1,'']]], - ['3_205_201_202008_2008_2026_78',['3.5.1 (2008-08-26)',['../md_ChangeLog.html#autotoc_md87',1,'']]], - ['3_205_202_202008_2009_2018_79',['3.5.2 (2008-09-18)',['../md_ChangeLog.html#autotoc_md86',1,'']]], - ['3_205_203_202008_2009_2019_80',['3.5.3 (2008-09-19)',['../md_ChangeLog.html#autotoc_md85',1,'']]], - ['3_205_204_202008_2009_2029_81',['3.5.4 (2008-09-29)',['../md_ChangeLog.html#autotoc_md84',1,'']]], - ['3_205_205_202009_2001_2013_82',['3.5.5 (2009-01-13)',['../md_ChangeLog.html#autotoc_md83',1,'']]], - ['3_206_83',['3.6',['../md_ChangeLog.html#autotoc_md79',1,'']]], - ['3_206_200_202009_2004_2029_84',['3.6.0 (2009-04-29)',['../md_ChangeLog.html#autotoc_md81',1,'']]], - ['3_206_201_202009_2005_2001_85',['3.6.1 (2009-05-01)',['../md_ChangeLog.html#autotoc_md80',1,'']]], - ['3_207_86',['3.7',['../md_ChangeLog.html#autotoc_md76',1,'']]], - ['3_207_200_202009_2007_2016_87',['3.7.0 (2009-07-16)',['../md_ChangeLog.html#autotoc_md78',1,'']]], - ['3_207_201_202009_2010_2006_88',['3.7.1 (2009-10-06)',['../md_ChangeLog.html#autotoc_md77',1,'']]], - ['3_208_89',['3.8',['../md_ChangeLog.html#autotoc_md71',1,'']]], - ['3_208_200_202009_2010_2030_90',['3.8.0 (2009-10-30)',['../md_ChangeLog.html#autotoc_md75',1,'']]], - ['3_208_201_202009_2010_2030_91',['3.8.1 (2009-10-30)',['../md_ChangeLog.html#autotoc_md74',1,'']]], - ['3_208_202_202010_2006_2016_92',['3.8.2 (2010-06-16)',['../md_ChangeLog.html#autotoc_md73',1,'']]], - ['3_208_203_202010_2006_2029_93',['3.8.3 (2010-06-29)',['../md_ChangeLog.html#autotoc_md72',1,'']]], - ['3_209_94',['3.9',['../md_ChangeLog.html#autotoc_md66',1,'']]], - ['3_209_200_202010_2011_2005_95',['3.9.0 (2010-11-05)',['../md_ChangeLog.html#autotoc_md70',1,'']]], - ['3_209_201_202010_2011_2026_96',['3.9.1 (2010-11-26)',['../md_ChangeLog.html#autotoc_md69',1,'']]], - ['3_209_202_202010_2012_2022_97',['3.9.2 (2010-12-22)',['../md_ChangeLog.html#autotoc_md68',1,'']]], - ['3_209_203_202011_2004_2007_98',['3.9.3 (2011-04-07)',['../md_ChangeLog.html#autotoc_md67',1,'']]], - ['30_99',['30',['../md_ChangeLog.html#autotoc_md111',1,'2.2.1e (2005-05-30)'],['../md_ChangeLog.html#autotoc_md42',1,'3.12.5 (2016-04-30)'],['../md_ChangeLog.html#autotoc_md30',1,'3.13.2 (2020-04-30)'],['../md_ChangeLog.html#autotoc_md91',1,'3.4.1 (2008-05-30)'],['../md_ChangeLog.html#autotoc_md75',1,'3.8.0 (2009-10-30)'],['../md_ChangeLog.html#autotoc_md74',1,'3.8.1 (2009-10-30)']]] + ['3_2014_200_202021_2006_2015_45',['3.14.0 (2021-06-15)',['../md_ChangeLog.html#autotoc_md28',1,'']]], + ['3_2014_201_202021_2006_2025_46',['3.14.1 (2021-06-25)',['../md_ChangeLog.html#autotoc_md27',1,'']]], + ['3_2014_2010_202022_2010_2011_47',['3.14.10 (2022-10-11)',['../md_ChangeLog.html#autotoc_md18',1,'']]], + ['3_2014_2011_202023_2002_2007_48',['3.14.11 (2023-02-07)',['../md_ChangeLog.html#autotoc_md17',1,'']]], + ['3_2014_2012_202023_2004_2005_49',['3.14.12 (2023-04-05)',['../md_ChangeLog.html#autotoc_md16',1,'']]], + ['3_2014_2013_202023_2011_2008_50',['3.14.13 (2023-11-08)',['../md_ChangeLog.html#autotoc_md15',1,'']]], + ['3_2014_2014_202024_2001_2018_51',['3.14.14 (2024-01-18)',['../md_ChangeLog.html#autotoc_md14',1,'']]], + ['3_2014_2015_202024_2004_2010_52',['3.14.15 (2024-04-10)',['../md_ChangeLog.html#autotoc_md13',1,'']]], + ['3_2014_2016_202024_2004_2022_53',['3.14.16 (2024-04-22)',['../md_ChangeLog.html#autotoc_md12',1,'']]], + ['3_2014_2017_202024_2012_2014_54',['3.14.17 (2024-12-14)',['../md_ChangeLog.html#autotoc_md11',1,'']]], + ['3_2014_202_202021_2007_2021_55',['3.14.2 (2021-07-21)',['../md_ChangeLog.html#autotoc_md26',1,'']]], + ['3_2014_203_202021_2009_2003_56',['3.14.3 (2021-09-03)',['../md_ChangeLog.html#autotoc_md25',1,'']]], + ['3_2014_204_202021_2009_2020_57',['3.14.4 (2021-09-20)',['../md_ChangeLog.html#autotoc_md24',1,'']]], + ['3_2014_205_202022_2002_2009_58',['3.14.5 (2022-02-09)',['../md_ChangeLog.html#autotoc_md23',1,'']]], + ['3_2014_206_202022_2005_2002_59',['3.14.6 (2022-05-02)',['../md_ChangeLog.html#autotoc_md22',1,'']]], + ['3_2014_207_202022_2006_2024_60',['3.14.7 (2022-06-24)',['../md_ChangeLog.html#autotoc_md21',1,'']]], + ['3_2014_208_202022_2007_2013_61',['3.14.8 (2022-07-13)',['../md_ChangeLog.html#autotoc_md20',1,'']]], + ['3_2014_209_202022_2007_2021_62',['3.14.9 (2022-07-21)',['../md_ChangeLog.html#autotoc_md19',1,'']]], + ['3_202_63',['3.2',['../md_ChangeLog.html#autotoc_md100',1,'']]], + ['3_202_200_202006_2007_2007_20dev_20release_20number_20757_64',['3.2.0 (2006-07-07) - dev release number 757',['../md_ChangeLog.html#autotoc_md105',1,'']]], + ['3_202_201_202006_2007_2014_20dev_20release_20number_20764_65',['3.2.1 (2006-07-14) - dev release number 764',['../md_ChangeLog.html#autotoc_md104',1,'']]], + ['3_202_203_202006_2011_2029_66',['3.2.3 (2006-11-29)',['../md_ChangeLog.html#autotoc_md102',1,'']]], + ['3_202_204_202007_2004_2024_67',['3.2.4 (2007-04-24)',['../md_ChangeLog.html#autotoc_md101',1,'']]], + ['3_202_20r795_202006_2010_2011_68',['3.2 r795 (2006-10-11)',['../md_ChangeLog.html#autotoc_md103',1,'']]], + ['3_203_69',['3.3',['../md_ChangeLog.html#autotoc_md95',1,'']]], + ['3_203_201_202007_2006_2020_70',['3.3.1 (2007-06-20)',['../md_ChangeLog.html#autotoc_md99',1,'']]], + ['3_203_203_202007_2009_2025_71',['3.3.3 (2007-09-25)',['../md_ChangeLog.html#autotoc_md98',1,'']]], + ['3_203_204_202007_2012_2027_72',['3.3.4 (2007-12-27)',['../md_ChangeLog.html#autotoc_md97',1,'']]], + ['3_203_205_202008_2002_2028_73',['3.3.5 (2008-02-28)',['../md_ChangeLog.html#autotoc_md96',1,'']]], + ['3_204_74',['3.4',['../md_ChangeLog.html#autotoc_md91',1,'']]], + ['3_204_200_202008_2004_2025_75',['3.4.0 (2008-04-25)',['../md_ChangeLog.html#autotoc_md94',1,'']]], + ['3_204_201_202008_2005_2030_76',['3.4.1 (2008-05-30)',['../md_ChangeLog.html#autotoc_md93',1,'']]], + ['3_204_202_202008_2007_2018_77',['3.4.2 (2008-07-18)',['../md_ChangeLog.html#autotoc_md92',1,'']]], + ['3_205_78',['3.5',['../md_ChangeLog.html#autotoc_md84',1,'']]], + ['3_205_200_202008_2008_2025_79',['3.5.0 (2008-08-25)',['../md_ChangeLog.html#autotoc_md90',1,'']]], + ['3_205_201_202008_2008_2026_80',['3.5.1 (2008-08-26)',['../md_ChangeLog.html#autotoc_md89',1,'']]], + ['3_205_202_202008_2009_2018_81',['3.5.2 (2008-09-18)',['../md_ChangeLog.html#autotoc_md88',1,'']]], + ['3_205_203_202008_2009_2019_82',['3.5.3 (2008-09-19)',['../md_ChangeLog.html#autotoc_md87',1,'']]], + ['3_205_204_202008_2009_2029_83',['3.5.4 (2008-09-29)',['../md_ChangeLog.html#autotoc_md86',1,'']]], + ['3_205_205_202009_2001_2013_84',['3.5.5 (2009-01-13)',['../md_ChangeLog.html#autotoc_md85',1,'']]], + ['3_206_85',['3.6',['../md_ChangeLog.html#autotoc_md81',1,'']]], + ['3_206_200_202009_2004_2029_86',['3.6.0 (2009-04-29)',['../md_ChangeLog.html#autotoc_md83',1,'']]], + ['3_206_201_202009_2005_2001_87',['3.6.1 (2009-05-01)',['../md_ChangeLog.html#autotoc_md82',1,'']]], + ['3_207_88',['3.7',['../md_ChangeLog.html#autotoc_md78',1,'']]], + ['3_207_200_202009_2007_2016_89',['3.7.0 (2009-07-16)',['../md_ChangeLog.html#autotoc_md80',1,'']]], + ['3_207_201_202009_2010_2006_90',['3.7.1 (2009-10-06)',['../md_ChangeLog.html#autotoc_md79',1,'']]], + ['3_208_91',['3.8',['../md_ChangeLog.html#autotoc_md73',1,'']]], + ['3_208_200_202009_2010_2030_92',['3.8.0 (2009-10-30)',['../md_ChangeLog.html#autotoc_md77',1,'']]], + ['3_208_201_202009_2010_2030_93',['3.8.1 (2009-10-30)',['../md_ChangeLog.html#autotoc_md76',1,'']]], + ['3_208_202_202010_2006_2016_94',['3.8.2 (2010-06-16)',['../md_ChangeLog.html#autotoc_md75',1,'']]], + ['3_208_203_202010_2006_2029_95',['3.8.3 (2010-06-29)',['../md_ChangeLog.html#autotoc_md74',1,'']]], + ['3_209_96',['3.9',['../md_ChangeLog.html#autotoc_md68',1,'']]], + ['3_209_200_202010_2011_2005_97',['3.9.0 (2010-11-05)',['../md_ChangeLog.html#autotoc_md72',1,'']]], + ['3_209_201_202010_2011_2026_98',['3.9.1 (2010-11-26)',['../md_ChangeLog.html#autotoc_md71',1,'']]], + ['3_209_202_202010_2012_2022_99',['3.9.2 (2010-12-22)',['../md_ChangeLog.html#autotoc_md70',1,'']]], + ['3_209_203_202011_2004_2007_100',['3.9.3 (2011-04-07)',['../md_ChangeLog.html#autotoc_md69',1,'']]], + ['30_101',['30',['../md_ChangeLog.html#autotoc_md113',1,'2.2.1e (2005-05-30)'],['../md_ChangeLog.html#autotoc_md44',1,'3.12.5 (2016-04-30)'],['../md_ChangeLog.html#autotoc_md32',1,'3.13.2 (2020-04-30)'],['../md_ChangeLog.html#autotoc_md93',1,'3.4.1 (2008-05-30)'],['../md_ChangeLog.html#autotoc_md77',1,'3.8.0 (2009-10-30)'],['../md_ChangeLog.html#autotoc_md76',1,'3.8.1 (2009-10-30)']]] ]; diff --git a/search/all_4.js b/search/all_4.js index 9edb8ad47..758d41455 100644 --- a/search/all_4.js +++ b/search/all_4.js @@ -1,15 +1,15 @@ var searchData= [ - ['4_0',['3.4',['../md_ChangeLog.html#autotoc_md89',1,'']]], - ['4_200_202008_2004_2025_1',['3.4.0 (2008-04-25)',['../md_ChangeLog.html#autotoc_md92',1,'']]], - ['4_201_202008_2005_2030_2',['3.4.1 (2008-05-30)',['../md_ChangeLog.html#autotoc_md91',1,'']]], - ['4_202_202008_2007_2018_3',['3.4.2 (2008-07-18)',['../md_ChangeLog.html#autotoc_md90',1,'']]], - ['4_202007_2004_2024_4',['3.2.4 (2007-04-24)',['../md_ChangeLog.html#autotoc_md99',1,'']]], - ['4_202007_2012_2027_5',['3.3.4 (2007-12-27)',['../md_ChangeLog.html#autotoc_md95',1,'']]], - ['4_202008_2009_2029_6',['3.5.4 (2008-09-29)',['../md_ChangeLog.html#autotoc_md84',1,'']]], - ['4_202013_2005_2005_7',['3.10.4 (2013-05-05)',['../md_ChangeLog.html#autotoc_md61',1,'']]], - ['4_202013_2009_2012_8',['3.11.4 (2013-09-12)',['../md_ChangeLog.html#autotoc_md55',1,'']]], - ['4_202015_2008_2009_9',['3.12.4 (2015-08-09)',['../md_ChangeLog.html#autotoc_md43',1,'']]], - ['4_202021_2002_2024_10',['3.13.4 (2021-02-24)',['../md_ChangeLog.html#autotoc_md28',1,'']]], - ['4_202021_2009_2020_11',['3.14.4 (2021-09-20)',['../md_ChangeLog.html#autotoc_md22',1,'']]] + ['4_0',['3.4',['../md_ChangeLog.html#autotoc_md91',1,'']]], + ['4_200_202008_2004_2025_1',['3.4.0 (2008-04-25)',['../md_ChangeLog.html#autotoc_md94',1,'']]], + ['4_201_202008_2005_2030_2',['3.4.1 (2008-05-30)',['../md_ChangeLog.html#autotoc_md93',1,'']]], + ['4_202_202008_2007_2018_3',['3.4.2 (2008-07-18)',['../md_ChangeLog.html#autotoc_md92',1,'']]], + ['4_202007_2004_2024_4',['3.2.4 (2007-04-24)',['../md_ChangeLog.html#autotoc_md101',1,'']]], + ['4_202007_2012_2027_5',['3.3.4 (2007-12-27)',['../md_ChangeLog.html#autotoc_md97',1,'']]], + ['4_202008_2009_2029_6',['3.5.4 (2008-09-29)',['../md_ChangeLog.html#autotoc_md86',1,'']]], + ['4_202013_2005_2005_7',['3.10.4 (2013-05-05)',['../md_ChangeLog.html#autotoc_md63',1,'']]], + ['4_202013_2009_2012_8',['3.11.4 (2013-09-12)',['../md_ChangeLog.html#autotoc_md57',1,'']]], + ['4_202015_2008_2009_9',['3.12.4 (2015-08-09)',['../md_ChangeLog.html#autotoc_md45',1,'']]], + ['4_202021_2002_2024_10',['3.13.4 (2021-02-24)',['../md_ChangeLog.html#autotoc_md30',1,'']]], + ['4_202021_2009_2020_11',['3.14.4 (2021-09-20)',['../md_ChangeLog.html#autotoc_md24',1,'']]] ]; diff --git a/search/all_5.js b/search/all_5.js index 7d9610d43..7592d0f62 100644 --- a/search/all_5.js +++ b/search/all_5.js @@ -1,15 +1,15 @@ var searchData= [ - ['5_0',['3.5',['../md_ChangeLog.html#autotoc_md82',1,'']]], - ['5_200_202008_2008_2025_1',['3.5.0 (2008-08-25)',['../md_ChangeLog.html#autotoc_md88',1,'']]], - ['5_201_202008_2008_2026_2',['3.5.1 (2008-08-26)',['../md_ChangeLog.html#autotoc_md87',1,'']]], - ['5_202_202008_2009_2018_3',['3.5.2 (2008-09-18)',['../md_ChangeLog.html#autotoc_md86',1,'']]], - ['5_202008_2002_2028_4',['3.3.5 (2008-02-28)',['../md_ChangeLog.html#autotoc_md94',1,'']]], - ['5_202013_2010_2026_5',['3.11.5 (2013-10-26)',['../md_ChangeLog.html#autotoc_md54',1,'']]], - ['5_202016_2004_2030_6',['3.12.5 (2016-04-30)',['../md_ChangeLog.html#autotoc_md42',1,'']]], - ['5_202022_2002_2009_7',['3.14.5 (2022-02-09)',['../md_ChangeLog.html#autotoc_md21',1,'']]], - ['5_203_202008_2009_2019_8',['3.5.3 (2008-09-19)',['../md_ChangeLog.html#autotoc_md85',1,'']]], - ['5_204_202008_2009_2029_9',['3.5.4 (2008-09-29)',['../md_ChangeLog.html#autotoc_md84',1,'']]], - ['5_205_202009_2001_2013_10',['3.5.5 (2009-01-13)',['../md_ChangeLog.html#autotoc_md83',1,'']]], - ['510_11',['3.0.0 (2005-08-26) - dev release number 510',['../md_ChangeLog.html#autotoc_md108',1,'']]] + ['5_0',['3.5',['../md_ChangeLog.html#autotoc_md84',1,'']]], + ['5_200_202008_2008_2025_1',['3.5.0 (2008-08-25)',['../md_ChangeLog.html#autotoc_md90',1,'']]], + ['5_201_202008_2008_2026_2',['3.5.1 (2008-08-26)',['../md_ChangeLog.html#autotoc_md89',1,'']]], + ['5_202_202008_2009_2018_3',['3.5.2 (2008-09-18)',['../md_ChangeLog.html#autotoc_md88',1,'']]], + ['5_202008_2002_2028_4',['3.3.5 (2008-02-28)',['../md_ChangeLog.html#autotoc_md96',1,'']]], + ['5_202013_2010_2026_5',['3.11.5 (2013-10-26)',['../md_ChangeLog.html#autotoc_md56',1,'']]], + ['5_202016_2004_2030_6',['3.12.5 (2016-04-30)',['../md_ChangeLog.html#autotoc_md44',1,'']]], + ['5_202022_2002_2009_7',['3.14.5 (2022-02-09)',['../md_ChangeLog.html#autotoc_md23',1,'']]], + ['5_203_202008_2009_2019_8',['3.5.3 (2008-09-19)',['../md_ChangeLog.html#autotoc_md87',1,'']]], + ['5_204_202008_2009_2029_9',['3.5.4 (2008-09-29)',['../md_ChangeLog.html#autotoc_md86',1,'']]], + ['5_205_202009_2001_2013_10',['3.5.5 (2009-01-13)',['../md_ChangeLog.html#autotoc_md85',1,'']]], + ['510_11',['3.0.0 (2005-08-26) - dev release number 510',['../md_ChangeLog.html#autotoc_md110',1,'']]] ]; diff --git a/search/all_6.js b/search/all_6.js index ccfbbd454..fc41b6dfa 100644 --- a/search/all_6.js +++ b/search/all_6.js @@ -1,10 +1,10 @@ var searchData= [ - ['6_0',['3.6',['../md_ChangeLog.html#autotoc_md79',1,'']]], - ['6_200_202009_2004_2029_1',['3.6.0 (2009-04-29)',['../md_ChangeLog.html#autotoc_md81',1,'']]], - ['6_201_202009_2005_2001_2',['3.6.1 (2009-05-01)',['../md_ChangeLog.html#autotoc_md80',1,'']]], - ['6_202013_2011_2016_3',['3.11.6 (2013-11-16)',['../md_ChangeLog.html#autotoc_md53',1,'']]], - ['6_202016_2007_2020_4',['3.12.6 (2016-07-20)',['../md_ChangeLog.html#autotoc_md41',1,'']]], - ['6_202022_2005_2002_5',['3.14.6 (2022-05-02)',['../md_ChangeLog.html#autotoc_md20',1,'']]], + ['6_0',['3.6',['../md_ChangeLog.html#autotoc_md81',1,'']]], + ['6_200_202009_2004_2029_1',['3.6.0 (2009-04-29)',['../md_ChangeLog.html#autotoc_md83',1,'']]], + ['6_201_202009_2005_2001_2',['3.6.1 (2009-05-01)',['../md_ChangeLog.html#autotoc_md82',1,'']]], + ['6_202013_2011_2016_3',['3.11.6 (2013-11-16)',['../md_ChangeLog.html#autotoc_md55',1,'']]], + ['6_202016_2007_2020_4',['3.12.6 (2016-07-20)',['../md_ChangeLog.html#autotoc_md43',1,'']]], + ['6_202022_2005_2002_5',['3.14.6 (2022-05-02)',['../md_ChangeLog.html#autotoc_md22',1,'']]], ['64_20bit_20integers_6',['Building for 64-bit integers',['../INSTALL.html#INT64_BUILD',1,'']]] ]; diff --git a/search/all_7.js b/search/all_7.js index 3bd133383..1ed0ddf53 100644 --- a/search/all_7.js +++ b/search/all_7.js @@ -1,12 +1,12 @@ var searchData= [ - ['7_0',['3.7',['../md_ChangeLog.html#autotoc_md76',1,'']]], - ['7_200_202009_2007_2016_1',['3.7.0 (2009-07-16)',['../md_ChangeLog.html#autotoc_md78',1,'']]], - ['7_201_202009_2010_2006_2',['3.7.1 (2009-10-06)',['../md_ChangeLog.html#autotoc_md77',1,'']]], - ['7_202013_2012_2018_3',['3.11.7 (2013-12-18)',['../md_ChangeLog.html#autotoc_md52',1,'']]], - ['7_202017_2002_2025_4',['3.12.7 (2017-02-25)',['../md_ChangeLog.html#autotoc_md40',1,'']]], - ['7_202022_2006_2024_5',['3.14.7 (2022-06-24)',['../md_ChangeLog.html#autotoc_md19',1,'']]], - ['714_6',['3.1.0 (2006-04-08) - dev release number 714',['../md_ChangeLog.html#autotoc_md105',1,'']]], - ['757_7',['3.2.0 (2006-07-07) - dev release number 757',['../md_ChangeLog.html#autotoc_md103',1,'']]], - ['764_8',['3.2.1 (2006-07-14) - dev release number 764',['../md_ChangeLog.html#autotoc_md102',1,'']]] + ['7_0',['3.7',['../md_ChangeLog.html#autotoc_md78',1,'']]], + ['7_200_202009_2007_2016_1',['3.7.0 (2009-07-16)',['../md_ChangeLog.html#autotoc_md80',1,'']]], + ['7_201_202009_2010_2006_2',['3.7.1 (2009-10-06)',['../md_ChangeLog.html#autotoc_md79',1,'']]], + ['7_202013_2012_2018_3',['3.11.7 (2013-12-18)',['../md_ChangeLog.html#autotoc_md54',1,'']]], + ['7_202017_2002_2025_4',['3.12.7 (2017-02-25)',['../md_ChangeLog.html#autotoc_md42',1,'']]], + ['7_202022_2006_2024_5',['3.14.7 (2022-06-24)',['../md_ChangeLog.html#autotoc_md21',1,'']]], + ['714_6',['3.1.0 (2006-04-08) - dev release number 714',['../md_ChangeLog.html#autotoc_md107',1,'']]], + ['757_7',['3.2.0 (2006-07-07) - dev release number 757',['../md_ChangeLog.html#autotoc_md105',1,'']]], + ['764_8',['3.2.1 (2006-07-14) - dev release number 764',['../md_ChangeLog.html#autotoc_md104',1,'']]] ]; diff --git a/search/all_8.js b/search/all_8.js index 16f41e985..31ae2644d 100644 --- a/search/all_8.js +++ b/search/all_8.js @@ -1,11 +1,11 @@ var searchData= [ - ['8_0',['3.8',['../md_ChangeLog.html#autotoc_md71',1,'']]], - ['8_200_202009_2010_2030_1',['3.8.0 (2009-10-30)',['../md_ChangeLog.html#autotoc_md75',1,'']]], - ['8_201_202009_2010_2030_2',['3.8.1 (2009-10-30)',['../md_ChangeLog.html#autotoc_md74',1,'']]], - ['8_202_202010_2006_2016_3',['3.8.2 (2010-06-16)',['../md_ChangeLog.html#autotoc_md73',1,'']]], - ['8_202014_2004_2008_4',['3.11.8 (2014-04-08)',['../md_ChangeLog.html#autotoc_md51',1,'']]], - ['8_202017_2006_2012_5',['3.12.8 (2017-06-12)',['../md_ChangeLog.html#autotoc_md39',1,'']]], - ['8_202022_2007_2013_6',['3.14.8 (2022-07-13)',['../md_ChangeLog.html#autotoc_md18',1,'']]], - ['8_203_202010_2006_2029_7',['3.8.3 (2010-06-29)',['../md_ChangeLog.html#autotoc_md72',1,'']]] + ['8_0',['3.8',['../md_ChangeLog.html#autotoc_md73',1,'']]], + ['8_200_202009_2010_2030_1',['3.8.0 (2009-10-30)',['../md_ChangeLog.html#autotoc_md77',1,'']]], + ['8_201_202009_2010_2030_2',['3.8.1 (2009-10-30)',['../md_ChangeLog.html#autotoc_md76',1,'']]], + ['8_202_202010_2006_2016_3',['3.8.2 (2010-06-16)',['../md_ChangeLog.html#autotoc_md75',1,'']]], + ['8_202014_2004_2008_4',['3.11.8 (2014-04-08)',['../md_ChangeLog.html#autotoc_md53',1,'']]], + ['8_202017_2006_2012_5',['3.12.8 (2017-06-12)',['../md_ChangeLog.html#autotoc_md41',1,'']]], + ['8_202022_2007_2013_6',['3.14.8 (2022-07-13)',['../md_ChangeLog.html#autotoc_md20',1,'']]], + ['8_203_202010_2006_2029_7',['3.8.3 (2010-06-29)',['../md_ChangeLog.html#autotoc_md74',1,'']]] ]; diff --git a/search/all_9.js b/search/all_9.js index 3c93fdf57..af40ffd5c 100644 --- a/search/all_9.js +++ b/search/all_9.js @@ -1,11 +1,11 @@ var searchData= [ - ['9_0',['3.9',['../md_ChangeLog.html#autotoc_md66',1,'']]], - ['9_200_202010_2011_2005_1',['3.9.0 (2010-11-05)',['../md_ChangeLog.html#autotoc_md70',1,'']]], - ['9_201_202010_2011_2026_2',['3.9.1 (2010-11-26)',['../md_ChangeLog.html#autotoc_md69',1,'']]], - ['9_202_202010_2012_2022_3',['3.9.2 (2010-12-22)',['../md_ChangeLog.html#autotoc_md68',1,'']]], - ['9_202014_2008_2016_4',['3.11.9 (2014-08-16)',['../md_ChangeLog.html#autotoc_md50',1,'']]], - ['9_202018_2001_2015_5',['3.12.9 (2018-01-15)',['../md_ChangeLog.html#autotoc_md38',1,'']]], - ['9_202022_2007_2021_6',['3.14.9 (2022-07-21)',['../md_ChangeLog.html#autotoc_md17',1,'']]], - ['9_203_202011_2004_2007_7',['3.9.3 (2011-04-07)',['../md_ChangeLog.html#autotoc_md67',1,'']]] + ['9_0',['3.9',['../md_ChangeLog.html#autotoc_md68',1,'']]], + ['9_200_202010_2011_2005_1',['3.9.0 (2010-11-05)',['../md_ChangeLog.html#autotoc_md72',1,'']]], + ['9_201_202010_2011_2026_2',['3.9.1 (2010-11-26)',['../md_ChangeLog.html#autotoc_md71',1,'']]], + ['9_202_202010_2012_2022_3',['3.9.2 (2010-12-22)',['../md_ChangeLog.html#autotoc_md70',1,'']]], + ['9_202014_2008_2016_4',['3.11.9 (2014-08-16)',['../md_ChangeLog.html#autotoc_md52',1,'']]], + ['9_202018_2001_2015_5',['3.12.9 (2018-01-15)',['../md_ChangeLog.html#autotoc_md40',1,'']]], + ['9_202022_2007_2021_6',['3.14.9 (2022-07-21)',['../md_ChangeLog.html#autotoc_md19',1,'']]], + ['9_203_202011_2004_2007_7',['3.9.3 (2011-04-07)',['../md_ChangeLog.html#autotoc_md69',1,'']]] ]; diff --git a/search/all_a.js b/search/all_a.js index 60c2a8313..529892c4a 100644 --- a/search/all_a.js +++ b/search/all_a.js @@ -131,9 +131,9 @@ var searchData= ['amploptiontype_128',['AmplOptionType',['../classIpopt_1_1AmplOptionsList.html#a855f23a698c4c0a91097b28f36ed8897',1,'Ipopt::AmplOptionsList']]], ['amplsolverobject_129',['AmplSolverObject',['../classIpopt_1_1AmplTNLP.html#a2d7cb241b31a80146129bc5799d9eee2',1,'Ipopt::AmplTNLP']]], ['amplsuffixhandler_130',['amplsuffixhandler',['../classIpopt_1_1AmplSuffixHandler.html',1,'Ipopt::AmplSuffixHandler'],['../classIpopt_1_1AmplSuffixHandler.html#adb8ba0b3b285145b3b762b78b4d55b22',1,'Ipopt::AmplSuffixHandler::AmplSuffixHandler(const AmplSuffixHandler &)'],['../classIpopt_1_1AmplSuffixHandler.html#ae3e2273b878b9f944a8f0cce55bd54c9',1,'Ipopt::AmplSuffixHandler::AmplSuffixHandler()']]], - ['ampltnlp_131',['ampltnlp',['../classIpopt_1_1AmplTNLP.html#a2ab397aae36cd6e826376d264fa9d315',1,'Ipopt::AmplTNLP::AmplTNLP(const AmplTNLP &)'],['../classIpopt_1_1AmplTNLP.html#a5a577627e4c83061a05787930724620f',1,'Ipopt::AmplTNLP::AmplTNLP()'],['../classIpopt_1_1AmplTNLP.html',1,'Ipopt::AmplTNLP'],['../classIpopt_1_1AmplTNLP.html#a5bf35981f12a6386e5f823fe3b99f299',1,'Ipopt::AmplTNLP::AmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< OptionsList > options, char **&argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL)'],['../classIpopt_1_1AmplTNLP.html#aed410ab6bd273ede77050a36bd85c240',1,'Ipopt::AmplTNLP::AmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, const char *const *argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL)'],['../classIpopt_1_1AmplSuffixHandler.html#afcd2fd0b07735db08932918ecb49ea95',1,'Ipopt::AmplSuffixHandler::AmplTNLP']]], + ['ampltnlp_131',['ampltnlp',['../classIpopt_1_1AmplTNLP.html#a2ab397aae36cd6e826376d264fa9d315',1,'Ipopt::AmplTNLP::AmplTNLP(const AmplTNLP &)'],['../classIpopt_1_1AmplTNLP.html#a5a577627e4c83061a05787930724620f',1,'Ipopt::AmplTNLP::AmplTNLP()'],['../classIpopt_1_1AmplTNLP.html',1,'Ipopt::AmplTNLP'],['../classIpopt_1_1AmplTNLP.html#a5bf35981f12a6386e5f823fe3b99f299',1,'Ipopt::AmplTNLP::AmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< OptionsList > options, char **&argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL)'],['../classIpopt_1_1AmplTNLP.html#a68f7a8e7314fc848ebdb190393121fe7',1,'Ipopt::AmplTNLP::AmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, const char *const *argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL, bool checkinterrupt=false)'],['../classIpopt_1_1AmplSuffixHandler.html#afcd2fd0b07735db08932918ecb49ea95',1,'Ipopt::AmplSuffixHandler::AmplTNLP']]], ['ampltnlp_2ehpp_132',['AmplTNLP.hpp',['../AmplTNLP_8hpp.html',1,'']]], - ['and_203_2011_2011_202015_2004_2015_133',['3.12.3 and 3.11.11 (2015-04-15)',['../md_ChangeLog.html#autotoc_md44',1,'']]], + ['and_203_2011_2011_202015_2004_2015_133',['3.12.3 and 3.11.11 (2015-04-15)',['../md_ChangeLog.html#autotoc_md46',1,'']]], ['and_20contributions_134',['More Information and Contributions',['../index.html#MOREINFO',1,'']]], ['and_20contributors_135',['Authors and Contributors',['../AUTHORS.html',1,'index']]], ['and_20install_20dependencies_136',['Download, build, and install dependencies',['../INSTALL.html#EXTERNALCODE',1,'']]], @@ -143,17 +143,17 @@ var searchData= ['and_20testing_20the_20example_140',['Compiling and Testing the Example',['../INTERFACES.html#INTERFACE_CPP_COMPILE',1,'']]], ['and_20the_20c_20version_141',['What is the difference between the Fortran version and the C++ version?',['../FAQ.html#autotoc_md8',1,'']]], ['append_5findex_142',['append_Index',['../namespaceIpopt.html#a334ce463bb33929ee1ff24ce080241a8',1,'Ipopt']]], - ['append_5finfo_5fstring_143',['Append_info_string',['../classIpopt_1_1IpoptData.html#a1ad629fbc0f5fa6e76b49b310831241c',1,'Ipopt::IpoptData']]], + ['append_5finfo_5fstring_143',['append_info_string',['../classIpopt_1_1IpoptData.html#a1ad629fbc0f5fa6e76b49b310831241c',1,'Ipopt::IpoptData::Append_info_string(const std::string &add_str)'],['../classIpopt_1_1IpoptData.html#a480f5eb58d6048f6a9a2ce22e4d5790c',1,'Ipopt::IpoptData::Append_info_string(const std::string &add_str, double value)']]], ['applicationreturnstatus_144',['ApplicationReturnStatus',['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7',1,'IpReturnCodes_inc.h']]], ['apply_5fgrad_5fobj_5fscaling_145',['apply_grad_obj_scaling',['../classIpopt_1_1NLPScalingObject.html#ad7fb3340e3e79f922ceafe92684dd3c1',1,'Ipopt::NLPScalingObject']]], ['apply_5fgrad_5fobj_5fscaling_5fnonconst_146',['apply_grad_obj_scaling_NonConst',['../classIpopt_1_1NLPScalingObject.html#a129968566c09e86243ddfe25664f73d4',1,'Ipopt::NLPScalingObject']]], ['apply_5fhessian_5fscaling_147',['apply_hessian_scaling',['../classIpopt_1_1StandardScalingBase.html#a916dc20819ea1c630898ee1eafe2db30',1,'Ipopt::StandardScalingBase::apply_hessian_scaling()'],['../classIpopt_1_1NLPScalingObject.html#ab8325156479bc87d78ce80a552843ecc',1,'Ipopt::NLPScalingObject::apply_hessian_scaling(SmartPtr< const SymMatrix > matrix)=0']]], - ['apply_5fjac_5fc_5fscaling_148',['apply_jac_c_scaling',['../classIpopt_1_1NLPScalingObject.html#a0a2b883d52327263b2a76e788164f8c4',1,'Ipopt::NLPScalingObject::apply_jac_c_scaling()'],['../classIpopt_1_1StandardScalingBase.html#a65c0dd0abbd0a54d5ad3798ccfb3b539',1,'Ipopt::StandardScalingBase::apply_jac_c_scaling(SmartPtr< const Matrix > matrix)']]], - ['apply_5fjac_5fd_5fscaling_149',['apply_jac_d_scaling',['../classIpopt_1_1StandardScalingBase.html#aeeb45bcb42f537407051bf65e7a6eb40',1,'Ipopt::StandardScalingBase::apply_jac_d_scaling()'],['../classIpopt_1_1NLPScalingObject.html#a934157414a9a08baeb730b6913290c54',1,'Ipopt::NLPScalingObject::apply_jac_d_scaling()']]], + ['apply_5fjac_5fc_5fscaling_148',['apply_jac_c_scaling',['../classIpopt_1_1NLPScalingObject.html#a0a2b883d52327263b2a76e788164f8c4',1,'Ipopt::NLPScalingObject::apply_jac_c_scaling()'],['../classIpopt_1_1StandardScalingBase.html#a65c0dd0abbd0a54d5ad3798ccfb3b539',1,'Ipopt::StandardScalingBase::apply_jac_c_scaling()']]], + ['apply_5fjac_5fd_5fscaling_149',['apply_jac_d_scaling',['../classIpopt_1_1NLPScalingObject.html#a934157414a9a08baeb730b6913290c54',1,'Ipopt::NLPScalingObject::apply_jac_d_scaling()'],['../classIpopt_1_1StandardScalingBase.html#aeeb45bcb42f537407051bf65e7a6eb40',1,'Ipopt::StandardScalingBase::apply_jac_d_scaling()']]], ['apply_5fnew_5fx_150',['apply_new_x',['../classIpopt_1_1AmplTNLP.html#a5a029fb8447cd33af621ad07ab69b133',1,'Ipopt::AmplTNLP::apply_new_x()'],['../classIpopt_1_1StdInterfaceTNLP.html#aec3afa900495ea5f1e6da24166e29734',1,'Ipopt::StdInterfaceTNLP::apply_new_x()']]], ['apply_5fobj_5fscaling_151',['apply_obj_scaling',['../classIpopt_1_1NLPScalingObject.html#aefcdd629cdf45adfed03d14e4a363339',1,'Ipopt::NLPScalingObject::apply_obj_scaling()'],['../classIpopt_1_1StandardScalingBase.html#ad011bddb6877fe24f27ac7681b4ad16c',1,'Ipopt::StandardScalingBase::apply_obj_scaling()']]], - ['apply_5fvector_5fscaling_5fc_152',['apply_vector_scaling_c',['../classIpopt_1_1NLPScalingObject.html#a92492bf9e0aacfc5849348e9435fc0c2',1,'Ipopt::NLPScalingObject::apply_vector_scaling_c()'],['../classIpopt_1_1StandardScalingBase.html#ac1e163b74fc35366be416d9e68f5b02a',1,'Ipopt::StandardScalingBase::apply_vector_scaling_c(const SmartPtr< const Vector > &v)']]], - ['apply_5fvector_5fscaling_5fc_5fnonconst_153',['apply_vector_scaling_c_nonconst',['../classIpopt_1_1StandardScalingBase.html#ab055b77552a183e26824fc95248faef9',1,'Ipopt::StandardScalingBase::apply_vector_scaling_c_NonConst()'],['../classIpopt_1_1NLPScalingObject.html#a890a2414f86f1a7be29b2035b597a4bb',1,'Ipopt::NLPScalingObject::apply_vector_scaling_c_NonConst(const SmartPtr< const Vector > &v)=0']]], + ['apply_5fvector_5fscaling_5fc_152',['apply_vector_scaling_c',['../classIpopt_1_1NLPScalingObject.html#a92492bf9e0aacfc5849348e9435fc0c2',1,'Ipopt::NLPScalingObject::apply_vector_scaling_c()'],['../classIpopt_1_1StandardScalingBase.html#ac1e163b74fc35366be416d9e68f5b02a',1,'Ipopt::StandardScalingBase::apply_vector_scaling_c()']]], + ['apply_5fvector_5fscaling_5fc_5fnonconst_153',['apply_vector_scaling_c_nonconst',['../classIpopt_1_1NLPScalingObject.html#a890a2414f86f1a7be29b2035b597a4bb',1,'Ipopt::NLPScalingObject::apply_vector_scaling_c_NonConst()'],['../classIpopt_1_1StandardScalingBase.html#ab055b77552a183e26824fc95248faef9',1,'Ipopt::StandardScalingBase::apply_vector_scaling_c_NonConst()']]], ['apply_5fvector_5fscaling_5fd_154',['apply_vector_scaling_d',['../classIpopt_1_1NLPScalingObject.html#aee7473c3377e010ded60278f9fc67e19',1,'Ipopt::NLPScalingObject::apply_vector_scaling_d()'],['../classIpopt_1_1StandardScalingBase.html#af60d94794814d1189543d1aaa13116fb',1,'Ipopt::StandardScalingBase::apply_vector_scaling_d()']]], ['apply_5fvector_5fscaling_5fd_5flu_155',['apply_vector_scaling_d_LU',['../classIpopt_1_1NLPScalingObject.html#a0726aa42ab1c594dcb2c3d8404f6291e',1,'Ipopt::NLPScalingObject']]], ['apply_5fvector_5fscaling_5fd_5flu_5fnonconst_156',['apply_vector_scaling_d_LU_NonConst',['../classIpopt_1_1NLPScalingObject.html#ad258c0b2fc4a0852ba3837b4888583bf',1,'Ipopt::NLPScalingObject']]], diff --git a/search/all_c.js b/search/all_c.js index 652773b78..8bde696b2 100644 --- a/search/all_c.js +++ b/search/all_c.js @@ -47,7 +47,7 @@ var searchData= ['calculateleastsquareduals_44',['CalculateLeastSquareDuals',['../classIpopt_1_1DefaultIterateInitializer.html#a0564f46827dc151c9d0fe6e6282d18b5',1,'Ipopt::DefaultIterateInitializer']]], ['calculateleastsquareprimals_45',['CalculateLeastSquarePrimals',['../classIpopt_1_1DefaultIterateInitializer.html#a2740ba179b649ca6a2ecffa590c80b68',1,'Ipopt::DefaultIterateInitializer']]], ['calculatemu_46',['calculatemu',['../classIpopt_1_1QualityFunctionMuOracle.html#a065b4ffa05f074f3f43821f63acebafa',1,'Ipopt::QualityFunctionMuOracle::CalculateMu()'],['../classIpopt_1_1ProbingMuOracle.html#a67f92f9a8e3602cc7db16524f7c657a6',1,'Ipopt::ProbingMuOracle::CalculateMu()'],['../classIpopt_1_1MuOracle.html#ab65beebf749a613c04aa49683905b433',1,'Ipopt::MuOracle::CalculateMu()'],['../classIpopt_1_1LoqoMuOracle.html#ab3144361f5bfc58d785a3a00b6ec9e8e',1,'Ipopt::LoqoMuOracle::CalculateMu()']]], - ['calculatemultipliers_47',['calculatemultipliers',['../classIpopt_1_1EqMultiplierCalculator.html#a87682a7043cc0d094559ca63e83ad495',1,'Ipopt::EqMultiplierCalculator::CalculateMultipliers()'],['../classIpopt_1_1LeastSquareMultipliers.html#a109407ee9cb2deab977e1f146ee161ca',1,'Ipopt::LeastSquareMultipliers::CalculateMultipliers()']]], + ['calculatemultipliers_47',['calculatemultipliers',['../classIpopt_1_1LeastSquareMultipliers.html#a109407ee9cb2deab977e1f146ee161ca',1,'Ipopt::LeastSquareMultipliers::CalculateMultipliers()'],['../classIpopt_1_1EqMultiplierCalculator.html#a87682a7043cc0d094559ca63e83ad495',1,'Ipopt::EqMultiplierCalculator::CalculateMultipliers()']]], ['calculatequalityfunction_48',['CalculateQualityFunction',['../classIpopt_1_1QualityFunctionMuOracle.html#ac2bab9e2dbec843d9fa8ee550c90c62f',1,'Ipopt::QualityFunctionMuOracle']]], ['calculatesafeslack_49',['CalculateSafeSlack',['../classIpopt_1_1IpoptCalculatedQuantities.html#a7ad7240e9bad4b9e791f6459e34590e6',1,'Ipopt::IpoptCalculatedQuantities']]], ['calculation_50',['Step Calculation',['../OPTIONS.html#OPT_Step_Calculation',1,'']]], @@ -79,370 +79,371 @@ var searchData= ['checkconvergence_5f_76',['CheckConvergence_',['../classIpopt_1_1TimingStatistics.html#abb0a19d8d82567aec2762fd9b273c2e4',1,'Ipopt::TimingStatistics']]], ['checkderivatives_77',['CheckDerivatives',['../classIpopt_1_1TNLPAdapter.html#a78902bb3776b2bc23865eae0c8423664',1,'Ipopt::TNLPAdapter']]], ['checker_78',['checker',['../OPTIONS.html#OPT_Derivative_Checker',1,'Derivative Checker'],['../SPECIALS.html#DERIVCHECK',1,'Derivative Checker']]], - ['checkskippedlinesearch_79',['checkskippedlinesearch',['../classIpopt_1_1BacktrackingLineSearch.html#ad3aa80c41e50b2e095f0a29d38aac8fa',1,'Ipopt::BacktrackingLineSearch::CheckSkippedLineSearch()'],['../classIpopt_1_1LineSearch.html#a129fe1f77e892e9baf6a1565280afa48',1,'Ipopt::LineSearch::CheckSkippedLineSearch()']]], - ['checkskippingbfgs_80',['CheckSkippingBFGS',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a4b9776279ce5db6156b13821a855cd9d',1,'Ipopt::LimMemQuasiNewtonUpdater']]], - ['checksufficientprogress_81',['CheckSufficientProgress',['../classIpopt_1_1AdaptiveMuUpdate.html#a903db13e09f77bc8b66c76644f48f216',1,'Ipopt::AdaptiveMuUpdate']]], - ['chi_5fcup_5f_82',['chi_cup_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a867ab8b2228a0815acb9514df50712f0',1,'Ipopt::CGPenaltyLSAcceptor']]], - ['chi_5fhat_5f_83',['chi_hat_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a55736fdcefbfd45841c5ea8155a33d49',1,'Ipopt::CGPenaltyLSAcceptor']]], - ['chi_5ftilde_5f_84',['chi_tilde_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a600ec60ad2c62ae46b5bce3a0a98ee0b',1,'Ipopt::CGPenaltyLSAcceptor']]], - ['chol_85',['CHOL',['../classIpopt_1_1DenseGenMatrix.html#a58fed83a81146c2efb8e109d63c658e6ab452a616a15075962d8fe4b7cb0bf6a9',1,'Ipopt::DenseGenMatrix']]], - ['choleskybacksolvematrix_86',['CholeskyBackSolveMatrix',['../classIpopt_1_1DenseGenMatrix.html#ad5f7d959cc23be450357b0f0295b716e',1,'Ipopt::DenseGenMatrix']]], - ['choleskysolvematrix_87',['CholeskySolveMatrix',['../classIpopt_1_1DenseGenMatrix.html#a231c824d28246374c0d5c0aa4e4a4566',1,'Ipopt::DenseGenMatrix']]], - ['choleskysolvevector_88',['CholeskySolveVector',['../classIpopt_1_1DenseGenMatrix.html#a3db5c6f7e1eeb7f40ad81a9e697b0c58',1,'Ipopt::DenseGenMatrix']]], - ['cleanupinvalidatedresults_89',['CleanupInvalidatedResults',['../classIpopt_1_1CachedResults.html#a6f65c53c87a03c3045d74fbdd1af57e5',1,'Ipopt::CachedResults']]], - ['clear_90',['clear',['../classIpopt_1_1Filter.html#a94cf2454e0e2966b07065ba0cb7c5ac6',1,'Ipopt::Filter::Clear()'],['../classIpopt_1_1OptionsList.html#ae631b2bbb67e3ac78d1560bafefc929e',1,'Ipopt::OptionsList::clear()'],['../classIpopt_1_1CachedResults.html#a1382321cb2355b6a06cf77ebf3dbd9c7',1,'Ipopt::CachedResults::Clear()'],['../classIpopt_1_1CachedResults.html#a9b91e184dc7a61d7b5f980fe3e427c47',1,'Ipopt::CachedResults::Clear(int max_cache_size)'],['../classIpopt_1_1PiecewisePenalty.html#a863e352222e35a374ed8f38521bcf327',1,'Ipopt::PiecewisePenalty::Clear()'],['../classIpopt_1_1IterativeSolverTerminationTester.html#a597a3e266c808a9d5dfad2f7c0f20b7c',1,'Ipopt::IterativeSolverTerminationTester::Clear()'],['../classIpopt_1_1InexactPDTerminationTester.html#a2277e85ac3b6a88e499cf89d6020f35b',1,'Ipopt::InexactPDTerminationTester::Clear()'],['../classIpopt_1_1InexactNormalTerminationTester.html#a5a31779337507c6fcac02fdb6fa03452',1,'Ipopt::InexactNormalTerminationTester::Clear()']]], - ['clone_91',['clone',['../classIpopt_1_1IpoptApplication.html#a949bc6a1294fd4026a3a7dc8092ad75a',1,'Ipopt::IpoptApplication']]], - ['cntl_5f_92',['cntl_',['../classIpopt_1_1Ma27TSolverInterface.html#afe4299e1d2a13db4b3be5540fe614c72',1,'Ipopt::Ma27TSolverInterface']]], - ['code_93',['code',['../INSTALL.html#GETIPOPT',1,'Getting the Ipopt Code'],['../INTERFACES.html#INTERFACE_CODE',1,'Interfacing with Ipopt through code']]], - ['code_20as_20a_20tarball_94',['Getting the Ipopt code as a tarball',['../INSTALL.html#GETIPOPT_TAR',1,'']]], - ['code_20via_20git_95',['Getting the Ipopt code via git',['../INSTALL.html#GETIPOPT_GIT',1,'']]], - ['coding_20the_20executable_96',['Coding the Executable',['../INTERFACES.html#INTERFACE_CPP_MAIN',1,'']]], - ['coding_20the_20problem_20representation_97',['Coding the Problem Representation',['../INTERFACES.html#INTERFACE_CPP_NLP',1,'']]], - ['coinbrew_98',['Using CoinBrew',['../INSTALL.html#COINBREW',1,'']]], - ['cols_5f_99',['cols_',['../classIpopt_1_1IndexPCalculator.html#a73c9b88c0c77ba7723674786baac9f81',1,'Ipopt::IndexPCalculator']]], - ['column_5fscaling_5f_100',['column_scaling_',['../classIpopt_1_1ScaledMatrixSpace.html#a1046740ac352cc4a1c7c3284d3fb11a5',1,'Ipopt::ScaledMatrixSpace']]], - ['columnscaling_101',['columnscaling',['../classIpopt_1_1ScaledMatrix.html#a0891c0a55942b87cfef08037f0fe7399',1,'Ipopt::ScaledMatrix::ColumnScaling()'],['../classIpopt_1_1ScaledMatrixSpace.html#a26a348c987e9900b6397d5e575f9c4fe',1,'Ipopt::ScaledMatrixSpace::ColumnScaling()']]], - ['colvectorspace_102',['colvectorspace',['../classIpopt_1_1MultiVectorMatrix.html#a83b0006f810c72c4896945717b404e8e',1,'Ipopt::MultiVectorMatrix::ColVectorSpace()'],['../classIpopt_1_1MultiVectorMatrixSpace.html#a4f50103025e8a3ab43693e3d66c5ea58',1,'Ipopt::MultiVectorMatrixSpace::ColVectorSpace()']]], - ['command_20line_103',['Using Ipopt from the command line',['../INTERFACES.html#INTERFACE_AMPL_CL',1,'']]], - ['comp_104',['comp',['../classIpopt_1_1CompoundVector.html#a32b3b120dbd1df95d32c45fae7b61d92',1,'Ipopt::CompoundVector::Comp()'],['../classIpopt_1_1CompoundSymMatrix.html#aa812415d13285a58b29bfb48f7034588',1,'Ipopt::CompoundSymMatrix::Comp()'],['../classIpopt_1_1CompoundMatrix.html#ad7682cab8b6f06db805c0ffecf16baa4',1,'Ipopt::CompoundMatrix::Comp()']]], - ['comp_5fspaces_5f_105',['comp_spaces_',['../classIpopt_1_1CompoundVectorSpace.html#a1af6d17867673671b0057f5a2410bf9d',1,'Ipopt::CompoundVectorSpace::comp_spaces_'],['../classIpopt_1_1CompoundSymMatrixSpace.html#aae0072b61bb9c679172a903c5772f46c',1,'Ipopt::CompoundSymMatrixSpace::comp_spaces_'],['../classIpopt_1_1CompoundMatrixSpace.html#a9be1b58db439754df9dfd23acd6a5ca7',1,'Ipopt::CompoundMatrixSpace::comp_spaces_']]], - ['compare_5fle_106',['compare_le',['../namespaceIpopt.html#a744080523cc4ae02aa31f3b73804ca9c',1,'Ipopt::Compare_le()'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#a1fee19afc2551d7b389133cb10e11f7b',1,'Ipopt::CGPenaltyLSAcceptor::Compare_le()']]], - ['comparepointers_107',['ComparePointers',['../namespaceIpopt.html#a56ef77683afd4e4d8b471ce91de8272a',1,'Ipopt']]], - ['comparepriority_108',['ComparePriority',['../classIpopt_1_1RegisteredCategory_1_1ComparePriority.html',1,'Ipopt::RegisteredCategory']]], - ['compiler_20preprocessor_109',['Additional Flags for Compiler Preprocessor',['../INSTALL.html#CPP_FLAGS',1,'']]], - ['compilers_110',['Getting System Packages (Compilers, ...)',['../INSTALL.html#SYSTEMPACKAGES',1,'']]], - ['compiling_20and_20installing_20ipopt_111',['Compiling and Installing Ipopt',['../INSTALL.html#COMPILEINSTALL',1,'']]], - ['compiling_20and_20installing_20the_20r_20interface_20ipoptr_112',['Compiling and Installing the R Interface ipoptr',['../INSTALL.html#INSTALL_R',1,'']]], - ['compiling_20and_20testing_20the_20example_113',['Compiling and Testing the Example',['../INTERFACES.html#INTERFACE_CPP_COMPILE',1,'']]], - ['compl_5f_114',['compl_',['../classIpopt_1_1SolveStatistics.html#aab161fe3cedc42eec6363e53f834d71c',1,'Ipopt::SolveStatistics']]], - ['compl_5finf_5ftol_5f_115',['compl_inf_tol_',['../classIpopt_1_1OptimalityErrorConvergenceCheck.html#a62c241f4b9e248f10dada6e721f50570',1,'Ipopt::OptimalityErrorConvergenceCheck::compl_inf_tol_'],['../classIpopt_1_1MonotoneMuUpdate.html#a96158c1aeb7e63e961e149828e026e37',1,'Ipopt::MonotoneMuUpdate::compl_inf_tol_'],['../classIpopt_1_1AdaptiveMuUpdate.html#aca672ca22155030b50de1b1d16244a32',1,'Ipopt::AdaptiveMuUpdate::compl_inf_tol_']]], - ['complete_116',['complete',['../classIpopt_1_1PardisoSolverInterface.html#ac8001cd1faad8199ecfad60c0cd25daaa57a352a01c0edb7eec64054fa9c7bd54',1,'Ipopt::PardisoSolverInterface::COMPLETE'],['../classIpopt_1_1IterativePardisoSolverInterface.html#a51ed4b3910167788c69e77aeb5044cccaa20bca1c1e3dfcd9bce157719945bdd5',1,'Ipopt::IterativePardisoSolverInterface::COMPLETE'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a62f2e50b486dc70ac7277c3389aa7524abab8dbadfa171664f7c67dc1e2b17afe',1,'Ipopt::PardisoMKLSolverInterface::COMPLETE']]], - ['complete2x2_117',['complete2x2',['../classIpopt_1_1IterativePardisoSolverInterface.html#a51ed4b3910167788c69e77aeb5044ccca07ba6b01c4944bd8519b85945eb33da4',1,'Ipopt::IterativePardisoSolverInterface::COMPLETE2x2'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a62f2e50b486dc70ac7277c3389aa7524a284dd3f971eddb060512135433129c5e',1,'Ipopt::PardisoMKLSolverInterface::COMPLETE2x2'],['../classIpopt_1_1PardisoSolverInterface.html#ac8001cd1faad8199ecfad60c0cd25daaac5d113feea112d1e94dd6429dffba2e3',1,'Ipopt::PardisoSolverInterface::COMPLETE2x2']]], - ['compound_5fsol_5fvecspace_5f_118',['compound_sol_vecspace_',['../classIpopt_1_1LowRankAugSystemSolver.html#a8618b3bb0e75e3f552d18fed55e99da4',1,'Ipopt::LowRankAugSystemSolver']]], - ['compoundmatrix_119',['compoundmatrix',['../classIpopt_1_1CompoundMatrix.html',1,'Ipopt::CompoundMatrix'],['../classIpopt_1_1CompoundMatrix.html#aac2f7cecf00ebae9904c6e24eb30fc0d',1,'Ipopt::CompoundMatrix::CompoundMatrix(const CompoundMatrixSpace *owner_space)'],['../classIpopt_1_1CompoundMatrix.html#aaffafabf73244f9d281eedb46a417521',1,'Ipopt::CompoundMatrix::CompoundMatrix()'],['../classIpopt_1_1CompoundMatrix.html#ae1363b6633a14f46c1ed2b1b2a09bb8c',1,'Ipopt::CompoundMatrix::CompoundMatrix(const CompoundMatrix &)']]], - ['compoundmatrixspace_120',['compoundmatrixspace',['../classIpopt_1_1CompoundMatrixSpace.html',1,'Ipopt::CompoundMatrixSpace'],['../classIpopt_1_1CompoundMatrixSpace.html#a7f353fc5bdbc163d5e93ab03b44f6459',1,'Ipopt::CompoundMatrixSpace::CompoundMatrixSpace(const CompoundMatrixSpace &)'],['../classIpopt_1_1CompoundMatrixSpace.html#a0bf3dbb6b8e9430e4dd1bb5512f90541',1,'Ipopt::CompoundMatrixSpace::CompoundMatrixSpace()'],['../classIpopt_1_1CompoundMatrixSpace.html#a5ed02d042058051fc9852a24e9162e2a',1,'Ipopt::CompoundMatrixSpace::CompoundMatrixSpace(Index ncomps_rows, Index ncomps_cols, Index total_nRows, Index total_nCols)']]], - ['compoundsymmatrix_121',['compoundsymmatrix',['../classIpopt_1_1CompoundSymMatrix.html#ace9c39e4b3c9cd091ba581e0e2f581f9',1,'Ipopt::CompoundSymMatrix::CompoundSymMatrix()'],['../classIpopt_1_1CompoundSymMatrix.html',1,'Ipopt::CompoundSymMatrix'],['../classIpopt_1_1CompoundSymMatrix.html#ac484b6d503a63eefc3a384a39c9ea1c2',1,'Ipopt::CompoundSymMatrix::CompoundSymMatrix(const CompoundSymMatrixSpace *owner_space)'],['../classIpopt_1_1CompoundSymMatrix.html#a6681318fde7cbb75129ef0a6b1b4f12b',1,'Ipopt::CompoundSymMatrix::CompoundSymMatrix()']]], - ['compoundsymmatrixspace_122',['compoundsymmatrixspace',['../classIpopt_1_1CompoundSymMatrixSpace.html#a60daa8086de41680bfa7c8e3eed3f388',1,'Ipopt::CompoundSymMatrixSpace::CompoundSymMatrixSpace()'],['../classIpopt_1_1CompoundSymMatrixSpace.html',1,'Ipopt::CompoundSymMatrixSpace'],['../classIpopt_1_1CompoundSymMatrixSpace.html#a2937982e20628c64aa2c72de1373d5c7',1,'Ipopt::CompoundSymMatrixSpace::CompoundSymMatrixSpace()'],['../classIpopt_1_1CompoundSymMatrixSpace.html#a1570d656b975bb6ca02f7a87b81265df',1,'Ipopt::CompoundSymMatrixSpace::CompoundSymMatrixSpace(const CompoundSymMatrix &)']]], - ['compoundvector_123',['compoundvector',['../classIpopt_1_1CompoundVector.html',1,'Ipopt::CompoundVector'],['../classIpopt_1_1CompoundVector.html#adbb8fb0967f32173a053bd49a05ad097',1,'Ipopt::CompoundVector::CompoundVector(const CompoundVectorSpace *owner_space, bool create_new)'],['../classIpopt_1_1CompoundVector.html#a6143fbbc1ea26826195ec5d27d34d44d',1,'Ipopt::CompoundVector::CompoundVector()'],['../classIpopt_1_1CompoundVector.html#af51e677ac75f402244791d2ca55dac42',1,'Ipopt::CompoundVector::CompoundVector(const CompoundVector &)']]], - ['compoundvectorspace_124',['compoundvectorspace',['../classIpopt_1_1CompoundVectorSpace.html',1,'Ipopt::CompoundVectorSpace'],['../classIpopt_1_1CompoundVectorSpace.html#a1f5374c54bdf76243365c9057e063187',1,'Ipopt::CompoundVectorSpace::CompoundVectorSpace(const CompoundVectorSpace &)'],['../classIpopt_1_1CompoundVectorSpace.html#a338cfe829ce27f51ad6771802e7ac3a1',1,'Ipopt::CompoundVectorSpace::CompoundVectorSpace()'],['../classIpopt_1_1CompoundVectorSpace.html#a031fd11da6e73a1fc822258251473339',1,'Ipopt::CompoundVectorSpace::CompoundVectorSpace(Index ncomp_spaces, Index total_dim)']]], - ['compressed_5fpos_5f_125',['compressed_pos_',['../classIpopt_1_1ExpansionMatrixSpace.html#a58fe433496b726b214d74a053cdb8a85',1,'Ipopt::ExpansionMatrixSpace']]], - ['compressedposindices_126',['compressedposindices',['../classIpopt_1_1ExpansionMatrix.html#a937c66231f657ffce632c6eb84c2ea4b',1,'Ipopt::ExpansionMatrix::CompressedPosIndices()'],['../classIpopt_1_1ExpansionMatrixSpace.html#a810561df3baca06a248dcfc014a71e13',1,'Ipopt::ExpansionMatrixSpace::CompressedPosIndices()']]], - ['comps_5f_127',['comps_',['../classIpopt_1_1CompoundVector.html#a45a77bf549eafc343cb74b83c2123dae',1,'Ipopt::CompoundVector::comps_'],['../classIpopt_1_1CompoundSymMatrix.html#aa28c63b5f6e396e47bca2696b56de7ec',1,'Ipopt::CompoundSymMatrix::comps_'],['../classIpopt_1_1CompoundMatrix.html#ad5d9c245cfc65f36820fad3e59212083',1,'Ipopt::CompoundMatrix::comps_']]], - ['compute_5fcurr_5fcg_5fpenalty_128',['compute_curr_cg_penalty',['../classIpopt_1_1CGPenaltyCq.html#a6c0477464a2957c1f95c77690a0f8542',1,'Ipopt::CGPenaltyCq']]], - ['compute_5fcurr_5fcg_5fpenalty_5fscale_129',['compute_curr_cg_penalty_scale',['../classIpopt_1_1CGPenaltyCq.html#aa8f8abed0e16fb46d6f4b1c531b9b44a',1,'Ipopt::CGPenaltyCq']]], - ['compute_5fdsdp_5f_130',['compute_dsdp_',['../classIpopt_1_1SensApplication.html#af83a72c905f663e86954ffd0139553f2',1,'Ipopt::SensApplication']]], - ['compute_5feigenvalues_5f_131',['compute_eigenvalues_',['../classIpopt_1_1ReducedHessianCalculator.html#ad4e8be9c4483bcdae1e164c85bafabb0',1,'Ipopt::ReducedHessianCalculator']]], - ['compute_5fnormal_132',['compute_normal',['../classIpopt_1_1InexactData.html#a613c76007b6fe4c1570ac598e4b6cc96',1,'Ipopt::InexactData']]], - ['compute_5fnormal_5f_133',['compute_normal_',['../classIpopt_1_1InexactData.html#ae402bd2f29828f461fe49ddb24ceb9c5',1,'Ipopt::InexactData']]], - ['compute_5fred_5fhessian_5f_134',['compute_red_hessian_',['../classIpopt_1_1SensAmplTNLP.html#a667cde08f67c0d1015a54fa65c1dba9c',1,'Ipopt::SensAmplTNLP::compute_red_hessian_'],['../classIpopt_1_1SensApplication.html#a9106d751c6bc6b603e5b661dfab90b3b',1,'Ipopt::SensApplication::compute_red_hessian_']]], - ['compute_5ftau_5fmonotone_135',['Compute_tau_monotone',['../classIpopt_1_1AdaptiveMuUpdate.html#aa4d41b7607bfdfbed7382eb484409f4b',1,'Ipopt::AdaptiveMuUpdate']]], - ['computeacceptabletrialpoint_136',['computeacceptabletrialpoint',['../classIpopt_1_1TimingStatistics.html#ac31d0b143e156bf7831735ca23d2e958',1,'Ipopt::TimingStatistics::ComputeAcceptableTrialPoint()'],['../classIpopt_1_1IpoptAlgorithm.html#ad9889612609f392fb9569e25f0286624',1,'Ipopt::IpoptAlgorithm::ComputeAcceptableTrialPoint()']]], - ['computeacceptabletrialpoint_5f_137',['ComputeAcceptableTrialPoint_',['../classIpopt_1_1TimingStatistics.html#ad596a4a6ebabe05fc78f2289ac90c9d0',1,'Ipopt::TimingStatistics']]], - ['computealphafory_138',['computealphafory',['../classIpopt_1_1BacktrackingLSAcceptor.html#a21e6de5f883965c4c35a4b8754a54f62',1,'Ipopt::BacktrackingLSAcceptor::ComputeAlphaForY()'],['../classIpopt_1_1InexactLSAcceptor.html#a9354e475f7eae60c7cff30918117f1bb',1,'Ipopt::InexactLSAcceptor::ComputeAlphaForY()']]], - ['computeboundmultiplierstep_139',['ComputeBoundMultiplierStep',['../classIpopt_1_1MinC__1NrmRestorationPhase.html#a414a26e1f25829579c1c1f274b47609c',1,'Ipopt::MinC_1NrmRestorationPhase']]], - ['computecholeskyfactor_140',['ComputeCholeskyFactor',['../classIpopt_1_1DenseGenMatrix.html#a288f07fe858d3ecddcdc0c79b7225245',1,'Ipopt::DenseGenMatrix']]], - ['computecolamax_141',['ComputeColAMax',['../classIpopt_1_1Matrix.html#a0cfda747c0de5df22b89e4fa2fd55fd2',1,'Ipopt::Matrix']]], - ['computecolamaximpl_142',['computecolamaximpl',['../classIpopt_1_1TransposeMatrix.html#a05ec87ae7381b9a1a0f1f672d8137d28',1,'Ipopt::TransposeMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1SumSymMatrix.html#a832187652bf3004351e34d2bac5d5cc8',1,'Ipopt::SumSymMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1ZeroMatrix.html#acb02ae311c2af4f502aeba8f7b5df42c',1,'Ipopt::ZeroMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1ZeroSymMatrix.html#a7fac1df9e0cfea41035b4e0ecd646a8d',1,'Ipopt::ZeroSymMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1GenTMatrix.html#ada0f8d557932fed3205b1961134e8d5f',1,'Ipopt::GenTMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1SymMatrix.html#aae50167ac98f271c344df819325e0ebe',1,'Ipopt::SymMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1SumMatrix.html#af67bb4693b4077dc85a58d5b63e129c2',1,'Ipopt::SumMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1ScaledMatrix.html#a520f55d3c8c7811ace5b0ad649930c1a',1,'Ipopt::ScaledMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1MultiVectorMatrix.html#ad1eb04bd384471b81afec75e7bc6bcdb',1,'Ipopt::MultiVectorMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1Matrix.html#af09c4d60a35f688751f91b39068a5fd0',1,'Ipopt::Matrix::ComputeColAMaxImpl()'],['../classIpopt_1_1LowRankUpdateSymMatrix.html#a6f68e4708411f539f82a31eb1fa69307',1,'Ipopt::LowRankUpdateSymMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1ExpansionMatrix.html#a77b279ae205e5a131c0f42d8d5d81bf8',1,'Ipopt::ExpansionMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1ExpandedMultiVectorMatrix.html#abec98a973ca8feb469ebb2dbd5ce15ec',1,'Ipopt::ExpandedMultiVectorMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1DenseGenMatrix.html#a46dd833fc45ca12c28b91ec5d506a6fd',1,'Ipopt::DenseGenMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1CompoundMatrix.html#a7b656c12b674650946831f82150d8f32',1,'Ipopt::CompoundMatrix::ComputeColAMaxImpl()']]], - ['computedampingindicators_143',['ComputeDampingIndicators',['../classIpopt_1_1IpoptCalculatedQuantities.html#a6060409ad31c3db3c3f854384ac5c929',1,'Ipopt::IpoptCalculatedQuantities']]], - ['computeeigenvectors_144',['ComputeEigenVectors',['../classIpopt_1_1DenseGenMatrix.html#a394ee009ef9cbf7fc5145fc942ed37e7',1,'Ipopt::DenseGenMatrix']]], - ['computefeasibilitymultipliers_145',['ComputeFeasibilityMultipliers',['../classIpopt_1_1IpoptAlgorithm.html#a99eb454d723a18d0e4c67d8e80978401',1,'Ipopt::IpoptAlgorithm']]], - ['computefeasibilitymultiplierspostprocess_146',['ComputeFeasibilityMultipliersPostprocess',['../classIpopt_1_1IpoptAlgorithm.html#ab2ac20f05d0dab9ae7a89f59f9e466e0',1,'Ipopt::IpoptAlgorithm']]], - ['computelufactorinplace_147',['ComputeLUFactorInPlace',['../classIpopt_1_1DenseGenMatrix.html#adbb046b4c9df47f4e6e4e47f8a2d9d5c',1,'Ipopt::DenseGenMatrix']]], - ['computememincrease_148',['ComputeMemIncrease',['../namespaceIpopt.html#ada77edb2d8946eb154f298386514c6a3',1,'Ipopt']]], - ['computenewtonnormalstep_149',['ComputeNewtonNormalStep',['../classIpopt_1_1InexactNewtonNormalStep.html#abd28764822117a8c3226bb0ad784b636',1,'Ipopt::InexactNewtonNormalStep']]], - ['computenormalstep_150',['computenormalstep',['../classIpopt_1_1InexactDoglegNormalStep.html#aec6cf2e8b3a347529ac6145d78ff2fcd',1,'Ipopt::InexactDoglegNormalStep::ComputeNormalStep()'],['../classIpopt_1_1InexactNormalStepCalculator.html#ae52348c87632c4c46366d0e384d0afd4',1,'Ipopt::InexactNormalStepCalculator::ComputeNormalStep()']]], - ['computeoptimalityerrorscaling_151',['ComputeOptimalityErrorScaling',['../classIpopt_1_1IpoptCalculatedQuantities.html#acfb24cd34f56dcf1d2e8ae82e5657f60',1,'Ipopt::IpoptCalculatedQuantities']]], - ['computep_152',['computep',['../classIpopt_1_1PCalculator.html#ab96ecb4446515612577435d309289fe2',1,'Ipopt::PCalculator::ComputeP()'],['../classIpopt_1_1IndexPCalculator.html#a8be50af7230fc7216f788d8173f0a425',1,'Ipopt::IndexPCalculator::ComputeP()']]], - ['computereducedhessian_153',['ComputeReducedHessian',['../classIpopt_1_1ReducedHessianCalculator.html#aaa94b9be6817e9ef3a997734e8a8cbcf',1,'Ipopt::ReducedHessianCalculator']]], - ['computeresidualratio_154',['ComputeResidualRatio',['../classIpopt_1_1PDFullSpaceSolver.html#a19ef2f56268b22df56b0dffa5c0c330d',1,'Ipopt::PDFullSpaceSolver']]], - ['computeresiduals_155',['computeresiduals',['../classIpopt_1_1TimingStatistics.html#a94adc7da2f78272805db6a9bf881da55',1,'Ipopt::TimingStatistics::ComputeResiduals()'],['../classIpopt_1_1PDFullSpaceSolver.html#ac23723158d9e2fbefcf01705b060966a',1,'Ipopt::PDFullSpaceSolver::ComputeResiduals()'],['../classIpopt_1_1InexactPDSolver.html#a892f92d55ad6f51bdd2b8951541bbb47',1,'Ipopt::InexactPDSolver::ComputeResiduals()']]], - ['computeresiduals_5f_156',['ComputeResiduals_',['../classIpopt_1_1TimingStatistics.html#ae60b6894c897466145e7c5a19ef4efae',1,'Ipopt::TimingStatistics']]], - ['computerowamax_157',['ComputeRowAMax',['../classIpopt_1_1Matrix.html#ae942dfdae208e6245d0dc8cefc23b19d',1,'Ipopt::Matrix']]], - ['computerowamaximpl_158',['computerowamaximpl',['../classIpopt_1_1CompoundSymMatrix.html#a3c7647e0919f1dd142fd9f0373c1c0ca',1,'Ipopt::CompoundSymMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1DenseSymMatrix.html#a73eb2c28ba3eaa9eb6b2de24ea38ba3f',1,'Ipopt::DenseSymMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1CompoundMatrix.html#a0ad5ba42456c881d8c37ff8e8be690e6',1,'Ipopt::CompoundMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1DenseGenMatrix.html#a796186ad9306b491b4438b94a456faea',1,'Ipopt::DenseGenMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1SymTMatrix.html#a392a539a999134fc3aa9995a07ab5f1c',1,'Ipopt::SymTMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1GenTMatrix.html#a79633ceaf16c4f776a522cadfcf094cd',1,'Ipopt::GenTMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1ZeroSymMatrix.html#aeb868265d875e41da27b971b09143e24',1,'Ipopt::ZeroSymMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1ZeroMatrix.html#a070cd7db8edf819d52f63afb5f5a1faa',1,'Ipopt::ZeroMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1TransposeMatrix.html#a27a48794f2d44b672359c77d12255ad9',1,'Ipopt::TransposeMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1SymScaledMatrix.html#a762d28e3cb0eabe80ccd8e3c1a90825b',1,'Ipopt::SymScaledMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1SumSymMatrix.html#a555d91c81d93516aba9e8aac4c82818c',1,'Ipopt::SumSymMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1SumMatrix.html#ae6456067030f748e0edd21dc6d5b0f1a',1,'Ipopt::SumMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1ScaledMatrix.html#a345588ea8f474db6230c89d28406b5c9',1,'Ipopt::ScaledMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1MultiVectorMatrix.html#a215f036fadae290e78849076c932e919',1,'Ipopt::MultiVectorMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1Matrix.html#aa3bbcb2070641e08b8ed114a22d7f0fc',1,'Ipopt::Matrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1LowRankUpdateSymMatrix.html#accae43620ee0625fff5c01d9e44b7f27',1,'Ipopt::LowRankUpdateSymMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1IdentityMatrix.html#a73f800d9f75bd3171a7f8ea4b9e03ddf',1,'Ipopt::IdentityMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1ExpansionMatrix.html#a5259d077677bd22360fd5c1f4c4cde6f',1,'Ipopt::ExpansionMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1ExpandedMultiVectorMatrix.html#ac2fae552ad22104a457518c661bd1af6',1,'Ipopt::ExpandedMultiVectorMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1DiagMatrix.html#a563568cd907b028ded5221322ccb114c',1,'Ipopt::DiagMatrix::ComputeRowAMaxImpl()']]], - ['computesearchdirection_159',['computesearchdirection',['../classIpopt_1_1InexactSearchDirCalculator.html#a6eb3f86543ddfb66e4eadd8ec46b1478',1,'Ipopt::InexactSearchDirCalculator::ComputeSearchDirection()'],['../classIpopt_1_1PDSearchDirCalculator.html#a70ed71fe20bad40db2f323222b434a39',1,'Ipopt::PDSearchDirCalculator::ComputeSearchDirection()'],['../classIpopt_1_1IpoptAlgorithm.html#a91a38f9e0d1218ce444d29aff768f228',1,'Ipopt::IpoptAlgorithm::ComputeSearchDirection()'],['../classIpopt_1_1SearchDirectionCalculator.html#a00ea6658aa464bbe62c1dd0b3834e882',1,'Ipopt::SearchDirectionCalculator::ComputeSearchDirection()'],['../classIpopt_1_1TimingStatistics.html#aa7ee67fb1423afc933eb4b41ba036161',1,'Ipopt::TimingStatistics::ComputeSearchDirection()'],['../classIpopt_1_1CGSearchDirCalculator.html#ac3dff9e26bb64b8fbe0600f1e5508f9f',1,'Ipopt::CGSearchDirCalculator::ComputeSearchDirection()']]], - ['computesearchdirection_5f_160',['ComputeSearchDirection_',['../classIpopt_1_1TimingStatistics.html#aad3a2328839adc17201a43ca7f2c5e0d',1,'Ipopt::TimingStatistics']]], - ['computesensitivitymatrix_161',['ComputeSensitivityMatrix',['../classIpopt_1_1SensAlgorithm.html#a96f52cc132619862d03b733a7072c794',1,'Ipopt::SensAlgorithm']]], - ['computesymtscalingfactors_162',['computesymtscalingfactors',['../classIpopt_1_1SlackBasedTSymScalingMethod.html#ab33603a0e374894b9ff67012a97dd681',1,'Ipopt::SlackBasedTSymScalingMethod::ComputeSymTScalingFactors()'],['../classIpopt_1_1InexactTSymScalingMethod.html#a89f4323ba32d4fc30d655808a10d6e88',1,'Ipopt::InexactTSymScalingMethod::ComputeSymTScalingFactors()'],['../classIpopt_1_1Mc19TSymScalingMethod.html#a3f4e383ee63c9b548b04049c6aa6c1e4',1,'Ipopt::Mc19TSymScalingMethod::ComputeSymTScalingFactors()'],['../classIpopt_1_1TSymScalingMethod.html#ae06613d7ae56769dd019d70d4998346b',1,'Ipopt::TSymScalingMethod::ComputeSymTScalingFactors()']]], - ['con_5finteger_5fmd_5f_163',['con_integer_md_',['../classIpopt_1_1AmplTNLP.html#af9d12945a7750eaef07feef07a51b3df',1,'Ipopt::AmplTNLP']]], - ['con_5fnumeric_5fmd_5f_164',['con_numeric_md_',['../classIpopt_1_1AmplTNLP.html#a89ebb03c7dc2eb964f78fd2499ce2da5',1,'Ipopt::AmplTNLP']]], - ['con_5fstring_5fmd_5f_165',['con_string_md_',['../classIpopt_1_1AmplTNLP.html#a0db97ee895b0c54a503772bb8667fdb5',1,'Ipopt::AmplTNLP']]], - ['config_5fdefault_2eh_166',['config_default.h',['../config__default_8h.html',1,'']]], - ['config_5fipopt_5fdefault_2eh_167',['config_ipopt_default.h',['../config__ipopt__default_8h.html',1,'']]], - ['configall_5fsystem_2eh_168',['configall_system.h',['../configall__system_8h.html',1,'']]], - ['configall_5fsystem_5fmsc_2eh_169',['configall_system_msc.h',['../configall__system__msc_8h.html',1,'']]], - ['configure_170',['Flags to configure',['../INSTALL.html#CONFIGURE_FLAGS',1,'']]], - ['considernewsystem_171',['considernewsystem',['../classIpopt_1_1CGPerturbationHandler.html#ac987243a4a1ab5739920a1a5a3769d86',1,'Ipopt::CGPerturbationHandler::ConsiderNewSystem()'],['../classIpopt_1_1PDPerturbationHandler.html#a7cfc036d2e375f0e87c18dad868dd6ef',1,'Ipopt::PDPerturbationHandler::ConsiderNewSystem()']]], - ['consist_5ftol_172',['consist_tol',['../structma97__control__d.html#abe7e350a74dbe697a5610659bc473de3',1,'ma97_control_d::consist_tol'],['../structma77__control__d.html#a05a9cec699db33551ad7e1f551cda9ca',1,'ma77_control_d::consist_tol'],['../structma77__control__s.html#af0d5c3c689e055c5e4ed9b6b2a6eb817',1,'ma77_control_s::consist_tol'],['../structma97__control__s.html#a68e8870721bddfa333923e21c32f3d85',1,'ma97_control_s::consist_tol']]], - ['const_5fcomps_5f_173',['const_comps_',['../classIpopt_1_1CompoundMatrix.html#a6b8631ab1a9aeacd18d3ad8e7b735e0f',1,'Ipopt::CompoundMatrix::const_comps_'],['../classIpopt_1_1CompoundSymMatrix.html#a60b1128cb4a54380aa2cc227d18c6f26',1,'Ipopt::CompoundSymMatrix::const_comps_'],['../classIpopt_1_1CompoundVector.html#ac36eb38085d92112552b058d372e58ac',1,'Ipopt::CompoundVector::const_comps_']]], - ['const_5fvecs_5f_174',['const_vecs_',['../classIpopt_1_1MultiVectorMatrix.html#accfafd2d99df3186da3a59fba47ee852',1,'Ipopt::MultiVectorMatrix']]], - ['constant_175',['CONSTANT',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a84c23742ee6b01b50a0b1f82a5562dccad78fb6e69e94d7572b89dab29c1842f1',1,'Ipopt::LimMemQuasiNewtonUpdater']]], - ['constcomp_176',['constcomp',['../classIpopt_1_1CompoundVector.html#af9ce6ba3f1b7ca79fa21e887ae7a60cc',1,'Ipopt::CompoundVector::ConstComp()'],['../classIpopt_1_1CompoundSymMatrix.html#aaa3f9d8be678932551ae19bf952e1259',1,'Ipopt::CompoundSymMatrix::ConstComp()'],['../classIpopt_1_1CompoundMatrix.html#a5d19fba215be33ee86c431f22a268b13',1,'Ipopt::CompoundMatrix::ConstComp()']]], - ['constptr_177',['constptr',['../namespaceIpopt.html#a3e8cc2c607c17995786c1929bd006be9',1,'Ipopt::ConstPtr()'],['../classIpopt_1_1SmartPtr.html#a297f93258277e27bb09a1550f9332522',1,'Ipopt::SmartPtr::ConstPtr']]], - ['constr_5fmult_5finit_5fmax_5f_178',['constr_mult_init_max_',['../classIpopt_1_1RestoIterateInitializer.html#a56a26b12756ca5fdabfc1f20a75847d3',1,'Ipopt::RestoIterateInitializer::constr_mult_init_max_'],['../classIpopt_1_1DefaultIterateInitializer.html#a3bc5d7c92d857433f4a64393b99cec09',1,'Ipopt::DefaultIterateInitializer::constr_mult_init_max_']]], - ['constr_5fmult_5freset_5fthreshold_5f_179',['constr_mult_reset_threshold_',['../classIpopt_1_1MinC__1NrmRestorationPhase.html#af989b1cc697c140d2a35672d9be05712',1,'Ipopt::MinC_1NrmRestorationPhase']]], - ['constr_5fviol_5f_180',['constr_viol_',['../classIpopt_1_1SolveStatistics.html#a668a7eed8c4e0f242db59f875b01631d',1,'Ipopt::SolveStatistics']]], - ['constr_5fviol_5fnormtype_181',['constr_viol_normtype',['../classIpopt_1_1IpoptCalculatedQuantities.html#ac08d2286d9fc4a549b5eca7fcb199e67',1,'Ipopt::IpoptCalculatedQuantities']]], - ['constr_5fviol_5fnormtype_5f_182',['constr_viol_normtype_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a1640157e330bdcd41c10e175f1efd67a',1,'Ipopt::IpoptCalculatedQuantities']]], - ['constr_5fviol_5ftol_5f_183',['constr_viol_tol_',['../classIpopt_1_1OrigIpoptNLP.html#a2103145a77a5dd0b9b8a61f67ad2ef6c',1,'Ipopt::OrigIpoptNLP::constr_viol_tol_'],['../classIpopt_1_1BacktrackingLineSearch.html#a1976e93763eb416e335a900c66ac67e4',1,'Ipopt::BacktrackingLineSearch::constr_viol_tol_'],['../classIpopt_1_1IpoptAlgorithm.html#a2bdced6a3ed9532a8a9abb182f0ec931',1,'Ipopt::IpoptAlgorithm::constr_viol_tol_'],['../classIpopt_1_1OptimalityErrorConvergenceCheck.html#af47a923f7b244f795fab367a7dfa089e',1,'Ipopt::OptimalityErrorConvergenceCheck::constr_viol_tol_'],['../classIpopt_1_1MinC__1NrmRestorationPhase.html#a85723ff97452a0a835c93fddc3204e77',1,'Ipopt::MinC_1NrmRestorationPhase::constr_viol_tol_']]], - ['constraint_184',['constraint',['../classIpopt_1_1IterativePardisoSolverInterface.html#a51ed4b3910167788c69e77aeb5044ccca98958078b74b77379df641409ed08e12',1,'Ipopt::IterativePardisoSolverInterface::CONSTRAINT'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a62f2e50b486dc70ac7277c3389aa7524a045cdb54b7e13d33bfdc3fb7ad1fde01',1,'Ipopt::PardisoMKLSolverInterface::CONSTRAINT'],['../classIpopt_1_1PardisoSolverInterface.html#ac8001cd1faad8199ecfad60c0cd25daaa8ed485bff1b2c2e1ab97ca6ea51d8f95',1,'Ipopt::PardisoSolverInterface::CONSTRAINT']]], - ['constraint_5fsource_185',['Constraint_Source',['../classIpopt_1_1AmplSuffixHandler.html#a1a585c9cb1270be5275d36ca4efeb0a7a5f04e467ade7c7962a5f15e53bb369af',1,'Ipopt::AmplSuffixHandler']]], - ['constvec_186',['ConstVec',['../classIpopt_1_1MultiVectorMatrix.html#a39c85facfd0e2d60900665b71dc8723e',1,'Ipopt::MultiVectorMatrix']]], - ['contact_20with_20questions_20about_20ipopt_187',['Who do I contact with questions about Ipopt?',['../FAQ.html#autotoc_md7',1,'']]], - ['continue_188',['continue',['../classIpopt_1_1IterativeSolverTerminationTester.html#a292d4f2906beb360d343308002d608fdabaa61a8545d0bd58aeb1f20869d95e70',1,'Ipopt::IterativeSolverTerminationTester::CONTINUE'],['../classIpopt_1_1ConvergenceCheck.html#a0c6c029f369b9529443d945db60c6a98a5643449f3ef345f390c648fa9281c8c7',1,'Ipopt::ConvergenceCheck::CONTINUE']]], - ['contributions_189',['More Information and Contributions',['../index.html#MOREINFO',1,'']]], - ['contributors_190',['Authors and Contributors',['../AUTHORS.html',1,'index']]], - ['control_5f_191',['control_',['../classIpopt_1_1Ma97SolverInterface.html#af90324167f6886374e57075f8bc537f9',1,'Ipopt::Ma97SolverInterface::control_'],['../classIpopt_1_1Ma77SolverInterface.html#a4ac1564a6cc92c83e9d11f475e95e7cc',1,'Ipopt::Ma77SolverInterface::control_'],['../classIpopt_1_1Ma86SolverInterface.html#abf83bd354c9e6c13f183ad64a9e33fc2',1,'Ipopt::Ma86SolverInterface::control_'],['../classIpopt_1_1SpralSolverInterface.html#a1036bdd74111ba894a49e63e1d61c277',1,'Ipopt::SpralSolverInterface::control_']]], - ['controller_192',['controller',['../classIpopt_1_1SensApplication.html#aa3f9d03f6473f56c0c2765b5897df99b',1,'Ipopt::SensApplication']]], - ['conv_5fcheck_5f_193',['conv_check_',['../classIpopt_1_1BacktrackingLineSearch.html#a2b01e6a4860c4576b2786b442611bd28',1,'Ipopt::BacktrackingLineSearch::conv_check_'],['../classIpopt_1_1IpoptAlgorithm.html#a00a3bd1b384831e5fa894849d181f13e',1,'Ipopt::IpoptAlgorithm::conv_check_']]], - ['conval_5fcalled_5fwith_5fcurrent_5fx_5f_194',['conval_called_with_current_x_',['../classIpopt_1_1AmplTNLP.html#aa63dc17fa5263ef062e1e57df929f902',1,'Ipopt::AmplTNLP']]], - ['convcheck_5f_195',['ConvCheck_',['../classIpopt_1_1AlgorithmBuilder.html#a59a5e839ff6dfaa30265f52b9234f6c7',1,'Ipopt::AlgorithmBuilder']]], - ['converged_196',['CONVERGED',['../classIpopt_1_1ConvergenceCheck.html#a0c6c029f369b9529443d945db60c6a98a60c81b13a273aa49ee958998f67f5a9e',1,'Ipopt::ConvergenceCheck']]], - ['converged_5fto_5facceptable_5fpoint_197',['CONVERGED_TO_ACCEPTABLE_POINT',['../classIpopt_1_1ConvergenceCheck.html#a0c6c029f369b9529443d945db60c6a98a9884285be2e6b7e8c5118ecb0e5bc4f3',1,'Ipopt::ConvergenceCheck']]], - ['convergencecheck_198',['convergencecheck',['../classIpopt_1_1ConvergenceCheck.html#a79e10d7f943de4e13d5d74eb9dbc8e09',1,'Ipopt::ConvergenceCheck::ConvergenceCheck()'],['../classIpopt_1_1ConvergenceCheck.html#aeec09ba39a8dc1a2f47d77c8e958ad94',1,'Ipopt::ConvergenceCheck::ConvergenceCheck(const ConvergenceCheck &)'],['../classIpopt_1_1ConvergenceCheck.html',1,'Ipopt::ConvergenceCheck']]], - ['convergencestatus_199',['ConvergenceStatus',['../classIpopt_1_1ConvergenceCheck.html#a0c6c029f369b9529443d945db60c6a98',1,'Ipopt::ConvergenceCheck']]], - ['convertvalues_200',['ConvertValues',['../classIpopt_1_1TripletToCSRConverter.html#a50babe48e5dc60a2f985819773533528',1,'Ipopt::TripletToCSRConverter']]], - ['copy_201',['copy',['../classIpopt_1_1Vector.html#a91ca096062de235f2b0ee26026102770',1,'Ipopt::Vector::Copy()'],['../classIpopt_1_1DenseGenMatrix.html#a80ec55f1547fb55a1a4ca5539601827d',1,'Ipopt::DenseGenMatrix::Copy()']]], - ['copyfrompos_202',['CopyFromPos',['../classIpopt_1_1DenseVector.html#a87238d562bf25258a49326a105268033',1,'Ipopt::DenseVector']]], - ['copyimpl_203',['copyimpl',['../classIpopt_1_1CompoundVector.html#ab0dc475bcb6a4ca89cf2f99586b3f8a1',1,'Ipopt::CompoundVector::CopyImpl()'],['../classIpopt_1_1DenseVector.html#aa9d81aa0d18b4f258afa6bc4e984d458',1,'Ipopt::DenseVector::CopyImpl()'],['../classIpopt_1_1Vector.html#a49104b125991e9ae2861d862bfe02442',1,'Ipopt::Vector::CopyImpl()']]], - ['copytopos_204',['CopyToPos',['../classIpopt_1_1DenseVector.html#aecb57c43c14367917ff333a5b681617b',1,'Ipopt::DenseVector']]], - ['copytrialtocurrent_205',['CopyTrialToCurrent',['../classIpopt_1_1IpoptData.html#a6582d9d24679b1180ece3a72c0ce1d84',1,'Ipopt::IpoptData']]], - ['correct_5fbound_5fmultiplier_206',['correct_bound_multiplier',['../classIpopt_1_1IpoptAlgorithm.html#a5a862df4ab20eb68616c03f71c28c15a',1,'Ipopt::IpoptAlgorithm']]], - ['corrector_5fcompl_5favrg_5fred_5ffact_5f_207',['corrector_compl_avrg_red_fact_',['../classIpopt_1_1FilterLSAcceptor.html#ad688851f8b0edc3fc1d19108f40b668b',1,'Ipopt::FilterLSAcceptor']]], - ['corrector_5ftype_5f_208',['corrector_type_',['../classIpopt_1_1FilterLSAcceptor.html#afc3efaea1e54a8b64fe7d400e9e067fe',1,'Ipopt::FilterLSAcceptor']]], - ['correctortypeenum_209',['CorrectorTypeEnum',['../classIpopt_1_1FilterLSAcceptor.html#a9fdb48eba6aac599c3d3d077a315828a',1,'Ipopt::FilterLSAcceptor']]], - ['count_5fqf_5fevals_5f_210',['count_qf_evals_',['../classIpopt_1_1QualityFunctionMuOracle.html#a6205dd51bc1660a1490a76205cef81d4',1,'Ipopt::QualityFunctionMuOracle']]], - ['count_5frestorations_5f_211',['count_restorations_',['../classIpopt_1_1MinC__1NrmRestorationPhase.html#afcbd1a157eba7a802699cd7d89876131',1,'Ipopt::MinC_1NrmRestorationPhase']]], - ['count_5fsuccessive_5ffilter_5frejections_5f_212',['count_successive_filter_rejections_',['../classIpopt_1_1FilterLSAcceptor.html#a3f1b4f8c416b002afe455d1d52953c77',1,'Ipopt::FilterLSAcceptor']]], - ['count_5fsuccessive_5fshortened_5fsteps_5f_213',['count_successive_shortened_steps_',['../classIpopt_1_1BacktrackingLineSearch.html#a4c08b213efd298ed6d20dbc007b47b78',1,'Ipopt::BacktrackingLineSearch']]], - ['counter_214',['counter',['../classIpopt_1_1RegisteredOption.html#abcc38e7cbd855de3bdb641dada6d9f47',1,'Ipopt::RegisteredOption::Counter()'],['../classIpopt_1_1OptionsList_1_1OptionValue.html#aa556e1b81946e75f3164430152803334',1,'Ipopt::OptionsList::OptionValue::Counter()']]], - ['counter_5f_215',['counter_',['../classIpopt_1_1RegisteredOption.html#aa5fc3710068f0b277e9e624514e17e82',1,'Ipopt::RegisteredOption::counter_'],['../classIpopt_1_1OptionsList_1_1OptionValue.html#a5133ccf41c223a42a17964a0c99badad',1,'Ipopt::OptionsList::OptionValue::counter_']]], - ['counter_5ffirst_5ftype_5fpenalty_5fupdates_5f_216',['counter_first_type_penalty_updates_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a8ee2a8b1c47d76940684e422d968fcf8',1,'Ipopt::CGPenaltyLSAcceptor']]], - ['counter_5fsecond_5ftype_5fpenalty_5fupdates_5f_217',['counter_second_type_penalty_updates_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a995edef721ff4b9348e84a9fc6707260',1,'Ipopt::CGPenaltyLSAcceptor']]], - ['cpu_5ftime_5fstart_218',['cpu_time_start',['../classIpopt_1_1IpoptData.html#ab73f3c309f066a25ab858507b46475c5',1,'Ipopt::IpoptData']]], - ['cputime_219',['CpuTime',['../namespaceIpopt.html#a43215400b0003aefcf90d79f41a808c2',1,'Ipopt']]], - ['cputime_5fexceeded_220',['cputime_exceeded',['../classIpopt_1_1ConvergenceCheck.html#a0c6c029f369b9529443d945db60c6a98a63d078cf9468e26a972ddc9af25f39b0',1,'Ipopt::ConvergenceCheck::CPUTIME_EXCEEDED'],['../classorg_1_1coinor_1_1Ipopt.html#af915b9705da65d4ec1dfaf7b5889c61c',1,'org.coinor.Ipopt.CPUTIME_EXCEEDED'],['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834ab0b9a4a82b16aef98a54dba735c627c5',1,'Ipopt::CPUTIME_EXCEEDED']]], - ['create_221',['create',['../classorg_1_1coinor_1_1Ipopt.html#a974f513fe0380fa5feb582855657ea49',1,'org::coinor::Ipopt']]], - ['create_5fnew_5fs_222',['create_new_s',['../classIpopt_1_1IteratesVector.html#a70b6429871de05007c9709df6f90a5a5',1,'Ipopt::IteratesVector']]], - ['create_5fnew_5fs_5fcopy_223',['create_new_s_copy',['../classIpopt_1_1IteratesVector.html#a930afb4888ed8686152db28e79c7b3d8',1,'Ipopt::IteratesVector']]], - ['create_5fnew_5fv_5fl_224',['create_new_v_L',['../classIpopt_1_1IteratesVector.html#a20cfb87372260ea97106d264245d3d4f',1,'Ipopt::IteratesVector']]], - ['create_5fnew_5fv_5fl_5fcopy_225',['create_new_v_L_copy',['../classIpopt_1_1IteratesVector.html#a1b769b78f39dfed6650911a16247c20c',1,'Ipopt::IteratesVector']]], - ['create_5fnew_5fv_5fu_226',['create_new_v_U',['../classIpopt_1_1IteratesVector.html#a9aa43437a268d8915bd879f14a99d4d9',1,'Ipopt::IteratesVector']]], - ['create_5fnew_5fv_5fu_5fcopy_227',['create_new_v_U_copy',['../classIpopt_1_1IteratesVector.html#ab0abeec44104c7943611ac1d1eebde4a',1,'Ipopt::IteratesVector']]], - ['create_5fnew_5fx_228',['create_new_x',['../classIpopt_1_1IteratesVector.html#a568e147d0a3816631d73fbda87fa2fd3',1,'Ipopt::IteratesVector']]], - ['create_5fnew_5fx_5fcopy_229',['create_new_x_copy',['../classIpopt_1_1IteratesVector.html#a9ac70247bdcfc2b31688f96c641b51c5',1,'Ipopt::IteratesVector']]], - ['create_5fnew_5fy_5fc_230',['create_new_y_c',['../classIpopt_1_1IteratesVector.html#a7bdcd0f377a3033be07fb2d17fb90fb0',1,'Ipopt::IteratesVector']]], - ['create_5fnew_5fy_5fc_5fcopy_231',['create_new_y_c_copy',['../classIpopt_1_1IteratesVector.html#a16080aeecdf8ef12153084ec75aa7214',1,'Ipopt::IteratesVector']]], - ['create_5fnew_5fy_5fd_232',['create_new_y_d',['../classIpopt_1_1IteratesVector.html#a24dde11b3b341ec320c9fca9843b2b6a',1,'Ipopt::IteratesVector']]], - ['create_5fnew_5fy_5fd_5fcopy_233',['create_new_y_d_copy',['../classIpopt_1_1IteratesVector.html#aa58303b138952fa511613d7a56a27721',1,'Ipopt::IteratesVector']]], - ['create_5fnew_5fz_5fl_234',['create_new_z_L',['../classIpopt_1_1IteratesVector.html#a30a46cc30c1552e1d59f9c383703f323',1,'Ipopt::IteratesVector']]], - ['create_5fnew_5fz_5fl_5fcopy_235',['create_new_z_L_copy',['../classIpopt_1_1IteratesVector.html#ab752081932edc031591500ca041e2df0',1,'Ipopt::IteratesVector']]], - ['create_5fnew_5fz_5fu_236',['create_new_z_U',['../classIpopt_1_1IteratesVector.html#a55e145e17adf1c9564bf6470ae3c68ef',1,'Ipopt::IteratesVector']]], - ['create_5fnew_5fz_5fu_5fcopy_237',['create_new_z_U_copy',['../classIpopt_1_1IteratesVector.html#a17a4aa517ee8e75777077549164a3047',1,'Ipopt::IteratesVector']]], - ['createaugmentedspace_238',['CreateAugmentedSpace',['../classIpopt_1_1StdAugSystemSolver.html#ae988e218b282e4cbc7ba030f59ffc062',1,'Ipopt::StdAugSystemSolver']]], - ['createaugmentedsystem_239',['CreateAugmentedSystem',['../classIpopt_1_1StdAugSystemSolver.html#ad9edf293cf243ed60ce63190f975abae',1,'Ipopt::StdAugSystemSolver']]], - ['createblockfromspace_240',['CreateBlockFromSpace',['../classIpopt_1_1CompoundMatrix.html#a053353e6b71409766118ef974e430ba1',1,'Ipopt::CompoundMatrix']]], - ['createipoptproblem_241',['createipoptproblem',['../classorg_1_1coinor_1_1Ipopt.html#ad3e70c3f0c045077b086199f7a7b5a19',1,'org.coinor.Ipopt.CreateIpoptProblem()'],['../IpStdCInterface_8h.html#ad1c7c5bba4e9ca11142b12c1d434764e',1,'CreateIpoptProblem(): IpStdCInterface.h']]], - ['csr_5fformat_5f0_5foffset_242',['CSR_Format_0_Offset',['../classIpopt_1_1SparseSymLinearSolverInterface.html#ab41b34870b99ed44069b00fccead7c14a9520e61f42d759dd43457ea9bb0b9b14',1,'Ipopt::SparseSymLinearSolverInterface']]], - ['csr_5fformat_5f1_5foffset_243',['CSR_Format_1_Offset',['../classIpopt_1_1SparseSymLinearSolverInterface.html#ab41b34870b99ed44069b00fccead7c14a6ec58bbddc3371494ce6e17ed926c7f3',1,'Ipopt::SparseSymLinearSolverInterface']]], - ['csr_5ffull_5fformat_5f0_5foffset_244',['CSR_Full_Format_0_Offset',['../classIpopt_1_1SparseSymLinearSolverInterface.html#ab41b34870b99ed44069b00fccead7c14ae633f0ae2434c6d4461cbe23fd641fd2',1,'Ipopt::SparseSymLinearSolverInterface']]], - ['csr_5ffull_5fformat_5f1_5foffset_245',['CSR_Full_Format_1_Offset',['../classIpopt_1_1SparseSymLinearSolverInterface.html#ab41b34870b99ed44069b00fccead7c14a1ccf57e194d3f8c8e9fa750e3797f4bf',1,'Ipopt::SparseSymLinearSolverInterface']]], - ['curr_246',['curr',['../classIpopt_1_1IpoptData.html#a7ea3aeb9b62b340f7671d61b88a9b056',1,'Ipopt::IpoptData']]], - ['curr_5f_247',['curr_',['../classIpopt_1_1IpoptData.html#a5b815f4715fcfee5b3b2f67d4e290487',1,'Ipopt::IpoptData']]], - ['curr_5fadded_5fy_5fnrm2_248',['curr_added_y_nrm2',['../classIpopt_1_1CGPenaltyCq.html#ac5b7340016d90881df3d598481d05b60',1,'Ipopt::CGPenaltyCq']]], - ['curr_5fadded_5fy_5fnrm2_5fcache_5f_249',['curr_added_y_nrm2_cache_',['../classIpopt_1_1CGPenaltyCq.html#a549f37ad03aca7f92f7936eddc4534e9',1,'Ipopt::CGPenaltyCq']]], - ['curr_5fav_5fc_5f_250',['curr_Av_c_',['../classIpopt_1_1InexactPDTerminationTester.html#a533f1698e65402664b11cb133d4bcbba',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fav_5fd_5f_251',['curr_Av_d_',['../classIpopt_1_1InexactPDTerminationTester.html#a79f4f0cf01aa5589d3658a72dafe1d88',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fav_5fnorm_5f_252',['curr_Av_norm_',['../classIpopt_1_1InexactPDTerminationTester.html#a9a0e065ce339095f483a273381ef406e',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5favrg_5fcompl_253',['curr_avrg_compl',['../classIpopt_1_1IpoptCalculatedQuantities.html#aec6017c0d5f413c4589e869d8a034733',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5favrg_5fcompl_5fcache_5f_254',['curr_avrg_compl_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a65662db722297207785a74c690471a06',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fbarrier_5ferror_255',['curr_barrier_error',['../classIpopt_1_1IpoptCalculatedQuantities.html#a67b3df827a640b41e21925d4b125c58b',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fbarrier_5ferror_5fcache_5f_256',['curr_barrier_error_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aab5d523c1ff9b85dcc6d9734fb9a9c41',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fbarrier_5fobj_257',['curr_barrier_obj',['../classIpopt_1_1IpoptCalculatedQuantities.html#a9571ea265eb93444895d0df4106d7359',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fbarrier_5fobj_5fcache_5f_258',['curr_barrier_obj_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a4d315ad36a9ec9c6325c680f1a3ca7f0',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fc_259',['curr_c',['../classIpopt_1_1IpoptCalculatedQuantities.html#a990ea563ebb8bb9dc63fbb4875e43531',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fc_5famax_5f_260',['curr_c_amax_',['../classIpopt_1_1QualityFunctionMuOracle.html#a85ac4bc3fdd8029d3350d6b75ffca573',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fc_5fasum_5f_261',['curr_c_asum_',['../classIpopt_1_1QualityFunctionMuOracle.html#aac1d16433140c2995b5d109500138c10',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fc_5fcache_5f_262',['curr_c_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ac12d66565a37a2cb00ca87e1be5207c7',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fc_5fnrm2_5f_263',['curr_c_nrm2_',['../classIpopt_1_1QualityFunctionMuOracle.html#ab09228071156a4c8157daff591543891',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fcentrality_5fmeasure_264',['curr_centrality_measure',['../classIpopt_1_1IpoptCalculatedQuantities.html#a1a96247afeb8a8189fe5ea4f00ca05af',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fcentrality_5fmeasure_5fcache_5f_265',['curr_centrality_measure_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a40f668a395ca39d3abbae430860b6c13',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fcg_5fpert_5ffact_266',['curr_cg_pert_fact',['../classIpopt_1_1CGPenaltyCq.html#abf594b321357ac3b9dfa0cc97db9777a',1,'Ipopt::CGPenaltyCq']]], - ['curr_5fcg_5fpert_5ffact_5fcache_5f_267',['curr_cg_pert_fact_cache_',['../classIpopt_1_1CGPenaltyCq.html#a93bc3b92335985ec97bb7825d325bd0d',1,'Ipopt::CGPenaltyCq']]], - ['curr_5fcompl_5fs_5fl_268',['curr_compl_s_L',['../classIpopt_1_1IpoptCalculatedQuantities.html#a5a06320f4ddffeaea8a47a42e735bae9',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fcompl_5fs_5fl_5fcache_5f_269',['curr_compl_s_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aa657f70dccea71d646b583d34ecac93f',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fcompl_5fs_5fu_270',['curr_compl_s_U',['../classIpopt_1_1IpoptCalculatedQuantities.html#a22ea915ea70a82a7f9468bcb739a06e3',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fcompl_5fs_5fu_5fcache_5f_271',['curr_compl_s_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a1af03f7e2b5f896e4603be8608dc6fa5',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fcompl_5fx_5fl_272',['curr_compl_x_L',['../classIpopt_1_1IpoptCalculatedQuantities.html#a1cc3ea5c851a1aa3f283c342f32703f1',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fcompl_5fx_5fl_5fcache_5f_273',['curr_compl_x_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ad82d662107b2538ec556cbf008663486',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fcompl_5fx_5fu_274',['curr_compl_x_U',['../classIpopt_1_1IpoptCalculatedQuantities.html#a80661967370856a24e27b0a749e92f20',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fcompl_5fx_5fu_5fcache_5f_275',['curr_compl_x_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#af154b4f264b8f422ed8dfa166b71be0d',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fcomplementarity_276',['curr_complementarity',['../classIpopt_1_1IpoptCalculatedQuantities.html#aee0f1a75aee872b9d38ddd23ac527c91',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fcomplementarity_5fcache_5f_277',['curr_complementarity_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#afb4349c30671ac01dbcca61ca52505cc',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fconstraint_5fviolation_278',['curr_constraint_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a534ad0a9a79ee15921ed81eae94255fc',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fconstraint_5fviolation_5fcache_5f_279',['curr_constraint_violation_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a06e070a29e3b2f6082454ad544bd459d',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fd_280',['curr_d',['../classIpopt_1_1IpoptCalculatedQuantities.html#a79f95bd364f30db3eb27485d7501f7de',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fd_5fcache_5f_281',['curr_d_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#abd1d6030c68c69bdaa8382bc81ced0e0',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fd_5fminus_5fs_282',['curr_d_minus_s',['../classIpopt_1_1IpoptCalculatedQuantities.html#adbb5f5dfd4ffbba79b371e5c76918112',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fd_5fminus_5fs_5famax_5f_283',['curr_d_minus_s_amax_',['../classIpopt_1_1QualityFunctionMuOracle.html#ada3fa499f855d76d125ab378c2a37923',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fd_5fminus_5fs_5fasum_5f_284',['curr_d_minus_s_asum_',['../classIpopt_1_1QualityFunctionMuOracle.html#acbae01688d1e5da56eed73f0ca662152',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fd_5fminus_5fs_5fcache_5f_285',['curr_d_minus_s_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a3191551e295971ec110d24501c503308',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fd_5fminus_5fs_5fnrm2_5f_286',['curr_d_minus_s_nrm2_',['../classIpopt_1_1QualityFunctionMuOracle.html#a38c3868ae9824305685fa856498e18e1',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fdirect_5fderiv_5fpenalty_5ffunction_287',['curr_direct_deriv_penalty_function',['../classIpopt_1_1CGPenaltyCq.html#af9d4b533d02c7ff46e111f8133ff4dd2',1,'Ipopt::CGPenaltyCq']]], - ['curr_5fdirect_5fderiv_5fpenalty_5ffunction_5fcache_5f_288',['curr_direct_deriv_penalty_function_cache_',['../classIpopt_1_1CGPenaltyCq.html#a1028ea1e9e635c44f9710c8f66ca312f',1,'Ipopt::CGPenaltyCq']]], - ['curr_5fdr_5fx_5f_289',['curr_DR_x_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#af91acff1d8121c05414463d5ff29c5a3',1,'Ipopt::LimMemQuasiNewtonUpdater']]], - ['curr_5fdr_5fx_5ftag_5f_290',['curr_DR_x_tag_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a7d14331c82d5cb7136fcb6a224131cf1',1,'Ipopt::LimMemQuasiNewtonUpdater']]], - ['curr_5fdual_5ffrac_5fto_5fthe_5fbound_291',['curr_dual_frac_to_the_bound',['../classIpopt_1_1IpoptCalculatedQuantities.html#a2bf34ab49a27a64b383bad5affd0b28a',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fdual_5finfeasibility_292',['curr_dual_infeasibility',['../classIpopt_1_1IpoptCalculatedQuantities.html#ae13fca31adaf2bcc6d1e7179a46726e4',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fdual_5finfeasibility_5fcache_5f_293',['curr_dual_infeasibility_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a479e175cdf16a8de25f6acc7700b91e0',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5feta_5f_294',['curr_eta_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a789105608badbec4cef9a15812443cbe',1,'Ipopt::LimMemQuasiNewtonUpdater::curr_eta_'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#ae0d9ea62a79ee3bd3965d181c59b0b34',1,'Ipopt::CGPenaltyLSAcceptor::curr_eta_']]], - ['curr_5fexact_5fhessian_295',['curr_exact_hessian',['../classIpopt_1_1IpoptCalculatedQuantities.html#ad410bc29a097364ec91c8b6528c15724',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fexact_5fhessian_5fcache_5f_296',['curr_exact_hessian_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a38dcf1b87176afc273819afc224bfa68',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5ff_297',['curr_f',['../classIpopt_1_1IpoptCalculatedQuantities.html#a833ef14b9ab4f76188d4b4ceac134eea',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5ff_5fcache_5f_298',['curr_f_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aa270c37f85fc81a576cfb5b430bf7e6d',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5ffast_5fdirect_5fderiv_5fpenalty_5ffunction_299',['curr_fast_direct_deriv_penalty_function',['../classIpopt_1_1CGPenaltyCq.html#a5e4e93c0fae398159331f1c32442c830',1,'Ipopt::CGPenaltyCq']]], - ['curr_5ffast_5fdirect_5fderiv_5fpenalty_5ffunction_5fcache_5f_300',['curr_fast_direct_deriv_penalty_function_cache_',['../classIpopt_1_1CGPenaltyCq.html#a0cf10a096053e7c7a7f83e67f07f60e4',1,'Ipopt::CGPenaltyCq']]], - ['curr_5fgrad_5fbarrier_5fobj_5fs_301',['curr_grad_barrier_obj_s',['../classIpopt_1_1IpoptCalculatedQuantities.html#aaf7b80e152a26a8f73f466fe42f2222b',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5fbarrier_5fobj_5fs_5f_302',['curr_grad_barrier_obj_s_',['../classIpopt_1_1InexactPDTerminationTester.html#a3e18f2cdc2a73cae2ae9b3e0e0fdd9c8',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fgrad_5fbarrier_5fobj_5fs_5fcache_5f_303',['curr_grad_barrier_obj_s_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aeddcb989dcac80e63433f715b407f830',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5fbarrier_5fobj_5fx_304',['curr_grad_barrier_obj_x',['../classIpopt_1_1IpoptCalculatedQuantities.html#ab7051a31a06e1bcc6c7d7003b1bc17fc',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5fbarrier_5fobj_5fx_5f_305',['curr_grad_barrier_obj_x_',['../classIpopt_1_1InexactPDTerminationTester.html#ad7d14bd528ad73b056736a2376446634',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fgrad_5fbarrier_5fobj_5fx_5fcache_5f_306',['curr_grad_barrier_obj_x_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a3e814e69d9f81f9cb8f94da08cd6424b',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5ff_307',['curr_grad_f',['../classIpopt_1_1IpoptCalculatedQuantities.html#a0719468a54ada582f4ceae2a17b21363',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5ff_5fcache_5f_308',['curr_grad_f_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a617fdb6e08dddb832a5b640c347c7eb6',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5flag_5fs_309',['curr_grad_lag_s',['../classIpopt_1_1IpoptCalculatedQuantities.html#aef9a057211891ffd6dc95ffb9a247a2f',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5flag_5fs_5famax_5f_310',['curr_grad_lag_s_amax_',['../classIpopt_1_1QualityFunctionMuOracle.html#a24806d4cd798f21928efd68df0f7f41d',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fgrad_5flag_5fs_5fasum_5f_311',['curr_grad_lag_s_asum_',['../classIpopt_1_1QualityFunctionMuOracle.html#a411f905bb519c21a01e7d37379102e16',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fgrad_5flag_5fs_5fcache_5f_312',['curr_grad_lag_s_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aadb0ffa18bf23551bfe7438d063d6a9e',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5flag_5fs_5fnrm2_5f_313',['curr_grad_lag_s_nrm2_',['../classIpopt_1_1QualityFunctionMuOracle.html#aaa1c72eeeb4c0d2e7b79390d5b91fb76',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fgrad_5flag_5fwith_5fdamping_5fs_314',['curr_grad_lag_with_damping_s',['../classIpopt_1_1IpoptCalculatedQuantities.html#afe9fd17bfc46b552c4dc7188d3050416',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5flag_5fwith_5fdamping_5fs_5fcache_5f_315',['curr_grad_lag_with_damping_s_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#af6ea564a2947d32944cff1c6deec3674',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5flag_5fwith_5fdamping_5fx_316',['curr_grad_lag_with_damping_x',['../classIpopt_1_1IpoptCalculatedQuantities.html#adb0aef27b76163e4261cf7c90c5d3447',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5flag_5fwith_5fdamping_5fx_5fcache_5f_317',['curr_grad_lag_with_damping_x_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a27754aa0141619ea0e2639bdce1b5000',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5flag_5fx_318',['curr_grad_lag_x',['../classIpopt_1_1IpoptCalculatedQuantities.html#adc19aae1bf180ebcac35a4192f47d5a0',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5flag_5fx_5famax_5f_319',['curr_grad_lag_x_amax_',['../classIpopt_1_1QualityFunctionMuOracle.html#ad7815e200e45bef37fe919fb7de6059d',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fgrad_5flag_5fx_5fasum_5f_320',['curr_grad_lag_x_asum_',['../classIpopt_1_1QualityFunctionMuOracle.html#a807bd37209e373962f6f3e7ba22fef48',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fgrad_5flag_5fx_5fcache_5f_321',['curr_grad_lag_x_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#adfe46b91ad1608d0a218d0be4d23a6d8',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5flag_5fx_5fnrm2_5f_322',['curr_grad_lag_x_nrm2_',['../classIpopt_1_1QualityFunctionMuOracle.html#afdeb5885c1636b7b524d01d02f0f85e9',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fgradbarrtdelta_323',['curr_gradBarrTDelta',['../classIpopt_1_1IpoptCalculatedQuantities.html#a82669a2e5a40036a8c3e596f7ec6ca74',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgradbarrtdelta_5fcache_5f_324',['curr_gradBarrTDelta_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a416117ba0957fe81cb5b4b2aa3fabcce',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5fc_325',['curr_jac_c',['../classIpopt_1_1IpoptCalculatedQuantities.html#a1ba77f82a5012771573f93bd18d30fe9',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5fc_5f_326',['curr_jac_c_',['../classIpopt_1_1InexactPDTerminationTester.html#a990d4c13be65eab04eaabdcfa333fa97',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fjac_5fc_5fcache_5f_327',['curr_jac_c_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ab041cf84cc44927f63b22a12e31bfed4',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5fc_5ftimes_5fvec_328',['curr_jac_c_times_vec',['../classIpopt_1_1IpoptCalculatedQuantities.html#a33b090324bc61917b62d9abfcc021913',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5fc_5ftimes_5fvec_5fcache_5f_329',['curr_jac_c_times_vec_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#af95e63b226e5e76411afba79046626e8',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5fcd_5fnorm_330',['curr_jac_cd_norm',['../classIpopt_1_1CGPenaltyCq.html#a1b7ae857feec1ac7706da2bd5f82db48',1,'Ipopt::CGPenaltyCq']]], - ['curr_5fjac_5fcd_5fnorm_5fcache_5f_331',['curr_jac_cd_norm_cache_',['../classIpopt_1_1CGPenaltyCq.html#a4f5c08c3a59c3c45934eeb57800d2910',1,'Ipopt::CGPenaltyCq']]], - ['curr_5fjac_5fcdt_5ftimes_5fcurr_5fcdminuss_332',['curr_jac_cdT_times_curr_cdminuss',['../classIpopt_1_1InexactCq.html#a14643e207455afa931b81795112fef22',1,'Ipopt::InexactCq']]], - ['curr_5fjac_5fcdt_5ftimes_5fcurr_5fcdminuss_5fcache_5f_333',['curr_jac_cdT_times_curr_cdminuss_cache_',['../classIpopt_1_1InexactCq.html#a688def427878e282d6e12665c72b2c94',1,'Ipopt::InexactCq']]], - ['curr_5fjac_5fct_5ftimes_5fcurr_5fy_5fc_334',['curr_jac_cT_times_curr_y_c',['../classIpopt_1_1IpoptCalculatedQuantities.html#a11e83757d902c55be4012546f90df00d',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5fct_5ftimes_5fvec_335',['curr_jac_cT_times_vec',['../classIpopt_1_1IpoptCalculatedQuantities.html#a3390c044d19073df7cc757490d2075a7',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5fct_5ftimes_5fvec_5fcache_5f_336',['curr_jac_cT_times_vec_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ad78fa39580d04e6a6bf39b33f762e2a2',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5fd_337',['curr_jac_d',['../classIpopt_1_1IpoptCalculatedQuantities.html#ac8a2e5f39f67f62baded02e4e395afce',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5fd_5f_338',['curr_jac_d_',['../classIpopt_1_1InexactPDTerminationTester.html#aa251df881dd54c49bf2edb392eb28628',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fjac_5fd_5fcache_5f_339',['curr_jac_d_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a7b502771b609db821c80c93efa7f0a84',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5fd_5ftimes_5fvec_340',['curr_jac_d_times_vec',['../classIpopt_1_1IpoptCalculatedQuantities.html#ad11d07fd5d7e4a14ef2eb18e0b9f9abe',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5fd_5ftimes_5fvec_5fcache_5f_341',['curr_jac_d_times_vec_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aa59ff8e3cf470fdd5416700d4fed3742',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5fdt_5ftimes_5fcurr_5fy_5fd_342',['curr_jac_dT_times_curr_y_d',['../classIpopt_1_1IpoptCalculatedQuantities.html#a8a64f5047c8601ed81adac689a43e4c0',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5fdt_5ftimes_5fvec_343',['curr_jac_dT_times_vec',['../classIpopt_1_1IpoptCalculatedQuantities.html#ac40c4159127098383127c797e3511b84',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5fdt_5ftimes_5fvec_5fcache_5f_344',['curr_jac_dT_times_vec_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a0d5c78b9b23d87d3f879716a8b8dc174',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5ftimes_5fnormal_5fc_345',['curr_jac_times_normal_c',['../classIpopt_1_1InexactCq.html#a8d22e75e6642ecd887f858d6b18c3778',1,'Ipopt::InexactCq']]], - ['curr_5fjac_5ftimes_5fnormal_5fc_5fcache_5f_346',['curr_jac_times_normal_c_cache_',['../classIpopt_1_1InexactCq.html#a8bb036c1876977b67416cfe7cd19b382',1,'Ipopt::InexactCq']]], - ['curr_5fjac_5ftimes_5fnormal_5fd_347',['curr_jac_times_normal_d',['../classIpopt_1_1InexactCq.html#a4b707544616374d2300218b641c8e2b8',1,'Ipopt::InexactCq']]], - ['curr_5fjac_5ftimes_5fnormal_5fd_5fcache_5f_348',['curr_jac_times_normal_d_cache_',['../classIpopt_1_1InexactCq.html#a1e504bf9fe4dfd0800fc2ab4dda75c19',1,'Ipopt::InexactCq']]], - ['curr_5fkkt_5fpenalty_349',['curr_kkt_penalty',['../classIpopt_1_1CGPenaltyData.html#aeab7fb727196b03c685a8f05bf100902',1,'Ipopt::CGPenaltyData']]], - ['curr_5fkkt_5fpenalty_5f_350',['curr_kkt_penalty_',['../classIpopt_1_1CGPenaltyData.html#a17a6857b64824e469885de81babae114',1,'Ipopt::CGPenaltyData']]], - ['curr_5flm_5fmemory_5f_351',['curr_lm_memory_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#ac6d2c7e8ceee3996c32041e7eb91bb89',1,'Ipopt::LimMemQuasiNewtonUpdater']]], - ['curr_5flm_5fmemory_5fold_5f_352',['curr_lm_memory_old_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#af68441d4e1f531996c893ef537aefdd2',1,'Ipopt::LimMemQuasiNewtonUpdater']]], - ['curr_5fmu_353',['curr_mu',['../classIpopt_1_1IpoptData.html#ad83f966070811d55a0c5887df1a854bb',1,'Ipopt::IpoptData']]], - ['curr_5fmu_5f_354',['curr_mu_',['../classIpopt_1_1IpoptData.html#aa5fb035f34a5412776d2ce410a27cb80',1,'Ipopt::IpoptData']]], - ['curr_5fnabla_5fphi_5fplus_5faty_5fs_5f_355',['curr_nabla_phi_plus_ATy_s_',['../classIpopt_1_1InexactPDTerminationTester.html#aef7b01fcc66e5820ab8e3cff5c3a2c46',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fnabla_5fphi_5fplus_5faty_5fx_5f_356',['curr_nabla_phi_plus_ATy_x_',['../classIpopt_1_1InexactPDTerminationTester.html#af6d9033f8589f48870a4017be3e7cd85',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fnlp_5fconstraint_5fviolation_357',['curr_nlp_constraint_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a106a8fa8780188ac17ed54d423212431',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fnlp_5fconstraint_5fviolation_5fcache_5f_358',['curr_nlp_constraint_violation_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a92875f2428af9b5a084e7e254f33c812',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fnlp_5ferror_359',['curr_nlp_error',['../classIpopt_1_1IpoptCalculatedQuantities.html#ab20fb63a7d6099c1f15092073665e678',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fnlp_5ferror_5fcache_5f_360',['curr_nlp_error_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ab5b5b797b3326cdf7d4c97b8c983b5e5',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fnu_361',['curr_nu',['../classIpopt_1_1InexactData.html#a6f4118f784916f9e7e36994b59f63651',1,'Ipopt::InexactData']]], - ['curr_5fnu_5f_362',['curr_nu_',['../classIpopt_1_1InexactData.html#aa17e4841f52eba662a010ff4332da39c',1,'Ipopt::InexactData']]], - ['curr_5fobj_5fval_5f_363',['curr_obj_val_',['../classIpopt_1_1OptimalityErrorConvergenceCheck.html#af8adfd264e51395eb9d1f9801f2283fd',1,'Ipopt::OptimalityErrorConvergenceCheck']]], - ['curr_5fomega_5f_364',['curr_omega_',['../classIpopt_1_1InexactDoglegNormalStep.html#a8c1e9351a207d032c2a09e6934a6b4b0',1,'Ipopt::InexactDoglegNormalStep']]], - ['curr_5forig_5fbounds_5fviol_5fcache_5f_365',['curr_orig_bounds_viol_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a29a351f65952aefcb449af85b7e64c0b',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5forig_5fbounds_5fviolation_366',['curr_orig_bounds_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#aae6eafe2ef938576f1980689fa87ddbd',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5forig_5fx_5fl_5fviol_5fcache_5f_367',['curr_orig_x_L_viol_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ae3535e60d0135d86f8a875ed383717ea',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5forig_5fx_5fl_5fviolation_368',['curr_orig_x_L_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#aa8beace2eb6708487b966c8fc2e92152',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5forig_5fx_5fu_5fviol_5fcache_5f_369',['curr_orig_x_U_viol_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#addd320df9f0d62d6325339eccdd970ee',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5forig_5fx_5fu_5fviolation_370',['curr_orig_x_U_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a37c2a900a34b67a86f4a136ddbc57349',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fpenalty_371',['curr_penalty',['../classIpopt_1_1CGPenaltyData.html#a9b60d1d9f836327c167c7659f9e4ba28',1,'Ipopt::CGPenaltyData']]], - ['curr_5fpenalty_5f_372',['curr_penalty_',['../classIpopt_1_1CGPenaltyData.html#a837271eeb7b684a39bb9fc06f06a5e4f',1,'Ipopt::CGPenaltyData']]], - ['curr_5fpenalty_5ffunction_373',['curr_penalty_function',['../classIpopt_1_1CGPenaltyCq.html#a188df00cd62762e42aee385be9ee75e7',1,'Ipopt::CGPenaltyCq']]], - ['curr_5fpenalty_5ffunction_5fcache_5f_374',['curr_penalty_function_cache_',['../classIpopt_1_1CGPenaltyCq.html#adcb60f4a9b3d9d6eb1a410057531eda2',1,'Ipopt::CGPenaltyCq']]], - ['curr_5fpenalty_5fpert_5f_375',['curr_penalty_pert_',['../classIpopt_1_1CGPenaltyData.html#ad8efc1158b392b6ebab565c43cb423c0',1,'Ipopt::CGPenaltyData']]], - ['curr_5fprimal_5fdual_5fsystem_5ferror_376',['curr_primal_dual_system_error',['../classIpopt_1_1IpoptCalculatedQuantities.html#aa92584447da99f61e6aea6b1d78cf44f',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fprimal_5fdual_5fsystem_5ferror_5fcache_5f_377',['curr_primal_dual_system_error_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a3f1ce712ff18e3a4684ed897b1916c57',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fprimal_5ffrac_5fto_5fthe_5fbound_378',['curr_primal_frac_to_the_bound',['../classIpopt_1_1IpoptCalculatedQuantities.html#a0e42cb890e246699c7229e34a77c30d5',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fprimal_5finfeasibility_379',['curr_primal_infeasibility',['../classIpopt_1_1IpoptCalculatedQuantities.html#a487a12052eeb0fd18f15f2c240ad6a1e',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fprimal_5finfeasibility_5fcache_5f_380',['curr_primal_infeasibility_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aad0706dc464cf3b333bced55547cf90f',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fred_5fdr_5fx_5f_381',['curr_red_DR_x_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a5d1d56994acb3a1c934f4b73d96ffd3e',1,'Ipopt::LimMemQuasiNewtonUpdater']]], - ['curr_5frelaxed_5fcompl_5fs_5fl_382',['curr_relaxed_compl_s_L',['../classIpopt_1_1IpoptCalculatedQuantities.html#a2727965fa38b6c7fe9c549e55a232d3d',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5frelaxed_5fcompl_5fs_5fl_5fcache_5f_383',['curr_relaxed_compl_s_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#af277b79a8d7ccbbb3761328926648b11',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5frelaxed_5fcompl_5fs_5fu_384',['curr_relaxed_compl_s_U',['../classIpopt_1_1IpoptCalculatedQuantities.html#abd1e209f0c8f78beea491b466c4e8719',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5frelaxed_5fcompl_5fs_5fu_5fcache_5f_385',['curr_relaxed_compl_s_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a098cb1a995c5997ecb15cae161979f14',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5frelaxed_5fcompl_5fx_5fl_386',['curr_relaxed_compl_x_L',['../classIpopt_1_1IpoptCalculatedQuantities.html#a11a5d22df62ed70724e4df4f09a69921',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5frelaxed_5fcompl_5fx_5fl_5fcache_5f_387',['curr_relaxed_compl_x_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ace97547e7a56479c1095871e100ea180',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5frelaxed_5fcompl_5fx_5fu_388',['curr_relaxed_compl_x_U',['../classIpopt_1_1IpoptCalculatedQuantities.html#aca0b2a3d1205e9fe9f937e81b8f62885',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5frelaxed_5fcompl_5fx_5fu_5fcache_5f_389',['curr_relaxed_compl_x_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a631dc69356cbb99e613251a0ae81ab0a',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fscaled_5fa_5fnorm2_390',['curr_scaled_A_norm2',['../classIpopt_1_1InexactCq.html#a4ef979e3f1d320faf7d13b5b70e30e90',1,'Ipopt::InexactCq']]], - ['curr_5fscaled_5fac_5fnorm_391',['curr_scaled_Ac_norm',['../classIpopt_1_1InexactCq.html#a95caeb0c91737fe52bfe4435f3ef5852',1,'Ipopt::InexactCq']]], - ['curr_5fscaled_5fac_5fnorm_5fcache_5f_392',['curr_scaled_Ac_norm_cache_',['../classIpopt_1_1InexactCq.html#a074bc8e43e25c5162871f2b41e30517e',1,'Ipopt::InexactCq']]], - ['curr_5fscaled_5fy_5famax_393',['curr_scaled_y_Amax',['../classIpopt_1_1CGPenaltyCq.html#ad490d0ce62a04d97b645a3bd96d5c084',1,'Ipopt::CGPenaltyCq']]], - ['curr_5fscaled_5fy_5famax_5fcache_5f_394',['curr_scaled_y_Amax_cache_',['../classIpopt_1_1CGPenaltyCq.html#a1fe140182e98d7c5c1c3608783487c59',1,'Ipopt::CGPenaltyCq']]], - ['curr_5fscaling_5fslacks_395',['curr_scaling_slacks',['../classIpopt_1_1InexactCq.html#aad99afc70e5b5e3cf7e5ac1d5af828b3',1,'Ipopt::InexactCq']]], - ['curr_5fscaling_5fslacks_5f_396',['curr_scaling_slacks_',['../classIpopt_1_1InexactPDTerminationTester.html#af3f9983d27a06ce24e29f9f9c32f70b0',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fscaling_5fslacks_5fcache_5f_397',['curr_scaling_slacks_cache_',['../classIpopt_1_1InexactCq.html#abf2a87e5bcdf762f01f83e414d7ce366',1,'Ipopt::InexactCq']]], - ['curr_5fsigma_5fs_398',['curr_sigma_s',['../classIpopt_1_1IpoptCalculatedQuantities.html#a7cc20b27d8c19ff3e8d967bf87fc15ea',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fsigma_5fs_5fcache_5f_399',['curr_sigma_s_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a7c8d43c61450299984ecbac622dae6b1',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fsigma_5fx_400',['curr_sigma_x',['../classIpopt_1_1IpoptCalculatedQuantities.html#a60dd0ea443df3f520da6048264ea17e8',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fsigma_5fx_5fcache_5f_401',['curr_sigma_x_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a19ece31b15c6f4df41e81bcef714f464',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fslack_5fs_5fl_402',['curr_slack_s_L',['../classIpopt_1_1IpoptCalculatedQuantities.html#a907b3eabd576d35e93d8449f2f7c322d',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fslack_5fs_5fl_5f_403',['curr_slack_s_L_',['../classIpopt_1_1QualityFunctionMuOracle.html#aa6d861ee351f8b2019ce20bb3e144660',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fslack_5fs_5fl_5fcache_5f_404',['curr_slack_s_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a191032c5bd17983a7d455c1e373304a0',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fslack_5fs_5fu_405',['curr_slack_s_U',['../classIpopt_1_1IpoptCalculatedQuantities.html#a63ed9bf5f4d2805df359eb8d04bf997f',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fslack_5fs_5fu_5f_406',['curr_slack_s_U_',['../classIpopt_1_1QualityFunctionMuOracle.html#a4932f1243bd17528d058f02f7cfe5041',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fslack_5fs_5fu_5fcache_5f_407',['curr_slack_s_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#af2e2874dfc5e374b9ebaecac05e10b15',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fslack_5fscaled_5fd_5fminus_5fs_408',['curr_slack_scaled_d_minus_s',['../classIpopt_1_1InexactCq.html#a50961fe5820ee18ef960ac7e8de48a5f',1,'Ipopt::InexactCq']]], - ['curr_5fslack_5fscaled_5fd_5fminus_5fs_5fcache_5f_409',['curr_slack_scaled_d_minus_s_cache_',['../classIpopt_1_1InexactCq.html#a8dd2f70ab5a6235bbda16f417d8c29e1',1,'Ipopt::InexactCq']]], - ['curr_5fslack_5fx_5fl_410',['curr_slack_x_L',['../classIpopt_1_1IpoptCalculatedQuantities.html#a9045fd0e5e259a2286ea6f653fe42925',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fslack_5fx_5fl_5f_411',['curr_slack_x_L_',['../classIpopt_1_1QualityFunctionMuOracle.html#adce852e8b424ad32a6789e8526dc022b',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fslack_5fx_5fl_5fcache_5f_412',['curr_slack_x_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ae62cf06417ca7db29a692a9d14a1d514',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fslack_5fx_5fu_413',['curr_slack_x_U',['../classIpopt_1_1IpoptCalculatedQuantities.html#ab25c72b0d85a835b206f37de8d69dce2',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fslack_5fx_5fu_5f_414',['curr_slack_x_U_',['../classIpopt_1_1QualityFunctionMuOracle.html#a8187ecb69b9e21f696399c174523eefd',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fslack_5fx_5fu_5fcache_5f_415',['curr_slack_x_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a86d8fa203aba0e7568d329a88e055792',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5ftau_416',['curr_tau',['../classIpopt_1_1IpoptData.html#a38addd6fa9b5e1e58889e4f593e09b2d',1,'Ipopt::IpoptData']]], - ['curr_5ftau_5f_417',['curr_tau_',['../classIpopt_1_1IpoptData.html#a935519be0f344a3fa607e7741d7bf166',1,'Ipopt::IpoptData']]], - ['curr_5ftt1_5fnorm_5f_418',['curr_tt1_norm_',['../classIpopt_1_1InexactPDTerminationTester.html#a38dd6807a0f4d36a5fc17c1c7b4ad2e2',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5ftt2_5fnorm_5f_419',['curr_tt2_norm_',['../classIpopt_1_1InexactPDTerminationTester.html#acc2d6ff998d2b26582e313bfa98c640f',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fuwu_420',['curr_uWu',['../classIpopt_1_1InexactCq.html#ad9806fd35713506085cf9d2066c30e2b',1,'Ipopt::InexactCq']]], - ['curr_5fuwu_5fcache_5f_421',['curr_uWu_cache_',['../classIpopt_1_1InexactCq.html#a3761aabe2edbe7213f4c5d97458f2c57',1,'Ipopt::InexactCq']]], - ['curr_5fv_5fl_5f_422',['curr_v_L_',['../classIpopt_1_1QualityFunctionMuOracle.html#a281abf59e3082b3c4d2849a7082cd343',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fv_5fu_5f_423',['curr_v_U_',['../classIpopt_1_1QualityFunctionMuOracle.html#ad80d5e972cc97793d36a3ac22c658f0b',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fw_5ftimes_5fvec_5fs_424',['curr_W_times_vec_s',['../classIpopt_1_1InexactCq.html#aca22104dc4c4b94808b5d6d49a25209d',1,'Ipopt::InexactCq']]], - ['curr_5fw_5ftimes_5fvec_5fs_5fcache_5f_425',['curr_W_times_vec_s_cache_',['../classIpopt_1_1InexactCq.html#a2e6ed134e4cfb9e5c3e1324b976e6650',1,'Ipopt::InexactCq']]], - ['curr_5fw_5ftimes_5fvec_5fx_426',['curr_W_times_vec_x',['../classIpopt_1_1InexactCq.html#aeb1178ffd9a44cddfdc701abcc403fdf',1,'Ipopt::InexactCq']]], - ['curr_5fw_5ftimes_5fvec_5fx_5fcache_5f_427',['curr_W_times_vec_x_cache_',['../classIpopt_1_1InexactCq.html#ab9b376d8f1860fbe5dae4031260752fb',1,'Ipopt::InexactCq']]], - ['curr_5fwu_5fs_428',['curr_Wu_s',['../classIpopt_1_1InexactCq.html#a71cb493b599db1d4224b23ae027e0b2f',1,'Ipopt::InexactCq']]], - ['curr_5fwu_5fs_5fcache_5f_429',['curr_Wu_s_cache_',['../classIpopt_1_1InexactCq.html#a4f330b8627d5e010980f7999f30d801b',1,'Ipopt::InexactCq']]], - ['curr_5fwu_5fx_430',['curr_Wu_x',['../classIpopt_1_1InexactCq.html#a824e66337e7d1a54f7327f47588e7b10',1,'Ipopt::InexactCq']]], - ['curr_5fwu_5fx_5fcache_5f_431',['curr_Wu_x_cache_',['../classIpopt_1_1InexactCq.html#a8b6e44dacfb6af243c4746802a77a0e4',1,'Ipopt::InexactCq']]], - ['curr_5fwv_5fs_5f_432',['curr_Wv_s_',['../classIpopt_1_1InexactPDTerminationTester.html#a4f5cb99bc44727ed960e2a57f3b0f329',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fwv_5fx_5f_433',['curr_Wv_x_',['../classIpopt_1_1InexactPDTerminationTester.html#a6845ca5873e785081f619e4c3c697807',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fz_5fl_5f_434',['curr_z_L_',['../classIpopt_1_1QualityFunctionMuOracle.html#afbde898bd99bb1af467eaf47540d3d7d',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fz_5fu_5f_435',['curr_z_U_',['../classIpopt_1_1QualityFunctionMuOracle.html#a515e716a8ee07ee4be3e7398dc33d1d4',1,'Ipopt::QualityFunctionMuOracle']]], - ['current_5flevel_5f_436',['current_level_',['../classIpopt_1_1SpralSolverInterface.html#a576f1c34d4ecbb4293cf825f2e3d1223',1,'Ipopt::SpralSolverInterface::current_level_'],['../classIpopt_1_1Ma97SolverInterface.html#a44e30eea06dc9831d25878d477d772c2',1,'Ipopt::Ma97SolverInterface::current_level_']]], - ['current_5fregistering_5fcategory_5f_437',['current_registering_category_',['../classIpopt_1_1RegisteredOptions.html#a24fbd66ce87e7aadb1bd9ddb868a1ec5',1,'Ipopt::RegisteredOptions']]], - ['currentisacceptable_438',['currentisacceptable',['../classIpopt_1_1OptimalityErrorConvergenceCheck.html#aab7893e5eaf9e21119e77c1bdb855af4',1,'Ipopt::OptimalityErrorConvergenceCheck::CurrentIsAcceptable()'],['../classIpopt_1_1ConvergenceCheck.html#a7de2e99804a5283d04408c32b406b95c',1,'Ipopt::ConvergenceCheck::CurrentIsAcceptable()'],['../classIpopt_1_1BacktrackingLineSearch.html#aff5362ea5f0b6d960df66ae4425dc8c1',1,'Ipopt::BacktrackingLineSearch::CurrentIsAcceptable()']]], - ['currentisbest_439',['CurrentIsBest',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a8be2d9c7f2a31cbc412209e4b650637d',1,'Ipopt::CGPenaltyLSAcceptor']]], - ['currentperturbation_440',['CurrentPerturbation',['../classIpopt_1_1PDPerturbationHandler.html#a0dcc60b1865cc2b57489136339dcad8c',1,'Ipopt::PDPerturbationHandler']]], - ['currpenaltypert_441',['CurrPenaltyPert',['../classIpopt_1_1CGPenaltyData.html#ad6b1bc2be8e81526a72b4f8cf5b37fe2',1,'Ipopt::CGPenaltyData']]], - ['curvature_20test_442',['Inertia-Free Curvature Test',['../SPECIALS.html#INERTIAFREE_CURVTEST',1,'']]], - ['custom_5fsolver_5f_443',['custom_solver_',['../classIpopt_1_1InexactAlgorithmBuilder.html#a95c18af07c34a115a71967aeabf84538',1,'Ipopt::InexactAlgorithmBuilder::custom_solver_'],['../classIpopt_1_1AlgorithmBuilder.html#a5ec5728bfc607550d2aa959ea21c0aeb',1,'Ipopt::AlgorithmBuilder::custom_solver_']]], - ['custom_5fsolver_5fname_5f_444',['custom_solver_name_',['../classIpopt_1_1AlgorithmBuilder.html#a7c46e3b2a67ff8821ade55e75d4b1f5e',1,'Ipopt::AlgorithmBuilder']]] + ['checkinterrupt_5f_79',['checkinterrupt_',['../classIpopt_1_1AmplTNLP.html#ad564603d07c46119004ef35c84fe8964',1,'Ipopt::AmplTNLP']]], + ['checkskippedlinesearch_80',['checkskippedlinesearch',['../classIpopt_1_1BacktrackingLineSearch.html#ad3aa80c41e50b2e095f0a29d38aac8fa',1,'Ipopt::BacktrackingLineSearch::CheckSkippedLineSearch()'],['../classIpopt_1_1LineSearch.html#a129fe1f77e892e9baf6a1565280afa48',1,'Ipopt::LineSearch::CheckSkippedLineSearch()']]], + ['checkskippingbfgs_81',['CheckSkippingBFGS',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a4b9776279ce5db6156b13821a855cd9d',1,'Ipopt::LimMemQuasiNewtonUpdater']]], + ['checksufficientprogress_82',['CheckSufficientProgress',['../classIpopt_1_1AdaptiveMuUpdate.html#a903db13e09f77bc8b66c76644f48f216',1,'Ipopt::AdaptiveMuUpdate']]], + ['chi_5fcup_5f_83',['chi_cup_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a867ab8b2228a0815acb9514df50712f0',1,'Ipopt::CGPenaltyLSAcceptor']]], + ['chi_5fhat_5f_84',['chi_hat_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a55736fdcefbfd45841c5ea8155a33d49',1,'Ipopt::CGPenaltyLSAcceptor']]], + ['chi_5ftilde_5f_85',['chi_tilde_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a600ec60ad2c62ae46b5bce3a0a98ee0b',1,'Ipopt::CGPenaltyLSAcceptor']]], + ['chol_86',['CHOL',['../classIpopt_1_1DenseGenMatrix.html#a58fed83a81146c2efb8e109d63c658e6ab452a616a15075962d8fe4b7cb0bf6a9',1,'Ipopt::DenseGenMatrix']]], + ['choleskybacksolvematrix_87',['CholeskyBackSolveMatrix',['../classIpopt_1_1DenseGenMatrix.html#ad5f7d959cc23be450357b0f0295b716e',1,'Ipopt::DenseGenMatrix']]], + ['choleskysolvematrix_88',['CholeskySolveMatrix',['../classIpopt_1_1DenseGenMatrix.html#a231c824d28246374c0d5c0aa4e4a4566',1,'Ipopt::DenseGenMatrix']]], + ['choleskysolvevector_89',['CholeskySolveVector',['../classIpopt_1_1DenseGenMatrix.html#a3db5c6f7e1eeb7f40ad81a9e697b0c58',1,'Ipopt::DenseGenMatrix']]], + ['cleanupinvalidatedresults_90',['CleanupInvalidatedResults',['../classIpopt_1_1CachedResults.html#a6f65c53c87a03c3045d74fbdd1af57e5',1,'Ipopt::CachedResults']]], + ['clear_91',['clear',['../classIpopt_1_1IterativeSolverTerminationTester.html#a597a3e266c808a9d5dfad2f7c0f20b7c',1,'Ipopt::IterativeSolverTerminationTester::Clear()'],['../classIpopt_1_1PiecewisePenalty.html#a863e352222e35a374ed8f38521bcf327',1,'Ipopt::PiecewisePenalty::Clear()'],['../classIpopt_1_1Filter.html#a94cf2454e0e2966b07065ba0cb7c5ac6',1,'Ipopt::Filter::Clear()'],['../classIpopt_1_1CachedResults.html#a1382321cb2355b6a06cf77ebf3dbd9c7',1,'Ipopt::CachedResults::Clear()'],['../classIpopt_1_1CachedResults.html#a9b91e184dc7a61d7b5f980fe3e427c47',1,'Ipopt::CachedResults::Clear(int max_cache_size)'],['../classIpopt_1_1InexactPDTerminationTester.html#a2277e85ac3b6a88e499cf89d6020f35b',1,'Ipopt::InexactPDTerminationTester::Clear()'],['../classIpopt_1_1InexactNormalTerminationTester.html#a5a31779337507c6fcac02fdb6fa03452',1,'Ipopt::InexactNormalTerminationTester::Clear()'],['../classIpopt_1_1OptionsList.html#ae631b2bbb67e3ac78d1560bafefc929e',1,'Ipopt::OptionsList::clear()']]], + ['clone_92',['clone',['../classIpopt_1_1IpoptApplication.html#a949bc6a1294fd4026a3a7dc8092ad75a',1,'Ipopt::IpoptApplication']]], + ['cntl_5f_93',['cntl_',['../classIpopt_1_1Ma27TSolverInterface.html#afe4299e1d2a13db4b3be5540fe614c72',1,'Ipopt::Ma27TSolverInterface']]], + ['code_94',['code',['../INSTALL.html#GETIPOPT',1,'Getting the Ipopt Code'],['../INTERFACES.html#INTERFACE_CODE',1,'Interfacing with Ipopt through code']]], + ['code_20as_20a_20tarball_95',['Getting the Ipopt code as a tarball',['../INSTALL.html#GETIPOPT_TAR',1,'']]], + ['code_20via_20git_96',['Getting the Ipopt code via git',['../INSTALL.html#GETIPOPT_GIT',1,'']]], + ['coding_20the_20executable_97',['Coding the Executable',['../INTERFACES.html#INTERFACE_CPP_MAIN',1,'']]], + ['coding_20the_20problem_20representation_98',['Coding the Problem Representation',['../INTERFACES.html#INTERFACE_CPP_NLP',1,'']]], + ['coinbrew_99',['Using CoinBrew',['../INSTALL.html#COINBREW',1,'']]], + ['cols_5f_100',['cols_',['../classIpopt_1_1IndexPCalculator.html#a73c9b88c0c77ba7723674786baac9f81',1,'Ipopt::IndexPCalculator']]], + ['column_5fscaling_5f_101',['column_scaling_',['../classIpopt_1_1ScaledMatrixSpace.html#a1046740ac352cc4a1c7c3284d3fb11a5',1,'Ipopt::ScaledMatrixSpace']]], + ['columnscaling_102',['columnscaling',['../classIpopt_1_1ScaledMatrix.html#a0891c0a55942b87cfef08037f0fe7399',1,'Ipopt::ScaledMatrix::ColumnScaling()'],['../classIpopt_1_1ScaledMatrixSpace.html#a26a348c987e9900b6397d5e575f9c4fe',1,'Ipopt::ScaledMatrixSpace::ColumnScaling()']]], + ['colvectorspace_103',['colvectorspace',['../classIpopt_1_1MultiVectorMatrix.html#a83b0006f810c72c4896945717b404e8e',1,'Ipopt::MultiVectorMatrix::ColVectorSpace()'],['../classIpopt_1_1MultiVectorMatrixSpace.html#a4f50103025e8a3ab43693e3d66c5ea58',1,'Ipopt::MultiVectorMatrixSpace::ColVectorSpace()']]], + ['command_20line_104',['Using Ipopt from the command line',['../INTERFACES.html#INTERFACE_AMPL_CL',1,'']]], + ['comp_105',['comp',['../classIpopt_1_1CompoundVector.html#a32b3b120dbd1df95d32c45fae7b61d92',1,'Ipopt::CompoundVector::Comp()'],['../classIpopt_1_1CompoundSymMatrix.html#aa812415d13285a58b29bfb48f7034588',1,'Ipopt::CompoundSymMatrix::Comp()'],['../classIpopt_1_1CompoundMatrix.html#ad7682cab8b6f06db805c0ffecf16baa4',1,'Ipopt::CompoundMatrix::Comp()']]], + ['comp_5fspaces_5f_106',['comp_spaces_',['../classIpopt_1_1CompoundVectorSpace.html#a1af6d17867673671b0057f5a2410bf9d',1,'Ipopt::CompoundVectorSpace::comp_spaces_'],['../classIpopt_1_1CompoundSymMatrixSpace.html#aae0072b61bb9c679172a903c5772f46c',1,'Ipopt::CompoundSymMatrixSpace::comp_spaces_'],['../classIpopt_1_1CompoundMatrixSpace.html#a9be1b58db439754df9dfd23acd6a5ca7',1,'Ipopt::CompoundMatrixSpace::comp_spaces_']]], + ['compare_5fle_107',['compare_le',['../namespaceIpopt.html#a744080523cc4ae02aa31f3b73804ca9c',1,'Ipopt::Compare_le()'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#a1fee19afc2551d7b389133cb10e11f7b',1,'Ipopt::CGPenaltyLSAcceptor::Compare_le()']]], + ['comparepointers_108',['ComparePointers',['../namespaceIpopt.html#a56ef77683afd4e4d8b471ce91de8272a',1,'Ipopt']]], + ['comparepriority_109',['ComparePriority',['../classIpopt_1_1RegisteredCategory_1_1ComparePriority.html',1,'Ipopt::RegisteredCategory']]], + ['compiler_20preprocessor_110',['Additional Flags for Compiler Preprocessor',['../INSTALL.html#CPP_FLAGS',1,'']]], + ['compilers_111',['Getting System Packages (Compilers, ...)',['../INSTALL.html#SYSTEMPACKAGES',1,'']]], + ['compiling_20and_20installing_20ipopt_112',['Compiling and Installing Ipopt',['../INSTALL.html#COMPILEINSTALL',1,'']]], + ['compiling_20and_20installing_20the_20r_20interface_20ipoptr_113',['Compiling and Installing the R Interface ipoptr',['../INSTALL.html#INSTALL_R',1,'']]], + ['compiling_20and_20testing_20the_20example_114',['Compiling and Testing the Example',['../INTERFACES.html#INTERFACE_CPP_COMPILE',1,'']]], + ['compl_5f_115',['compl_',['../classIpopt_1_1SolveStatistics.html#aab161fe3cedc42eec6363e53f834d71c',1,'Ipopt::SolveStatistics']]], + ['compl_5finf_5ftol_5f_116',['compl_inf_tol_',['../classIpopt_1_1OptimalityErrorConvergenceCheck.html#a62c241f4b9e248f10dada6e721f50570',1,'Ipopt::OptimalityErrorConvergenceCheck::compl_inf_tol_'],['../classIpopt_1_1MonotoneMuUpdate.html#a96158c1aeb7e63e961e149828e026e37',1,'Ipopt::MonotoneMuUpdate::compl_inf_tol_'],['../classIpopt_1_1AdaptiveMuUpdate.html#aca672ca22155030b50de1b1d16244a32',1,'Ipopt::AdaptiveMuUpdate::compl_inf_tol_']]], + ['complete_117',['complete',['../classIpopt_1_1PardisoSolverInterface.html#ac8001cd1faad8199ecfad60c0cd25daaa57a352a01c0edb7eec64054fa9c7bd54',1,'Ipopt::PardisoSolverInterface::COMPLETE'],['../classIpopt_1_1IterativePardisoSolverInterface.html#a51ed4b3910167788c69e77aeb5044cccaa20bca1c1e3dfcd9bce157719945bdd5',1,'Ipopt::IterativePardisoSolverInterface::COMPLETE'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a62f2e50b486dc70ac7277c3389aa7524abab8dbadfa171664f7c67dc1e2b17afe',1,'Ipopt::PardisoMKLSolverInterface::COMPLETE']]], + ['complete2x2_118',['complete2x2',['../classIpopt_1_1IterativePardisoSolverInterface.html#a51ed4b3910167788c69e77aeb5044ccca07ba6b01c4944bd8519b85945eb33da4',1,'Ipopt::IterativePardisoSolverInterface::COMPLETE2x2'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a62f2e50b486dc70ac7277c3389aa7524a284dd3f971eddb060512135433129c5e',1,'Ipopt::PardisoMKLSolverInterface::COMPLETE2x2'],['../classIpopt_1_1PardisoSolverInterface.html#ac8001cd1faad8199ecfad60c0cd25daaac5d113feea112d1e94dd6429dffba2e3',1,'Ipopt::PardisoSolverInterface::COMPLETE2x2']]], + ['compound_5fsol_5fvecspace_5f_119',['compound_sol_vecspace_',['../classIpopt_1_1LowRankAugSystemSolver.html#a8618b3bb0e75e3f552d18fed55e99da4',1,'Ipopt::LowRankAugSystemSolver']]], + ['compoundmatrix_120',['compoundmatrix',['../classIpopt_1_1CompoundMatrix.html',1,'Ipopt::CompoundMatrix'],['../classIpopt_1_1CompoundMatrix.html#aac2f7cecf00ebae9904c6e24eb30fc0d',1,'Ipopt::CompoundMatrix::CompoundMatrix(const CompoundMatrixSpace *owner_space)'],['../classIpopt_1_1CompoundMatrix.html#aaffafabf73244f9d281eedb46a417521',1,'Ipopt::CompoundMatrix::CompoundMatrix()'],['../classIpopt_1_1CompoundMatrix.html#ae1363b6633a14f46c1ed2b1b2a09bb8c',1,'Ipopt::CompoundMatrix::CompoundMatrix(const CompoundMatrix &)']]], + ['compoundmatrixspace_121',['compoundmatrixspace',['../classIpopt_1_1CompoundMatrixSpace.html',1,'Ipopt::CompoundMatrixSpace'],['../classIpopt_1_1CompoundMatrixSpace.html#a7f353fc5bdbc163d5e93ab03b44f6459',1,'Ipopt::CompoundMatrixSpace::CompoundMatrixSpace(const CompoundMatrixSpace &)'],['../classIpopt_1_1CompoundMatrixSpace.html#a0bf3dbb6b8e9430e4dd1bb5512f90541',1,'Ipopt::CompoundMatrixSpace::CompoundMatrixSpace()'],['../classIpopt_1_1CompoundMatrixSpace.html#a5ed02d042058051fc9852a24e9162e2a',1,'Ipopt::CompoundMatrixSpace::CompoundMatrixSpace(Index ncomps_rows, Index ncomps_cols, Index total_nRows, Index total_nCols)']]], + ['compoundsymmatrix_122',['compoundsymmatrix',['../classIpopt_1_1CompoundSymMatrix.html#ace9c39e4b3c9cd091ba581e0e2f581f9',1,'Ipopt::CompoundSymMatrix::CompoundSymMatrix()'],['../classIpopt_1_1CompoundSymMatrix.html',1,'Ipopt::CompoundSymMatrix'],['../classIpopt_1_1CompoundSymMatrix.html#ac484b6d503a63eefc3a384a39c9ea1c2',1,'Ipopt::CompoundSymMatrix::CompoundSymMatrix(const CompoundSymMatrixSpace *owner_space)'],['../classIpopt_1_1CompoundSymMatrix.html#a6681318fde7cbb75129ef0a6b1b4f12b',1,'Ipopt::CompoundSymMatrix::CompoundSymMatrix()']]], + ['compoundsymmatrixspace_123',['compoundsymmatrixspace',['../classIpopt_1_1CompoundSymMatrixSpace.html#a60daa8086de41680bfa7c8e3eed3f388',1,'Ipopt::CompoundSymMatrixSpace::CompoundSymMatrixSpace()'],['../classIpopt_1_1CompoundSymMatrixSpace.html',1,'Ipopt::CompoundSymMatrixSpace'],['../classIpopt_1_1CompoundSymMatrixSpace.html#a2937982e20628c64aa2c72de1373d5c7',1,'Ipopt::CompoundSymMatrixSpace::CompoundSymMatrixSpace()'],['../classIpopt_1_1CompoundSymMatrixSpace.html#a1570d656b975bb6ca02f7a87b81265df',1,'Ipopt::CompoundSymMatrixSpace::CompoundSymMatrixSpace(const CompoundSymMatrix &)']]], + ['compoundvector_124',['compoundvector',['../classIpopt_1_1CompoundVector.html',1,'Ipopt::CompoundVector'],['../classIpopt_1_1CompoundVector.html#adbb8fb0967f32173a053bd49a05ad097',1,'Ipopt::CompoundVector::CompoundVector(const CompoundVectorSpace *owner_space, bool create_new)'],['../classIpopt_1_1CompoundVector.html#a6143fbbc1ea26826195ec5d27d34d44d',1,'Ipopt::CompoundVector::CompoundVector()'],['../classIpopt_1_1CompoundVector.html#af51e677ac75f402244791d2ca55dac42',1,'Ipopt::CompoundVector::CompoundVector(const CompoundVector &)']]], + ['compoundvectorspace_125',['compoundvectorspace',['../classIpopt_1_1CompoundVectorSpace.html',1,'Ipopt::CompoundVectorSpace'],['../classIpopt_1_1CompoundVectorSpace.html#a1f5374c54bdf76243365c9057e063187',1,'Ipopt::CompoundVectorSpace::CompoundVectorSpace(const CompoundVectorSpace &)'],['../classIpopt_1_1CompoundVectorSpace.html#a338cfe829ce27f51ad6771802e7ac3a1',1,'Ipopt::CompoundVectorSpace::CompoundVectorSpace()'],['../classIpopt_1_1CompoundVectorSpace.html#a031fd11da6e73a1fc822258251473339',1,'Ipopt::CompoundVectorSpace::CompoundVectorSpace(Index ncomp_spaces, Index total_dim)']]], + ['compressed_5fpos_5f_126',['compressed_pos_',['../classIpopt_1_1ExpansionMatrixSpace.html#a58fe433496b726b214d74a053cdb8a85',1,'Ipopt::ExpansionMatrixSpace']]], + ['compressedposindices_127',['compressedposindices',['../classIpopt_1_1ExpansionMatrix.html#a937c66231f657ffce632c6eb84c2ea4b',1,'Ipopt::ExpansionMatrix::CompressedPosIndices()'],['../classIpopt_1_1ExpansionMatrixSpace.html#a810561df3baca06a248dcfc014a71e13',1,'Ipopt::ExpansionMatrixSpace::CompressedPosIndices()']]], + ['comps_5f_128',['comps_',['../classIpopt_1_1CompoundVector.html#a45a77bf549eafc343cb74b83c2123dae',1,'Ipopt::CompoundVector::comps_'],['../classIpopt_1_1CompoundSymMatrix.html#aa28c63b5f6e396e47bca2696b56de7ec',1,'Ipopt::CompoundSymMatrix::comps_'],['../classIpopt_1_1CompoundMatrix.html#ad5d9c245cfc65f36820fad3e59212083',1,'Ipopt::CompoundMatrix::comps_']]], + ['compute_5fcurr_5fcg_5fpenalty_129',['compute_curr_cg_penalty',['../classIpopt_1_1CGPenaltyCq.html#a6c0477464a2957c1f95c77690a0f8542',1,'Ipopt::CGPenaltyCq']]], + ['compute_5fcurr_5fcg_5fpenalty_5fscale_130',['compute_curr_cg_penalty_scale',['../classIpopt_1_1CGPenaltyCq.html#aa8f8abed0e16fb46d6f4b1c531b9b44a',1,'Ipopt::CGPenaltyCq']]], + ['compute_5fdsdp_5f_131',['compute_dsdp_',['../classIpopt_1_1SensApplication.html#af83a72c905f663e86954ffd0139553f2',1,'Ipopt::SensApplication']]], + ['compute_5feigenvalues_5f_132',['compute_eigenvalues_',['../classIpopt_1_1ReducedHessianCalculator.html#ad4e8be9c4483bcdae1e164c85bafabb0',1,'Ipopt::ReducedHessianCalculator']]], + ['compute_5fnormal_133',['compute_normal',['../classIpopt_1_1InexactData.html#a613c76007b6fe4c1570ac598e4b6cc96',1,'Ipopt::InexactData']]], + ['compute_5fnormal_5f_134',['compute_normal_',['../classIpopt_1_1InexactData.html#ae402bd2f29828f461fe49ddb24ceb9c5',1,'Ipopt::InexactData']]], + ['compute_5fred_5fhessian_5f_135',['compute_red_hessian_',['../classIpopt_1_1SensAmplTNLP.html#a667cde08f67c0d1015a54fa65c1dba9c',1,'Ipopt::SensAmplTNLP::compute_red_hessian_'],['../classIpopt_1_1SensApplication.html#a9106d751c6bc6b603e5b661dfab90b3b',1,'Ipopt::SensApplication::compute_red_hessian_']]], + ['compute_5ftau_5fmonotone_136',['Compute_tau_monotone',['../classIpopt_1_1AdaptiveMuUpdate.html#aa4d41b7607bfdfbed7382eb484409f4b',1,'Ipopt::AdaptiveMuUpdate']]], + ['computeacceptabletrialpoint_137',['computeacceptabletrialpoint',['../classIpopt_1_1TimingStatistics.html#ac31d0b143e156bf7831735ca23d2e958',1,'Ipopt::TimingStatistics::ComputeAcceptableTrialPoint()'],['../classIpopt_1_1IpoptAlgorithm.html#ad9889612609f392fb9569e25f0286624',1,'Ipopt::IpoptAlgorithm::ComputeAcceptableTrialPoint()']]], + ['computeacceptabletrialpoint_5f_138',['ComputeAcceptableTrialPoint_',['../classIpopt_1_1TimingStatistics.html#ad596a4a6ebabe05fc78f2289ac90c9d0',1,'Ipopt::TimingStatistics']]], + ['computealphafory_139',['computealphafory',['../classIpopt_1_1BacktrackingLSAcceptor.html#a21e6de5f883965c4c35a4b8754a54f62',1,'Ipopt::BacktrackingLSAcceptor::ComputeAlphaForY()'],['../classIpopt_1_1InexactLSAcceptor.html#a9354e475f7eae60c7cff30918117f1bb',1,'Ipopt::InexactLSAcceptor::ComputeAlphaForY()']]], + ['computeboundmultiplierstep_140',['ComputeBoundMultiplierStep',['../classIpopt_1_1MinC__1NrmRestorationPhase.html#a414a26e1f25829579c1c1f274b47609c',1,'Ipopt::MinC_1NrmRestorationPhase']]], + ['computecholeskyfactor_141',['ComputeCholeskyFactor',['../classIpopt_1_1DenseGenMatrix.html#a288f07fe858d3ecddcdc0c79b7225245',1,'Ipopt::DenseGenMatrix']]], + ['computecolamax_142',['ComputeColAMax',['../classIpopt_1_1Matrix.html#a0cfda747c0de5df22b89e4fa2fd55fd2',1,'Ipopt::Matrix']]], + ['computecolamaximpl_143',['computecolamaximpl',['../classIpopt_1_1TransposeMatrix.html#a05ec87ae7381b9a1a0f1f672d8137d28',1,'Ipopt::TransposeMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1SumSymMatrix.html#a832187652bf3004351e34d2bac5d5cc8',1,'Ipopt::SumSymMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1ZeroMatrix.html#acb02ae311c2af4f502aeba8f7b5df42c',1,'Ipopt::ZeroMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1ZeroSymMatrix.html#a7fac1df9e0cfea41035b4e0ecd646a8d',1,'Ipopt::ZeroSymMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1GenTMatrix.html#ada0f8d557932fed3205b1961134e8d5f',1,'Ipopt::GenTMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1SymMatrix.html#aae50167ac98f271c344df819325e0ebe',1,'Ipopt::SymMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1SumMatrix.html#af67bb4693b4077dc85a58d5b63e129c2',1,'Ipopt::SumMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1ScaledMatrix.html#a520f55d3c8c7811ace5b0ad649930c1a',1,'Ipopt::ScaledMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1MultiVectorMatrix.html#ad1eb04bd384471b81afec75e7bc6bcdb',1,'Ipopt::MultiVectorMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1Matrix.html#af09c4d60a35f688751f91b39068a5fd0',1,'Ipopt::Matrix::ComputeColAMaxImpl()'],['../classIpopt_1_1LowRankUpdateSymMatrix.html#a6f68e4708411f539f82a31eb1fa69307',1,'Ipopt::LowRankUpdateSymMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1ExpansionMatrix.html#a77b279ae205e5a131c0f42d8d5d81bf8',1,'Ipopt::ExpansionMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1ExpandedMultiVectorMatrix.html#abec98a973ca8feb469ebb2dbd5ce15ec',1,'Ipopt::ExpandedMultiVectorMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1DenseGenMatrix.html#a46dd833fc45ca12c28b91ec5d506a6fd',1,'Ipopt::DenseGenMatrix::ComputeColAMaxImpl()'],['../classIpopt_1_1CompoundMatrix.html#a7b656c12b674650946831f82150d8f32',1,'Ipopt::CompoundMatrix::ComputeColAMaxImpl()']]], + ['computedampingindicators_144',['ComputeDampingIndicators',['../classIpopt_1_1IpoptCalculatedQuantities.html#a6060409ad31c3db3c3f854384ac5c929',1,'Ipopt::IpoptCalculatedQuantities']]], + ['computeeigenvectors_145',['ComputeEigenVectors',['../classIpopt_1_1DenseGenMatrix.html#a394ee009ef9cbf7fc5145fc942ed37e7',1,'Ipopt::DenseGenMatrix']]], + ['computefeasibilitymultipliers_146',['ComputeFeasibilityMultipliers',['../classIpopt_1_1IpoptAlgorithm.html#a99eb454d723a18d0e4c67d8e80978401',1,'Ipopt::IpoptAlgorithm']]], + ['computefeasibilitymultiplierspostprocess_147',['ComputeFeasibilityMultipliersPostprocess',['../classIpopt_1_1IpoptAlgorithm.html#ab2ac20f05d0dab9ae7a89f59f9e466e0',1,'Ipopt::IpoptAlgorithm']]], + ['computelufactorinplace_148',['ComputeLUFactorInPlace',['../classIpopt_1_1DenseGenMatrix.html#adbb046b4c9df47f4e6e4e47f8a2d9d5c',1,'Ipopt::DenseGenMatrix']]], + ['computememincrease_149',['ComputeMemIncrease',['../namespaceIpopt.html#ada77edb2d8946eb154f298386514c6a3',1,'Ipopt']]], + ['computenewtonnormalstep_150',['ComputeNewtonNormalStep',['../classIpopt_1_1InexactNewtonNormalStep.html#abd28764822117a8c3226bb0ad784b636',1,'Ipopt::InexactNewtonNormalStep']]], + ['computenormalstep_151',['computenormalstep',['../classIpopt_1_1InexactDoglegNormalStep.html#aec6cf2e8b3a347529ac6145d78ff2fcd',1,'Ipopt::InexactDoglegNormalStep::ComputeNormalStep()'],['../classIpopt_1_1InexactNormalStepCalculator.html#ae52348c87632c4c46366d0e384d0afd4',1,'Ipopt::InexactNormalStepCalculator::ComputeNormalStep()']]], + ['computeoptimalityerrorscaling_152',['ComputeOptimalityErrorScaling',['../classIpopt_1_1IpoptCalculatedQuantities.html#acfb24cd34f56dcf1d2e8ae82e5657f60',1,'Ipopt::IpoptCalculatedQuantities']]], + ['computep_153',['computep',['../classIpopt_1_1PCalculator.html#ab96ecb4446515612577435d309289fe2',1,'Ipopt::PCalculator::ComputeP()'],['../classIpopt_1_1IndexPCalculator.html#a8be50af7230fc7216f788d8173f0a425',1,'Ipopt::IndexPCalculator::ComputeP()']]], + ['computereducedhessian_154',['ComputeReducedHessian',['../classIpopt_1_1ReducedHessianCalculator.html#aaa94b9be6817e9ef3a997734e8a8cbcf',1,'Ipopt::ReducedHessianCalculator']]], + ['computeresidualratio_155',['ComputeResidualRatio',['../classIpopt_1_1PDFullSpaceSolver.html#a19ef2f56268b22df56b0dffa5c0c330d',1,'Ipopt::PDFullSpaceSolver']]], + ['computeresiduals_156',['computeresiduals',['../classIpopt_1_1TimingStatistics.html#a94adc7da2f78272805db6a9bf881da55',1,'Ipopt::TimingStatistics::ComputeResiduals()'],['../classIpopt_1_1PDFullSpaceSolver.html#ac23723158d9e2fbefcf01705b060966a',1,'Ipopt::PDFullSpaceSolver::ComputeResiduals()'],['../classIpopt_1_1InexactPDSolver.html#a892f92d55ad6f51bdd2b8951541bbb47',1,'Ipopt::InexactPDSolver::ComputeResiduals()']]], + ['computeresiduals_5f_157',['ComputeResiduals_',['../classIpopt_1_1TimingStatistics.html#ae60b6894c897466145e7c5a19ef4efae',1,'Ipopt::TimingStatistics']]], + ['computerowamax_158',['ComputeRowAMax',['../classIpopt_1_1Matrix.html#ae942dfdae208e6245d0dc8cefc23b19d',1,'Ipopt::Matrix']]], + ['computerowamaximpl_159',['computerowamaximpl',['../classIpopt_1_1CompoundSymMatrix.html#a3c7647e0919f1dd142fd9f0373c1c0ca',1,'Ipopt::CompoundSymMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1DenseSymMatrix.html#a73eb2c28ba3eaa9eb6b2de24ea38ba3f',1,'Ipopt::DenseSymMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1CompoundMatrix.html#a0ad5ba42456c881d8c37ff8e8be690e6',1,'Ipopt::CompoundMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1DenseGenMatrix.html#a796186ad9306b491b4438b94a456faea',1,'Ipopt::DenseGenMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1SymTMatrix.html#a392a539a999134fc3aa9995a07ab5f1c',1,'Ipopt::SymTMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1GenTMatrix.html#a79633ceaf16c4f776a522cadfcf094cd',1,'Ipopt::GenTMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1ZeroSymMatrix.html#aeb868265d875e41da27b971b09143e24',1,'Ipopt::ZeroSymMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1ZeroMatrix.html#a070cd7db8edf819d52f63afb5f5a1faa',1,'Ipopt::ZeroMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1TransposeMatrix.html#a27a48794f2d44b672359c77d12255ad9',1,'Ipopt::TransposeMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1SymScaledMatrix.html#a762d28e3cb0eabe80ccd8e3c1a90825b',1,'Ipopt::SymScaledMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1SumSymMatrix.html#a555d91c81d93516aba9e8aac4c82818c',1,'Ipopt::SumSymMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1SumMatrix.html#ae6456067030f748e0edd21dc6d5b0f1a',1,'Ipopt::SumMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1ScaledMatrix.html#a345588ea8f474db6230c89d28406b5c9',1,'Ipopt::ScaledMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1MultiVectorMatrix.html#a215f036fadae290e78849076c932e919',1,'Ipopt::MultiVectorMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1Matrix.html#aa3bbcb2070641e08b8ed114a22d7f0fc',1,'Ipopt::Matrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1LowRankUpdateSymMatrix.html#accae43620ee0625fff5c01d9e44b7f27',1,'Ipopt::LowRankUpdateSymMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1IdentityMatrix.html#a73f800d9f75bd3171a7f8ea4b9e03ddf',1,'Ipopt::IdentityMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1ExpansionMatrix.html#a5259d077677bd22360fd5c1f4c4cde6f',1,'Ipopt::ExpansionMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1ExpandedMultiVectorMatrix.html#ac2fae552ad22104a457518c661bd1af6',1,'Ipopt::ExpandedMultiVectorMatrix::ComputeRowAMaxImpl()'],['../classIpopt_1_1DiagMatrix.html#a563568cd907b028ded5221322ccb114c',1,'Ipopt::DiagMatrix::ComputeRowAMaxImpl()']]], + ['computesearchdirection_160',['computesearchdirection',['../classIpopt_1_1InexactSearchDirCalculator.html#a6eb3f86543ddfb66e4eadd8ec46b1478',1,'Ipopt::InexactSearchDirCalculator::ComputeSearchDirection()'],['../classIpopt_1_1PDSearchDirCalculator.html#a70ed71fe20bad40db2f323222b434a39',1,'Ipopt::PDSearchDirCalculator::ComputeSearchDirection()'],['../classIpopt_1_1IpoptAlgorithm.html#a91a38f9e0d1218ce444d29aff768f228',1,'Ipopt::IpoptAlgorithm::ComputeSearchDirection()'],['../classIpopt_1_1SearchDirectionCalculator.html#a00ea6658aa464bbe62c1dd0b3834e882',1,'Ipopt::SearchDirectionCalculator::ComputeSearchDirection()'],['../classIpopt_1_1TimingStatistics.html#aa7ee67fb1423afc933eb4b41ba036161',1,'Ipopt::TimingStatistics::ComputeSearchDirection()'],['../classIpopt_1_1CGSearchDirCalculator.html#ac3dff9e26bb64b8fbe0600f1e5508f9f',1,'Ipopt::CGSearchDirCalculator::ComputeSearchDirection()']]], + ['computesearchdirection_5f_161',['ComputeSearchDirection_',['../classIpopt_1_1TimingStatistics.html#aad3a2328839adc17201a43ca7f2c5e0d',1,'Ipopt::TimingStatistics']]], + ['computesensitivitymatrix_162',['ComputeSensitivityMatrix',['../classIpopt_1_1SensAlgorithm.html#a96f52cc132619862d03b733a7072c794',1,'Ipopt::SensAlgorithm']]], + ['computesymtscalingfactors_163',['computesymtscalingfactors',['../classIpopt_1_1SlackBasedTSymScalingMethod.html#ab33603a0e374894b9ff67012a97dd681',1,'Ipopt::SlackBasedTSymScalingMethod::ComputeSymTScalingFactors()'],['../classIpopt_1_1InexactTSymScalingMethod.html#a89f4323ba32d4fc30d655808a10d6e88',1,'Ipopt::InexactTSymScalingMethod::ComputeSymTScalingFactors()'],['../classIpopt_1_1Mc19TSymScalingMethod.html#a3f4e383ee63c9b548b04049c6aa6c1e4',1,'Ipopt::Mc19TSymScalingMethod::ComputeSymTScalingFactors()'],['../classIpopt_1_1TSymScalingMethod.html#ae06613d7ae56769dd019d70d4998346b',1,'Ipopt::TSymScalingMethod::ComputeSymTScalingFactors()']]], + ['con_5finteger_5fmd_5f_164',['con_integer_md_',['../classIpopt_1_1AmplTNLP.html#af9d12945a7750eaef07feef07a51b3df',1,'Ipopt::AmplTNLP']]], + ['con_5fnumeric_5fmd_5f_165',['con_numeric_md_',['../classIpopt_1_1AmplTNLP.html#a89ebb03c7dc2eb964f78fd2499ce2da5',1,'Ipopt::AmplTNLP']]], + ['con_5fstring_5fmd_5f_166',['con_string_md_',['../classIpopt_1_1AmplTNLP.html#a0db97ee895b0c54a503772bb8667fdb5',1,'Ipopt::AmplTNLP']]], + ['config_5fdefault_2eh_167',['config_default.h',['../config__default_8h.html',1,'']]], + ['config_5fipopt_5fdefault_2eh_168',['config_ipopt_default.h',['../config__ipopt__default_8h.html',1,'']]], + ['configall_5fsystem_2eh_169',['configall_system.h',['../configall__system_8h.html',1,'']]], + ['configall_5fsystem_5fmsc_2eh_170',['configall_system_msc.h',['../configall__system__msc_8h.html',1,'']]], + ['configure_171',['Flags to configure',['../INSTALL.html#CONFIGURE_FLAGS',1,'']]], + ['considernewsystem_172',['considernewsystem',['../classIpopt_1_1CGPerturbationHandler.html#ac987243a4a1ab5739920a1a5a3769d86',1,'Ipopt::CGPerturbationHandler::ConsiderNewSystem()'],['../classIpopt_1_1PDPerturbationHandler.html#a7cfc036d2e375f0e87c18dad868dd6ef',1,'Ipopt::PDPerturbationHandler::ConsiderNewSystem()']]], + ['consist_5ftol_173',['consist_tol',['../structma97__control__d.html#abe7e350a74dbe697a5610659bc473de3',1,'ma97_control_d::consist_tol'],['../structma77__control__d.html#a05a9cec699db33551ad7e1f551cda9ca',1,'ma77_control_d::consist_tol'],['../structma77__control__s.html#af0d5c3c689e055c5e4ed9b6b2a6eb817',1,'ma77_control_s::consist_tol'],['../structma97__control__s.html#a68e8870721bddfa333923e21c32f3d85',1,'ma97_control_s::consist_tol']]], + ['const_5fcomps_5f_174',['const_comps_',['../classIpopt_1_1CompoundMatrix.html#a6b8631ab1a9aeacd18d3ad8e7b735e0f',1,'Ipopt::CompoundMatrix::const_comps_'],['../classIpopt_1_1CompoundSymMatrix.html#a60b1128cb4a54380aa2cc227d18c6f26',1,'Ipopt::CompoundSymMatrix::const_comps_'],['../classIpopt_1_1CompoundVector.html#ac36eb38085d92112552b058d372e58ac',1,'Ipopt::CompoundVector::const_comps_']]], + ['const_5fvecs_5f_175',['const_vecs_',['../classIpopt_1_1MultiVectorMatrix.html#accfafd2d99df3186da3a59fba47ee852',1,'Ipopt::MultiVectorMatrix']]], + ['constant_176',['CONSTANT',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a84c23742ee6b01b50a0b1f82a5562dccad78fb6e69e94d7572b89dab29c1842f1',1,'Ipopt::LimMemQuasiNewtonUpdater']]], + ['constcomp_177',['constcomp',['../classIpopt_1_1CompoundVector.html#af9ce6ba3f1b7ca79fa21e887ae7a60cc',1,'Ipopt::CompoundVector::ConstComp()'],['../classIpopt_1_1CompoundSymMatrix.html#aaa3f9d8be678932551ae19bf952e1259',1,'Ipopt::CompoundSymMatrix::ConstComp()'],['../classIpopt_1_1CompoundMatrix.html#a5d19fba215be33ee86c431f22a268b13',1,'Ipopt::CompoundMatrix::ConstComp()']]], + ['constptr_178',['constptr',['../namespaceIpopt.html#a3e8cc2c607c17995786c1929bd006be9',1,'Ipopt::ConstPtr()'],['../classIpopt_1_1SmartPtr.html#a297f93258277e27bb09a1550f9332522',1,'Ipopt::SmartPtr::ConstPtr']]], + ['constr_5fmult_5finit_5fmax_5f_179',['constr_mult_init_max_',['../classIpopt_1_1RestoIterateInitializer.html#a56a26b12756ca5fdabfc1f20a75847d3',1,'Ipopt::RestoIterateInitializer::constr_mult_init_max_'],['../classIpopt_1_1DefaultIterateInitializer.html#a3bc5d7c92d857433f4a64393b99cec09',1,'Ipopt::DefaultIterateInitializer::constr_mult_init_max_']]], + ['constr_5fmult_5freset_5fthreshold_5f_180',['constr_mult_reset_threshold_',['../classIpopt_1_1MinC__1NrmRestorationPhase.html#af989b1cc697c140d2a35672d9be05712',1,'Ipopt::MinC_1NrmRestorationPhase']]], + ['constr_5fviol_5f_181',['constr_viol_',['../classIpopt_1_1SolveStatistics.html#a668a7eed8c4e0f242db59f875b01631d',1,'Ipopt::SolveStatistics']]], + ['constr_5fviol_5fnormtype_182',['constr_viol_normtype',['../classIpopt_1_1IpoptCalculatedQuantities.html#ac08d2286d9fc4a549b5eca7fcb199e67',1,'Ipopt::IpoptCalculatedQuantities']]], + ['constr_5fviol_5fnormtype_5f_183',['constr_viol_normtype_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a1640157e330bdcd41c10e175f1efd67a',1,'Ipopt::IpoptCalculatedQuantities']]], + ['constr_5fviol_5ftol_5f_184',['constr_viol_tol_',['../classIpopt_1_1OrigIpoptNLP.html#a2103145a77a5dd0b9b8a61f67ad2ef6c',1,'Ipopt::OrigIpoptNLP::constr_viol_tol_'],['../classIpopt_1_1BacktrackingLineSearch.html#a1976e93763eb416e335a900c66ac67e4',1,'Ipopt::BacktrackingLineSearch::constr_viol_tol_'],['../classIpopt_1_1IpoptAlgorithm.html#a2bdced6a3ed9532a8a9abb182f0ec931',1,'Ipopt::IpoptAlgorithm::constr_viol_tol_'],['../classIpopt_1_1OptimalityErrorConvergenceCheck.html#af47a923f7b244f795fab367a7dfa089e',1,'Ipopt::OptimalityErrorConvergenceCheck::constr_viol_tol_'],['../classIpopt_1_1MinC__1NrmRestorationPhase.html#a85723ff97452a0a835c93fddc3204e77',1,'Ipopt::MinC_1NrmRestorationPhase::constr_viol_tol_']]], + ['constraint_185',['constraint',['../classIpopt_1_1IterativePardisoSolverInterface.html#a51ed4b3910167788c69e77aeb5044ccca98958078b74b77379df641409ed08e12',1,'Ipopt::IterativePardisoSolverInterface::CONSTRAINT'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a62f2e50b486dc70ac7277c3389aa7524a045cdb54b7e13d33bfdc3fb7ad1fde01',1,'Ipopt::PardisoMKLSolverInterface::CONSTRAINT'],['../classIpopt_1_1PardisoSolverInterface.html#ac8001cd1faad8199ecfad60c0cd25daaa8ed485bff1b2c2e1ab97ca6ea51d8f95',1,'Ipopt::PardisoSolverInterface::CONSTRAINT']]], + ['constraint_5fsource_186',['Constraint_Source',['../classIpopt_1_1AmplSuffixHandler.html#a1a585c9cb1270be5275d36ca4efeb0a7a5f04e467ade7c7962a5f15e53bb369af',1,'Ipopt::AmplSuffixHandler']]], + ['constvec_187',['ConstVec',['../classIpopt_1_1MultiVectorMatrix.html#a39c85facfd0e2d60900665b71dc8723e',1,'Ipopt::MultiVectorMatrix']]], + ['contact_20with_20questions_20about_20ipopt_188',['Who do I contact with questions about Ipopt?',['../FAQ.html#autotoc_md7',1,'']]], + ['continue_189',['continue',['../classIpopt_1_1IterativeSolverTerminationTester.html#a292d4f2906beb360d343308002d608fdabaa61a8545d0bd58aeb1f20869d95e70',1,'Ipopt::IterativeSolverTerminationTester::CONTINUE'],['../classIpopt_1_1ConvergenceCheck.html#a0c6c029f369b9529443d945db60c6a98a5643449f3ef345f390c648fa9281c8c7',1,'Ipopt::ConvergenceCheck::CONTINUE']]], + ['contributions_190',['More Information and Contributions',['../index.html#MOREINFO',1,'']]], + ['contributors_191',['Authors and Contributors',['../AUTHORS.html',1,'index']]], + ['control_5f_192',['control_',['../classIpopt_1_1Ma97SolverInterface.html#af90324167f6886374e57075f8bc537f9',1,'Ipopt::Ma97SolverInterface::control_'],['../classIpopt_1_1Ma77SolverInterface.html#a4ac1564a6cc92c83e9d11f475e95e7cc',1,'Ipopt::Ma77SolverInterface::control_'],['../classIpopt_1_1Ma86SolverInterface.html#abf83bd354c9e6c13f183ad64a9e33fc2',1,'Ipopt::Ma86SolverInterface::control_'],['../classIpopt_1_1SpralSolverInterface.html#a1036bdd74111ba894a49e63e1d61c277',1,'Ipopt::SpralSolverInterface::control_']]], + ['controller_193',['controller',['../classIpopt_1_1SensApplication.html#aa3f9d03f6473f56c0c2765b5897df99b',1,'Ipopt::SensApplication']]], + ['conv_5fcheck_5f_194',['conv_check_',['../classIpopt_1_1BacktrackingLineSearch.html#a2b01e6a4860c4576b2786b442611bd28',1,'Ipopt::BacktrackingLineSearch::conv_check_'],['../classIpopt_1_1IpoptAlgorithm.html#a00a3bd1b384831e5fa894849d181f13e',1,'Ipopt::IpoptAlgorithm::conv_check_']]], + ['conval_5fcalled_5fwith_5fcurrent_5fx_5f_195',['conval_called_with_current_x_',['../classIpopt_1_1AmplTNLP.html#aa63dc17fa5263ef062e1e57df929f902',1,'Ipopt::AmplTNLP']]], + ['convcheck_5f_196',['ConvCheck_',['../classIpopt_1_1AlgorithmBuilder.html#a59a5e839ff6dfaa30265f52b9234f6c7',1,'Ipopt::AlgorithmBuilder']]], + ['converged_197',['CONVERGED',['../classIpopt_1_1ConvergenceCheck.html#a0c6c029f369b9529443d945db60c6a98a60c81b13a273aa49ee958998f67f5a9e',1,'Ipopt::ConvergenceCheck']]], + ['converged_5fto_5facceptable_5fpoint_198',['CONVERGED_TO_ACCEPTABLE_POINT',['../classIpopt_1_1ConvergenceCheck.html#a0c6c029f369b9529443d945db60c6a98a9884285be2e6b7e8c5118ecb0e5bc4f3',1,'Ipopt::ConvergenceCheck']]], + ['convergencecheck_199',['convergencecheck',['../classIpopt_1_1ConvergenceCheck.html#a79e10d7f943de4e13d5d74eb9dbc8e09',1,'Ipopt::ConvergenceCheck::ConvergenceCheck()'],['../classIpopt_1_1ConvergenceCheck.html#aeec09ba39a8dc1a2f47d77c8e958ad94',1,'Ipopt::ConvergenceCheck::ConvergenceCheck(const ConvergenceCheck &)'],['../classIpopt_1_1ConvergenceCheck.html',1,'Ipopt::ConvergenceCheck']]], + ['convergencestatus_200',['ConvergenceStatus',['../classIpopt_1_1ConvergenceCheck.html#a0c6c029f369b9529443d945db60c6a98',1,'Ipopt::ConvergenceCheck']]], + ['convertvalues_201',['ConvertValues',['../classIpopt_1_1TripletToCSRConverter.html#a50babe48e5dc60a2f985819773533528',1,'Ipopt::TripletToCSRConverter']]], + ['copy_202',['copy',['../classIpopt_1_1Vector.html#a91ca096062de235f2b0ee26026102770',1,'Ipopt::Vector::Copy()'],['../classIpopt_1_1DenseGenMatrix.html#a80ec55f1547fb55a1a4ca5539601827d',1,'Ipopt::DenseGenMatrix::Copy()']]], + ['copyfrompos_203',['CopyFromPos',['../classIpopt_1_1DenseVector.html#a87238d562bf25258a49326a105268033',1,'Ipopt::DenseVector']]], + ['copyimpl_204',['copyimpl',['../classIpopt_1_1CompoundVector.html#ab0dc475bcb6a4ca89cf2f99586b3f8a1',1,'Ipopt::CompoundVector::CopyImpl()'],['../classIpopt_1_1DenseVector.html#aa9d81aa0d18b4f258afa6bc4e984d458',1,'Ipopt::DenseVector::CopyImpl()'],['../classIpopt_1_1Vector.html#a49104b125991e9ae2861d862bfe02442',1,'Ipopt::Vector::CopyImpl()']]], + ['copytopos_205',['CopyToPos',['../classIpopt_1_1DenseVector.html#aecb57c43c14367917ff333a5b681617b',1,'Ipopt::DenseVector']]], + ['copytrialtocurrent_206',['CopyTrialToCurrent',['../classIpopt_1_1IpoptData.html#a6582d9d24679b1180ece3a72c0ce1d84',1,'Ipopt::IpoptData']]], + ['correct_5fbound_5fmultiplier_207',['correct_bound_multiplier',['../classIpopt_1_1IpoptAlgorithm.html#a5a862df4ab20eb68616c03f71c28c15a',1,'Ipopt::IpoptAlgorithm']]], + ['corrector_5fcompl_5favrg_5fred_5ffact_5f_208',['corrector_compl_avrg_red_fact_',['../classIpopt_1_1FilterLSAcceptor.html#ad688851f8b0edc3fc1d19108f40b668b',1,'Ipopt::FilterLSAcceptor']]], + ['corrector_5ftype_5f_209',['corrector_type_',['../classIpopt_1_1FilterLSAcceptor.html#afc3efaea1e54a8b64fe7d400e9e067fe',1,'Ipopt::FilterLSAcceptor']]], + ['correctortypeenum_210',['CorrectorTypeEnum',['../classIpopt_1_1FilterLSAcceptor.html#a9fdb48eba6aac599c3d3d077a315828a',1,'Ipopt::FilterLSAcceptor']]], + ['count_5fqf_5fevals_5f_211',['count_qf_evals_',['../classIpopt_1_1QualityFunctionMuOracle.html#a6205dd51bc1660a1490a76205cef81d4',1,'Ipopt::QualityFunctionMuOracle']]], + ['count_5frestorations_5f_212',['count_restorations_',['../classIpopt_1_1MinC__1NrmRestorationPhase.html#afcbd1a157eba7a802699cd7d89876131',1,'Ipopt::MinC_1NrmRestorationPhase']]], + ['count_5fsuccessive_5ffilter_5frejections_5f_213',['count_successive_filter_rejections_',['../classIpopt_1_1FilterLSAcceptor.html#a3f1b4f8c416b002afe455d1d52953c77',1,'Ipopt::FilterLSAcceptor']]], + ['count_5fsuccessive_5fshortened_5fsteps_5f_214',['count_successive_shortened_steps_',['../classIpopt_1_1BacktrackingLineSearch.html#a4c08b213efd298ed6d20dbc007b47b78',1,'Ipopt::BacktrackingLineSearch']]], + ['counter_215',['counter',['../classIpopt_1_1RegisteredOption.html#abcc38e7cbd855de3bdb641dada6d9f47',1,'Ipopt::RegisteredOption::Counter()'],['../classIpopt_1_1OptionsList_1_1OptionValue.html#aa556e1b81946e75f3164430152803334',1,'Ipopt::OptionsList::OptionValue::Counter()']]], + ['counter_5f_216',['counter_',['../classIpopt_1_1RegisteredOption.html#aa5fc3710068f0b277e9e624514e17e82',1,'Ipopt::RegisteredOption::counter_'],['../classIpopt_1_1OptionsList_1_1OptionValue.html#a5133ccf41c223a42a17964a0c99badad',1,'Ipopt::OptionsList::OptionValue::counter_']]], + ['counter_5ffirst_5ftype_5fpenalty_5fupdates_5f_217',['counter_first_type_penalty_updates_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a8ee2a8b1c47d76940684e422d968fcf8',1,'Ipopt::CGPenaltyLSAcceptor']]], + ['counter_5fsecond_5ftype_5fpenalty_5fupdates_5f_218',['counter_second_type_penalty_updates_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a995edef721ff4b9348e84a9fc6707260',1,'Ipopt::CGPenaltyLSAcceptor']]], + ['cpu_5ftime_5fstart_219',['cpu_time_start',['../classIpopt_1_1IpoptData.html#ab73f3c309f066a25ab858507b46475c5',1,'Ipopt::IpoptData']]], + ['cputime_220',['CpuTime',['../namespaceIpopt.html#a43215400b0003aefcf90d79f41a808c2',1,'Ipopt']]], + ['cputime_5fexceeded_221',['cputime_exceeded',['../classIpopt_1_1ConvergenceCheck.html#a0c6c029f369b9529443d945db60c6a98a63d078cf9468e26a972ddc9af25f39b0',1,'Ipopt::ConvergenceCheck::CPUTIME_EXCEEDED'],['../classorg_1_1coinor_1_1Ipopt.html#af915b9705da65d4ec1dfaf7b5889c61c',1,'org.coinor.Ipopt.CPUTIME_EXCEEDED'],['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834ab0b9a4a82b16aef98a54dba735c627c5',1,'Ipopt::CPUTIME_EXCEEDED']]], + ['create_222',['create',['../classorg_1_1coinor_1_1Ipopt.html#a974f513fe0380fa5feb582855657ea49',1,'org::coinor::Ipopt']]], + ['create_5fnew_5fs_223',['create_new_s',['../classIpopt_1_1IteratesVector.html#a70b6429871de05007c9709df6f90a5a5',1,'Ipopt::IteratesVector']]], + ['create_5fnew_5fs_5fcopy_224',['create_new_s_copy',['../classIpopt_1_1IteratesVector.html#a930afb4888ed8686152db28e79c7b3d8',1,'Ipopt::IteratesVector']]], + ['create_5fnew_5fv_5fl_225',['create_new_v_L',['../classIpopt_1_1IteratesVector.html#a20cfb87372260ea97106d264245d3d4f',1,'Ipopt::IteratesVector']]], + ['create_5fnew_5fv_5fl_5fcopy_226',['create_new_v_L_copy',['../classIpopt_1_1IteratesVector.html#a1b769b78f39dfed6650911a16247c20c',1,'Ipopt::IteratesVector']]], + ['create_5fnew_5fv_5fu_227',['create_new_v_U',['../classIpopt_1_1IteratesVector.html#a9aa43437a268d8915bd879f14a99d4d9',1,'Ipopt::IteratesVector']]], + ['create_5fnew_5fv_5fu_5fcopy_228',['create_new_v_U_copy',['../classIpopt_1_1IteratesVector.html#ab0abeec44104c7943611ac1d1eebde4a',1,'Ipopt::IteratesVector']]], + ['create_5fnew_5fx_229',['create_new_x',['../classIpopt_1_1IteratesVector.html#a568e147d0a3816631d73fbda87fa2fd3',1,'Ipopt::IteratesVector']]], + ['create_5fnew_5fx_5fcopy_230',['create_new_x_copy',['../classIpopt_1_1IteratesVector.html#a9ac70247bdcfc2b31688f96c641b51c5',1,'Ipopt::IteratesVector']]], + ['create_5fnew_5fy_5fc_231',['create_new_y_c',['../classIpopt_1_1IteratesVector.html#a7bdcd0f377a3033be07fb2d17fb90fb0',1,'Ipopt::IteratesVector']]], + ['create_5fnew_5fy_5fc_5fcopy_232',['create_new_y_c_copy',['../classIpopt_1_1IteratesVector.html#a16080aeecdf8ef12153084ec75aa7214',1,'Ipopt::IteratesVector']]], + ['create_5fnew_5fy_5fd_233',['create_new_y_d',['../classIpopt_1_1IteratesVector.html#a24dde11b3b341ec320c9fca9843b2b6a',1,'Ipopt::IteratesVector']]], + ['create_5fnew_5fy_5fd_5fcopy_234',['create_new_y_d_copy',['../classIpopt_1_1IteratesVector.html#aa58303b138952fa511613d7a56a27721',1,'Ipopt::IteratesVector']]], + ['create_5fnew_5fz_5fl_235',['create_new_z_L',['../classIpopt_1_1IteratesVector.html#a30a46cc30c1552e1d59f9c383703f323',1,'Ipopt::IteratesVector']]], + ['create_5fnew_5fz_5fl_5fcopy_236',['create_new_z_L_copy',['../classIpopt_1_1IteratesVector.html#ab752081932edc031591500ca041e2df0',1,'Ipopt::IteratesVector']]], + ['create_5fnew_5fz_5fu_237',['create_new_z_U',['../classIpopt_1_1IteratesVector.html#a55e145e17adf1c9564bf6470ae3c68ef',1,'Ipopt::IteratesVector']]], + ['create_5fnew_5fz_5fu_5fcopy_238',['create_new_z_U_copy',['../classIpopt_1_1IteratesVector.html#a17a4aa517ee8e75777077549164a3047',1,'Ipopt::IteratesVector']]], + ['createaugmentedspace_239',['CreateAugmentedSpace',['../classIpopt_1_1StdAugSystemSolver.html#ae988e218b282e4cbc7ba030f59ffc062',1,'Ipopt::StdAugSystemSolver']]], + ['createaugmentedsystem_240',['CreateAugmentedSystem',['../classIpopt_1_1StdAugSystemSolver.html#ad9edf293cf243ed60ce63190f975abae',1,'Ipopt::StdAugSystemSolver']]], + ['createblockfromspace_241',['CreateBlockFromSpace',['../classIpopt_1_1CompoundMatrix.html#a053353e6b71409766118ef974e430ba1',1,'Ipopt::CompoundMatrix']]], + ['createipoptproblem_242',['createipoptproblem',['../classorg_1_1coinor_1_1Ipopt.html#ad3e70c3f0c045077b086199f7a7b5a19',1,'org.coinor.Ipopt.CreateIpoptProblem()'],['../IpStdCInterface_8h.html#ad1c7c5bba4e9ca11142b12c1d434764e',1,'CreateIpoptProblem(): IpStdCInterface.h']]], + ['csr_5fformat_5f0_5foffset_243',['CSR_Format_0_Offset',['../classIpopt_1_1SparseSymLinearSolverInterface.html#ab41b34870b99ed44069b00fccead7c14a9520e61f42d759dd43457ea9bb0b9b14',1,'Ipopt::SparseSymLinearSolverInterface']]], + ['csr_5fformat_5f1_5foffset_244',['CSR_Format_1_Offset',['../classIpopt_1_1SparseSymLinearSolverInterface.html#ab41b34870b99ed44069b00fccead7c14a6ec58bbddc3371494ce6e17ed926c7f3',1,'Ipopt::SparseSymLinearSolverInterface']]], + ['csr_5ffull_5fformat_5f0_5foffset_245',['CSR_Full_Format_0_Offset',['../classIpopt_1_1SparseSymLinearSolverInterface.html#ab41b34870b99ed44069b00fccead7c14ae633f0ae2434c6d4461cbe23fd641fd2',1,'Ipopt::SparseSymLinearSolverInterface']]], + ['csr_5ffull_5fformat_5f1_5foffset_246',['CSR_Full_Format_1_Offset',['../classIpopt_1_1SparseSymLinearSolverInterface.html#ab41b34870b99ed44069b00fccead7c14a1ccf57e194d3f8c8e9fa750e3797f4bf',1,'Ipopt::SparseSymLinearSolverInterface']]], + ['curr_247',['curr',['../classIpopt_1_1IpoptData.html#a7ea3aeb9b62b340f7671d61b88a9b056',1,'Ipopt::IpoptData']]], + ['curr_5f_248',['curr_',['../classIpopt_1_1IpoptData.html#a5b815f4715fcfee5b3b2f67d4e290487',1,'Ipopt::IpoptData']]], + ['curr_5fadded_5fy_5fnrm2_249',['curr_added_y_nrm2',['../classIpopt_1_1CGPenaltyCq.html#ac5b7340016d90881df3d598481d05b60',1,'Ipopt::CGPenaltyCq']]], + ['curr_5fadded_5fy_5fnrm2_5fcache_5f_250',['curr_added_y_nrm2_cache_',['../classIpopt_1_1CGPenaltyCq.html#a549f37ad03aca7f92f7936eddc4534e9',1,'Ipopt::CGPenaltyCq']]], + ['curr_5fav_5fc_5f_251',['curr_Av_c_',['../classIpopt_1_1InexactPDTerminationTester.html#a533f1698e65402664b11cb133d4bcbba',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fav_5fd_5f_252',['curr_Av_d_',['../classIpopt_1_1InexactPDTerminationTester.html#a79f4f0cf01aa5589d3658a72dafe1d88',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fav_5fnorm_5f_253',['curr_Av_norm_',['../classIpopt_1_1InexactPDTerminationTester.html#a9a0e065ce339095f483a273381ef406e',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5favrg_5fcompl_254',['curr_avrg_compl',['../classIpopt_1_1IpoptCalculatedQuantities.html#aec6017c0d5f413c4589e869d8a034733',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5favrg_5fcompl_5fcache_5f_255',['curr_avrg_compl_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a65662db722297207785a74c690471a06',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fbarrier_5ferror_256',['curr_barrier_error',['../classIpopt_1_1IpoptCalculatedQuantities.html#a67b3df827a640b41e21925d4b125c58b',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fbarrier_5ferror_5fcache_5f_257',['curr_barrier_error_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aab5d523c1ff9b85dcc6d9734fb9a9c41',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fbarrier_5fobj_258',['curr_barrier_obj',['../classIpopt_1_1IpoptCalculatedQuantities.html#a9571ea265eb93444895d0df4106d7359',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fbarrier_5fobj_5fcache_5f_259',['curr_barrier_obj_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a4d315ad36a9ec9c6325c680f1a3ca7f0',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fc_260',['curr_c',['../classIpopt_1_1IpoptCalculatedQuantities.html#a990ea563ebb8bb9dc63fbb4875e43531',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fc_5famax_5f_261',['curr_c_amax_',['../classIpopt_1_1QualityFunctionMuOracle.html#a85ac4bc3fdd8029d3350d6b75ffca573',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fc_5fasum_5f_262',['curr_c_asum_',['../classIpopt_1_1QualityFunctionMuOracle.html#aac1d16433140c2995b5d109500138c10',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fc_5fcache_5f_263',['curr_c_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ac12d66565a37a2cb00ca87e1be5207c7',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fc_5fnrm2_5f_264',['curr_c_nrm2_',['../classIpopt_1_1QualityFunctionMuOracle.html#ab09228071156a4c8157daff591543891',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fcentrality_5fmeasure_265',['curr_centrality_measure',['../classIpopt_1_1IpoptCalculatedQuantities.html#a1a96247afeb8a8189fe5ea4f00ca05af',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fcentrality_5fmeasure_5fcache_5f_266',['curr_centrality_measure_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a40f668a395ca39d3abbae430860b6c13',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fcg_5fpert_5ffact_267',['curr_cg_pert_fact',['../classIpopt_1_1CGPenaltyCq.html#abf594b321357ac3b9dfa0cc97db9777a',1,'Ipopt::CGPenaltyCq']]], + ['curr_5fcg_5fpert_5ffact_5fcache_5f_268',['curr_cg_pert_fact_cache_',['../classIpopt_1_1CGPenaltyCq.html#a93bc3b92335985ec97bb7825d325bd0d',1,'Ipopt::CGPenaltyCq']]], + ['curr_5fcompl_5fs_5fl_269',['curr_compl_s_L',['../classIpopt_1_1IpoptCalculatedQuantities.html#a5a06320f4ddffeaea8a47a42e735bae9',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fcompl_5fs_5fl_5fcache_5f_270',['curr_compl_s_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aa657f70dccea71d646b583d34ecac93f',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fcompl_5fs_5fu_271',['curr_compl_s_U',['../classIpopt_1_1IpoptCalculatedQuantities.html#a22ea915ea70a82a7f9468bcb739a06e3',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fcompl_5fs_5fu_5fcache_5f_272',['curr_compl_s_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a1af03f7e2b5f896e4603be8608dc6fa5',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fcompl_5fx_5fl_273',['curr_compl_x_L',['../classIpopt_1_1IpoptCalculatedQuantities.html#a1cc3ea5c851a1aa3f283c342f32703f1',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fcompl_5fx_5fl_5fcache_5f_274',['curr_compl_x_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ad82d662107b2538ec556cbf008663486',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fcompl_5fx_5fu_275',['curr_compl_x_U',['../classIpopt_1_1IpoptCalculatedQuantities.html#a80661967370856a24e27b0a749e92f20',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fcompl_5fx_5fu_5fcache_5f_276',['curr_compl_x_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#af154b4f264b8f422ed8dfa166b71be0d',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fcomplementarity_277',['curr_complementarity',['../classIpopt_1_1IpoptCalculatedQuantities.html#aee0f1a75aee872b9d38ddd23ac527c91',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fcomplementarity_5fcache_5f_278',['curr_complementarity_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#afb4349c30671ac01dbcca61ca52505cc',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fconstraint_5fviolation_279',['curr_constraint_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a534ad0a9a79ee15921ed81eae94255fc',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fconstraint_5fviolation_5fcache_5f_280',['curr_constraint_violation_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a06e070a29e3b2f6082454ad544bd459d',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fd_281',['curr_d',['../classIpopt_1_1IpoptCalculatedQuantities.html#a79f95bd364f30db3eb27485d7501f7de',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fd_5fcache_5f_282',['curr_d_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#abd1d6030c68c69bdaa8382bc81ced0e0',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fd_5fminus_5fs_283',['curr_d_minus_s',['../classIpopt_1_1IpoptCalculatedQuantities.html#adbb5f5dfd4ffbba79b371e5c76918112',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fd_5fminus_5fs_5famax_5f_284',['curr_d_minus_s_amax_',['../classIpopt_1_1QualityFunctionMuOracle.html#ada3fa499f855d76d125ab378c2a37923',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fd_5fminus_5fs_5fasum_5f_285',['curr_d_minus_s_asum_',['../classIpopt_1_1QualityFunctionMuOracle.html#acbae01688d1e5da56eed73f0ca662152',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fd_5fminus_5fs_5fcache_5f_286',['curr_d_minus_s_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a3191551e295971ec110d24501c503308',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fd_5fminus_5fs_5fnrm2_5f_287',['curr_d_minus_s_nrm2_',['../classIpopt_1_1QualityFunctionMuOracle.html#a38c3868ae9824305685fa856498e18e1',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fdirect_5fderiv_5fpenalty_5ffunction_288',['curr_direct_deriv_penalty_function',['../classIpopt_1_1CGPenaltyCq.html#af9d4b533d02c7ff46e111f8133ff4dd2',1,'Ipopt::CGPenaltyCq']]], + ['curr_5fdirect_5fderiv_5fpenalty_5ffunction_5fcache_5f_289',['curr_direct_deriv_penalty_function_cache_',['../classIpopt_1_1CGPenaltyCq.html#a1028ea1e9e635c44f9710c8f66ca312f',1,'Ipopt::CGPenaltyCq']]], + ['curr_5fdr_5fx_5f_290',['curr_DR_x_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#af91acff1d8121c05414463d5ff29c5a3',1,'Ipopt::LimMemQuasiNewtonUpdater']]], + ['curr_5fdr_5fx_5ftag_5f_291',['curr_DR_x_tag_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a7d14331c82d5cb7136fcb6a224131cf1',1,'Ipopt::LimMemQuasiNewtonUpdater']]], + ['curr_5fdual_5ffrac_5fto_5fthe_5fbound_292',['curr_dual_frac_to_the_bound',['../classIpopt_1_1IpoptCalculatedQuantities.html#a2bf34ab49a27a64b383bad5affd0b28a',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fdual_5finfeasibility_293',['curr_dual_infeasibility',['../classIpopt_1_1IpoptCalculatedQuantities.html#ae13fca31adaf2bcc6d1e7179a46726e4',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fdual_5finfeasibility_5fcache_5f_294',['curr_dual_infeasibility_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a479e175cdf16a8de25f6acc7700b91e0',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5feta_5f_295',['curr_eta_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a789105608badbec4cef9a15812443cbe',1,'Ipopt::LimMemQuasiNewtonUpdater::curr_eta_'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#ae0d9ea62a79ee3bd3965d181c59b0b34',1,'Ipopt::CGPenaltyLSAcceptor::curr_eta_']]], + ['curr_5fexact_5fhessian_296',['curr_exact_hessian',['../classIpopt_1_1IpoptCalculatedQuantities.html#ad410bc29a097364ec91c8b6528c15724',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fexact_5fhessian_5fcache_5f_297',['curr_exact_hessian_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a38dcf1b87176afc273819afc224bfa68',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5ff_298',['curr_f',['../classIpopt_1_1IpoptCalculatedQuantities.html#a833ef14b9ab4f76188d4b4ceac134eea',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5ff_5fcache_5f_299',['curr_f_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aa270c37f85fc81a576cfb5b430bf7e6d',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5ffast_5fdirect_5fderiv_5fpenalty_5ffunction_300',['curr_fast_direct_deriv_penalty_function',['../classIpopt_1_1CGPenaltyCq.html#a5e4e93c0fae398159331f1c32442c830',1,'Ipopt::CGPenaltyCq']]], + ['curr_5ffast_5fdirect_5fderiv_5fpenalty_5ffunction_5fcache_5f_301',['curr_fast_direct_deriv_penalty_function_cache_',['../classIpopt_1_1CGPenaltyCq.html#a0cf10a096053e7c7a7f83e67f07f60e4',1,'Ipopt::CGPenaltyCq']]], + ['curr_5fgrad_5fbarrier_5fobj_5fs_302',['curr_grad_barrier_obj_s',['../classIpopt_1_1IpoptCalculatedQuantities.html#aaf7b80e152a26a8f73f466fe42f2222b',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5fbarrier_5fobj_5fs_5f_303',['curr_grad_barrier_obj_s_',['../classIpopt_1_1InexactPDTerminationTester.html#a3e18f2cdc2a73cae2ae9b3e0e0fdd9c8',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fgrad_5fbarrier_5fobj_5fs_5fcache_5f_304',['curr_grad_barrier_obj_s_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aeddcb989dcac80e63433f715b407f830',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5fbarrier_5fobj_5fx_305',['curr_grad_barrier_obj_x',['../classIpopt_1_1IpoptCalculatedQuantities.html#ab7051a31a06e1bcc6c7d7003b1bc17fc',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5fbarrier_5fobj_5fx_5f_306',['curr_grad_barrier_obj_x_',['../classIpopt_1_1InexactPDTerminationTester.html#ad7d14bd528ad73b056736a2376446634',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fgrad_5fbarrier_5fobj_5fx_5fcache_5f_307',['curr_grad_barrier_obj_x_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a3e814e69d9f81f9cb8f94da08cd6424b',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5ff_308',['curr_grad_f',['../classIpopt_1_1IpoptCalculatedQuantities.html#a0719468a54ada582f4ceae2a17b21363',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5ff_5fcache_5f_309',['curr_grad_f_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a617fdb6e08dddb832a5b640c347c7eb6',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5flag_5fs_310',['curr_grad_lag_s',['../classIpopt_1_1IpoptCalculatedQuantities.html#aef9a057211891ffd6dc95ffb9a247a2f',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5flag_5fs_5famax_5f_311',['curr_grad_lag_s_amax_',['../classIpopt_1_1QualityFunctionMuOracle.html#a24806d4cd798f21928efd68df0f7f41d',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fgrad_5flag_5fs_5fasum_5f_312',['curr_grad_lag_s_asum_',['../classIpopt_1_1QualityFunctionMuOracle.html#a411f905bb519c21a01e7d37379102e16',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fgrad_5flag_5fs_5fcache_5f_313',['curr_grad_lag_s_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aadb0ffa18bf23551bfe7438d063d6a9e',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5flag_5fs_5fnrm2_5f_314',['curr_grad_lag_s_nrm2_',['../classIpopt_1_1QualityFunctionMuOracle.html#aaa1c72eeeb4c0d2e7b79390d5b91fb76',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fgrad_5flag_5fwith_5fdamping_5fs_315',['curr_grad_lag_with_damping_s',['../classIpopt_1_1IpoptCalculatedQuantities.html#afe9fd17bfc46b552c4dc7188d3050416',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5flag_5fwith_5fdamping_5fs_5fcache_5f_316',['curr_grad_lag_with_damping_s_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#af6ea564a2947d32944cff1c6deec3674',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5flag_5fwith_5fdamping_5fx_317',['curr_grad_lag_with_damping_x',['../classIpopt_1_1IpoptCalculatedQuantities.html#adb0aef27b76163e4261cf7c90c5d3447',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5flag_5fwith_5fdamping_5fx_5fcache_5f_318',['curr_grad_lag_with_damping_x_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a27754aa0141619ea0e2639bdce1b5000',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5flag_5fx_319',['curr_grad_lag_x',['../classIpopt_1_1IpoptCalculatedQuantities.html#adc19aae1bf180ebcac35a4192f47d5a0',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5flag_5fx_5famax_5f_320',['curr_grad_lag_x_amax_',['../classIpopt_1_1QualityFunctionMuOracle.html#ad7815e200e45bef37fe919fb7de6059d',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fgrad_5flag_5fx_5fasum_5f_321',['curr_grad_lag_x_asum_',['../classIpopt_1_1QualityFunctionMuOracle.html#a807bd37209e373962f6f3e7ba22fef48',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fgrad_5flag_5fx_5fcache_5f_322',['curr_grad_lag_x_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#adfe46b91ad1608d0a218d0be4d23a6d8',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5flag_5fx_5fnrm2_5f_323',['curr_grad_lag_x_nrm2_',['../classIpopt_1_1QualityFunctionMuOracle.html#afdeb5885c1636b7b524d01d02f0f85e9',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fgradbarrtdelta_324',['curr_gradBarrTDelta',['../classIpopt_1_1IpoptCalculatedQuantities.html#a82669a2e5a40036a8c3e596f7ec6ca74',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgradbarrtdelta_5fcache_5f_325',['curr_gradBarrTDelta_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a416117ba0957fe81cb5b4b2aa3fabcce',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5fc_326',['curr_jac_c',['../classIpopt_1_1IpoptCalculatedQuantities.html#a1ba77f82a5012771573f93bd18d30fe9',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5fc_5f_327',['curr_jac_c_',['../classIpopt_1_1InexactPDTerminationTester.html#a990d4c13be65eab04eaabdcfa333fa97',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fjac_5fc_5fcache_5f_328',['curr_jac_c_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ab041cf84cc44927f63b22a12e31bfed4',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5fc_5ftimes_5fvec_329',['curr_jac_c_times_vec',['../classIpopt_1_1IpoptCalculatedQuantities.html#a33b090324bc61917b62d9abfcc021913',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5fc_5ftimes_5fvec_5fcache_5f_330',['curr_jac_c_times_vec_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#af95e63b226e5e76411afba79046626e8',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5fcd_5fnorm_331',['curr_jac_cd_norm',['../classIpopt_1_1CGPenaltyCq.html#a1b7ae857feec1ac7706da2bd5f82db48',1,'Ipopt::CGPenaltyCq']]], + ['curr_5fjac_5fcd_5fnorm_5fcache_5f_332',['curr_jac_cd_norm_cache_',['../classIpopt_1_1CGPenaltyCq.html#a4f5c08c3a59c3c45934eeb57800d2910',1,'Ipopt::CGPenaltyCq']]], + ['curr_5fjac_5fcdt_5ftimes_5fcurr_5fcdminuss_333',['curr_jac_cdT_times_curr_cdminuss',['../classIpopt_1_1InexactCq.html#a14643e207455afa931b81795112fef22',1,'Ipopt::InexactCq']]], + ['curr_5fjac_5fcdt_5ftimes_5fcurr_5fcdminuss_5fcache_5f_334',['curr_jac_cdT_times_curr_cdminuss_cache_',['../classIpopt_1_1InexactCq.html#a688def427878e282d6e12665c72b2c94',1,'Ipopt::InexactCq']]], + ['curr_5fjac_5fct_5ftimes_5fcurr_5fy_5fc_335',['curr_jac_cT_times_curr_y_c',['../classIpopt_1_1IpoptCalculatedQuantities.html#a11e83757d902c55be4012546f90df00d',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5fct_5ftimes_5fvec_336',['curr_jac_cT_times_vec',['../classIpopt_1_1IpoptCalculatedQuantities.html#a3390c044d19073df7cc757490d2075a7',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5fct_5ftimes_5fvec_5fcache_5f_337',['curr_jac_cT_times_vec_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ad78fa39580d04e6a6bf39b33f762e2a2',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5fd_338',['curr_jac_d',['../classIpopt_1_1IpoptCalculatedQuantities.html#ac8a2e5f39f67f62baded02e4e395afce',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5fd_5f_339',['curr_jac_d_',['../classIpopt_1_1InexactPDTerminationTester.html#aa251df881dd54c49bf2edb392eb28628',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fjac_5fd_5fcache_5f_340',['curr_jac_d_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a7b502771b609db821c80c93efa7f0a84',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5fd_5ftimes_5fvec_341',['curr_jac_d_times_vec',['../classIpopt_1_1IpoptCalculatedQuantities.html#ad11d07fd5d7e4a14ef2eb18e0b9f9abe',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5fd_5ftimes_5fvec_5fcache_5f_342',['curr_jac_d_times_vec_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aa59ff8e3cf470fdd5416700d4fed3742',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5fdt_5ftimes_5fcurr_5fy_5fd_343',['curr_jac_dT_times_curr_y_d',['../classIpopt_1_1IpoptCalculatedQuantities.html#a8a64f5047c8601ed81adac689a43e4c0',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5fdt_5ftimes_5fvec_344',['curr_jac_dT_times_vec',['../classIpopt_1_1IpoptCalculatedQuantities.html#ac40c4159127098383127c797e3511b84',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5fdt_5ftimes_5fvec_5fcache_5f_345',['curr_jac_dT_times_vec_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a0d5c78b9b23d87d3f879716a8b8dc174',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5ftimes_5fnormal_5fc_346',['curr_jac_times_normal_c',['../classIpopt_1_1InexactCq.html#a8d22e75e6642ecd887f858d6b18c3778',1,'Ipopt::InexactCq']]], + ['curr_5fjac_5ftimes_5fnormal_5fc_5fcache_5f_347',['curr_jac_times_normal_c_cache_',['../classIpopt_1_1InexactCq.html#a8bb036c1876977b67416cfe7cd19b382',1,'Ipopt::InexactCq']]], + ['curr_5fjac_5ftimes_5fnormal_5fd_348',['curr_jac_times_normal_d',['../classIpopt_1_1InexactCq.html#a4b707544616374d2300218b641c8e2b8',1,'Ipopt::InexactCq']]], + ['curr_5fjac_5ftimes_5fnormal_5fd_5fcache_5f_349',['curr_jac_times_normal_d_cache_',['../classIpopt_1_1InexactCq.html#a1e504bf9fe4dfd0800fc2ab4dda75c19',1,'Ipopt::InexactCq']]], + ['curr_5fkkt_5fpenalty_350',['curr_kkt_penalty',['../classIpopt_1_1CGPenaltyData.html#aeab7fb727196b03c685a8f05bf100902',1,'Ipopt::CGPenaltyData']]], + ['curr_5fkkt_5fpenalty_5f_351',['curr_kkt_penalty_',['../classIpopt_1_1CGPenaltyData.html#a17a6857b64824e469885de81babae114',1,'Ipopt::CGPenaltyData']]], + ['curr_5flm_5fmemory_5f_352',['curr_lm_memory_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#ac6d2c7e8ceee3996c32041e7eb91bb89',1,'Ipopt::LimMemQuasiNewtonUpdater']]], + ['curr_5flm_5fmemory_5fold_5f_353',['curr_lm_memory_old_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#af68441d4e1f531996c893ef537aefdd2',1,'Ipopt::LimMemQuasiNewtonUpdater']]], + ['curr_5fmu_354',['curr_mu',['../classIpopt_1_1IpoptData.html#ad83f966070811d55a0c5887df1a854bb',1,'Ipopt::IpoptData']]], + ['curr_5fmu_5f_355',['curr_mu_',['../classIpopt_1_1IpoptData.html#aa5fb035f34a5412776d2ce410a27cb80',1,'Ipopt::IpoptData']]], + ['curr_5fnabla_5fphi_5fplus_5faty_5fs_5f_356',['curr_nabla_phi_plus_ATy_s_',['../classIpopt_1_1InexactPDTerminationTester.html#aef7b01fcc66e5820ab8e3cff5c3a2c46',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fnabla_5fphi_5fplus_5faty_5fx_5f_357',['curr_nabla_phi_plus_ATy_x_',['../classIpopt_1_1InexactPDTerminationTester.html#af6d9033f8589f48870a4017be3e7cd85',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fnlp_5fconstraint_5fviolation_358',['curr_nlp_constraint_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a106a8fa8780188ac17ed54d423212431',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fnlp_5fconstraint_5fviolation_5fcache_5f_359',['curr_nlp_constraint_violation_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a92875f2428af9b5a084e7e254f33c812',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fnlp_5ferror_360',['curr_nlp_error',['../classIpopt_1_1IpoptCalculatedQuantities.html#ab20fb63a7d6099c1f15092073665e678',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fnlp_5ferror_5fcache_5f_361',['curr_nlp_error_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ab5b5b797b3326cdf7d4c97b8c983b5e5',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fnu_362',['curr_nu',['../classIpopt_1_1InexactData.html#a6f4118f784916f9e7e36994b59f63651',1,'Ipopt::InexactData']]], + ['curr_5fnu_5f_363',['curr_nu_',['../classIpopt_1_1InexactData.html#aa17e4841f52eba662a010ff4332da39c',1,'Ipopt::InexactData']]], + ['curr_5fobj_5fval_5f_364',['curr_obj_val_',['../classIpopt_1_1OptimalityErrorConvergenceCheck.html#af8adfd264e51395eb9d1f9801f2283fd',1,'Ipopt::OptimalityErrorConvergenceCheck']]], + ['curr_5fomega_5f_365',['curr_omega_',['../classIpopt_1_1InexactDoglegNormalStep.html#a8c1e9351a207d032c2a09e6934a6b4b0',1,'Ipopt::InexactDoglegNormalStep']]], + ['curr_5forig_5fbounds_5fviol_5fcache_5f_366',['curr_orig_bounds_viol_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a29a351f65952aefcb449af85b7e64c0b',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5forig_5fbounds_5fviolation_367',['curr_orig_bounds_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#aae6eafe2ef938576f1980689fa87ddbd',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5forig_5fx_5fl_5fviol_5fcache_5f_368',['curr_orig_x_L_viol_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ae3535e60d0135d86f8a875ed383717ea',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5forig_5fx_5fl_5fviolation_369',['curr_orig_x_L_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#aa8beace2eb6708487b966c8fc2e92152',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5forig_5fx_5fu_5fviol_5fcache_5f_370',['curr_orig_x_U_viol_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#addd320df9f0d62d6325339eccdd970ee',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5forig_5fx_5fu_5fviolation_371',['curr_orig_x_U_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a37c2a900a34b67a86f4a136ddbc57349',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fpenalty_372',['curr_penalty',['../classIpopt_1_1CGPenaltyData.html#a9b60d1d9f836327c167c7659f9e4ba28',1,'Ipopt::CGPenaltyData']]], + ['curr_5fpenalty_5f_373',['curr_penalty_',['../classIpopt_1_1CGPenaltyData.html#a837271eeb7b684a39bb9fc06f06a5e4f',1,'Ipopt::CGPenaltyData']]], + ['curr_5fpenalty_5ffunction_374',['curr_penalty_function',['../classIpopt_1_1CGPenaltyCq.html#a188df00cd62762e42aee385be9ee75e7',1,'Ipopt::CGPenaltyCq']]], + ['curr_5fpenalty_5ffunction_5fcache_5f_375',['curr_penalty_function_cache_',['../classIpopt_1_1CGPenaltyCq.html#adcb60f4a9b3d9d6eb1a410057531eda2',1,'Ipopt::CGPenaltyCq']]], + ['curr_5fpenalty_5fpert_5f_376',['curr_penalty_pert_',['../classIpopt_1_1CGPenaltyData.html#ad8efc1158b392b6ebab565c43cb423c0',1,'Ipopt::CGPenaltyData']]], + ['curr_5fprimal_5fdual_5fsystem_5ferror_377',['curr_primal_dual_system_error',['../classIpopt_1_1IpoptCalculatedQuantities.html#aa92584447da99f61e6aea6b1d78cf44f',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fprimal_5fdual_5fsystem_5ferror_5fcache_5f_378',['curr_primal_dual_system_error_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a3f1ce712ff18e3a4684ed897b1916c57',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fprimal_5ffrac_5fto_5fthe_5fbound_379',['curr_primal_frac_to_the_bound',['../classIpopt_1_1IpoptCalculatedQuantities.html#a0e42cb890e246699c7229e34a77c30d5',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fprimal_5finfeasibility_380',['curr_primal_infeasibility',['../classIpopt_1_1IpoptCalculatedQuantities.html#a487a12052eeb0fd18f15f2c240ad6a1e',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fprimal_5finfeasibility_5fcache_5f_381',['curr_primal_infeasibility_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aad0706dc464cf3b333bced55547cf90f',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fred_5fdr_5fx_5f_382',['curr_red_DR_x_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a5d1d56994acb3a1c934f4b73d96ffd3e',1,'Ipopt::LimMemQuasiNewtonUpdater']]], + ['curr_5frelaxed_5fcompl_5fs_5fl_383',['curr_relaxed_compl_s_L',['../classIpopt_1_1IpoptCalculatedQuantities.html#a2727965fa38b6c7fe9c549e55a232d3d',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5frelaxed_5fcompl_5fs_5fl_5fcache_5f_384',['curr_relaxed_compl_s_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#af277b79a8d7ccbbb3761328926648b11',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5frelaxed_5fcompl_5fs_5fu_385',['curr_relaxed_compl_s_U',['../classIpopt_1_1IpoptCalculatedQuantities.html#abd1e209f0c8f78beea491b466c4e8719',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5frelaxed_5fcompl_5fs_5fu_5fcache_5f_386',['curr_relaxed_compl_s_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a098cb1a995c5997ecb15cae161979f14',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5frelaxed_5fcompl_5fx_5fl_387',['curr_relaxed_compl_x_L',['../classIpopt_1_1IpoptCalculatedQuantities.html#a11a5d22df62ed70724e4df4f09a69921',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5frelaxed_5fcompl_5fx_5fl_5fcache_5f_388',['curr_relaxed_compl_x_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ace97547e7a56479c1095871e100ea180',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5frelaxed_5fcompl_5fx_5fu_389',['curr_relaxed_compl_x_U',['../classIpopt_1_1IpoptCalculatedQuantities.html#aca0b2a3d1205e9fe9f937e81b8f62885',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5frelaxed_5fcompl_5fx_5fu_5fcache_5f_390',['curr_relaxed_compl_x_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a631dc69356cbb99e613251a0ae81ab0a',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fscaled_5fa_5fnorm2_391',['curr_scaled_A_norm2',['../classIpopt_1_1InexactCq.html#a4ef979e3f1d320faf7d13b5b70e30e90',1,'Ipopt::InexactCq']]], + ['curr_5fscaled_5fac_5fnorm_392',['curr_scaled_Ac_norm',['../classIpopt_1_1InexactCq.html#a95caeb0c91737fe52bfe4435f3ef5852',1,'Ipopt::InexactCq']]], + ['curr_5fscaled_5fac_5fnorm_5fcache_5f_393',['curr_scaled_Ac_norm_cache_',['../classIpopt_1_1InexactCq.html#a074bc8e43e25c5162871f2b41e30517e',1,'Ipopt::InexactCq']]], + ['curr_5fscaled_5fy_5famax_394',['curr_scaled_y_Amax',['../classIpopt_1_1CGPenaltyCq.html#ad490d0ce62a04d97b645a3bd96d5c084',1,'Ipopt::CGPenaltyCq']]], + ['curr_5fscaled_5fy_5famax_5fcache_5f_395',['curr_scaled_y_Amax_cache_',['../classIpopt_1_1CGPenaltyCq.html#a1fe140182e98d7c5c1c3608783487c59',1,'Ipopt::CGPenaltyCq']]], + ['curr_5fscaling_5fslacks_396',['curr_scaling_slacks',['../classIpopt_1_1InexactCq.html#aad99afc70e5b5e3cf7e5ac1d5af828b3',1,'Ipopt::InexactCq']]], + ['curr_5fscaling_5fslacks_5f_397',['curr_scaling_slacks_',['../classIpopt_1_1InexactPDTerminationTester.html#af3f9983d27a06ce24e29f9f9c32f70b0',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fscaling_5fslacks_5fcache_5f_398',['curr_scaling_slacks_cache_',['../classIpopt_1_1InexactCq.html#abf2a87e5bcdf762f01f83e414d7ce366',1,'Ipopt::InexactCq']]], + ['curr_5fsigma_5fs_399',['curr_sigma_s',['../classIpopt_1_1IpoptCalculatedQuantities.html#a7cc20b27d8c19ff3e8d967bf87fc15ea',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fsigma_5fs_5fcache_5f_400',['curr_sigma_s_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a7c8d43c61450299984ecbac622dae6b1',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fsigma_5fx_401',['curr_sigma_x',['../classIpopt_1_1IpoptCalculatedQuantities.html#a60dd0ea443df3f520da6048264ea17e8',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fsigma_5fx_5fcache_5f_402',['curr_sigma_x_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a19ece31b15c6f4df41e81bcef714f464',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fslack_5fs_5fl_403',['curr_slack_s_L',['../classIpopt_1_1IpoptCalculatedQuantities.html#a907b3eabd576d35e93d8449f2f7c322d',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fslack_5fs_5fl_5f_404',['curr_slack_s_L_',['../classIpopt_1_1QualityFunctionMuOracle.html#aa6d861ee351f8b2019ce20bb3e144660',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fslack_5fs_5fl_5fcache_5f_405',['curr_slack_s_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a191032c5bd17983a7d455c1e373304a0',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fslack_5fs_5fu_406',['curr_slack_s_U',['../classIpopt_1_1IpoptCalculatedQuantities.html#a63ed9bf5f4d2805df359eb8d04bf997f',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fslack_5fs_5fu_5f_407',['curr_slack_s_U_',['../classIpopt_1_1QualityFunctionMuOracle.html#a4932f1243bd17528d058f02f7cfe5041',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fslack_5fs_5fu_5fcache_5f_408',['curr_slack_s_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#af2e2874dfc5e374b9ebaecac05e10b15',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fslack_5fscaled_5fd_5fminus_5fs_409',['curr_slack_scaled_d_minus_s',['../classIpopt_1_1InexactCq.html#a50961fe5820ee18ef960ac7e8de48a5f',1,'Ipopt::InexactCq']]], + ['curr_5fslack_5fscaled_5fd_5fminus_5fs_5fcache_5f_410',['curr_slack_scaled_d_minus_s_cache_',['../classIpopt_1_1InexactCq.html#a8dd2f70ab5a6235bbda16f417d8c29e1',1,'Ipopt::InexactCq']]], + ['curr_5fslack_5fx_5fl_411',['curr_slack_x_L',['../classIpopt_1_1IpoptCalculatedQuantities.html#a9045fd0e5e259a2286ea6f653fe42925',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fslack_5fx_5fl_5f_412',['curr_slack_x_L_',['../classIpopt_1_1QualityFunctionMuOracle.html#adce852e8b424ad32a6789e8526dc022b',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fslack_5fx_5fl_5fcache_5f_413',['curr_slack_x_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ae62cf06417ca7db29a692a9d14a1d514',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fslack_5fx_5fu_414',['curr_slack_x_U',['../classIpopt_1_1IpoptCalculatedQuantities.html#ab25c72b0d85a835b206f37de8d69dce2',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fslack_5fx_5fu_5f_415',['curr_slack_x_U_',['../classIpopt_1_1QualityFunctionMuOracle.html#a8187ecb69b9e21f696399c174523eefd',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fslack_5fx_5fu_5fcache_5f_416',['curr_slack_x_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a86d8fa203aba0e7568d329a88e055792',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5ftau_417',['curr_tau',['../classIpopt_1_1IpoptData.html#a38addd6fa9b5e1e58889e4f593e09b2d',1,'Ipopt::IpoptData']]], + ['curr_5ftau_5f_418',['curr_tau_',['../classIpopt_1_1IpoptData.html#a935519be0f344a3fa607e7741d7bf166',1,'Ipopt::IpoptData']]], + ['curr_5ftt1_5fnorm_5f_419',['curr_tt1_norm_',['../classIpopt_1_1InexactPDTerminationTester.html#a38dd6807a0f4d36a5fc17c1c7b4ad2e2',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5ftt2_5fnorm_5f_420',['curr_tt2_norm_',['../classIpopt_1_1InexactPDTerminationTester.html#acc2d6ff998d2b26582e313bfa98c640f',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fuwu_421',['curr_uWu',['../classIpopt_1_1InexactCq.html#ad9806fd35713506085cf9d2066c30e2b',1,'Ipopt::InexactCq']]], + ['curr_5fuwu_5fcache_5f_422',['curr_uWu_cache_',['../classIpopt_1_1InexactCq.html#a3761aabe2edbe7213f4c5d97458f2c57',1,'Ipopt::InexactCq']]], + ['curr_5fv_5fl_5f_423',['curr_v_L_',['../classIpopt_1_1QualityFunctionMuOracle.html#a281abf59e3082b3c4d2849a7082cd343',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fv_5fu_5f_424',['curr_v_U_',['../classIpopt_1_1QualityFunctionMuOracle.html#ad80d5e972cc97793d36a3ac22c658f0b',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fw_5ftimes_5fvec_5fs_425',['curr_W_times_vec_s',['../classIpopt_1_1InexactCq.html#aca22104dc4c4b94808b5d6d49a25209d',1,'Ipopt::InexactCq']]], + ['curr_5fw_5ftimes_5fvec_5fs_5fcache_5f_426',['curr_W_times_vec_s_cache_',['../classIpopt_1_1InexactCq.html#a2e6ed134e4cfb9e5c3e1324b976e6650',1,'Ipopt::InexactCq']]], + ['curr_5fw_5ftimes_5fvec_5fx_427',['curr_W_times_vec_x',['../classIpopt_1_1InexactCq.html#aeb1178ffd9a44cddfdc701abcc403fdf',1,'Ipopt::InexactCq']]], + ['curr_5fw_5ftimes_5fvec_5fx_5fcache_5f_428',['curr_W_times_vec_x_cache_',['../classIpopt_1_1InexactCq.html#ab9b376d8f1860fbe5dae4031260752fb',1,'Ipopt::InexactCq']]], + ['curr_5fwu_5fs_429',['curr_Wu_s',['../classIpopt_1_1InexactCq.html#a71cb493b599db1d4224b23ae027e0b2f',1,'Ipopt::InexactCq']]], + ['curr_5fwu_5fs_5fcache_5f_430',['curr_Wu_s_cache_',['../classIpopt_1_1InexactCq.html#a4f330b8627d5e010980f7999f30d801b',1,'Ipopt::InexactCq']]], + ['curr_5fwu_5fx_431',['curr_Wu_x',['../classIpopt_1_1InexactCq.html#a824e66337e7d1a54f7327f47588e7b10',1,'Ipopt::InexactCq']]], + ['curr_5fwu_5fx_5fcache_5f_432',['curr_Wu_x_cache_',['../classIpopt_1_1InexactCq.html#a8b6e44dacfb6af243c4746802a77a0e4',1,'Ipopt::InexactCq']]], + ['curr_5fwv_5fs_5f_433',['curr_Wv_s_',['../classIpopt_1_1InexactPDTerminationTester.html#a4f5cb99bc44727ed960e2a57f3b0f329',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fwv_5fx_5f_434',['curr_Wv_x_',['../classIpopt_1_1InexactPDTerminationTester.html#a6845ca5873e785081f619e4c3c697807',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fz_5fl_5f_435',['curr_z_L_',['../classIpopt_1_1QualityFunctionMuOracle.html#afbde898bd99bb1af467eaf47540d3d7d',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fz_5fu_5f_436',['curr_z_U_',['../classIpopt_1_1QualityFunctionMuOracle.html#a515e716a8ee07ee4be3e7398dc33d1d4',1,'Ipopt::QualityFunctionMuOracle']]], + ['current_5flevel_5f_437',['current_level_',['../classIpopt_1_1SpralSolverInterface.html#a576f1c34d4ecbb4293cf825f2e3d1223',1,'Ipopt::SpralSolverInterface::current_level_'],['../classIpopt_1_1Ma97SolverInterface.html#a44e30eea06dc9831d25878d477d772c2',1,'Ipopt::Ma97SolverInterface::current_level_']]], + ['current_5fregistering_5fcategory_5f_438',['current_registering_category_',['../classIpopt_1_1RegisteredOptions.html#a24fbd66ce87e7aadb1bd9ddb868a1ec5',1,'Ipopt::RegisteredOptions']]], + ['currentisacceptable_439',['currentisacceptable',['../classIpopt_1_1OptimalityErrorConvergenceCheck.html#aab7893e5eaf9e21119e77c1bdb855af4',1,'Ipopt::OptimalityErrorConvergenceCheck::CurrentIsAcceptable()'],['../classIpopt_1_1ConvergenceCheck.html#a7de2e99804a5283d04408c32b406b95c',1,'Ipopt::ConvergenceCheck::CurrentIsAcceptable()'],['../classIpopt_1_1BacktrackingLineSearch.html#aff5362ea5f0b6d960df66ae4425dc8c1',1,'Ipopt::BacktrackingLineSearch::CurrentIsAcceptable()']]], + ['currentisbest_440',['CurrentIsBest',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a8be2d9c7f2a31cbc412209e4b650637d',1,'Ipopt::CGPenaltyLSAcceptor']]], + ['currentperturbation_441',['CurrentPerturbation',['../classIpopt_1_1PDPerturbationHandler.html#a0dcc60b1865cc2b57489136339dcad8c',1,'Ipopt::PDPerturbationHandler']]], + ['currpenaltypert_442',['CurrPenaltyPert',['../classIpopt_1_1CGPenaltyData.html#ad6b1bc2be8e81526a72b4f8cf5b37fe2',1,'Ipopt::CGPenaltyData']]], + ['curvature_20test_443',['Inertia-Free Curvature Test',['../SPECIALS.html#INERTIAFREE_CURVTEST',1,'']]], + ['custom_5fsolver_5f_444',['custom_solver_',['../classIpopt_1_1InexactAlgorithmBuilder.html#a95c18af07c34a115a71967aeabf84538',1,'Ipopt::InexactAlgorithmBuilder::custom_solver_'],['../classIpopt_1_1AlgorithmBuilder.html#a5ec5728bfc607550d2aa959ea21c0aeb',1,'Ipopt::AlgorithmBuilder::custom_solver_']]], + ['custom_5fsolver_5fname_5f_445',['custom_solver_name_',['../classIpopt_1_1AlgorithmBuilder.html#a7c46e3b2a67ff8821ade55e75d4b1f5e',1,'Ipopt::AlgorithmBuilder']]] ]; diff --git a/search/all_d.js b/search/all_d.js index 73fb74ac6..16592e389 100644 --- a/search/all_d.js +++ b/search/all_d.js @@ -130,10 +130,10 @@ var searchData= ['determinescalingparametersimpl_127',['determinescalingparametersimpl',['../classIpopt_1_1EquilibrationScaling.html#ad3a3acfeae094416280bb638d3d8d5b6',1,'Ipopt::EquilibrationScaling::DetermineScalingParametersImpl()'],['../classIpopt_1_1GradientScaling.html#ab50850b8aa570ed25a2740c0e4bd500b',1,'Ipopt::GradientScaling::DetermineScalingParametersImpl()'],['../classIpopt_1_1StandardScalingBase.html#a6c4b1fe66015130d18286e5af9a6a0d2',1,'Ipopt::StandardScalingBase::DetermineScalingParametersImpl()'],['../classIpopt_1_1NoNLPScalingObject.html#a274fa40e0be30be5768c11e6fdc9931b',1,'Ipopt::NoNLPScalingObject::DetermineScalingParametersImpl()'],['../classIpopt_1_1UserScaling.html#a03a732dd0b8358de8a8a146e2ae5a0d8',1,'Ipopt::UserScaling::DetermineScalingParametersImpl()']]], ['detlog_128',['detlog',['../structma77__info__d.html#acf1ad07979a51d15a843743e1c3ab3c5',1,'ma77_info_d::detlog'],['../structma77__info__s.html#a5b761ae21c5d7ad7738babf7549b435a',1,'ma77_info_s::detlog'],['../structma86__info__d.html#aecd0270064194ee1a8b6459b2d7c0eaf',1,'ma86_info_d::detlog'],['../structma86__info__s.html#adb356124f7c5abfbe8765f19e754ed26',1,'ma86_info_s::detlog']]], ['detsign_129',['detsign',['../structma77__info__d.html#a6c4a6c94043c4996fdae4a7a9da5401a',1,'ma77_info_d::detsign'],['../structma77__info__s.html#ac860f907c904bf0cd21ab7148f726250',1,'ma77_info_s::detsign'],['../structma86__info__d.html#ad0679f1e0b2720ae6a64c6f103310edf',1,'ma86_info_d::detsign'],['../structma86__info__s.html#a91b5f69ec08b768077eab7ed77d5cf2c',1,'ma86_info_s::detsign']]], - ['dev_20release_20number_20510_130',['3.0.0 (2005-08-26) - dev release number 510',['../md_ChangeLog.html#autotoc_md108',1,'']]], - ['dev_20release_20number_20714_131',['3.1.0 (2006-04-08) - dev release number 714',['../md_ChangeLog.html#autotoc_md105',1,'']]], - ['dev_20release_20number_20757_132',['3.2.0 (2006-07-07) - dev release number 757',['../md_ChangeLog.html#autotoc_md103',1,'']]], - ['dev_20release_20number_20764_133',['3.2.1 (2006-07-14) - dev release number 764',['../md_ChangeLog.html#autotoc_md102',1,'']]], + ['dev_20release_20number_20510_130',['3.0.0 (2005-08-26) - dev release number 510',['../md_ChangeLog.html#autotoc_md110',1,'']]], + ['dev_20release_20number_20714_131',['3.1.0 (2006-04-08) - dev release number 714',['../md_ChangeLog.html#autotoc_md107',1,'']]], + ['dev_20release_20number_20757_132',['3.2.0 (2006-07-07) - dev release number 757',['../md_ChangeLog.html#autotoc_md105',1,'']]], + ['dev_20release_20number_20764_133',['3.2.1 (2006-07-14) - dev release number 764',['../md_ChangeLog.html#autotoc_md104',1,'']]], ['df_5f_134',['df_',['../classIpopt_1_1StandardScalingBase.html#af6124b531f975404859f690bd7f818ea',1,'Ipopt::StandardScalingBase']]], ['diag_5f_135',['diag_',['../classIpopt_1_1DiagMatrix.html#aa88e480e04edf8e498df6e94c243d976',1,'Ipopt::DiagMatrix']]], ['diag_5fspace_5fc_5f_136',['diag_space_c_',['../classIpopt_1_1StdAugSystemSolver.html#a9d4a417210c8e9df7d0de1c39ac8a5a3',1,'Ipopt::StdAugSystemSolver']]], @@ -184,7 +184,7 @@ var searchData= ['dotimpl_181',['dotimpl',['../classIpopt_1_1CompoundVector.html#ad6ac0cf558039a459f901fcfbaa9bf77',1,'Ipopt::CompoundVector::DotImpl()'],['../classIpopt_1_1DenseVector.html#a04545c2ae28838025fbd1d2138904085',1,'Ipopt::DenseVector::DotImpl()'],['../classIpopt_1_1Vector.html#ab478dcf6b0308516bae6ebefca10dacc',1,'Ipopt::Vector::DotImpl()']]], ['download_20build_20and_20install_20dependencies_182',['Download, build, and install dependencies',['../INSTALL.html#EXTERNALCODE',1,'']]], ['dparm_5f_183',['dparm_',['../classIpopt_1_1IterativePardisoSolverInterface.html#a0e414ae7b01eea4c69783e9ac90b35ef',1,'Ipopt::IterativePardisoSolverInterface::DPARM_'],['../classIpopt_1_1IterativeWsmpSolverInterface.html#a7fc4811f0a45111b2aec13f3afc61cd0',1,'Ipopt::IterativeWsmpSolverInterface::DPARM_'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a996adf94dc1812484d04653665aef920',1,'Ipopt::PardisoMKLSolverInterface::DPARM_'],['../classIpopt_1_1PardisoSolverInterface.html#a6a00ceca66db4ec8b4ad8e375b3660e4',1,'Ipopt::PardisoSolverInterface::DPARM_'],['../classIpopt_1_1WsmpSolverInterface.html#acb52b758540cc39196ed2ba9ad276e6e',1,'Ipopt::WsmpSolverInterface::DPARM_']]], - ['dr2_5fx_5f_184',['dr2_x_',['../classIpopt_1_1RestoIpoptNLP.html#a097deeb65f407782c1bdd67bd971f631',1,'Ipopt::RestoIpoptNLP::DR2_x_'],['../classIpopt_1_1RestoIpoptNLP.html#a138bc279115550a6751ace007c294698',1,'Ipopt::RestoIpoptNLP::dr2_x_']]], + ['dr2_5fx_5f_184',['dr2_x_',['../classIpopt_1_1RestoIpoptNLP.html#a138bc279115550a6751ace007c294698',1,'Ipopt::RestoIpoptNLP::dr2_x_'],['../classIpopt_1_1RestoIpoptNLP.html#a097deeb65f407782c1bdd67bd971f631',1,'Ipopt::RestoIpoptNLP::DR2_x_']]], ['dr_5fx_185',['DR_x',['../classIpopt_1_1RestoIpoptNLP.html#adeaf0f5a6728a6c8b3070ef06f6e4231',1,'Ipopt::RestoIpoptNLP']]], ['dr_5fx_5f_186',['dr_x_',['../classIpopt_1_1RestoIpoptNLP.html#a975e66c1f47c3a3826bd21c90876168c',1,'Ipopt::RestoIpoptNLP']]], ['driver_187',['Driver',['../classIpopt_1_1SensitivityStepCalculator.html#a2778981d84775d472e96b712fe576450',1,'Ipopt::SensitivityStepCalculator']]], diff --git a/search/all_e.js b/search/all_e.js index 6c9c90410..20ec7ab24 100644 --- a/search/all_e.js +++ b/search/all_e.js @@ -46,8 +46,8 @@ var searchData= ['eterminationtest_43',['ETerminationTest',['../classIpopt_1_1IterativeSolverTerminationTester.html#a292d4f2906beb360d343308002d608fd',1,'Ipopt::IterativeSolverTerminationTester']]], ['etrifull_44',['ETriFull',['../classIpopt_1_1TripletToCSRConverter.html#afe03d8e71a668d393e8d288572022f11',1,'Ipopt::TripletToCSRConverter']]], ['eval_5fc_45',['eval_c',['../classIpopt_1_1NLP.html#a8abc36cb9f8486431990e403d41fbd75',1,'Ipopt::NLP::Eval_c()'],['../classIpopt_1_1TNLPAdapter.html#aee33e5fa1338711149df79423971ecb2',1,'Ipopt::TNLPAdapter::Eval_c()'],['../classIpopt_1_1NLPBoundsRemover.html#a17ce021ed4e18bbf28689133149aec14',1,'Ipopt::NLPBoundsRemover::Eval_c(const Vector &x, Vector &c)']]], - ['eval_5fd_46',['eval_d',['../classIpopt_1_1NLPBoundsRemover.html#ab4a6bc76325ef88805a350d2a3ac758c',1,'Ipopt::NLPBoundsRemover::Eval_d()'],['../classIpopt_1_1NLP.html#a45516306252b77258e1d1d1027ee1b02',1,'Ipopt::NLP::Eval_d()'],['../classIpopt_1_1TNLPAdapter.html#a7f371d2d1ffc584cf9c7df4c84d98908',1,'Ipopt::TNLPAdapter::Eval_d()']]], - ['eval_5ff_47',['eval_f',['../classIpopt_1_1TNLPReducer.html#a57820e9ca1879f1c57c4f1ef6fbb7d57',1,'Ipopt::TNLPReducer::eval_f()'],['../classIpopt_1_1TNLP.html#a709c03900227bc573b046ce0705e6c84',1,'Ipopt::TNLP::eval_f()'],['../classIpopt_1_1AmplTNLP.html#aa50b7555bb6bcc3965fcdefb0ea130c5',1,'Ipopt::AmplTNLP::eval_f()'],['../classIpopt_1_1StdInterfaceTNLP.html#a50353b8f92b3023f7fbfbebcce9dd5a3',1,'Ipopt::StdInterfaceTNLP::eval_f()'],['../classIpopt_1_1TNLPAdapter.html#acd3957eacad73c45281d211a1325fd10',1,'Ipopt::TNLPAdapter::Eval_f()'],['../classIpopt_1_1NLPBoundsRemover.html#a486beaaf38829c5b076ed86e81fb4dc5',1,'Ipopt::NLPBoundsRemover::Eval_f()'],['../classorg_1_1coinor_1_1Ipopt.html#a80bae3cab08d6fdab223d74cf33e5f02',1,'org.coinor.Ipopt.eval_f()'],['../classIpopt_1_1NLP.html#ad4180ae1884375f56eb45d8f1daa0cc5',1,'Ipopt::NLP::Eval_f()']]], + ['eval_5fd_46',['eval_d',['../classIpopt_1_1NLPBoundsRemover.html#ab4a6bc76325ef88805a350d2a3ac758c',1,'Ipopt::NLPBoundsRemover::Eval_d()'],['../classIpopt_1_1NLP.html#a45516306252b77258e1d1d1027ee1b02',1,'Ipopt::NLP::Eval_d()'],['../classIpopt_1_1TNLPAdapter.html#a7f371d2d1ffc584cf9c7df4c84d98908',1,'Ipopt::TNLPAdapter::Eval_d(const Vector &x, Vector &d)']]], + ['eval_5ff_47',['eval_f',['../classIpopt_1_1TNLPAdapter.html#acd3957eacad73c45281d211a1325fd10',1,'Ipopt::TNLPAdapter::Eval_f()'],['../classIpopt_1_1NLP.html#ad4180ae1884375f56eb45d8f1daa0cc5',1,'Ipopt::NLP::Eval_f()'],['../classIpopt_1_1TNLP.html#a709c03900227bc573b046ce0705e6c84',1,'Ipopt::TNLP::eval_f()'],['../classIpopt_1_1NLPBoundsRemover.html#a486beaaf38829c5b076ed86e81fb4dc5',1,'Ipopt::NLPBoundsRemover::Eval_f()'],['../classIpopt_1_1StdInterfaceTNLP.html#a50353b8f92b3023f7fbfbebcce9dd5a3',1,'Ipopt::StdInterfaceTNLP::eval_f()'],['../classIpopt_1_1AmplTNLP.html#aa50b7555bb6bcc3965fcdefb0ea130c5',1,'Ipopt::AmplTNLP::eval_f()'],['../classIpopt_1_1TNLPReducer.html#a57820e9ca1879f1c57c4f1ef6fbb7d57',1,'Ipopt::TNLPReducer::eval_f()'],['../classorg_1_1coinor_1_1Ipopt.html#a80bae3cab08d6fdab223d74cf33e5f02',1,'org.coinor.Ipopt.eval_f()']]], ['eval_5ff_5f_48',['eval_f_',['../classIpopt_1_1StdInterfaceTNLP.html#aedb7185c16beaf7d8d419b055d832e13',1,'Ipopt::StdInterfaceTNLP']]], ['eval_5ff_5fcb_49',['Eval_F_CB',['../IpStdCInterface_8h.html#aab30234055c386ab38a7f50fffea65ed',1,'IpStdCInterface.h']]], ['eval_5fg_50',['eval_g',['../classIpopt_1_1AmplTNLP.html#a60ea8db9be8ce3baa1b7086a023ab633',1,'Ipopt::AmplTNLP::eval_g()'],['../classIpopt_1_1TNLPReducer.html#a68c7836d24a6a479f24935d6c0d3293f',1,'Ipopt::TNLPReducer::eval_g()'],['../classorg_1_1coinor_1_1Ipopt.html#a04825d67738e9017df30846060f8a660',1,'org.coinor.Ipopt.eval_g()'],['../classIpopt_1_1StdInterfaceTNLP.html#a9f949ff104114155f4f359137c119eb8',1,'Ipopt::StdInterfaceTNLP::eval_g()'],['../classIpopt_1_1TNLP.html#afcfd8404b772dc4960f2d2db4e8bb382',1,'Ipopt::TNLP::eval_g()']]], diff --git a/search/all_f.js b/search/all_f.js index f9ab7634f..e871fbe5d 100644 --- a/search/all_f.js +++ b/search/all_f.js @@ -25,7 +25,7 @@ var searchData= ['fast_5fstep_5fcomputation_5f_22',['fast_step_computation_',['../classIpopt_1_1PDSearchDirCalculator.html#aa4b63924d8763e2d9cdf10c369baa8dc',1,'Ipopt::PDSearchDirCalculator']]], ['fatal_5ferror_23',['FATAL_ERROR',['../namespaceIpopt.html#add98abac06d6862395ef27d827938126aa9c8e97080fc5d2d8f01348bb5b3aa89',1,'Ipopt']]], ['fctidx_5f_24',['fctidx_',['../classIpopt_1_1Ma97SolverInterface.html#acefc64d015526e82ae5b48d389367589',1,'Ipopt::Ma97SolverInterface::fctidx_'],['../classIpopt_1_1SpralSolverInterface.html#a1a08ed8df36d7313429c96b981079325',1,'Ipopt::SpralSolverInterface::fctidx_']]], - ['feasible_5fpoint_5ffound_25',['feasible_point_found',['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834abf604d968be573c146f8eceeb753bcde',1,'Ipopt::FEASIBLE_POINT_FOUND'],['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7a0dcf6c64863a03d97a2fa58be5e707e0',1,'Feasible_Point_Found: IpReturnCodes_inc.h']]], + ['feasible_5fpoint_5ffound_25',['feasible_point_found',['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7a0dcf6c64863a03d97a2fa58be5e707e0',1,'Feasible_Point_Found: IpReturnCodes_inc.h'],['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834abf604d968be573c146f8eceeb753bcde',1,'Ipopt::FEASIBLE_POINT_FOUND']]], ['features_26',['Special Features',['../SPECIALS.html',1,'index']]], ['file_5f_27',['file_',['../classIpopt_1_1FileJournal.html#a41915abc25f88a5f7a3cda5a481d7f68',1,'Ipopt::FileJournal']]], ['file_5fname_5f_28',['file_name_',['../classIpopt_1_1IpoptException.html#af594a9b97f2ac672a5e94d17da0576dc',1,'Ipopt::IpoptException']]], diff --git a/search/enumvalues_5.js b/search/enumvalues_5.js index 75a14b76f..27d052c43 100644 --- a/search/enumvalues_5.js +++ b/search/enumvalues_5.js @@ -2,7 +2,7 @@ var searchData= [ ['failed_0',['FAILED',['../classIpopt_1_1ConvergenceCheck.html#a0c6c029f369b9529443d945db60c6a98adb600f333a33716069cb7df79f404e65',1,'Ipopt::ConvergenceCheck']]], ['fatal_5ferror_1',['FATAL_ERROR',['../namespaceIpopt.html#add98abac06d6862395ef27d827938126aa9c8e97080fc5d2d8f01348bb5b3aa89',1,'Ipopt']]], - ['feasible_5fpoint_5ffound_2',['feasible_point_found',['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834abf604d968be573c146f8eceeb753bcde',1,'Ipopt::FEASIBLE_POINT_FOUND'],['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7a0dcf6c64863a03d97a2fa58be5e707e0',1,'Feasible_Point_Found: IpReturnCodes_inc.h']]], + ['feasible_5fpoint_5ffound_2',['feasible_point_found',['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7a0dcf6c64863a03d97a2fa58be5e707e0',1,'Feasible_Point_Found: IpReturnCodes_inc.h'],['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834abf604d968be573c146f8eceeb753bcde',1,'Ipopt::FEASIBLE_POINT_FOUND']]], ['filter_5fobj_5fconstr_3',['FILTER_OBJ_CONSTR',['../classIpopt_1_1AdaptiveMuUpdate.html#a1a14c0fe8daadb48a6e8eae40f4c1807a6f417f565a7f9aea125e65c8a22cce21',1,'Ipopt::AdaptiveMuUpdate']]], ['first_5forder_5ftest_4',['FIRST_ORDER_TEST',['../classIpopt_1_1TNLPAdapter.html#af8cb74ea21f4e825c746861f8d1e515aa6d9d10d45165ae98c905db048ae74578',1,'Ipopt::TNLPAdapter']]], ['fortran_5fstyle_5',['FORTRAN_STYLE',['../classIpopt_1_1TNLP.html#af81cb3ab5772b440360cfcb48b620514a238056a72c143c97ec2b9f20eb09b42b',1,'Ipopt::TNLP']]], diff --git a/search/enumvalues_7.js b/search/enumvalues_7.js index 59a66a167..aedda704b 100644 --- a/search/enumvalues_7.js +++ b/search/enumvalues_7.js @@ -5,8 +5,8 @@ var searchData= ['insufficient_5fmemory_2',['Insufficient_Memory',['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7a6e1029ad992d12be7b42fe2191bcf984',1,'IpReturnCodes_inc.h']]], ['integer_5foption_3',['Integer_Option',['../classIpopt_1_1AmplOptionsList.html#a855f23a698c4c0a91097b28f36ed8897a9c6074abc3d2af0575fcc0d5550c7b44',1,'Ipopt::AmplOptionsList']]], ['internal_4',['INTERNAL',['../classIpopt_1_1IterationOutput.html#aadaec4d7ec1d3a12338b05939907a19faa2d8e9e245b10644073ebd77e07cf438',1,'Ipopt::IterationOutput']]], - ['internal_5ferror_5',['internal_error',['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7a7e80a0d4d157e4badc74e724669a5066',1,'Internal_Error: IpReturnCodes_inc.h'],['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834a94003028443b5aa2485b2af734ec2d65',1,'Ipopt::INTERNAL_ERROR']]], - ['invalid_5fnumber_5fdetected_6',['invalid_number_detected',['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834ac90d36a417c5aa70a80da8338c614168',1,'Ipopt::INVALID_NUMBER_DETECTED'],['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7abb3cc51c1d4edc58677138c1ef5698d6',1,'Invalid_Number_Detected: IpReturnCodes_inc.h']]], - ['invalid_5foption_7',['invalid_option',['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834a0916d055cc6d551743512dc595fb0425',1,'Ipopt::INVALID_OPTION'],['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7a621c0a01dc6cedc7d03b0ff1ea4ac188',1,'Invalid_Option: IpReturnCodes_inc.h']]], + ['internal_5ferror_5',['internal_error',['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834a94003028443b5aa2485b2af734ec2d65',1,'Ipopt::INTERNAL_ERROR'],['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7a7e80a0d4d157e4badc74e724669a5066',1,'Internal_Error: IpReturnCodes_inc.h']]], + ['invalid_5fnumber_5fdetected_6',['invalid_number_detected',['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7abb3cc51c1d4edc58677138c1ef5698d6',1,'Invalid_Number_Detected: IpReturnCodes_inc.h'],['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834ac90d36a417c5aa70a80da8338c614168',1,'Ipopt::INVALID_NUMBER_DETECTED']]], + ['invalid_5foption_7',['invalid_option',['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7a621c0a01dc6cedc7d03b0ff1ea4ac188',1,'Invalid_Option: IpReturnCodes_inc.h'],['../namespaceIpopt.html#a53a5dc5f64f568252ba7bb7385e7f834a0916d055cc6d551743512dc595fb0425',1,'Ipopt::INVALID_OPTION']]], ['invalid_5fproblem_5fdefinition_8',['Invalid_Problem_Definition',['../IpReturnCodes__inc_8h.html#ab542e0b1ca364a9b7525a876ffdae7d7ad0a0d57cad08c84c2051c98915e3233f',1,'IpReturnCodes_inc.h']]] ]; diff --git a/search/functions_0.js b/search/functions_0.js index 0f34ab22c..5fb508ee1 100644 --- a/search/functions_0.js +++ b/search/functions_0.js @@ -52,29 +52,29 @@ var searchData= ['addstringoption8_49',['AddStringOption8',['../classIpopt_1_1RegisteredOptions.html#a82b87630af54ba88bd5a4d094887104a',1,'Ipopt::RegisteredOptions']]], ['addstringoption9_50',['AddStringOption9',['../classIpopt_1_1RegisteredOptions.html#a9f07e4826bfa640df33653f15d7c7a6f',1,'Ipopt::RegisteredOptions']]], ['addtwovectors_51',['AddTwoVectors',['../classIpopt_1_1Vector.html#a0839e740dcc60def259505a21926604a',1,'Ipopt::Vector']]], - ['addtwovectorsimpl_52',['addtwovectorsimpl',['../classIpopt_1_1DenseVector.html#a56a8a5ee7ffe99894b66e8701418b617',1,'Ipopt::DenseVector::AddTwoVectorsImpl()'],['../classIpopt_1_1Vector.html#a02b3c715918eed9d5b0ce424aec2488f',1,'Ipopt::Vector::AddTwoVectorsImpl()'],['../classIpopt_1_1CompoundVector.html#adac55951f85ec43411f1c5d8f0df3d47',1,'Ipopt::CompoundVector::AddTwoVectorsImpl()']]], + ['addtwovectorsimpl_52',['addtwovectorsimpl',['../classIpopt_1_1CompoundVector.html#adac55951f85ec43411f1c5d8f0df3d47',1,'Ipopt::CompoundVector::AddTwoVectorsImpl()'],['../classIpopt_1_1DenseVector.html#a56a8a5ee7ffe99894b66e8701418b617',1,'Ipopt::DenseVector::AddTwoVectorsImpl()'],['../classIpopt_1_1Vector.html#a02b3c715918eed9d5b0ce424aec2488f',1,'Ipopt::Vector::AddTwoVectorsImpl()']]], ['addupperboundedintegeroption_53',['AddUpperBoundedIntegerOption',['../classIpopt_1_1RegisteredOptions.html#a21a03c9d160c1ede6f0071d0f2afaa48',1,'Ipopt::RegisteredOptions']]], ['addupperboundednumberoption_54',['AddUpperBoundedNumberOption',['../classIpopt_1_1RegisteredOptions.html#a6736224a454ecf41f8e01202e937067a',1,'Ipopt::RegisteredOptions']]], ['addvalidstringsetting_55',['AddValidStringSetting',['../classIpopt_1_1RegisteredOption.html#af0efb618658cc95d599a46f28e68900b',1,'Ipopt::RegisteredOption']]], ['addvectorquotient_56',['AddVectorQuotient',['../classIpopt_1_1Vector.html#a5e4b87da122977757f6ea7abe2331a1a',1,'Ipopt::Vector']]], - ['addvectorquotientimpl_57',['addvectorquotientimpl',['../classIpopt_1_1CompoundVector.html#acdcb1a0b3baeefc1804ade7236a7a544',1,'Ipopt::CompoundVector::AddVectorQuotientImpl()'],['../classIpopt_1_1Vector.html#a72ccdf36219235a1e262e5ed460513cc',1,'Ipopt::Vector::AddVectorQuotientImpl()'],['../classIpopt_1_1DenseVector.html#a07040c4a1b921467a88b6bb3b34635d7',1,'Ipopt::DenseVector::AddVectorQuotientImpl()']]], + ['addvectorquotientimpl_57',['addvectorquotientimpl',['../classIpopt_1_1DenseVector.html#a07040c4a1b921467a88b6bb3b34635d7',1,'Ipopt::DenseVector::AddVectorQuotientImpl()'],['../classIpopt_1_1Vector.html#a72ccdf36219235a1e262e5ed460513cc',1,'Ipopt::Vector::AddVectorQuotientImpl()'],['../classIpopt_1_1CompoundVector.html#acdcb1a0b3baeefc1804ade7236a7a544',1,'Ipopt::CompoundVector::AddVectorQuotientImpl()']]], ['adjustedtrialslacks_58',['AdjustedTrialSlacks',['../classIpopt_1_1IpoptCalculatedQuantities.html#aba2041761b1b64c86c08effe27aa00a4',1,'Ipopt::IpoptCalculatedQuantities']]], ['adjustvariablebounds_59',['adjustvariablebounds',['../classIpopt_1_1OrigIpoptNLP.html#a69a5274b61994b0200f5b35b7256dbb8',1,'Ipopt::OrigIpoptNLP::AdjustVariableBounds()'],['../classIpopt_1_1RestoIpoptNLP.html#a71faeafbfc478eb59d3fa3dad91bb338',1,'Ipopt::RestoIpoptNLP::AdjustVariableBounds()'],['../classIpopt_1_1IpoptNLP.html#aa37f418b204ddf06cc256282396f0624',1,'Ipopt::IpoptNLP::AdjustVariableBounds()']]], ['advanced_60',['Advanced',['../classIpopt_1_1RegisteredOption.html#ad9bc0df5a9d2c14c73aa3b38b80534f5',1,'Ipopt::RegisteredOption']]], - ['algorithmbuilder_61',['algorithmbuilder',['../classIpopt_1_1AlgorithmBuilder.html#a202fdd28a808014a79e84f1152bbc50f',1,'Ipopt::AlgorithmBuilder::AlgorithmBuilder(const AlgorithmBuilder &)'],['../classIpopt_1_1AlgorithmBuilder.html#aaa3a6b274cc5be9e07f14d9f044baaac',1,'Ipopt::AlgorithmBuilder::AlgorithmBuilder(SmartPtr< AugSystemSolver > custom_solver=NULL, const std::string &custom_solver_name=std::string())']]], + ['algorithmbuilder_61',['algorithmbuilder',['../classIpopt_1_1AlgorithmBuilder.html#aaa3a6b274cc5be9e07f14d9f044baaac',1,'Ipopt::AlgorithmBuilder::AlgorithmBuilder(SmartPtr< AugSystemSolver > custom_solver=NULL, const std::string &custom_solver_name=std::string())'],['../classIpopt_1_1AlgorithmBuilder.html#a202fdd28a808014a79e84f1152bbc50f',1,'Ipopt::AlgorithmBuilder::AlgorithmBuilder(const AlgorithmBuilder &)']]], ['algorithmobject_62',['AlgorithmObject',['../classIpopt_1_1IpoptApplication.html#a75c3bcbfcfe4016fcac8e4eb3c33fecc',1,'Ipopt::IpoptApplication']]], - ['algorithmstrategyobject_63',['algorithmstrategyobject',['../classIpopt_1_1AlgorithmStrategyObject.html#af2d972f86eec83a96682bd6741a1d265',1,'Ipopt::AlgorithmStrategyObject::AlgorithmStrategyObject()'],['../classIpopt_1_1AlgorithmStrategyObject.html#a662778d37614c58bd7299260fd54a401',1,'Ipopt::AlgorithmStrategyObject::AlgorithmStrategyObject(const AlgorithmStrategyObject &)']]], - ['allocateinternalstorage_64',['allocateinternalstorage',['../classIpopt_1_1DenseVectorSpace.html#a2d38cbd31b1c31513c63ef405c52d870',1,'Ipopt::DenseVectorSpace::AllocateInternalStorage()'],['../classIpopt_1_1SymTMatrixSpace.html#afb19d4858d24f858599682d696ce32fa',1,'Ipopt::SymTMatrixSpace::AllocateInternalStorage()'],['../classIpopt_1_1GenTMatrixSpace.html#a1c2814fd376fed34f1157d6020ff2fd0',1,'Ipopt::GenTMatrixSpace::AllocateInternalStorage()']]], + ['algorithmstrategyobject_63',['algorithmstrategyobject',['../classIpopt_1_1AlgorithmStrategyObject.html#a662778d37614c58bd7299260fd54a401',1,'Ipopt::AlgorithmStrategyObject::AlgorithmStrategyObject(const AlgorithmStrategyObject &)'],['../classIpopt_1_1AlgorithmStrategyObject.html#af2d972f86eec83a96682bd6741a1d265',1,'Ipopt::AlgorithmStrategyObject::AlgorithmStrategyObject()']]], + ['allocateinternalstorage_64',['allocateinternalstorage',['../classIpopt_1_1GenTMatrixSpace.html#a1c2814fd376fed34f1157d6020ff2fd0',1,'Ipopt::GenTMatrixSpace::AllocateInternalStorage()'],['../classIpopt_1_1DenseVectorSpace.html#a2d38cbd31b1c31513c63ef405c52d870',1,'Ipopt::DenseVectorSpace::AllocateInternalStorage()'],['../classIpopt_1_1SymTMatrixSpace.html#afb19d4858d24f858599682d696ce32fa',1,'Ipopt::SymTMatrixSpace::AllocateInternalStorage()']]], ['allowclobber_65',['AllowClobber',['../classIpopt_1_1OptionsList_1_1OptionValue.html#a41407ff0e47bd075412362253ec2b891',1,'Ipopt::OptionsList::OptionValue']]], ['amax_66',['Amax',['../classIpopt_1_1Vector.html#aa4ac4b593eb87be0591b73da85547a93',1,'Ipopt::Vector']]], - ['amaximpl_67',['amaximpl',['../classIpopt_1_1DenseVector.html#ab0a5a63f5af657e5a09ba7d27d320d14',1,'Ipopt::DenseVector::AmaxImpl()'],['../classIpopt_1_1CompoundVector.html#a4fa5f238a5c5c1e32e1fa57fbfc029ef',1,'Ipopt::CompoundVector::AmaxImpl()'],['../classIpopt_1_1Vector.html#a03d64a6a07196d450bf53e044fbb3f31',1,'Ipopt::Vector::AmaxImpl()']]], - ['amploption_68',['amploption',['../classIpopt_1_1AmplOptionsList_1_1AmplOption.html#a4c53538a7949e9085e2d2b543589bf0f',1,'Ipopt::AmplOptionsList::AmplOption::AmplOption(const std::string &ipopt_option_name, AmplOptionType type, const std::string &description)'],['../classIpopt_1_1AmplOptionsList_1_1AmplOption.html#ac3ada7620c611670ea9ed57957a30c53',1,'Ipopt::AmplOptionsList::AmplOption::AmplOption(const AmplOption &)'],['../classIpopt_1_1AmplOptionsList_1_1AmplOption.html#a4a122c210c16a65bd58a8b4d98de0d28',1,'Ipopt::AmplOptionsList::AmplOption::AmplOption()']]], + ['amaximpl_67',['amaximpl',['../classIpopt_1_1Vector.html#a03d64a6a07196d450bf53e044fbb3f31',1,'Ipopt::Vector::AmaxImpl()'],['../classIpopt_1_1CompoundVector.html#a4fa5f238a5c5c1e32e1fa57fbfc029ef',1,'Ipopt::CompoundVector::AmaxImpl()'],['../classIpopt_1_1DenseVector.html#ab0a5a63f5af657e5a09ba7d27d320d14',1,'Ipopt::DenseVector::AmaxImpl()']]], + ['amploption_68',['amploption',['../classIpopt_1_1AmplOptionsList_1_1AmplOption.html#a4c53538a7949e9085e2d2b543589bf0f',1,'Ipopt::AmplOptionsList::AmplOption::AmplOption(const std::string &ipopt_option_name, AmplOptionType type, const std::string &description)'],['../classIpopt_1_1AmplOptionsList_1_1AmplOption.html#a4a122c210c16a65bd58a8b4d98de0d28',1,'Ipopt::AmplOptionsList::AmplOption::AmplOption()'],['../classIpopt_1_1AmplOptionsList_1_1AmplOption.html#ac3ada7620c611670ea9ed57957a30c53',1,'Ipopt::AmplOptionsList::AmplOption::AmplOption(const AmplOption &)']]], ['amploptionslist_69',['amploptionslist',['../classIpopt_1_1AmplOptionsList.html#a6ad24ebc99ae89285b661280ace47236',1,'Ipopt::AmplOptionsList::AmplOptionsList(const AmplOptionsList &)'],['../classIpopt_1_1AmplOptionsList.html#ae5aa08c0cf914da15d99b2ddd155c5ba',1,'Ipopt::AmplOptionsList::AmplOptionsList()']]], ['amplsolverobject_70',['AmplSolverObject',['../classIpopt_1_1AmplTNLP.html#a2d7cb241b31a80146129bc5799d9eee2',1,'Ipopt::AmplTNLP']]], ['amplsuffixhandler_71',['amplsuffixhandler',['../classIpopt_1_1AmplSuffixHandler.html#ae3e2273b878b9f944a8f0cce55bd54c9',1,'Ipopt::AmplSuffixHandler::AmplSuffixHandler()'],['../classIpopt_1_1AmplSuffixHandler.html#adb8ba0b3b285145b3b762b78b4d55b22',1,'Ipopt::AmplSuffixHandler::AmplSuffixHandler(const AmplSuffixHandler &)']]], - ['ampltnlp_72',['ampltnlp',['../classIpopt_1_1AmplTNLP.html#aed410ab6bd273ede77050a36bd85c240',1,'Ipopt::AmplTNLP::AmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, const char *const *argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL)'],['../classIpopt_1_1AmplTNLP.html#a5bf35981f12a6386e5f823fe3b99f299',1,'Ipopt::AmplTNLP::AmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< OptionsList > options, char **&argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL)'],['../classIpopt_1_1AmplTNLP.html#a5a577627e4c83061a05787930724620f',1,'Ipopt::AmplTNLP::AmplTNLP()'],['../classIpopt_1_1AmplTNLP.html#a2ab397aae36cd6e826376d264fa9d315',1,'Ipopt::AmplTNLP::AmplTNLP(const AmplTNLP &)']]], + ['ampltnlp_72',['ampltnlp',['../classIpopt_1_1AmplTNLP.html#a68f7a8e7314fc848ebdb190393121fe7',1,'Ipopt::AmplTNLP::AmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< RegisteredOptions > regoptions, const SmartPtr< OptionsList > options, const char *const *argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL, bool checkinterrupt=false)'],['../classIpopt_1_1AmplTNLP.html#a5bf35981f12a6386e5f823fe3b99f299',1,'Ipopt::AmplTNLP::AmplTNLP(const SmartPtr< const Journalist > &jnlst, const SmartPtr< OptionsList > options, char **&argv, SmartPtr< AmplSuffixHandler > suffix_handler=NULL, bool allow_discrete=false, SmartPtr< AmplOptionsList > ampl_options_list=NULL, const char *ampl_option_string=NULL, const char *ampl_invokation_string=NULL, const char *ampl_banner_string=NULL, std::string *nl_file_content=NULL)'],['../classIpopt_1_1AmplTNLP.html#a5a577627e4c83061a05787930724620f',1,'Ipopt::AmplTNLP::AmplTNLP()'],['../classIpopt_1_1AmplTNLP.html#a2ab397aae36cd6e826376d264fa9d315',1,'Ipopt::AmplTNLP::AmplTNLP(const AmplTNLP &)']]], ['append_5findex_73',['append_Index',['../namespaceIpopt.html#a334ce463bb33929ee1ff24ce080241a8',1,'Ipopt']]], - ['append_5finfo_5fstring_74',['Append_info_string',['../classIpopt_1_1IpoptData.html#a1ad629fbc0f5fa6e76b49b310831241c',1,'Ipopt::IpoptData']]], + ['append_5finfo_5fstring_74',['append_info_string',['../classIpopt_1_1IpoptData.html#a1ad629fbc0f5fa6e76b49b310831241c',1,'Ipopt::IpoptData::Append_info_string(const std::string &add_str)'],['../classIpopt_1_1IpoptData.html#a480f5eb58d6048f6a9a2ce22e4d5790c',1,'Ipopt::IpoptData::Append_info_string(const std::string &add_str, double value)']]], ['apply_5fgrad_5fobj_5fscaling_75',['apply_grad_obj_scaling',['../classIpopt_1_1NLPScalingObject.html#ad7fb3340e3e79f922ceafe92684dd3c1',1,'Ipopt::NLPScalingObject']]], ['apply_5fgrad_5fobj_5fscaling_5fnonconst_76',['apply_grad_obj_scaling_NonConst',['../classIpopt_1_1NLPScalingObject.html#a129968566c09e86243ddfe25664f73d4',1,'Ipopt::NLPScalingObject']]], ['apply_5fhessian_5fscaling_77',['apply_hessian_scaling',['../classIpopt_1_1StandardScalingBase.html#a916dc20819ea1c630898ee1eafe2db30',1,'Ipopt::StandardScalingBase::apply_hessian_scaling()'],['../classIpopt_1_1NLPScalingObject.html#ab8325156479bc87d78ce80a552843ecc',1,'Ipopt::NLPScalingObject::apply_hessian_scaling()']]], diff --git a/search/functions_11.js b/search/functions_11.js index 52f14c8b4..8c374a83a 100644 --- a/search/functions_11.js +++ b/search/functions_11.js @@ -19,55 +19,56 @@ var searchData= ['registeredoptions_16',['registeredoptions',['../classIpopt_1_1RegisteredCategory.html#aea5adb2b4f25ac8750d9a1f96a668f3a',1,'Ipopt::RegisteredCategory::RegisteredOptions()'],['../classIpopt_1_1RegisteredOptions.html#a323f6aabcc53c3735c4d5c2983af7652',1,'Ipopt::RegisteredOptions::RegisteredOptions()']]], ['registeredoptionslist_17',['RegisteredOptionsList',['../classIpopt_1_1RegisteredOptions.html#aeaa6e0a416d75748184ac1f282908970',1,'Ipopt::RegisteredOptions']]], ['registeringcategory_18',['registeringcategory',['../classIpopt_1_1RegisteredOption.html#a52552d7e615200651f12ecaf962e08c8',1,'Ipopt::RegisteredOption::RegisteringCategory()'],['../classIpopt_1_1RegisteredOptions.html#a5f287411b5b481164803ada7dbcf7a2e',1,'Ipopt::RegisteredOptions::RegisteringCategory()']]], - ['registeroptions_19',['registeroptions',['../classIpopt_1_1RestoIpoptNLP.html#aca2c0e491607b5291fe47de944373e0c',1,'Ipopt::RestoIpoptNLP::RegisterOptions()'],['../classIpopt_1_1Ma86SolverInterface.html#ad1b52287e8b2c500b909d924970baba4',1,'Ipopt::Ma86SolverInterface::RegisterOptions()'],['../classIpopt_1_1Ma77SolverInterface.html#ae4aa999611ef53e230086f450d27dc2c',1,'Ipopt::Ma77SolverInterface::RegisterOptions()'],['../classIpopt_1_1Ma57TSolverInterface.html#a179f75991cbc1e72f29fe39d96dc8b75',1,'Ipopt::Ma57TSolverInterface::RegisterOptions()'],['../classIpopt_1_1Ma28TDependencyDetector.html#a200ddcb1f7063bf8fec35469c827a49f',1,'Ipopt::Ma28TDependencyDetector::RegisterOptions()'],['../classIpopt_1_1Ma27TSolverInterface.html#a75956e60e11e47f9defd21448168e187',1,'Ipopt::Ma27TSolverInterface::RegisterOptions()'],['../classIpopt_1_1IterativeWsmpSolverInterface.html#afe030df840e6e688f2ea3a9ee527eb13',1,'Ipopt::IterativeWsmpSolverInterface::RegisterOptions()'],['../classIpopt_1_1WarmStartIterateInitializer.html#a938724ed700eca30c32c3f7f9017eb0c',1,'Ipopt::WarmStartIterateInitializer::RegisterOptions()'],['../classIpopt_1_1RestoPenaltyConvergenceCheck.html#ac84145578c754797bce41ee2af177e2b',1,'Ipopt::RestoPenaltyConvergenceCheck::RegisterOptions()'],['../classIpopt_1_1MinC__1NrmRestorationPhase.html#aaed60810f6751ec3e46668e945b08b76',1,'Ipopt::MinC_1NrmRestorationPhase::RegisterOptions()'],['../classIpopt_1_1RestoIterateInitializer.html#af00b36b6bd6aa0a0177aef7f51d7f51b',1,'Ipopt::RestoIterateInitializer::RegisterOptions()'],['../classIpopt_1_1RestoFilterConvergenceCheck.html#a9d6424ef4356ab2694e548daad9b39b2',1,'Ipopt::RestoFilterConvergenceCheck::RegisterOptions()'],['../classIpopt_1_1RestoConvergenceCheck.html#a92c6ec2e331dc5085b6600ac977bb7e2',1,'Ipopt::RestoConvergenceCheck::RegisterOptions()'],['../classIpopt_1_1QualityFunctionMuOracle.html#a159434694a4a0b414341ab5de80dc32f',1,'Ipopt::QualityFunctionMuOracle::RegisterOptions()'],['../classIpopt_1_1RegisteredOptions.html#a20f15c22268c9098ed751d32d1125683',1,'Ipopt::RegisteredOptions::RegisterOptions()'],['../classIpopt_1_1ProbingMuOracle.html#a27081c7adc587ed76474cca99175fce5',1,'Ipopt::ProbingMuOracle::RegisterOptions()'],['../classIpopt_1_1Ma97SolverInterface.html#a8bbb074fb095afc9232b21a4f969ac51',1,'Ipopt::Ma97SolverInterface::RegisterOptions()'],['../classIpopt_1_1MumpsSolverInterface.html#a1c87092ecca460918419008593c3f140',1,'Ipopt::MumpsSolverInterface::RegisterOptions()'],['../classIpopt_1_1PardisoMKLSolverInterface.html#ab199200c418434848c5bf0d22360c612',1,'Ipopt::PardisoMKLSolverInterface::RegisterOptions()'],['../classIpopt_1_1PardisoSolverInterface.html#a2714301e798b4c1ae6e87dd41c7000a2',1,'Ipopt::PardisoSolverInterface::RegisterOptions()'],['../classIpopt_1_1SpralSolverInterface.html#ac2257103d9a1f3a83ca9f397aa75d2fe',1,'Ipopt::SpralSolverInterface::RegisterOptions()'],['../classIpopt_1_1TSymDependencyDetector.html#a8eee5e6395d339313258aae4499b35fc',1,'Ipopt::TSymDependencyDetector::RegisterOptions()'],['../classIpopt_1_1TSymLinearSolver.html#ad09894475039a90d87b564c7cb2f185d',1,'Ipopt::TSymLinearSolver::RegisterOptions()'],['../classIpopt_1_1WsmpSolverInterface.html#aeeb760e84110b8415d9c2bc7940efd2c',1,'Ipopt::WsmpSolverInterface::RegisterOptions()'],['../classIpopt_1_1CGPenaltyCq.html#a308c64081261b031d11ab9fce557f717',1,'Ipopt::CGPenaltyCq::RegisterOptions()'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#a6a24374dc62c0cf7bfd4ed04bad9f3f9',1,'Ipopt::CGPenaltyLSAcceptor::RegisterOptions()'],['../classIpopt_1_1CGPerturbationHandler.html#af7c091e66d74b8c9e0d41d6ab5bfd592',1,'Ipopt::CGPerturbationHandler::RegisterOptions()'],['../classIpopt_1_1CGSearchDirCalculator.html#a3b83859027473244f84045313a18c1e5',1,'Ipopt::CGSearchDirCalculator::RegisterOptions()'],['../classIpopt_1_1IpoptApplication.html#afa9569b07b3cec161c3d998e0fc520ba',1,'Ipopt::IpoptApplication::RegisterOptions()'],['../classIpopt_1_1TNLPAdapter.html#a470d71ff0c3e7fec7f00d34e7c0253bf',1,'Ipopt::TNLPAdapter::RegisterOptions()'],['../classIpopt_1_1SensApplication.html#aedbaa582139dc53f69a6e0f77ecc3ba2',1,'Ipopt::SensApplication::RegisterOptions()'],['../classIpopt_1_1PDSearchDirCalculator.html#a7d20d557c24eafe7ceec21946121044d',1,'Ipopt::PDSearchDirCalculator::RegisterOptions()'],['../classIpopt_1_1PenaltyLSAcceptor.html#ac6abe9f599fb294ee597891c41f2f032',1,'Ipopt::PenaltyLSAcceptor::RegisterOptions()'],['../classIpopt_1_1InexactAlgorithmBuilder.html#a61dbb31f0b21765a10e3922e45eacfa9',1,'Ipopt::InexactAlgorithmBuilder::RegisterOptions()'],['../classIpopt_1_1InexactCq.html#a881d81cdeac7c46c35b8ea1fb5554fb9',1,'Ipopt::InexactCq::RegisterOptions()'],['../classIpopt_1_1InexactDoglegNormalStep.html#a82278b5ec2ede5687e9a239da69964a6',1,'Ipopt::InexactDoglegNormalStep::RegisterOptions()'],['../classIpopt_1_1InexactLSAcceptor.html#a440c3ed5086ddf6f4597264071e24bb3',1,'Ipopt::InexactLSAcceptor::RegisterOptions()'],['../classIpopt_1_1InexactNewtonNormalStep.html#aef234fb92871404831b9c9809a888831',1,'Ipopt::InexactNewtonNormalStep::RegisterOptions()'],['../classIpopt_1_1InexactNormalTerminationTester.html#a2504b3e1d0e3e52b7c310cf0c16eea0c',1,'Ipopt::InexactNormalTerminationTester::RegisterOptions()'],['../classIpopt_1_1InexactPDSolver.html#a001f7c31ab64f3720b5aa930892507cf',1,'Ipopt::InexactPDSolver::RegisterOptions()'],['../classIpopt_1_1InexactPDTerminationTester.html#af72465cd36d75cedd602456be728c0d9',1,'Ipopt::InexactPDTerminationTester::RegisterOptions()'],['../classIpopt_1_1InexactSearchDirCalculator.html#a6b02443fe844835d954c3138c61bd0bf',1,'Ipopt::InexactSearchDirCalculator::RegisterOptions()'],['../classIpopt_1_1IterativePardisoSolverInterface.html#a1646042f9217546da3f50c95d1f1032f',1,'Ipopt::IterativePardisoSolverInterface::RegisterOptions()'],['../classIpopt_1_1AdaptiveMuUpdate.html#a3ea28e8222cc9b1442c6d8534126c490',1,'Ipopt::AdaptiveMuUpdate::RegisterOptions()'],['../classIpopt_1_1AlgorithmBuilder.html#abb36238fabd5aa3ea5f6ecfc4c40d6a7',1,'Ipopt::AlgorithmBuilder::RegisterOptions()'],['../classIpopt_1_1BacktrackingLineSearch.html#a8bf0859cf762f870bf270f0c4c87c8fa',1,'Ipopt::BacktrackingLineSearch::RegisterOptions()'],['../classIpopt_1_1BacktrackingLSAcceptor.html#a948e091f9b593bfd4b057053f3c7077e',1,'Ipopt::BacktrackingLSAcceptor::RegisterOptions()'],['../classIpopt_1_1EquilibrationScaling.html#a443dd4fda46e8911de15150018052260',1,'Ipopt::EquilibrationScaling::RegisterOptions()'],['../classIpopt_1_1PDPerturbationHandler.html#a4550a7afc13bb81c07b04f9127518748',1,'Ipopt::PDPerturbationHandler::RegisterOptions()'],['../classIpopt_1_1PDFullSpaceSolver.html#a48ccadea2bef95f5f335830463a6c8e5',1,'Ipopt::PDFullSpaceSolver::RegisterOptions()'],['../classIpopt_1_1OrigIterationOutput.html#a8e6fb688861aa41e6f4659b431ec8dca',1,'Ipopt::OrigIterationOutput::RegisterOptions()'],['../classIpopt_1_1OrigIpoptNLP.html#a2d43d86f8ff146fa09edc769cfd0dbcf',1,'Ipopt::OrigIpoptNLP::RegisterOptions()'],['../classIpopt_1_1OptimalityErrorConvergenceCheck.html#ac0b719e6525a8ebfef6bbf3ed26712f6',1,'Ipopt::OptimalityErrorConvergenceCheck::RegisterOptions()'],['../classIpopt_1_1StandardScalingBase.html#aa70659fdcafd46e6e8a26a37cbf48c28',1,'Ipopt::StandardScalingBase::RegisterOptions()'],['../classIpopt_1_1MonotoneMuUpdate.html#ae2c8414202ca817cc77a06815413aa41',1,'Ipopt::MonotoneMuUpdate::RegisterOptions()'],['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a3188133b8913b894c778ddc89d6c3dd2',1,'Ipopt::LimMemQuasiNewtonUpdater::RegisterOptions()'],['../classIpopt_1_1IpoptData.html#ab597ccfaab6bb0171d5c65196f804ded',1,'Ipopt::IpoptData::RegisterOptions()'],['../classIpopt_1_1IpoptCalculatedQuantities.html#afe82ce10ea4ab69b38a81fc5f439370b',1,'Ipopt::IpoptCalculatedQuantities::RegisterOptions()'],['../classIpopt_1_1IpoptAlgorithm.html#ac8e03902f681e8d3e7089efc103f58ed',1,'Ipopt::IpoptAlgorithm::RegisterOptions()'],['../classIpopt_1_1GradientScaling.html#af99cbf0d22944681ec7afd11be00a8df',1,'Ipopt::GradientScaling::RegisterOptions()'],['../classIpopt_1_1FilterLSAcceptor.html#a1641246a9e392227b67bbd688c67f031',1,'Ipopt::FilterLSAcceptor::RegisterOptions()'],['../classIpopt_1_1DefaultIterateInitializer.html#aef6fd1af247a0219573b9071a31bc3f7',1,'Ipopt::DefaultIterateInitializer::RegisterOptions()']]], - ['registeroptions_5falgorithm_20',['RegisterOptions_Algorithm',['../namespaceIpopt.html#a385e6ad5a3662c457aa4af3fa0b2c24d',1,'Ipopt']]], - ['registeroptions_5fcgpenalty_21',['RegisterOptions_CGPenalty',['../namespaceIpopt.html#a4456b4cd31d5d2859c972c71b5804118',1,'Ipopt']]], - ['registeroptions_5finexact_22',['RegisterOptions_Inexact',['../namespaceIpopt.html#af7180660bd07fa8efb669a2b6ffd6f97',1,'Ipopt']]], - ['registeroptions_5finterfaces_23',['RegisterOptions_Interfaces',['../namespaceIpopt.html#a5c6bb3514c26c65d40d06a490c2c34a2',1,'Ipopt']]], - ['registeroptions_5flinearsolvers_24',['RegisterOptions_LinearSolvers',['../namespaceIpopt.html#ac13fbf74ce650285025c5a6e84bb511b',1,'Ipopt']]], - ['registeroptions_5fsipopt_25',['RegisterOptions_sIPOPT',['../namespaceIpopt.html#a9f8cdfe8a995380c9e20595952178386',1,'Ipopt']]], - ['regoptions_26',['RegOptions',['../classIpopt_1_1IpoptApplication.html#a6f0bfd1cac08fa9a3fe9de4d47d42e04',1,'Ipopt::IpoptApplication']]], - ['relax_5fbounds_27',['relax_bounds',['../classIpopt_1_1OrigIpoptNLP.html#a527887cb622251b97802ec2d862cbef5',1,'Ipopt::OrigIpoptNLP']]], - ['releasepointer_5f_28',['ReleasePointer_',['../classIpopt_1_1SmartPtr.html#ab74ca6e796ac58fa4ad335d8112ffae2',1,'Ipopt::SmartPtr']]], - ['releaseref_29',['ReleaseRef',['../classIpopt_1_1ReferencedObject.html#ae6c952e7d1a63080dc8f121c008944fc',1,'Ipopt::ReferencedObject']]], - ['remembercurrentpointasaccepted_30',['RememberCurrentPointAsAccepted',['../classIpopt_1_1AdaptiveMuUpdate.html#aa81a487e86ff119827c39c11eb43beba',1,'Ipopt::AdaptiveMuUpdate']]], - ['reoptimizenlp_31',['ReOptimizeNLP',['../classIpopt_1_1IpoptApplication.html#a483aa387ec56687a106d414da5df4ad8',1,'Ipopt::IpoptApplication']]], - ['reoptimizetnlp_32',['ReOptimizeTNLP',['../classIpopt_1_1IpoptApplication.html#a24de5d491b570b01e36a329c5a3c9471',1,'Ipopt::IpoptApplication']]], - ['reportexception_33',['ReportException',['../classIpopt_1_1IpoptException.html#a590c35a9c2f5984574933f9fcaab25c4',1,'Ipopt::IpoptException']]], - ['requestattach_34',['RequestAttach',['../classIpopt_1_1Observer.html#ad8a27925a917ba926d713ceaac3efd7d',1,'Ipopt::Observer']]], - ['requestdetach_35',['RequestDetach',['../classIpopt_1_1Observer.html#a7006c91bc2893aa7aaa03799820f76dd',1,'Ipopt::Observer']]], - ['reset_36',['reset',['../classIpopt_1_1PenaltyLSAcceptor.html#a840b8529b9f2f3b42e90ba33d8a932fe',1,'Ipopt::PenaltyLSAcceptor::Reset()'],['../classIpopt_1_1InexactLSAcceptor.html#a1a7cccb588951eebf3ea838d3af14581',1,'Ipopt::InexactLSAcceptor::Reset()'],['../classIpopt_1_1BacktrackingLineSearch.html#ac5f93da335cb0a2d7d2eb324664839a9',1,'Ipopt::BacktrackingLineSearch::Reset()'],['../classIpopt_1_1BacktrackingLSAcceptor.html#a9186dcaa4d969aaeb9579dc47de70acc',1,'Ipopt::BacktrackingLSAcceptor::Reset()'],['../classIpopt_1_1FilterLSAcceptor.html#aa7719befa41ec1b44db3c752814fa17d',1,'Ipopt::FilterLSAcceptor::Reset()'],['../classIpopt_1_1LineSearch.html#ad33f5703834e99614d2eace2846ac5c0',1,'Ipopt::LineSearch::Reset()'],['../classIpopt_1_1TimedTask.html#a7f249501c707ba9c0bec5cecee93cc65',1,'Ipopt::TimedTask::Reset()'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#a9d9c631b4bd1d3c1ee4800addb702a1a',1,'Ipopt::CGPenaltyLSAcceptor::Reset()']]], - ['reset_5fdata_5fa_37',['reset_data_A',['../classIpopt_1_1PCalculator.html#a61c8c9077bc0147a389039b9d322ef67',1,'Ipopt::PCalculator']]], - ['resetadjustedtrialslacks_38',['ResetAdjustedTrialSlacks',['../classIpopt_1_1IpoptCalculatedQuantities.html#aff56a0ca444d41d9330d314bb49d681f',1,'Ipopt::IpoptCalculatedQuantities']]], - ['resetinfo_39',['ResetInfo',['../classIpopt_1_1IpoptData.html#a885f82e4eed0d97b5f0e99a862a4bc42',1,'Ipopt::IpoptData']]], - ['resetlist_40',['ResetList',['../classIpopt_1_1PiecewisePenalty.html#a6cf7901c5173b6bbade4d1f59eccc967',1,'Ipopt::PiecewisePenalty']]], - ['resetslacks_41',['ResetSlacks',['../classIpopt_1_1InexactLSAcceptor.html#a70c538d464d4c11c7e7fb13854f1c73f',1,'Ipopt::InexactLSAcceptor']]], - ['resettimes_42',['ResetTimes',['../classIpopt_1_1TimingStatistics.html#a5d48b224373c66adc04d72577205a9ae',1,'Ipopt::TimingStatistics']]], - ['resortbnds_43',['ResortBnds',['../classIpopt_1_1TNLPAdapter.html#a27af8d1553bc89fc1c003459bb082fcc',1,'Ipopt::TNLPAdapter']]], - ['resortboundmultipliers_44',['ResortBoundMultipliers',['../classIpopt_1_1TNLPAdapter.html#acd0254ec27ef13e6dc8527154f9713bc',1,'Ipopt::TNLPAdapter']]], - ['resortbounds_45',['ResortBounds',['../classIpopt_1_1TNLPAdapter.html#a0c135f4a0ca1a65154feb164ff3e45ae',1,'Ipopt::TNLPAdapter']]], - ['resortg_46',['ResortG',['../classIpopt_1_1TNLPAdapter.html#aa7d13eace81ff7d3181ef629ce3a4a6d',1,'Ipopt::TNLPAdapter']]], - ['resortx_47',['ResortX',['../classIpopt_1_1TNLPAdapter.html#a1f19ad31a25cbed6090f504857e85959',1,'Ipopt::TNLPAdapter']]], - ['restoconvergencecheck_48',['restoconvergencecheck',['../classIpopt_1_1RestoConvergenceCheck.html#aa98e9bbe93bca27a571085ce9ff4a972',1,'Ipopt::RestoConvergenceCheck::RestoConvergenceCheck(const RestoConvergenceCheck &)'],['../classIpopt_1_1RestoConvergenceCheck.html#aea0959028bda24ac812ea66d43f26354',1,'Ipopt::RestoConvergenceCheck::RestoConvergenceCheck()']]], - ['restofilterconvergencecheck_49',['restofilterconvergencecheck',['../classIpopt_1_1RestoFilterConvergenceCheck.html#a6154d5424191ef92b9b010965ff6e401',1,'Ipopt::RestoFilterConvergenceCheck::RestoFilterConvergenceCheck()'],['../classIpopt_1_1RestoFilterConvergenceCheck.html#a260d4be553eaa335187f4e394d72e89d',1,'Ipopt::RestoFilterConvergenceCheck::RestoFilterConvergenceCheck(const RestoFilterConvergenceCheck &)']]], - ['restoipoptnlp_50',['restoipoptnlp',['../classIpopt_1_1RestoIpoptNLP.html#ae7921dfab15c5c9c7bd042babd4b9f9a',1,'Ipopt::RestoIpoptNLP::RestoIpoptNLP(IpoptNLP &orig_ip_nlp, IpoptData &orig_ip_data, IpoptCalculatedQuantities &orig_ip_cq)'],['../classIpopt_1_1RestoIpoptNLP.html#a61da4a7113966f6fafc70afe2aa93e64',1,'Ipopt::RestoIpoptNLP::RestoIpoptNLP()'],['../classIpopt_1_1RestoIpoptNLP.html#ae59df458609ca72cfb4da737d79b5048',1,'Ipopt::RestoIpoptNLP::RestoIpoptNLP(const RestoIpoptNLP &)']]], - ['restoiterateinitializer_51',['restoiterateinitializer',['../classIpopt_1_1RestoIterateInitializer.html#a42a7d05dc6bf280e9e97796ebd30f04d',1,'Ipopt::RestoIterateInitializer::RestoIterateInitializer()'],['../classIpopt_1_1RestoIterateInitializer.html#ad66c5638a71aca4c5604cc018bf6675c',1,'Ipopt::RestoIterateInitializer::RestoIterateInitializer(const SmartPtr< EqMultiplierCalculator > &eq_mult_calculator)'],['../classIpopt_1_1RestoIterateInitializer.html#a69815e84a3971f39c387324ab390fdee',1,'Ipopt::RestoIterateInitializer::RestoIterateInitializer(const RestoIterateInitializer &)']]], - ['restoiterationoutput_52',['restoiterationoutput',['../classIpopt_1_1RestoIterationOutput.html#abc7a583078b7bd5eae6092db3a57c500',1,'Ipopt::RestoIterationOutput::RestoIterationOutput(const SmartPtr< OrigIterationOutput > &resto_orig_iteration_output)'],['../classIpopt_1_1RestoIterationOutput.html#ac717737ae83fb59be251e7c97e543a9b',1,'Ipopt::RestoIterationOutput::RestoIterationOutput()'],['../classIpopt_1_1RestoIterationOutput.html#a0df6e60988124aa3a74b61b96e9d339e',1,'Ipopt::RestoIterationOutput::RestoIterationOutput(const RestoIterationOutput &)']]], - ['restopenaltyconvergencecheck_53',['restopenaltyconvergencecheck',['../classIpopt_1_1RestoPenaltyConvergenceCheck.html#a2022b6e91f58eb4721b143552a6e8548',1,'Ipopt::RestoPenaltyConvergenceCheck::RestoPenaltyConvergenceCheck(const RestoPenaltyConvergenceCheck &)'],['../classIpopt_1_1RestoPenaltyConvergenceCheck.html#ac5a0d7a55f3008d594f72227656f94ec',1,'Ipopt::RestoPenaltyConvergenceCheck::RestoPenaltyConvergenceCheck()']]], - ['restor_5fcounter_54',['restor_counter',['../classIpopt_1_1CGPenaltyData.html#af3636e593be3a1a50b6b967e77bc934b',1,'Ipopt::CGPenaltyData']]], - ['restor_5fiter_55',['restor_iter',['../classIpopt_1_1CGPenaltyData.html#a4f517e4f4fbb18d667c78fb476744c1f',1,'Ipopt::CGPenaltyData']]], - ['restorationphase_56',['restorationphase',['../classIpopt_1_1RestorationPhase.html#ac5ef685cf3f924bf9ff370842b7cdfee',1,'Ipopt::RestorationPhase::RestorationPhase()'],['../classIpopt_1_1RestorationPhase.html#a84bf22fc34120f0f79d080d6236919bc',1,'Ipopt::RestorationPhase::RestorationPhase(const RestorationPhase &)']]], - ['restoreacceptablepoint_57',['RestoreAcceptablePoint',['../classIpopt_1_1BacktrackingLineSearch.html#aa0a57f17d8646480bb31b424039bcb3b',1,'Ipopt::BacktrackingLineSearch']]], - ['restorebestpoint_58',['RestoreBestPoint',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a622419aee9d39bc2649f5213b8d774e0',1,'Ipopt::CGPenaltyLSAcceptor']]], - ['restorediterate_59',['restorediterate',['../classIpopt_1_1CGPenaltyLSAcceptor.html#abe021b3ea44200bbb04acc75391927d3',1,'Ipopt::CGPenaltyLSAcceptor::RestoredIterate()'],['../classIpopt_1_1BacktrackingLSAcceptor.html#a23f8a7e07b7ab0e0d91a40d846b59472',1,'Ipopt::BacktrackingLSAcceptor::RestoredIterate()']]], - ['restoreinternaldatabackup_60',['RestoreInternalDataBackup',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a8e7c02278b58807cd441410d983e3fd0',1,'Ipopt::LimMemQuasiNewtonUpdater']]], - ['restorestorationphase_61',['restorestorationphase',['../classIpopt_1_1RestoRestorationPhase.html#ae49dbf5dad4b3ac021a084a165581472',1,'Ipopt::RestoRestorationPhase::RestoRestorationPhase(const RestoRestorationPhase &)'],['../classIpopt_1_1RestoRestorationPhase.html#a0f0fea6e91a9fca43605a799358d8967',1,'Ipopt::RestoRestorationPhase::RestoRestorationPhase()']]], - ['rethrownonipoptexception_62',['RethrowNonIpoptException',['../classIpopt_1_1IpoptApplication.html#a83e1b7a32982852aee98f8a43e3e77a6',1,'Ipopt::IpoptApplication']]], - ['rho_63',['Rho',['../classIpopt_1_1RestoIpoptNLP.html#a24cbed6e8488d2562f3357a9a6605988',1,'Ipopt::RestoIpoptNLP']]], - ['rhs_5fcr_64',['Rhs_cR',['../classIpopt_1_1AugRestoSystemSolver.html#a14c03a65d291a06f7ececa74b3482bc6',1,'Ipopt::AugRestoSystemSolver']]], - ['rhs_5fdr_65',['Rhs_dR',['../classIpopt_1_1AugRestoSystemSolver.html#a55ee19722884c032cce55471351b45b1',1,'Ipopt::AugRestoSystemSolver']]], - ['rowcolscaling_66',['rowcolscaling',['../classIpopt_1_1SymScaledMatrix.html#a02e5ed72d6f99d5add1116f46a02641a',1,'Ipopt::SymScaledMatrix::RowColScaling()'],['../classIpopt_1_1SymScaledMatrixSpace.html#a0d26e0d8ababff487c004ff1a9d95272',1,'Ipopt::SymScaledMatrixSpace::RowColScaling()']]], - ['rowscaling_67',['rowscaling',['../classIpopt_1_1ScaledMatrix.html#a6d196b32119ec34a8f11d8e47d5f050f',1,'Ipopt::ScaledMatrix::RowScaling()'],['../classIpopt_1_1ScaledMatrixSpace.html#a0ae7816bb0219df6907903217b32630f',1,'Ipopt::ScaledMatrixSpace::RowScaling()']]], - ['rowvectorspace_68',['rowvectorspace',['../classIpopt_1_1ExpandedMultiVectorMatrix.html#a7a154afa75a5c5facbb95ffd7228b709',1,'Ipopt::ExpandedMultiVectorMatrix::RowVectorSpace()'],['../classIpopt_1_1ExpandedMultiVectorMatrixSpace.html#a9c71d1269e2fb826c16a2fe357e08034',1,'Ipopt::ExpandedMultiVectorMatrixSpace::RowVectorSpace()']]], - ['run_69',['run',['../classIpopt_1_1SensAlgorithm.html#a6170ca071834ff03e981e010412d4f98',1,'Ipopt::SensAlgorithm::Run()'],['../classIpopt_1_1SensApplication.html#a83eebc2a9636e2ab26f3ba3755ed0416',1,'Ipopt::SensApplication::Run()']]] + ['registerinterrupthandler_19',['RegisterInterruptHandler',['../namespaceIpopt.html#a67b597ce79fdd866ca80f49e553439ea',1,'Ipopt']]], + ['registeroptions_20',['registeroptions',['../classIpopt_1_1RestoIpoptNLP.html#aca2c0e491607b5291fe47de944373e0c',1,'Ipopt::RestoIpoptNLP::RegisterOptions()'],['../classIpopt_1_1Ma86SolverInterface.html#ad1b52287e8b2c500b909d924970baba4',1,'Ipopt::Ma86SolverInterface::RegisterOptions()'],['../classIpopt_1_1Ma77SolverInterface.html#ae4aa999611ef53e230086f450d27dc2c',1,'Ipopt::Ma77SolverInterface::RegisterOptions()'],['../classIpopt_1_1Ma57TSolverInterface.html#a179f75991cbc1e72f29fe39d96dc8b75',1,'Ipopt::Ma57TSolverInterface::RegisterOptions()'],['../classIpopt_1_1Ma28TDependencyDetector.html#a200ddcb1f7063bf8fec35469c827a49f',1,'Ipopt::Ma28TDependencyDetector::RegisterOptions()'],['../classIpopt_1_1Ma27TSolverInterface.html#a75956e60e11e47f9defd21448168e187',1,'Ipopt::Ma27TSolverInterface::RegisterOptions()'],['../classIpopt_1_1IterativeWsmpSolverInterface.html#afe030df840e6e688f2ea3a9ee527eb13',1,'Ipopt::IterativeWsmpSolverInterface::RegisterOptions()'],['../classIpopt_1_1WarmStartIterateInitializer.html#a938724ed700eca30c32c3f7f9017eb0c',1,'Ipopt::WarmStartIterateInitializer::RegisterOptions()'],['../classIpopt_1_1RestoPenaltyConvergenceCheck.html#ac84145578c754797bce41ee2af177e2b',1,'Ipopt::RestoPenaltyConvergenceCheck::RegisterOptions()'],['../classIpopt_1_1MinC__1NrmRestorationPhase.html#aaed60810f6751ec3e46668e945b08b76',1,'Ipopt::MinC_1NrmRestorationPhase::RegisterOptions()'],['../classIpopt_1_1RestoIterateInitializer.html#af00b36b6bd6aa0a0177aef7f51d7f51b',1,'Ipopt::RestoIterateInitializer::RegisterOptions()'],['../classIpopt_1_1RestoFilterConvergenceCheck.html#a9d6424ef4356ab2694e548daad9b39b2',1,'Ipopt::RestoFilterConvergenceCheck::RegisterOptions()'],['../classIpopt_1_1RestoConvergenceCheck.html#a92c6ec2e331dc5085b6600ac977bb7e2',1,'Ipopt::RestoConvergenceCheck::RegisterOptions()'],['../classIpopt_1_1RegisteredOptions.html#a20f15c22268c9098ed751d32d1125683',1,'Ipopt::RegisteredOptions::RegisterOptions()'],['../classIpopt_1_1QualityFunctionMuOracle.html#a159434694a4a0b414341ab5de80dc32f',1,'Ipopt::QualityFunctionMuOracle::RegisterOptions()'],['../classIpopt_1_1Ma97SolverInterface.html#a8bbb074fb095afc9232b21a4f969ac51',1,'Ipopt::Ma97SolverInterface::RegisterOptions()'],['../classIpopt_1_1MumpsSolverInterface.html#a1c87092ecca460918419008593c3f140',1,'Ipopt::MumpsSolverInterface::RegisterOptions()'],['../classIpopt_1_1PardisoMKLSolverInterface.html#ab199200c418434848c5bf0d22360c612',1,'Ipopt::PardisoMKLSolverInterface::RegisterOptions()'],['../classIpopt_1_1PardisoSolverInterface.html#a2714301e798b4c1ae6e87dd41c7000a2',1,'Ipopt::PardisoSolverInterface::RegisterOptions()'],['../classIpopt_1_1SpralSolverInterface.html#ac2257103d9a1f3a83ca9f397aa75d2fe',1,'Ipopt::SpralSolverInterface::RegisterOptions()'],['../classIpopt_1_1TSymDependencyDetector.html#a8eee5e6395d339313258aae4499b35fc',1,'Ipopt::TSymDependencyDetector::RegisterOptions()'],['../classIpopt_1_1TSymLinearSolver.html#ad09894475039a90d87b564c7cb2f185d',1,'Ipopt::TSymLinearSolver::RegisterOptions()'],['../classIpopt_1_1WsmpSolverInterface.html#aeeb760e84110b8415d9c2bc7940efd2c',1,'Ipopt::WsmpSolverInterface::RegisterOptions()'],['../classIpopt_1_1CGPenaltyCq.html#a308c64081261b031d11ab9fce557f717',1,'Ipopt::CGPenaltyCq::RegisterOptions()'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#a6a24374dc62c0cf7bfd4ed04bad9f3f9',1,'Ipopt::CGPenaltyLSAcceptor::RegisterOptions()'],['../classIpopt_1_1CGPerturbationHandler.html#af7c091e66d74b8c9e0d41d6ab5bfd592',1,'Ipopt::CGPerturbationHandler::RegisterOptions()'],['../classIpopt_1_1CGSearchDirCalculator.html#a3b83859027473244f84045313a18c1e5',1,'Ipopt::CGSearchDirCalculator::RegisterOptions()'],['../classIpopt_1_1IpoptApplication.html#afa9569b07b3cec161c3d998e0fc520ba',1,'Ipopt::IpoptApplication::RegisterOptions()'],['../classIpopt_1_1TNLPAdapter.html#a470d71ff0c3e7fec7f00d34e7c0253bf',1,'Ipopt::TNLPAdapter::RegisterOptions()'],['../classIpopt_1_1SensApplication.html#aedbaa582139dc53f69a6e0f77ecc3ba2',1,'Ipopt::SensApplication::RegisterOptions()'],['../classIpopt_1_1BacktrackingLineSearch.html#a8bf0859cf762f870bf270f0c4c87c8fa',1,'Ipopt::BacktrackingLineSearch::RegisterOptions()'],['../classIpopt_1_1InexactAlgorithmBuilder.html#a61dbb31f0b21765a10e3922e45eacfa9',1,'Ipopt::InexactAlgorithmBuilder::RegisterOptions()'],['../classIpopt_1_1ProbingMuOracle.html#a27081c7adc587ed76474cca99175fce5',1,'Ipopt::ProbingMuOracle::RegisterOptions()'],['../classIpopt_1_1InexactCq.html#a881d81cdeac7c46c35b8ea1fb5554fb9',1,'Ipopt::InexactCq::RegisterOptions()'],['../classIpopt_1_1InexactDoglegNormalStep.html#a82278b5ec2ede5687e9a239da69964a6',1,'Ipopt::InexactDoglegNormalStep::RegisterOptions()'],['../classIpopt_1_1InexactLSAcceptor.html#a440c3ed5086ddf6f4597264071e24bb3',1,'Ipopt::InexactLSAcceptor::RegisterOptions()'],['../classIpopt_1_1InexactNewtonNormalStep.html#aef234fb92871404831b9c9809a888831',1,'Ipopt::InexactNewtonNormalStep::RegisterOptions()'],['../classIpopt_1_1InexactNormalTerminationTester.html#a2504b3e1d0e3e52b7c310cf0c16eea0c',1,'Ipopt::InexactNormalTerminationTester::RegisterOptions()'],['../classIpopt_1_1InexactPDSolver.html#a001f7c31ab64f3720b5aa930892507cf',1,'Ipopt::InexactPDSolver::RegisterOptions()'],['../classIpopt_1_1InexactPDTerminationTester.html#af72465cd36d75cedd602456be728c0d9',1,'Ipopt::InexactPDTerminationTester::RegisterOptions()'],['../classIpopt_1_1InexactSearchDirCalculator.html#a6b02443fe844835d954c3138c61bd0bf',1,'Ipopt::InexactSearchDirCalculator::RegisterOptions()'],['../classIpopt_1_1IterativePardisoSolverInterface.html#a1646042f9217546da3f50c95d1f1032f',1,'Ipopt::IterativePardisoSolverInterface::RegisterOptions()'],['../classIpopt_1_1AdaptiveMuUpdate.html#a3ea28e8222cc9b1442c6d8534126c490',1,'Ipopt::AdaptiveMuUpdate::RegisterOptions()'],['../classIpopt_1_1AlgorithmBuilder.html#abb36238fabd5aa3ea5f6ecfc4c40d6a7',1,'Ipopt::AlgorithmBuilder::RegisterOptions()'],['../classIpopt_1_1BacktrackingLSAcceptor.html#a948e091f9b593bfd4b057053f3c7077e',1,'Ipopt::BacktrackingLSAcceptor::RegisterOptions()'],['../classIpopt_1_1DefaultIterateInitializer.html#aef6fd1af247a0219573b9071a31bc3f7',1,'Ipopt::DefaultIterateInitializer::RegisterOptions()'],['../classIpopt_1_1OrigIpoptNLP.html#a2d43d86f8ff146fa09edc769cfd0dbcf',1,'Ipopt::OrigIpoptNLP::RegisterOptions()'],['../classIpopt_1_1PenaltyLSAcceptor.html#ac6abe9f599fb294ee597891c41f2f032',1,'Ipopt::PenaltyLSAcceptor::RegisterOptions()'],['../classIpopt_1_1PDSearchDirCalculator.html#a7d20d557c24eafe7ceec21946121044d',1,'Ipopt::PDSearchDirCalculator::RegisterOptions()'],['../classIpopt_1_1PDPerturbationHandler.html#a4550a7afc13bb81c07b04f9127518748',1,'Ipopt::PDPerturbationHandler::RegisterOptions()'],['../classIpopt_1_1PDFullSpaceSolver.html#a48ccadea2bef95f5f335830463a6c8e5',1,'Ipopt::PDFullSpaceSolver::RegisterOptions()'],['../classIpopt_1_1OrigIterationOutput.html#a8e6fb688861aa41e6f4659b431ec8dca',1,'Ipopt::OrigIterationOutput::RegisterOptions()'],['../classIpopt_1_1EquilibrationScaling.html#a443dd4fda46e8911de15150018052260',1,'Ipopt::EquilibrationScaling::RegisterOptions()'],['../classIpopt_1_1OptimalityErrorConvergenceCheck.html#ac0b719e6525a8ebfef6bbf3ed26712f6',1,'Ipopt::OptimalityErrorConvergenceCheck::RegisterOptions()'],['../classIpopt_1_1StandardScalingBase.html#aa70659fdcafd46e6e8a26a37cbf48c28',1,'Ipopt::StandardScalingBase::RegisterOptions()'],['../classIpopt_1_1MonotoneMuUpdate.html#ae2c8414202ca817cc77a06815413aa41',1,'Ipopt::MonotoneMuUpdate::RegisterOptions()'],['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a3188133b8913b894c778ddc89d6c3dd2',1,'Ipopt::LimMemQuasiNewtonUpdater::RegisterOptions()'],['../classIpopt_1_1IpoptData.html#ab597ccfaab6bb0171d5c65196f804ded',1,'Ipopt::IpoptData::RegisterOptions()'],['../classIpopt_1_1IpoptCalculatedQuantities.html#afe82ce10ea4ab69b38a81fc5f439370b',1,'Ipopt::IpoptCalculatedQuantities::RegisterOptions()'],['../classIpopt_1_1IpoptAlgorithm.html#ac8e03902f681e8d3e7089efc103f58ed',1,'Ipopt::IpoptAlgorithm::RegisterOptions()'],['../classIpopt_1_1GradientScaling.html#af99cbf0d22944681ec7afd11be00a8df',1,'Ipopt::GradientScaling::RegisterOptions()'],['../classIpopt_1_1FilterLSAcceptor.html#a1641246a9e392227b67bbd688c67f031',1,'Ipopt::FilterLSAcceptor::RegisterOptions()']]], + ['registeroptions_5falgorithm_21',['RegisterOptions_Algorithm',['../namespaceIpopt.html#a385e6ad5a3662c457aa4af3fa0b2c24d',1,'Ipopt']]], + ['registeroptions_5fcgpenalty_22',['RegisterOptions_CGPenalty',['../namespaceIpopt.html#a4456b4cd31d5d2859c972c71b5804118',1,'Ipopt']]], + ['registeroptions_5finexact_23',['RegisterOptions_Inexact',['../namespaceIpopt.html#af7180660bd07fa8efb669a2b6ffd6f97',1,'Ipopt']]], + ['registeroptions_5finterfaces_24',['RegisterOptions_Interfaces',['../namespaceIpopt.html#a5c6bb3514c26c65d40d06a490c2c34a2',1,'Ipopt']]], + ['registeroptions_5flinearsolvers_25',['RegisterOptions_LinearSolvers',['../namespaceIpopt.html#ac13fbf74ce650285025c5a6e84bb511b',1,'Ipopt']]], + ['registeroptions_5fsipopt_26',['RegisterOptions_sIPOPT',['../namespaceIpopt.html#a9f8cdfe8a995380c9e20595952178386',1,'Ipopt']]], + ['regoptions_27',['RegOptions',['../classIpopt_1_1IpoptApplication.html#a6f0bfd1cac08fa9a3fe9de4d47d42e04',1,'Ipopt::IpoptApplication']]], + ['relax_5fbounds_28',['relax_bounds',['../classIpopt_1_1OrigIpoptNLP.html#a527887cb622251b97802ec2d862cbef5',1,'Ipopt::OrigIpoptNLP']]], + ['releasepointer_5f_29',['ReleasePointer_',['../classIpopt_1_1SmartPtr.html#ab74ca6e796ac58fa4ad335d8112ffae2',1,'Ipopt::SmartPtr']]], + ['releaseref_30',['ReleaseRef',['../classIpopt_1_1ReferencedObject.html#ae6c952e7d1a63080dc8f121c008944fc',1,'Ipopt::ReferencedObject']]], + ['remembercurrentpointasaccepted_31',['RememberCurrentPointAsAccepted',['../classIpopt_1_1AdaptiveMuUpdate.html#aa81a487e86ff119827c39c11eb43beba',1,'Ipopt::AdaptiveMuUpdate']]], + ['reoptimizenlp_32',['ReOptimizeNLP',['../classIpopt_1_1IpoptApplication.html#a483aa387ec56687a106d414da5df4ad8',1,'Ipopt::IpoptApplication']]], + ['reoptimizetnlp_33',['ReOptimizeTNLP',['../classIpopt_1_1IpoptApplication.html#a24de5d491b570b01e36a329c5a3c9471',1,'Ipopt::IpoptApplication']]], + ['reportexception_34',['ReportException',['../classIpopt_1_1IpoptException.html#a590c35a9c2f5984574933f9fcaab25c4',1,'Ipopt::IpoptException']]], + ['requestattach_35',['RequestAttach',['../classIpopt_1_1Observer.html#ad8a27925a917ba926d713ceaac3efd7d',1,'Ipopt::Observer']]], + ['requestdetach_36',['RequestDetach',['../classIpopt_1_1Observer.html#a7006c91bc2893aa7aaa03799820f76dd',1,'Ipopt::Observer']]], + ['reset_37',['reset',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a9d9c631b4bd1d3c1ee4800addb702a1a',1,'Ipopt::CGPenaltyLSAcceptor::Reset()'],['../classIpopt_1_1InexactLSAcceptor.html#a1a7cccb588951eebf3ea838d3af14581',1,'Ipopt::InexactLSAcceptor::Reset()'],['../classIpopt_1_1BacktrackingLineSearch.html#ac5f93da335cb0a2d7d2eb324664839a9',1,'Ipopt::BacktrackingLineSearch::Reset()'],['../classIpopt_1_1BacktrackingLSAcceptor.html#a9186dcaa4d969aaeb9579dc47de70acc',1,'Ipopt::BacktrackingLSAcceptor::Reset()'],['../classIpopt_1_1FilterLSAcceptor.html#aa7719befa41ec1b44db3c752814fa17d',1,'Ipopt::FilterLSAcceptor::Reset()'],['../classIpopt_1_1LineSearch.html#ad33f5703834e99614d2eace2846ac5c0',1,'Ipopt::LineSearch::Reset()'],['../classIpopt_1_1PenaltyLSAcceptor.html#a840b8529b9f2f3b42e90ba33d8a932fe',1,'Ipopt::PenaltyLSAcceptor::Reset()'],['../classIpopt_1_1TimedTask.html#a7f249501c707ba9c0bec5cecee93cc65',1,'Ipopt::TimedTask::Reset()']]], + ['reset_5fdata_5fa_38',['reset_data_A',['../classIpopt_1_1PCalculator.html#a61c8c9077bc0147a389039b9d322ef67',1,'Ipopt::PCalculator']]], + ['resetadjustedtrialslacks_39',['ResetAdjustedTrialSlacks',['../classIpopt_1_1IpoptCalculatedQuantities.html#aff56a0ca444d41d9330d314bb49d681f',1,'Ipopt::IpoptCalculatedQuantities']]], + ['resetinfo_40',['ResetInfo',['../classIpopt_1_1IpoptData.html#a885f82e4eed0d97b5f0e99a862a4bc42',1,'Ipopt::IpoptData']]], + ['resetlist_41',['ResetList',['../classIpopt_1_1PiecewisePenalty.html#a6cf7901c5173b6bbade4d1f59eccc967',1,'Ipopt::PiecewisePenalty']]], + ['resetslacks_42',['ResetSlacks',['../classIpopt_1_1InexactLSAcceptor.html#a70c538d464d4c11c7e7fb13854f1c73f',1,'Ipopt::InexactLSAcceptor']]], + ['resettimes_43',['ResetTimes',['../classIpopt_1_1TimingStatistics.html#a5d48b224373c66adc04d72577205a9ae',1,'Ipopt::TimingStatistics']]], + ['resortbnds_44',['ResortBnds',['../classIpopt_1_1TNLPAdapter.html#a27af8d1553bc89fc1c003459bb082fcc',1,'Ipopt::TNLPAdapter']]], + ['resortboundmultipliers_45',['ResortBoundMultipliers',['../classIpopt_1_1TNLPAdapter.html#acd0254ec27ef13e6dc8527154f9713bc',1,'Ipopt::TNLPAdapter']]], + ['resortbounds_46',['ResortBounds',['../classIpopt_1_1TNLPAdapter.html#a0c135f4a0ca1a65154feb164ff3e45ae',1,'Ipopt::TNLPAdapter']]], + ['resortg_47',['ResortG',['../classIpopt_1_1TNLPAdapter.html#aa7d13eace81ff7d3181ef629ce3a4a6d',1,'Ipopt::TNLPAdapter']]], + ['resortx_48',['ResortX',['../classIpopt_1_1TNLPAdapter.html#a1f19ad31a25cbed6090f504857e85959',1,'Ipopt::TNLPAdapter']]], + ['restoconvergencecheck_49',['restoconvergencecheck',['../classIpopt_1_1RestoConvergenceCheck.html#aea0959028bda24ac812ea66d43f26354',1,'Ipopt::RestoConvergenceCheck::RestoConvergenceCheck()'],['../classIpopt_1_1RestoConvergenceCheck.html#aa98e9bbe93bca27a571085ce9ff4a972',1,'Ipopt::RestoConvergenceCheck::RestoConvergenceCheck(const RestoConvergenceCheck &)']]], + ['restofilterconvergencecheck_50',['restofilterconvergencecheck',['../classIpopt_1_1RestoFilterConvergenceCheck.html#a6154d5424191ef92b9b010965ff6e401',1,'Ipopt::RestoFilterConvergenceCheck::RestoFilterConvergenceCheck()'],['../classIpopt_1_1RestoFilterConvergenceCheck.html#a260d4be553eaa335187f4e394d72e89d',1,'Ipopt::RestoFilterConvergenceCheck::RestoFilterConvergenceCheck(const RestoFilterConvergenceCheck &)']]], + ['restoipoptnlp_51',['restoipoptnlp',['../classIpopt_1_1RestoIpoptNLP.html#a61da4a7113966f6fafc70afe2aa93e64',1,'Ipopt::RestoIpoptNLP::RestoIpoptNLP()'],['../classIpopt_1_1RestoIpoptNLP.html#ae7921dfab15c5c9c7bd042babd4b9f9a',1,'Ipopt::RestoIpoptNLP::RestoIpoptNLP(IpoptNLP &orig_ip_nlp, IpoptData &orig_ip_data, IpoptCalculatedQuantities &orig_ip_cq)'],['../classIpopt_1_1RestoIpoptNLP.html#ae59df458609ca72cfb4da737d79b5048',1,'Ipopt::RestoIpoptNLP::RestoIpoptNLP(const RestoIpoptNLP &)']]], + ['restoiterateinitializer_52',['restoiterateinitializer',['../classIpopt_1_1RestoIterateInitializer.html#ad66c5638a71aca4c5604cc018bf6675c',1,'Ipopt::RestoIterateInitializer::RestoIterateInitializer(const SmartPtr< EqMultiplierCalculator > &eq_mult_calculator)'],['../classIpopt_1_1RestoIterateInitializer.html#a42a7d05dc6bf280e9e97796ebd30f04d',1,'Ipopt::RestoIterateInitializer::RestoIterateInitializer()'],['../classIpopt_1_1RestoIterateInitializer.html#a69815e84a3971f39c387324ab390fdee',1,'Ipopt::RestoIterateInitializer::RestoIterateInitializer(const RestoIterateInitializer &)']]], + ['restoiterationoutput_53',['restoiterationoutput',['../classIpopt_1_1RestoIterationOutput.html#a0df6e60988124aa3a74b61b96e9d339e',1,'Ipopt::RestoIterationOutput::RestoIterationOutput(const RestoIterationOutput &)'],['../classIpopt_1_1RestoIterationOutput.html#abc7a583078b7bd5eae6092db3a57c500',1,'Ipopt::RestoIterationOutput::RestoIterationOutput(const SmartPtr< OrigIterationOutput > &resto_orig_iteration_output)'],['../classIpopt_1_1RestoIterationOutput.html#ac717737ae83fb59be251e7c97e543a9b',1,'Ipopt::RestoIterationOutput::RestoIterationOutput()']]], + ['restopenaltyconvergencecheck_54',['restopenaltyconvergencecheck',['../classIpopt_1_1RestoPenaltyConvergenceCheck.html#ac5a0d7a55f3008d594f72227656f94ec',1,'Ipopt::RestoPenaltyConvergenceCheck::RestoPenaltyConvergenceCheck()'],['../classIpopt_1_1RestoPenaltyConvergenceCheck.html#a2022b6e91f58eb4721b143552a6e8548',1,'Ipopt::RestoPenaltyConvergenceCheck::RestoPenaltyConvergenceCheck(const RestoPenaltyConvergenceCheck &)']]], + ['restor_5fcounter_55',['restor_counter',['../classIpopt_1_1CGPenaltyData.html#af3636e593be3a1a50b6b967e77bc934b',1,'Ipopt::CGPenaltyData']]], + ['restor_5fiter_56',['restor_iter',['../classIpopt_1_1CGPenaltyData.html#a4f517e4f4fbb18d667c78fb476744c1f',1,'Ipopt::CGPenaltyData']]], + ['restorationphase_57',['restorationphase',['../classIpopt_1_1RestorationPhase.html#ac5ef685cf3f924bf9ff370842b7cdfee',1,'Ipopt::RestorationPhase::RestorationPhase()'],['../classIpopt_1_1RestorationPhase.html#a84bf22fc34120f0f79d080d6236919bc',1,'Ipopt::RestorationPhase::RestorationPhase(const RestorationPhase &)']]], + ['restoreacceptablepoint_58',['RestoreAcceptablePoint',['../classIpopt_1_1BacktrackingLineSearch.html#aa0a57f17d8646480bb31b424039bcb3b',1,'Ipopt::BacktrackingLineSearch']]], + ['restorebestpoint_59',['RestoreBestPoint',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a622419aee9d39bc2649f5213b8d774e0',1,'Ipopt::CGPenaltyLSAcceptor']]], + ['restorediterate_60',['restorediterate',['../classIpopt_1_1CGPenaltyLSAcceptor.html#abe021b3ea44200bbb04acc75391927d3',1,'Ipopt::CGPenaltyLSAcceptor::RestoredIterate()'],['../classIpopt_1_1BacktrackingLSAcceptor.html#a23f8a7e07b7ab0e0d91a40d846b59472',1,'Ipopt::BacktrackingLSAcceptor::RestoredIterate()']]], + ['restoreinternaldatabackup_61',['RestoreInternalDataBackup',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a8e7c02278b58807cd441410d983e3fd0',1,'Ipopt::LimMemQuasiNewtonUpdater']]], + ['restorestorationphase_62',['restorestorationphase',['../classIpopt_1_1RestoRestorationPhase.html#ae49dbf5dad4b3ac021a084a165581472',1,'Ipopt::RestoRestorationPhase::RestoRestorationPhase(const RestoRestorationPhase &)'],['../classIpopt_1_1RestoRestorationPhase.html#a0f0fea6e91a9fca43605a799358d8967',1,'Ipopt::RestoRestorationPhase::RestoRestorationPhase()']]], + ['rethrownonipoptexception_63',['RethrowNonIpoptException',['../classIpopt_1_1IpoptApplication.html#a83e1b7a32982852aee98f8a43e3e77a6',1,'Ipopt::IpoptApplication']]], + ['rho_64',['Rho',['../classIpopt_1_1RestoIpoptNLP.html#a24cbed6e8488d2562f3357a9a6605988',1,'Ipopt::RestoIpoptNLP']]], + ['rhs_5fcr_65',['Rhs_cR',['../classIpopt_1_1AugRestoSystemSolver.html#a14c03a65d291a06f7ececa74b3482bc6',1,'Ipopt::AugRestoSystemSolver']]], + ['rhs_5fdr_66',['Rhs_dR',['../classIpopt_1_1AugRestoSystemSolver.html#a55ee19722884c032cce55471351b45b1',1,'Ipopt::AugRestoSystemSolver']]], + ['rowcolscaling_67',['rowcolscaling',['../classIpopt_1_1SymScaledMatrix.html#a02e5ed72d6f99d5add1116f46a02641a',1,'Ipopt::SymScaledMatrix::RowColScaling()'],['../classIpopt_1_1SymScaledMatrixSpace.html#a0d26e0d8ababff487c004ff1a9d95272',1,'Ipopt::SymScaledMatrixSpace::RowColScaling()']]], + ['rowscaling_68',['rowscaling',['../classIpopt_1_1ScaledMatrix.html#a6d196b32119ec34a8f11d8e47d5f050f',1,'Ipopt::ScaledMatrix::RowScaling()'],['../classIpopt_1_1ScaledMatrixSpace.html#a0ae7816bb0219df6907903217b32630f',1,'Ipopt::ScaledMatrixSpace::RowScaling()']]], + ['rowvectorspace_69',['rowvectorspace',['../classIpopt_1_1ExpandedMultiVectorMatrix.html#a7a154afa75a5c5facbb95ffd7228b709',1,'Ipopt::ExpandedMultiVectorMatrix::RowVectorSpace()'],['../classIpopt_1_1ExpandedMultiVectorMatrixSpace.html#a9c71d1269e2fb826c16a2fe357e08034',1,'Ipopt::ExpandedMultiVectorMatrixSpace::RowVectorSpace()']]], + ['run_70',['run',['../classIpopt_1_1SensAlgorithm.html#a6170ca071834ff03e981e010412d4f98',1,'Ipopt::SensAlgorithm::Run()'],['../classIpopt_1_1SensApplication.html#a83eebc2a9636e2ab26f3ba3755ed0416',1,'Ipopt::SensApplication::Run()']]] ]; diff --git a/search/functions_12.js b/search/functions_12.js index ef75c52ba..0d4142f57 100644 --- a/search/functions_12.js +++ b/search/functions_12.js @@ -20,7 +20,7 @@ var searchData= ['searchdircalc_17',['SearchDirCalc',['../classIpopt_1_1IpoptAlgorithm.html#a3a94b5f9145ef45b1365da962c532eab',1,'Ipopt::IpoptAlgorithm']]], ['searchdirectioncalculator_18',['searchdirectioncalculator',['../classIpopt_1_1SearchDirectionCalculator.html#a438eda9e044a9e785aa22b68b02e66cf',1,'Ipopt::SearchDirectionCalculator::SearchDirectionCalculator()'],['../classIpopt_1_1SearchDirectionCalculator.html#ab742295ce0c8efa884e31311fc917408',1,'Ipopt::SearchDirectionCalculator::SearchDirectionCalculator(const SearchDirectionCalculator &)']]], ['sensalgorithm_19',['SensAlgorithm',['../classIpopt_1_1SensAlgorithm.html#a9b109c8835fab74cc71d462bb0176078',1,'Ipopt::SensAlgorithm']]], - ['sensampltnlp_20',['SensAmplTNLP',['../classIpopt_1_1SensAmplTNLP.html#a322d3d3fc1a695924ba292b3f53e871f',1,'Ipopt::SensAmplTNLP']]], + ['sensampltnlp_20',['SensAmplTNLP',['../classIpopt_1_1SensAmplTNLP.html#a692a526e9a76b1737db34107d3c0d3ce',1,'Ipopt::SensAmplTNLP']]], ['sensapplication_21',['SensApplication',['../classIpopt_1_1SensApplication.html#a7a3dbe67000effcb766bd9d441b37e8f',1,'Ipopt::SensApplication']]], ['sensbacksolver_22',['SensBacksolver',['../classIpopt_1_1SensBacksolver.html#abd8a0b83f10195e748d3a90ebfb9e991',1,'Ipopt::SensBacksolver']]], ['sensbuilder_23',['SensBuilder',['../classIpopt_1_1SensBuilder.html#ac314c96662e24e694fd7b5aaad9be387',1,'Ipopt::SensBuilder']]], diff --git a/search/functions_13.js b/search/functions_13.js index f1c9f4395..012281115 100644 --- a/search/functions_13.js +++ b/search/functions_13.js @@ -25,7 +25,7 @@ var searchData= ['tmp_5fx_22',['Tmp_x',['../classIpopt_1_1IpoptCalculatedQuantities.html#a80ac11de6ec6fd2b76a91f641184d043',1,'Ipopt::IpoptCalculatedQuantities']]], ['tmp_5fx_5fl_23',['Tmp_x_L',['../classIpopt_1_1IpoptCalculatedQuantities.html#a23ee51b221538dbd9561ddfedebf52a4',1,'Ipopt::IpoptCalculatedQuantities']]], ['tmp_5fx_5fu_24',['Tmp_x_U',['../classIpopt_1_1IpoptCalculatedQuantities.html#a611148d4c3c01c02312f0b646fe3ee47',1,'Ipopt::IpoptCalculatedQuantities']]], - ['tnlp_25',['tnlp',['../classIpopt_1_1TNLP.html#a7d09a6de47e8bd7a1048f8dc5fe21a04',1,'Ipopt::TNLP::TNLP()'],['../classIpopt_1_1TNLP.html#ac60badc0020972128377e91cdcb4cc81',1,'Ipopt::TNLP::TNLP(const TNLP &)'],['../classIpopt_1_1TNLPAdapter.html#af3fb8fe429af7294f07a050323b1fec8',1,'Ipopt::TNLPAdapter::tnlp() const']]], + ['tnlp_25',['tnlp',['../classIpopt_1_1TNLPAdapter.html#af3fb8fe429af7294f07a050323b1fec8',1,'Ipopt::TNLPAdapter::tnlp()'],['../classIpopt_1_1TNLP.html#a7d09a6de47e8bd7a1048f8dc5fe21a04',1,'Ipopt::TNLP::TNLP()'],['../classIpopt_1_1TNLP.html#ac60badc0020972128377e91cdcb4cc81',1,'Ipopt::TNLP::TNLP(const TNLP &)']]], ['tnlpadapter_26',['tnlpadapter',['../classIpopt_1_1TNLPAdapter.html#a1010390adc57a4abaae35be0eea101cc',1,'Ipopt::TNLPAdapter::TNLPAdapter(const SmartPtr< TNLP > tnlp, const SmartPtr< const Journalist > jnlst=NULL)'],['../classIpopt_1_1TNLPAdapter.html#aa160c36cc9adc31525df45c7d33dc135',1,'Ipopt::TNLPAdapter::TNLPAdapter(const TNLPAdapter &)']]], ['tnlpreducer_27',['tnlpreducer',['../classIpopt_1_1TNLPReducer.html#ad8bb7fd991a22cf171df5135e974df51',1,'Ipopt::TNLPReducer::TNLPReducer(TNLP &tnlp, Index n_g_skip, const Index *index_g_skip, Index n_xL_skip, const Index *index_xL_skip, Index n_xU_skip, const Index *index_xU_skip, Index n_x_fix, const Index *index_f_fix)'],['../classIpopt_1_1TNLPReducer.html#a0f882a21ea1fc504ca9289f03dc223c3',1,'Ipopt::TNLPReducer::TNLPReducer()'],['../classIpopt_1_1TNLPReducer.html#abe13bf11bfba8aae278ad5eb8d80af0e',1,'Ipopt::TNLPReducer::TNLPReducer(const TNLPReducer &)']]], ['tol_28',['tol',['../classIpopt_1_1IpoptData.html#aa83f50828576bb3f483d90ea2b5579fe',1,'Ipopt::IpoptData']]], diff --git a/search/functions_14.js b/search/functions_14.js index 0b5df28c0..8c3f5713b 100644 --- a/search/functions_14.js +++ b/search/functions_14.js @@ -8,45 +8,46 @@ var searchData= ['unapply_5fvector_5fscaling_5fd_5',['unapply_vector_scaling_d',['../classIpopt_1_1NLPScalingObject.html#af24103e5a6bb5db4685fe9a62e6f6737',1,'Ipopt::NLPScalingObject::unapply_vector_scaling_d()'],['../classIpopt_1_1StandardScalingBase.html#a0f951082e1b93db66779db986a0f8ac6',1,'Ipopt::StandardScalingBase::unapply_vector_scaling_d()']]], ['unapply_5fvector_5fscaling_5fd_5flu_6',['unapply_vector_scaling_d_LU',['../classIpopt_1_1NLPScalingObject.html#a8b39188aa3a87e7d9de6ade63e5bd88a',1,'Ipopt::NLPScalingObject']]], ['unapply_5fvector_5fscaling_5fd_5flu_5fnonconst_7',['unapply_vector_scaling_d_LU_NonConst',['../classIpopt_1_1NLPScalingObject.html#acf743037e7493e7ba523bdf96547dd52',1,'Ipopt::NLPScalingObject']]], - ['unapply_5fvector_5fscaling_5fd_5fnonconst_8',['unapply_vector_scaling_d_nonconst',['../classIpopt_1_1NLPScalingObject.html#ab61cfedf8cf0f1955c9ae30d10d45e11',1,'Ipopt::NLPScalingObject::unapply_vector_scaling_d_NonConst()'],['../classIpopt_1_1StandardScalingBase.html#a58720954f29391480a65bb1ce878ffe8',1,'Ipopt::StandardScalingBase::unapply_vector_scaling_d_NonConst()']]], + ['unapply_5fvector_5fscaling_5fd_5fnonconst_8',['unapply_vector_scaling_d_nonconst',['../classIpopt_1_1StandardScalingBase.html#a58720954f29391480a65bb1ce878ffe8',1,'Ipopt::StandardScalingBase::unapply_vector_scaling_d_NonConst()'],['../classIpopt_1_1NLPScalingObject.html#ab61cfedf8cf0f1955c9ae30d10d45e11',1,'Ipopt::NLPScalingObject::unapply_vector_scaling_d_NonConst(const SmartPtr< const Vector > &v)=0']]], ['unapply_5fvector_5fscaling_5fx_9',['unapply_vector_scaling_x',['../classIpopt_1_1NLPScalingObject.html#a3c13a261913781c52ccd154c562c7b68',1,'Ipopt::NLPScalingObject::unapply_vector_scaling_x()'],['../classIpopt_1_1StandardScalingBase.html#a1984ce848bf0b905f0524b1c480604cb',1,'Ipopt::StandardScalingBase::unapply_vector_scaling_x()']]], ['unapply_5fvector_5fscaling_5fx_5fnonconst_10',['unapply_vector_scaling_x_nonconst',['../classIpopt_1_1NLPScalingObject.html#a425f0655cabb977eecab5449fee28590',1,'Ipopt::NLPScalingObject::unapply_vector_scaling_x_NonConst()'],['../classIpopt_1_1StandardScalingBase.html#a5102dc74de606487411db4307107a1b9',1,'Ipopt::StandardScalingBase::unapply_vector_scaling_x_NonConst()']]], ['uncached_5fdual_5ffrac_5fto_5fthe_5fbound_11',['uncached_dual_frac_to_the_bound',['../classIpopt_1_1IpoptCalculatedQuantities.html#a4e882424169c8f43efd2ed360a5aa133',1,'Ipopt::IpoptCalculatedQuantities']]], ['uncached_5fslack_5ffrac_5fto_5fthe_5fbound_12',['uncached_slack_frac_to_the_bound',['../classIpopt_1_1IpoptCalculatedQuantities.html#ad62f4f1eec82fb08b61971ba28262a59',1,'Ipopt::IpoptCalculatedQuantities']]], - ['uninitialized_5fh_13',['uninitialized_h',['../classIpopt_1_1OrigIpoptNLP.html#af1610d353809f92f8b280b516100774e',1,'Ipopt::OrigIpoptNLP::uninitialized_h()'],['../classIpopt_1_1RestoIpoptNLP.html#a12cfa48e27af403f1ed7dfe7bfa74b6e',1,'Ipopt::RestoIpoptNLP::uninitialized_h()'],['../classIpopt_1_1IpoptNLP.html#a07f67f9c84d37b12214bafdeb710cedf',1,'Ipopt::IpoptNLP::uninitialized_h()']]], + ['uninitialized_5fh_13',['uninitialized_h',['../classIpopt_1_1IpoptNLP.html#a07f67f9c84d37b12214bafdeb710cedf',1,'Ipopt::IpoptNLP::uninitialized_h()'],['../classIpopt_1_1OrigIpoptNLP.html#af1610d353809f92f8b280b516100774e',1,'Ipopt::OrigIpoptNLP::uninitialized_h()'],['../classIpopt_1_1RestoIpoptNLP.html#a12cfa48e27af403f1ed7dfe7bfa74b6e',1,'Ipopt::RestoIpoptNLP::uninitialized_h()']]], ['unloadlibrary_14',['unloadLibrary',['../classIpopt_1_1LibraryLoader.html#af6547f11835bdc254ccda2a97c294f8a',1,'Ipopt::LibraryLoader']]], - ['unscaled_5fcurr_5fc_15',['unscaled_curr_c',['../classIpopt_1_1IpoptCalculatedQuantities.html#a28ba0a2ae16f590be7efeb03d1bdea6b',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5fcomplementarity_16',['unscaled_curr_complementarity',['../classIpopt_1_1IpoptCalculatedQuantities.html#ac3ec4a890bd836895f9eb730df844162',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5fd_17',['unscaled_curr_d',['../classIpopt_1_1IpoptCalculatedQuantities.html#a56653f80c8781bff2f3c34a46c3ca223',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5fdual_5finfeasibility_18',['unscaled_curr_dual_infeasibility',['../classIpopt_1_1IpoptCalculatedQuantities.html#a22b96d28ea9c59335cc631fdc001e1a8',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5ff_19',['unscaled_curr_f',['../classIpopt_1_1IpoptCalculatedQuantities.html#ae00c8cb128cd32fae07111f81362c7e9',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5fnlp_5fconstraint_5fviolation_20',['unscaled_curr_nlp_constraint_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a10b3fcfcf4d2bd8fde1eb0533065aae4',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5fnlp_5ferror_21',['unscaled_curr_nlp_error',['../classIpopt_1_1IpoptCalculatedQuantities.html#a6f94654a1874f0a832a7779b779dffc6',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5forig_5fbounds_5fviolation_22',['unscaled_curr_orig_bounds_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#af61324b36a2f00960e4f57e7acd8f87a',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5forig_5fx_5fl_5fviolation_23',['unscaled_curr_orig_x_L_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a64dee858e9f3a95f7df098ac08f1d462',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5fcurr_5forig_5fx_5fu_5fviolation_24',['unscaled_curr_orig_x_U_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a7aeef4631a7b9da00e60aeaeaf48f26a',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5forig_5fx_5fl_5fviolation_25',['unscaled_orig_x_L_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#aa0c2d45703cdc2ffe6cf4c2baf53eeb3',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5forig_5fx_5fu_5fviolation_26',['unscaled_orig_x_U_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a9844d2838de3ea6515dd8dbca0d70c3d',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5ftrial_5fc_27',['unscaled_trial_c',['../classIpopt_1_1IpoptCalculatedQuantities.html#aee98cccf9b5ce1b80ee3c7566dbbd505',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5ftrial_5ff_28',['unscaled_trial_f',['../classIpopt_1_1IpoptCalculatedQuantities.html#a5e543575458e3904b980e8d6d001ff60',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaled_5ftrial_5fnlp_5fconstraint_5fviolation_29',['unscaled_trial_nlp_constraint_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#ac50f6d827fa581931d4c14bc99e9d37d',1,'Ipopt::IpoptCalculatedQuantities']]], - ['unscaledmatrixspace_30',['unscaledmatrixspace',['../classIpopt_1_1ScaledMatrixSpace.html#a504382bd96c362757b6edb51382111f9',1,'Ipopt::ScaledMatrixSpace::UnscaledMatrixSpace()'],['../classIpopt_1_1SymScaledMatrixSpace.html#a1cb3b05fe45852bf89c58ccd95ac3bef',1,'Ipopt::SymScaledMatrixSpace::UnscaledMatrixSpace()']]], - ['unscaleiteratesvector_31',['UnScaleIteratesVector',['../classIpopt_1_1SensAlgorithm.html#a06eb1bcf30c8f8ff9e7cf351c2f677c1',1,'Ipopt::SensAlgorithm']]], - ['unscalesigma_32',['UnscaleSigma',['../classIpopt_1_1QualityFunctionMuOracle.html#a91f524e1a119adc5909124e6f226469e',1,'Ipopt::QualityFunctionMuOracle']]], - ['unsetvalue_33',['UnsetValue',['../classIpopt_1_1OptionsList.html#a2ea4d285a8a8ea7120df250dea2658be',1,'Ipopt::OptionsList']]], - ['update_5flocal_5flambda_34',['update_local_lambda',['../classIpopt_1_1TNLPAdapter.html#ae135d8e9291446b71b156319505ca31d',1,'Ipopt::TNLPAdapter']]], - ['update_5flocal_5fx_35',['update_local_x',['../classIpopt_1_1TNLPAdapter.html#a1bea5aaa4454046c19381af8a1e4330e',1,'Ipopt::TNLPAdapter']]], - ['updatebarrierparameter_36',['updatebarrierparameter',['../classIpopt_1_1IpoptAlgorithm.html#a0e7daa434dba12abc84b716948e2d8de',1,'Ipopt::IpoptAlgorithm::UpdateBarrierParameter()'],['../classIpopt_1_1TimingStatistics.html#a9cba55e94dc74ec91eb265bccd8519bf',1,'Ipopt::TimingStatistics::UpdateBarrierParameter()'],['../classIpopt_1_1MuUpdate.html#a16552e6e04fcc1f2216d7226b11d3169',1,'Ipopt::MuUpdate::UpdateBarrierParameter()'],['../classIpopt_1_1MonotoneMuUpdate.html#aa84205504ff686600d4519df84d1a49a',1,'Ipopt::MonotoneMuUpdate::UpdateBarrierParameter()'],['../classIpopt_1_1AdaptiveMuUpdate.html#a2e3a6126a513f7995295ddff93cf192c',1,'Ipopt::AdaptiveMuUpdate::UpdateBarrierParameter()']]], - ['updateentry_37',['UpdateEntry',['../classIpopt_1_1PiecewisePenalty.html#a715fee332c35d1eb99f8e2f1bdbfbfad',1,'Ipopt::PiecewisePenalty']]], - ['updateextendeddata_38',['UpdateExtendedData',['../classIpopt_1_1LowRankSSAugSystemSolver.html#ab551655462dfa149959c1d6d71923ae7',1,'Ipopt::LowRankSSAugSystemSolver']]], - ['updatefactorization_39',['UpdateFactorization',['../classIpopt_1_1LowRankAugSystemSolver.html#a40e46550fe0f8349852b41381f391265',1,'Ipopt::LowRankAugSystemSolver']]], - ['updatefornextiteration_40',['updatefornextiteration',['../classIpopt_1_1InexactLSAcceptor.html#a0bf5c79aa8a6d7ee4bbc734469a62285',1,'Ipopt::InexactLSAcceptor::UpdateForNextIteration()'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#ae929b890949ab2f5ba77799f58e27762',1,'Ipopt::CGPenaltyLSAcceptor::UpdateForNextIteration()'],['../classIpopt_1_1PenaltyLSAcceptor.html#af76ccd039d4d4b80fb830ca0cf78fb27',1,'Ipopt::PenaltyLSAcceptor::UpdateForNextIteration()'],['../classIpopt_1_1FilterLSAcceptor.html#a26afeb58ad6102b65c3e12088bb6fbe3',1,'Ipopt::FilterLSAcceptor::UpdateForNextIteration()'],['../classIpopt_1_1BacktrackingLSAcceptor.html#a51c4588ba9440362916593fb5e8e53da',1,'Ipopt::BacktrackingLSAcceptor::UpdateForNextIteration()']]], - ['updatehessian_41',['updatehessian',['../classIpopt_1_1ExactHessianUpdater.html#a687ff6fc5a413b5e5a338c7ae8b4f392',1,'Ipopt::ExactHessianUpdater::UpdateHessian()'],['../classIpopt_1_1HessianUpdater.html#a4d00334fd4bdb03260e44b10dda85a33',1,'Ipopt::HessianUpdater::UpdateHessian()'],['../classIpopt_1_1IpoptAlgorithm.html#a62fa01d8850fbf12adc9fbe6c9abcfba',1,'Ipopt::IpoptAlgorithm::UpdateHessian()'],['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a7a195f4bcb6d1c184068e69c97e4b206',1,'Ipopt::LimMemQuasiNewtonUpdater::UpdateHessian()'],['../classIpopt_1_1TimingStatistics.html#a27911945a2ffe11b7209c29ba7df52c4',1,'Ipopt::TimingStatistics::UpdateHessian()']]], - ['updateinternaldata_42',['UpdateInternalData',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a4ea94f5ef65c96962c804c289085af51',1,'Ipopt::LimMemQuasiNewtonUpdater']]], - ['updatepenaltyparameter_43',['UpdatePenaltyParameter',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a4c7c73fa17348e7886cecd0ed7034d32',1,'Ipopt::CGPenaltyLSAcceptor']]], - ['updatetags_44',['UpdateTags',['../classIpopt_1_1GenAugSystemSolver.html#a834b96e90ac533f9adc16a4f08a95ef5',1,'Ipopt::GenAugSystemSolver']]], - ['upperinteger_45',['UpperInteger',['../classIpopt_1_1RegisteredOption.html#a91a18df17dd85b0bbf5f16e7a7fc327d',1,'Ipopt::RegisteredOption']]], - ['uppernumber_46',['UpperNumber',['../classIpopt_1_1RegisteredOption.html#a5916a976bc734ccb6277f0cf9e07de52',1,'Ipopt::RegisteredOption']]], - ['upperstrict_47',['UpperStrict',['../classIpopt_1_1RegisteredOption.html#a8c644d9053b2e8cd633d8767accb5d5a',1,'Ipopt::RegisteredOption']]], - ['userscaling_48',['userscaling',['../classIpopt_1_1UserScaling.html#acd3ac1550bfb0bc0885ebb28dfadae10',1,'Ipopt::UserScaling::UserScaling(const SmartPtr< const NLP > &nlp)'],['../classIpopt_1_1UserScaling.html#ae5e755c567dde8242cfed24e3adcec75',1,'Ipopt::UserScaling::UserScaling(const UserScaling &)']]] + ['unregisterinterrupthandler_15',['UnregisterInterruptHandler',['../namespaceIpopt.html#abd79708db843db3ec1a195cf1e1d7f82',1,'Ipopt']]], + ['unscaled_5fcurr_5fc_16',['unscaled_curr_c',['../classIpopt_1_1IpoptCalculatedQuantities.html#a28ba0a2ae16f590be7efeb03d1bdea6b',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5fcomplementarity_17',['unscaled_curr_complementarity',['../classIpopt_1_1IpoptCalculatedQuantities.html#ac3ec4a890bd836895f9eb730df844162',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5fd_18',['unscaled_curr_d',['../classIpopt_1_1IpoptCalculatedQuantities.html#a56653f80c8781bff2f3c34a46c3ca223',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5fdual_5finfeasibility_19',['unscaled_curr_dual_infeasibility',['../classIpopt_1_1IpoptCalculatedQuantities.html#a22b96d28ea9c59335cc631fdc001e1a8',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5ff_20',['unscaled_curr_f',['../classIpopt_1_1IpoptCalculatedQuantities.html#ae00c8cb128cd32fae07111f81362c7e9',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5fnlp_5fconstraint_5fviolation_21',['unscaled_curr_nlp_constraint_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a10b3fcfcf4d2bd8fde1eb0533065aae4',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5fnlp_5ferror_22',['unscaled_curr_nlp_error',['../classIpopt_1_1IpoptCalculatedQuantities.html#a6f94654a1874f0a832a7779b779dffc6',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5forig_5fbounds_5fviolation_23',['unscaled_curr_orig_bounds_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#af61324b36a2f00960e4f57e7acd8f87a',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5forig_5fx_5fl_5fviolation_24',['unscaled_curr_orig_x_L_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a64dee858e9f3a95f7df098ac08f1d462',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5fcurr_5forig_5fx_5fu_5fviolation_25',['unscaled_curr_orig_x_U_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a7aeef4631a7b9da00e60aeaeaf48f26a',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5forig_5fx_5fl_5fviolation_26',['unscaled_orig_x_L_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#aa0c2d45703cdc2ffe6cf4c2baf53eeb3',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5forig_5fx_5fu_5fviolation_27',['unscaled_orig_x_U_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#a9844d2838de3ea6515dd8dbca0d70c3d',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5ftrial_5fc_28',['unscaled_trial_c',['../classIpopt_1_1IpoptCalculatedQuantities.html#aee98cccf9b5ce1b80ee3c7566dbbd505',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5ftrial_5ff_29',['unscaled_trial_f',['../classIpopt_1_1IpoptCalculatedQuantities.html#a5e543575458e3904b980e8d6d001ff60',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaled_5ftrial_5fnlp_5fconstraint_5fviolation_30',['unscaled_trial_nlp_constraint_violation',['../classIpopt_1_1IpoptCalculatedQuantities.html#ac50f6d827fa581931d4c14bc99e9d37d',1,'Ipopt::IpoptCalculatedQuantities']]], + ['unscaledmatrixspace_31',['unscaledmatrixspace',['../classIpopt_1_1SymScaledMatrixSpace.html#a1cb3b05fe45852bf89c58ccd95ac3bef',1,'Ipopt::SymScaledMatrixSpace::UnscaledMatrixSpace()'],['../classIpopt_1_1ScaledMatrixSpace.html#a504382bd96c362757b6edb51382111f9',1,'Ipopt::ScaledMatrixSpace::UnscaledMatrixSpace()']]], + ['unscaleiteratesvector_32',['UnScaleIteratesVector',['../classIpopt_1_1SensAlgorithm.html#a06eb1bcf30c8f8ff9e7cf351c2f677c1',1,'Ipopt::SensAlgorithm']]], + ['unscalesigma_33',['UnscaleSigma',['../classIpopt_1_1QualityFunctionMuOracle.html#a91f524e1a119adc5909124e6f226469e',1,'Ipopt::QualityFunctionMuOracle']]], + ['unsetvalue_34',['UnsetValue',['../classIpopt_1_1OptionsList.html#a2ea4d285a8a8ea7120df250dea2658be',1,'Ipopt::OptionsList']]], + ['update_5flocal_5flambda_35',['update_local_lambda',['../classIpopt_1_1TNLPAdapter.html#ae135d8e9291446b71b156319505ca31d',1,'Ipopt::TNLPAdapter']]], + ['update_5flocal_5fx_36',['update_local_x',['../classIpopt_1_1TNLPAdapter.html#a1bea5aaa4454046c19381af8a1e4330e',1,'Ipopt::TNLPAdapter']]], + ['updatebarrierparameter_37',['updatebarrierparameter',['../classIpopt_1_1IpoptAlgorithm.html#a0e7daa434dba12abc84b716948e2d8de',1,'Ipopt::IpoptAlgorithm::UpdateBarrierParameter()'],['../classIpopt_1_1TimingStatistics.html#a9cba55e94dc74ec91eb265bccd8519bf',1,'Ipopt::TimingStatistics::UpdateBarrierParameter()'],['../classIpopt_1_1MonotoneMuUpdate.html#aa84205504ff686600d4519df84d1a49a',1,'Ipopt::MonotoneMuUpdate::UpdateBarrierParameter()'],['../classIpopt_1_1AdaptiveMuUpdate.html#a2e3a6126a513f7995295ddff93cf192c',1,'Ipopt::AdaptiveMuUpdate::UpdateBarrierParameter()'],['../classIpopt_1_1MuUpdate.html#a16552e6e04fcc1f2216d7226b11d3169',1,'Ipopt::MuUpdate::UpdateBarrierParameter()']]], + ['updateentry_38',['UpdateEntry',['../classIpopt_1_1PiecewisePenalty.html#a715fee332c35d1eb99f8e2f1bdbfbfad',1,'Ipopt::PiecewisePenalty']]], + ['updateextendeddata_39',['UpdateExtendedData',['../classIpopt_1_1LowRankSSAugSystemSolver.html#ab551655462dfa149959c1d6d71923ae7',1,'Ipopt::LowRankSSAugSystemSolver']]], + ['updatefactorization_40',['UpdateFactorization',['../classIpopt_1_1LowRankAugSystemSolver.html#a40e46550fe0f8349852b41381f391265',1,'Ipopt::LowRankAugSystemSolver']]], + ['updatefornextiteration_41',['updatefornextiteration',['../classIpopt_1_1BacktrackingLSAcceptor.html#a51c4588ba9440362916593fb5e8e53da',1,'Ipopt::BacktrackingLSAcceptor::UpdateForNextIteration()'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#ae929b890949ab2f5ba77799f58e27762',1,'Ipopt::CGPenaltyLSAcceptor::UpdateForNextIteration()'],['../classIpopt_1_1PenaltyLSAcceptor.html#af76ccd039d4d4b80fb830ca0cf78fb27',1,'Ipopt::PenaltyLSAcceptor::UpdateForNextIteration()'],['../classIpopt_1_1FilterLSAcceptor.html#a26afeb58ad6102b65c3e12088bb6fbe3',1,'Ipopt::FilterLSAcceptor::UpdateForNextIteration()'],['../classIpopt_1_1InexactLSAcceptor.html#a0bf5c79aa8a6d7ee4bbc734469a62285',1,'Ipopt::InexactLSAcceptor::UpdateForNextIteration()']]], + ['updatehessian_42',['updatehessian',['../classIpopt_1_1ExactHessianUpdater.html#a687ff6fc5a413b5e5a338c7ae8b4f392',1,'Ipopt::ExactHessianUpdater::UpdateHessian()'],['../classIpopt_1_1HessianUpdater.html#a4d00334fd4bdb03260e44b10dda85a33',1,'Ipopt::HessianUpdater::UpdateHessian()'],['../classIpopt_1_1IpoptAlgorithm.html#a62fa01d8850fbf12adc9fbe6c9abcfba',1,'Ipopt::IpoptAlgorithm::UpdateHessian()'],['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a7a195f4bcb6d1c184068e69c97e4b206',1,'Ipopt::LimMemQuasiNewtonUpdater::UpdateHessian()'],['../classIpopt_1_1TimingStatistics.html#a27911945a2ffe11b7209c29ba7df52c4',1,'Ipopt::TimingStatistics::UpdateHessian()']]], + ['updateinternaldata_43',['UpdateInternalData',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a4ea94f5ef65c96962c804c289085af51',1,'Ipopt::LimMemQuasiNewtonUpdater']]], + ['updatepenaltyparameter_44',['UpdatePenaltyParameter',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a4c7c73fa17348e7886cecd0ed7034d32',1,'Ipopt::CGPenaltyLSAcceptor']]], + ['updatetags_45',['UpdateTags',['../classIpopt_1_1GenAugSystemSolver.html#a834b96e90ac533f9adc16a4f08a95ef5',1,'Ipopt::GenAugSystemSolver']]], + ['upperinteger_46',['UpperInteger',['../classIpopt_1_1RegisteredOption.html#a91a18df17dd85b0bbf5f16e7a7fc327d',1,'Ipopt::RegisteredOption']]], + ['uppernumber_47',['UpperNumber',['../classIpopt_1_1RegisteredOption.html#a5916a976bc734ccb6277f0cf9e07de52',1,'Ipopt::RegisteredOption']]], + ['upperstrict_48',['UpperStrict',['../classIpopt_1_1RegisteredOption.html#a8c644d9053b2e8cd633d8767accb5d5a',1,'Ipopt::RegisteredOption']]], + ['userscaling_49',['userscaling',['../classIpopt_1_1UserScaling.html#acd3ac1550bfb0bc0885ebb28dfadae10',1,'Ipopt::UserScaling::UserScaling(const SmartPtr< const NLP > &nlp)'],['../classIpopt_1_1UserScaling.html#ae5e755c567dde8242cfed24e3adcec75',1,'Ipopt::UserScaling::UserScaling(const UserScaling &)']]] ]; diff --git a/search/functions_2.js b/search/functions_2.js index 329896cc1..57b9ce6c5 100644 --- a/search/functions_2.js +++ b/search/functions_2.js @@ -41,7 +41,7 @@ var searchData= ['choleskysolvematrix_38',['CholeskySolveMatrix',['../classIpopt_1_1DenseGenMatrix.html#a231c824d28246374c0d5c0aa4e4a4566',1,'Ipopt::DenseGenMatrix']]], ['choleskysolvevector_39',['CholeskySolveVector',['../classIpopt_1_1DenseGenMatrix.html#a3db5c6f7e1eeb7f40ad81a9e697b0c58',1,'Ipopt::DenseGenMatrix']]], ['cleanupinvalidatedresults_40',['CleanupInvalidatedResults',['../classIpopt_1_1CachedResults.html#a6f65c53c87a03c3045d74fbdd1af57e5',1,'Ipopt::CachedResults']]], - ['clear_41',['clear',['../classIpopt_1_1OptionsList.html#ae631b2bbb67e3ac78d1560bafefc929e',1,'Ipopt::OptionsList::clear()'],['../classIpopt_1_1PiecewisePenalty.html#a863e352222e35a374ed8f38521bcf327',1,'Ipopt::PiecewisePenalty::Clear()'],['../classIpopt_1_1CachedResults.html#a9b91e184dc7a61d7b5f980fe3e427c47',1,'Ipopt::CachedResults::Clear(int max_cache_size)'],['../classIpopt_1_1CachedResults.html#a1382321cb2355b6a06cf77ebf3dbd9c7',1,'Ipopt::CachedResults::Clear()'],['../classIpopt_1_1IterativeSolverTerminationTester.html#a597a3e266c808a9d5dfad2f7c0f20b7c',1,'Ipopt::IterativeSolverTerminationTester::Clear()'],['../classIpopt_1_1Filter.html#a94cf2454e0e2966b07065ba0cb7c5ac6',1,'Ipopt::Filter::Clear()'],['../classIpopt_1_1InexactNormalTerminationTester.html#a5a31779337507c6fcac02fdb6fa03452',1,'Ipopt::InexactNormalTerminationTester::Clear()'],['../classIpopt_1_1InexactPDTerminationTester.html#a2277e85ac3b6a88e499cf89d6020f35b',1,'Ipopt::InexactPDTerminationTester::Clear()']]], + ['clear_41',['clear',['../classIpopt_1_1PiecewisePenalty.html#a863e352222e35a374ed8f38521bcf327',1,'Ipopt::PiecewisePenalty::Clear()'],['../classIpopt_1_1CachedResults.html#a9b91e184dc7a61d7b5f980fe3e427c47',1,'Ipopt::CachedResults::Clear(int max_cache_size)'],['../classIpopt_1_1CachedResults.html#a1382321cb2355b6a06cf77ebf3dbd9c7',1,'Ipopt::CachedResults::Clear()'],['../classIpopt_1_1Filter.html#a94cf2454e0e2966b07065ba0cb7c5ac6',1,'Ipopt::Filter::Clear()'],['../classIpopt_1_1InexactPDTerminationTester.html#a2277e85ac3b6a88e499cf89d6020f35b',1,'Ipopt::InexactPDTerminationTester::Clear()'],['../classIpopt_1_1IterativeSolverTerminationTester.html#a597a3e266c808a9d5dfad2f7c0f20b7c',1,'Ipopt::IterativeSolverTerminationTester::Clear()'],['../classIpopt_1_1OptionsList.html#ae631b2bbb67e3ac78d1560bafefc929e',1,'Ipopt::OptionsList::clear()'],['../classIpopt_1_1InexactNormalTerminationTester.html#a5a31779337507c6fcac02fdb6fa03452',1,'Ipopt::InexactNormalTerminationTester::Clear()']]], ['clone_42',['clone',['../classIpopt_1_1IpoptApplication.html#a949bc6a1294fd4026a3a7dc8092ad75a',1,'Ipopt::IpoptApplication']]], ['columnscaling_43',['columnscaling',['../classIpopt_1_1ScaledMatrix.html#a0891c0a55942b87cfef08037f0fe7399',1,'Ipopt::ScaledMatrix::ColumnScaling()'],['../classIpopt_1_1ScaledMatrixSpace.html#a26a348c987e9900b6397d5e575f9c4fe',1,'Ipopt::ScaledMatrixSpace::ColumnScaling()']]], ['colvectorspace_44',['colvectorspace',['../classIpopt_1_1MultiVectorMatrix.html#a83b0006f810c72c4896945717b404e8e',1,'Ipopt::MultiVectorMatrix::ColVectorSpace()'],['../classIpopt_1_1MultiVectorMatrixSpace.html#a4f50103025e8a3ab43693e3d66c5ea58',1,'Ipopt::MultiVectorMatrixSpace::ColVectorSpace()']]], diff --git a/search/functions_4.js b/search/functions_4.js index d6a1307cb..41388fa80 100644 --- a/search/functions_4.js +++ b/search/functions_4.js @@ -27,7 +27,7 @@ var searchData= ['eta_24',['Eta',['../classIpopt_1_1RestoIpoptNLP.html#a9f1cd940492d13a461f2d7fe903a22a7',1,'Ipopt::RestoIpoptNLP']]], ['eval_5fc_25',['eval_c',['../classIpopt_1_1NLPBoundsRemover.html#a17ce021ed4e18bbf28689133149aec14',1,'Ipopt::NLPBoundsRemover::Eval_c()'],['../classIpopt_1_1NLP.html#a8abc36cb9f8486431990e403d41fbd75',1,'Ipopt::NLP::Eval_c()'],['../classIpopt_1_1TNLPAdapter.html#aee33e5fa1338711149df79423971ecb2',1,'Ipopt::TNLPAdapter::Eval_c()']]], ['eval_5fd_26',['eval_d',['../classIpopt_1_1NLPBoundsRemover.html#ab4a6bc76325ef88805a350d2a3ac758c',1,'Ipopt::NLPBoundsRemover::Eval_d()'],['../classIpopt_1_1NLP.html#a45516306252b77258e1d1d1027ee1b02',1,'Ipopt::NLP::Eval_d()'],['../classIpopt_1_1TNLPAdapter.html#a7f371d2d1ffc584cf9c7df4c84d98908',1,'Ipopt::TNLPAdapter::Eval_d()']]], - ['eval_5ff_27',['eval_f',['../classIpopt_1_1StdInterfaceTNLP.html#a50353b8f92b3023f7fbfbebcce9dd5a3',1,'Ipopt::StdInterfaceTNLP::eval_f()'],['../classIpopt_1_1TNLP.html#a709c03900227bc573b046ce0705e6c84',1,'Ipopt::TNLP::eval_f()'],['../classIpopt_1_1TNLPReducer.html#a57820e9ca1879f1c57c4f1ef6fbb7d57',1,'Ipopt::TNLPReducer::eval_f()'],['../classIpopt_1_1TNLPAdapter.html#acd3957eacad73c45281d211a1325fd10',1,'Ipopt::TNLPAdapter::Eval_f()'],['../classIpopt_1_1AmplTNLP.html#aa50b7555bb6bcc3965fcdefb0ea130c5',1,'Ipopt::AmplTNLP::eval_f()'],['../classIpopt_1_1NLP.html#ad4180ae1884375f56eb45d8f1daa0cc5',1,'Ipopt::NLP::Eval_f()'],['../classIpopt_1_1NLPBoundsRemover.html#a486beaaf38829c5b076ed86e81fb4dc5',1,'Ipopt::NLPBoundsRemover::Eval_f()'],['../classorg_1_1coinor_1_1Ipopt.html#a80bae3cab08d6fdab223d74cf33e5f02',1,'org.coinor.Ipopt.eval_f()']]], + ['eval_5ff_27',['eval_f',['../classIpopt_1_1NLPBoundsRemover.html#a486beaaf38829c5b076ed86e81fb4dc5',1,'Ipopt::NLPBoundsRemover::Eval_f()'],['../classIpopt_1_1NLP.html#ad4180ae1884375f56eb45d8f1daa0cc5',1,'Ipopt::NLP::Eval_f()'],['../classIpopt_1_1TNLPAdapter.html#acd3957eacad73c45281d211a1325fd10',1,'Ipopt::TNLPAdapter::Eval_f()'],['../classIpopt_1_1StdInterfaceTNLP.html#a50353b8f92b3023f7fbfbebcce9dd5a3',1,'Ipopt::StdInterfaceTNLP::eval_f()'],['../classIpopt_1_1TNLP.html#a709c03900227bc573b046ce0705e6c84',1,'Ipopt::TNLP::eval_f()'],['../classorg_1_1coinor_1_1Ipopt.html#a80bae3cab08d6fdab223d74cf33e5f02',1,'org.coinor.Ipopt.eval_f()'],['../classIpopt_1_1AmplTNLP.html#aa50b7555bb6bcc3965fcdefb0ea130c5',1,'Ipopt::AmplTNLP::eval_f()'],['../classIpopt_1_1TNLPReducer.html#a57820e9ca1879f1c57c4f1ef6fbb7d57',1,'Ipopt::TNLPReducer::eval_f()']]], ['eval_5fg_28',['eval_g',['../classIpopt_1_1AmplTNLP.html#a60ea8db9be8ce3baa1b7086a023ab633',1,'Ipopt::AmplTNLP::eval_g()'],['../classorg_1_1coinor_1_1Ipopt.html#a04825d67738e9017df30846060f8a660',1,'org.coinor.Ipopt.eval_g()'],['../classIpopt_1_1StdInterfaceTNLP.html#a9f949ff104114155f4f359137c119eb8',1,'Ipopt::StdInterfaceTNLP::eval_g()'],['../classIpopt_1_1TNLP.html#afcfd8404b772dc4960f2d2db4e8bb382',1,'Ipopt::TNLP::eval_g()'],['../classIpopt_1_1TNLPReducer.html#a68c7836d24a6a479f24935d6c0d3293f',1,'Ipopt::TNLPReducer::eval_g()']]], ['eval_5fgrad_5ff_29',['eval_grad_f',['../classorg_1_1coinor_1_1Ipopt.html#a77ead30aae6f366cdd41d566893199ef',1,'org.coinor.Ipopt.eval_grad_f()'],['../classIpopt_1_1TNLPReducer.html#abbb4c3aef1ba9faa0a535a590ec37589',1,'Ipopt::TNLPReducer::eval_grad_f()'],['../classIpopt_1_1TNLP.html#a52698f1861ffef271d5e317c0e168652',1,'Ipopt::TNLP::eval_grad_f()'],['../classIpopt_1_1StdInterfaceTNLP.html#a1d2a182d3888bf0a356464dcbeb085cc',1,'Ipopt::StdInterfaceTNLP::eval_grad_f()'],['../classIpopt_1_1AmplTNLP.html#a617b5e7de6693324ff3236c347bd62e3',1,'Ipopt::AmplTNLP::eval_grad_f()'],['../classIpopt_1_1TNLPAdapter.html#a400dcedb66ba2256d4a0a062f6b01daf',1,'Ipopt::TNLPAdapter::Eval_grad_f()'],['../classIpopt_1_1NLP.html#a39373485171b0201c09d587e317d9aee',1,'Ipopt::NLP::Eval_grad_f()'],['../classIpopt_1_1NLPBoundsRemover.html#a3812bcd2ab07071a349ec22f7c5d6b5b',1,'Ipopt::NLPBoundsRemover::Eval_grad_f(const Vector &x, Vector &g_f)']]], ['eval_5fh_30',['eval_h',['../classIpopt_1_1NLPBoundsRemover.html#ad128e2536a72413480685932d72a5d98',1,'Ipopt::NLPBoundsRemover::Eval_h()'],['../classIpopt_1_1NLP.html#a14cd88b672c62a435fca76c8a7ed4631',1,'Ipopt::NLP::Eval_h()'],['../classIpopt_1_1TNLPAdapter.html#abfdd1e3b48bf4ddd8a60577f4fa889c4',1,'Ipopt::TNLPAdapter::Eval_h()'],['../classIpopt_1_1AmplTNLP.html#a944ad51b4e14545324e0e4513e0c89ae',1,'Ipopt::AmplTNLP::eval_h()'],['../classorg_1_1coinor_1_1Ipopt.html#a8338a6f69c453de7e0c7d02309fce4f9',1,'org.coinor.Ipopt.eval_h()'],['../classIpopt_1_1StdInterfaceTNLP.html#a8f2d9b4988313f8caa6ac55cc67188dc',1,'Ipopt::StdInterfaceTNLP::eval_h()'],['../classIpopt_1_1TNLP.html#a26b9145267e2574c53acc284fef1c354',1,'Ipopt::TNLP::eval_h()'],['../classIpopt_1_1TNLPReducer.html#ab7f4aa6db99429fb0b1f9c6c556ec0ed',1,'Ipopt::TNLPReducer::eval_h()']]], diff --git a/search/functions_8.js b/search/functions_8.js index e6c8e9dcf..f442d1c10 100644 --- a/search/functions_8.js +++ b/search/functions_8.js @@ -43,8 +43,8 @@ var searchData= ['initializestructures_40',['initializestructures',['../classIpopt_1_1IpoptNLP.html#a70e6fc80da13309678a3a446087b9016',1,'Ipopt::IpoptNLP::InitializeStructures()'],['../classIpopt_1_1OrigIpoptNLP.html#a8ba80f8702c0bcfe314168c4ba744625',1,'Ipopt::OrigIpoptNLP::InitializeStructures()'],['../classIpopt_1_1RestoIpoptNLP.html#a246bd94feae7b7a6cc1be6ba348af937',1,'Ipopt::RestoIpoptNLP::InitializeStructures()']]], ['initpiecewisepenaltylist_41',['InitPiecewisePenaltyList',['../classIpopt_1_1PiecewisePenalty.html#af3a71f0c86ae92d21630ffe95da79967',1,'Ipopt::PiecewisePenalty']]], ['initthislinesearch_42',['initthislinesearch',['../classIpopt_1_1FilterLSAcceptor.html#a446775d73606c17c8fdb62205b97b6fe',1,'Ipopt::FilterLSAcceptor::InitThisLineSearch()'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#a325e6d7176fc93d1b1b01417efe357e3',1,'Ipopt::CGPenaltyLSAcceptor::InitThisLineSearch()'],['../classIpopt_1_1PenaltyLSAcceptor.html#a0b9869c0eb598ed19fce53eea53c9f72',1,'Ipopt::PenaltyLSAcceptor::InitThisLineSearch()'],['../classIpopt_1_1BacktrackingLSAcceptor.html#a15b3fdfefa3e786ab402ee61529c7394',1,'Ipopt::BacktrackingLSAcceptor::InitThisLineSearch()'],['../classIpopt_1_1InexactLSAcceptor.html#a2eea209ab4aecaa67582cef18ad75e08',1,'Ipopt::InexactLSAcceptor::InitThisLineSearch()']]], - ['intermediate_5fcallback_43',['intermediate_callback',['../classIpopt_1_1StdInterfaceTNLP.html#ab4fcfcfb900e02cfa1f9a6c8f2498fcc',1,'Ipopt::StdInterfaceTNLP::intermediate_callback()'],['../classIpopt_1_1TNLP.html#a2f962a4c43464adb7928771af84503d6',1,'Ipopt::TNLP::intermediate_callback()'],['../classIpopt_1_1TNLPReducer.html#acd2d3d379cd52fc7ce111b16f95713f3',1,'Ipopt::TNLPReducer::intermediate_callback()'],['../classorg_1_1coinor_1_1Ipopt.html#a64b80dde363aebc64802b3ad950a7a06',1,'org.coinor.Ipopt.intermediate_callback()']]], - ['intermediatecallback_44',['intermediatecallback',['../classIpopt_1_1TNLPAdapter.html#aa7d7c5e4706688897b2cd6579168f3af',1,'Ipopt::TNLPAdapter::IntermediateCallBack()'],['../classIpopt_1_1NLP.html#a9cf00e4fc7ad13c810a6d1e238221fee',1,'Ipopt::NLP::IntermediateCallBack()'],['../classIpopt_1_1RestoIpoptNLP.html#a0c2d0d657fc1e6cfd230aa5915e42407',1,'Ipopt::RestoIpoptNLP::IntermediateCallBack()'],['../classIpopt_1_1OrigIpoptNLP.html#a4a599bba0d3d2a9a0668b705e25d1601',1,'Ipopt::OrigIpoptNLP::IntermediateCallBack()'],['../classIpopt_1_1NLPBoundsRemover.html#ac2cca4d97a274734535fad204f64fdc9',1,'Ipopt::NLPBoundsRemover::IntermediateCallBack()'],['../classIpopt_1_1IpoptNLP.html#a4288990eceacf3c09c663f3954ff27d6',1,'Ipopt::IpoptNLP::IntermediateCallBack()']]], + ['intermediate_5fcallback_43',['intermediate_callback',['../classorg_1_1coinor_1_1Ipopt.html#a64b80dde363aebc64802b3ad950a7a06',1,'org.coinor.Ipopt.intermediate_callback()'],['../classIpopt_1_1AmplTNLP.html#a6f25c70227d6ddadf6f691781007c944',1,'Ipopt::AmplTNLP::intermediate_callback()'],['../classIpopt_1_1TNLPReducer.html#acd2d3d379cd52fc7ce111b16f95713f3',1,'Ipopt::TNLPReducer::intermediate_callback()'],['../classIpopt_1_1StdInterfaceTNLP.html#ab4fcfcfb900e02cfa1f9a6c8f2498fcc',1,'Ipopt::StdInterfaceTNLP::intermediate_callback()'],['../classIpopt_1_1TNLP.html#a2f962a4c43464adb7928771af84503d6',1,'Ipopt::TNLP::intermediate_callback()']]], + ['intermediatecallback_44',['intermediatecallback',['../classIpopt_1_1IpoptNLP.html#a4288990eceacf3c09c663f3954ff27d6',1,'Ipopt::IpoptNLP::IntermediateCallBack()'],['../classIpopt_1_1NLPBoundsRemover.html#ac2cca4d97a274734535fad204f64fdc9',1,'Ipopt::NLPBoundsRemover::IntermediateCallBack()'],['../classIpopt_1_1OrigIpoptNLP.html#a4a599bba0d3d2a9a0668b705e25d1601',1,'Ipopt::OrigIpoptNLP::IntermediateCallBack()'],['../classIpopt_1_1RestoIpoptNLP.html#a0c2d0d657fc1e6cfd230aa5915e42407',1,'Ipopt::RestoIpoptNLP::IntermediateCallBack()'],['../classIpopt_1_1NLP.html#a9cf00e4fc7ad13c810a6d1e238221fee',1,'Ipopt::NLP::IntermediateCallBack()'],['../classIpopt_1_1TNLPAdapter.html#aa7d7c5e4706688897b2cd6579168f3af',1,'Ipopt::TNLPAdapter::IntermediateCallBack()']]], ['internal_5fconval_45',['internal_conval',['../classIpopt_1_1AmplTNLP.html#a8e690881923e4dd353ac22434951113e',1,'Ipopt::AmplTNLP']]], ['internal_5feval_5fg_46',['internal_eval_g',['../classIpopt_1_1TNLPAdapter.html#a56d13298f5e6a265b2571199243b089e',1,'Ipopt::TNLPAdapter']]], ['internal_5feval_5fjac_5fg_47',['internal_eval_jac_g',['../classIpopt_1_1TNLPAdapter.html#aa507ff72122064ba2eb5392c866cad55',1,'Ipopt::TNLPAdapter']]], diff --git a/search/variables_2.js b/search/variables_2.js index c1b4ceff6..666413ea8 100644 --- a/search/variables_2.js +++ b/search/variables_2.js @@ -25,167 +25,168 @@ var searchData= ['check_5fderivatives_5ffor_5fnaninf_5f_22',['check_derivatives_for_naninf_',['../classIpopt_1_1OrigIpoptNLP.html#abd8b0ba1daae668cbc54566376fd991b',1,'Ipopt::OrigIpoptNLP']]], ['check_5fif_5fno_5fbounds_5f_23',['check_if_no_bounds_',['../classIpopt_1_1AdaptiveMuUpdate.html#a35a0f2b57769cfa0b65533600fad6768',1,'Ipopt::AdaptiveMuUpdate']]], ['checkconvergence_5f_24',['CheckConvergence_',['../classIpopt_1_1TimingStatistics.html#abb0a19d8d82567aec2762fd9b273c2e4',1,'Ipopt::TimingStatistics']]], - ['chi_5fcup_5f_25',['chi_cup_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a867ab8b2228a0815acb9514df50712f0',1,'Ipopt::CGPenaltyLSAcceptor']]], - ['chi_5fhat_5f_26',['chi_hat_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a55736fdcefbfd45841c5ea8155a33d49',1,'Ipopt::CGPenaltyLSAcceptor']]], - ['chi_5ftilde_5f_27',['chi_tilde_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a600ec60ad2c62ae46b5bce3a0a98ee0b',1,'Ipopt::CGPenaltyLSAcceptor']]], - ['cntl_5f_28',['cntl_',['../classIpopt_1_1Ma27TSolverInterface.html#afe4299e1d2a13db4b3be5540fe614c72',1,'Ipopt::Ma27TSolverInterface']]], - ['cols_5f_29',['cols_',['../classIpopt_1_1IndexPCalculator.html#a73c9b88c0c77ba7723674786baac9f81',1,'Ipopt::IndexPCalculator']]], - ['column_5fscaling_5f_30',['column_scaling_',['../classIpopt_1_1ScaledMatrixSpace.html#a1046740ac352cc4a1c7c3284d3fb11a5',1,'Ipopt::ScaledMatrixSpace']]], - ['comp_5fspaces_5f_31',['comp_spaces_',['../classIpopt_1_1CompoundMatrixSpace.html#a9be1b58db439754df9dfd23acd6a5ca7',1,'Ipopt::CompoundMatrixSpace::comp_spaces_'],['../classIpopt_1_1CompoundSymMatrixSpace.html#aae0072b61bb9c679172a903c5772f46c',1,'Ipopt::CompoundSymMatrixSpace::comp_spaces_'],['../classIpopt_1_1CompoundVectorSpace.html#a1af6d17867673671b0057f5a2410bf9d',1,'Ipopt::CompoundVectorSpace::comp_spaces_']]], - ['compl_5f_32',['compl_',['../classIpopt_1_1SolveStatistics.html#aab161fe3cedc42eec6363e53f834d71c',1,'Ipopt::SolveStatistics']]], - ['compl_5finf_5ftol_5f_33',['compl_inf_tol_',['../classIpopt_1_1AdaptiveMuUpdate.html#aca672ca22155030b50de1b1d16244a32',1,'Ipopt::AdaptiveMuUpdate::compl_inf_tol_'],['../classIpopt_1_1MonotoneMuUpdate.html#a96158c1aeb7e63e961e149828e026e37',1,'Ipopt::MonotoneMuUpdate::compl_inf_tol_'],['../classIpopt_1_1OptimalityErrorConvergenceCheck.html#a62c241f4b9e248f10dada6e721f50570',1,'Ipopt::OptimalityErrorConvergenceCheck::compl_inf_tol_']]], - ['compound_5fsol_5fvecspace_5f_34',['compound_sol_vecspace_',['../classIpopt_1_1LowRankAugSystemSolver.html#a8618b3bb0e75e3f552d18fed55e99da4',1,'Ipopt::LowRankAugSystemSolver']]], - ['compressed_5fpos_5f_35',['compressed_pos_',['../classIpopt_1_1ExpansionMatrixSpace.html#a58fe433496b726b214d74a053cdb8a85',1,'Ipopt::ExpansionMatrixSpace']]], - ['comps_5f_36',['comps_',['../classIpopt_1_1CompoundMatrix.html#ad5d9c245cfc65f36820fad3e59212083',1,'Ipopt::CompoundMatrix::comps_'],['../classIpopt_1_1CompoundSymMatrix.html#aa28c63b5f6e396e47bca2696b56de7ec',1,'Ipopt::CompoundSymMatrix::comps_'],['../classIpopt_1_1CompoundVector.html#a45a77bf549eafc343cb74b83c2123dae',1,'Ipopt::CompoundVector::comps_']]], - ['compute_5fdsdp_5f_37',['compute_dsdp_',['../classIpopt_1_1SensApplication.html#af83a72c905f663e86954ffd0139553f2',1,'Ipopt::SensApplication']]], - ['compute_5feigenvalues_5f_38',['compute_eigenvalues_',['../classIpopt_1_1ReducedHessianCalculator.html#ad4e8be9c4483bcdae1e164c85bafabb0',1,'Ipopt::ReducedHessianCalculator']]], - ['compute_5fnormal_5f_39',['compute_normal_',['../classIpopt_1_1InexactData.html#ae402bd2f29828f461fe49ddb24ceb9c5',1,'Ipopt::InexactData']]], - ['compute_5fred_5fhessian_5f_40',['compute_red_hessian_',['../classIpopt_1_1SensApplication.html#a9106d751c6bc6b603e5b661dfab90b3b',1,'Ipopt::SensApplication::compute_red_hessian_'],['../classIpopt_1_1SensAmplTNLP.html#a667cde08f67c0d1015a54fa65c1dba9c',1,'Ipopt::SensAmplTNLP::compute_red_hessian_']]], - ['computeacceptabletrialpoint_5f_41',['ComputeAcceptableTrialPoint_',['../classIpopt_1_1TimingStatistics.html#ad596a4a6ebabe05fc78f2289ac90c9d0',1,'Ipopt::TimingStatistics']]], - ['computeresiduals_5f_42',['ComputeResiduals_',['../classIpopt_1_1TimingStatistics.html#ae60b6894c897466145e7c5a19ef4efae',1,'Ipopt::TimingStatistics']]], - ['computesearchdirection_5f_43',['ComputeSearchDirection_',['../classIpopt_1_1TimingStatistics.html#aad3a2328839adc17201a43ca7f2c5e0d',1,'Ipopt::TimingStatistics']]], - ['con_5finteger_5fmd_5f_44',['con_integer_md_',['../classIpopt_1_1AmplTNLP.html#af9d12945a7750eaef07feef07a51b3df',1,'Ipopt::AmplTNLP']]], - ['con_5fnumeric_5fmd_5f_45',['con_numeric_md_',['../classIpopt_1_1AmplTNLP.html#a89ebb03c7dc2eb964f78fd2499ce2da5',1,'Ipopt::AmplTNLP']]], - ['con_5fstring_5fmd_5f_46',['con_string_md_',['../classIpopt_1_1AmplTNLP.html#a0db97ee895b0c54a503772bb8667fdb5',1,'Ipopt::AmplTNLP']]], - ['consist_5ftol_47',['consist_tol',['../structma77__control__s.html#af0d5c3c689e055c5e4ed9b6b2a6eb817',1,'ma77_control_s::consist_tol'],['../structma97__control__d.html#abe7e350a74dbe697a5610659bc473de3',1,'ma97_control_d::consist_tol'],['../structma97__control__s.html#a68e8870721bddfa333923e21c32f3d85',1,'ma97_control_s::consist_tol'],['../structma77__control__d.html#a05a9cec699db33551ad7e1f551cda9ca',1,'ma77_control_d::consist_tol']]], - ['const_5fcomps_5f_48',['const_comps_',['../classIpopt_1_1CompoundMatrix.html#a6b8631ab1a9aeacd18d3ad8e7b735e0f',1,'Ipopt::CompoundMatrix::const_comps_'],['../classIpopt_1_1CompoundSymMatrix.html#a60b1128cb4a54380aa2cc227d18c6f26',1,'Ipopt::CompoundSymMatrix::const_comps_'],['../classIpopt_1_1CompoundVector.html#ac36eb38085d92112552b058d372e58ac',1,'Ipopt::CompoundVector::const_comps_']]], - ['const_5fvecs_5f_49',['const_vecs_',['../classIpopt_1_1MultiVectorMatrix.html#accfafd2d99df3186da3a59fba47ee852',1,'Ipopt::MultiVectorMatrix']]], - ['constr_5fmult_5finit_5fmax_5f_50',['constr_mult_init_max_',['../classIpopt_1_1DefaultIterateInitializer.html#a3bc5d7c92d857433f4a64393b99cec09',1,'Ipopt::DefaultIterateInitializer::constr_mult_init_max_'],['../classIpopt_1_1RestoIterateInitializer.html#a56a26b12756ca5fdabfc1f20a75847d3',1,'Ipopt::RestoIterateInitializer::constr_mult_init_max_']]], - ['constr_5fmult_5freset_5fthreshold_5f_51',['constr_mult_reset_threshold_',['../classIpopt_1_1MinC__1NrmRestorationPhase.html#af989b1cc697c140d2a35672d9be05712',1,'Ipopt::MinC_1NrmRestorationPhase']]], - ['constr_5fviol_5f_52',['constr_viol_',['../classIpopt_1_1SolveStatistics.html#a668a7eed8c4e0f242db59f875b01631d',1,'Ipopt::SolveStatistics']]], - ['constr_5fviol_5fnormtype_5f_53',['constr_viol_normtype_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a1640157e330bdcd41c10e175f1efd67a',1,'Ipopt::IpoptCalculatedQuantities']]], - ['constr_5fviol_5ftol_5f_54',['constr_viol_tol_',['../classIpopt_1_1BacktrackingLineSearch.html#a1976e93763eb416e335a900c66ac67e4',1,'Ipopt::BacktrackingLineSearch::constr_viol_tol_'],['../classIpopt_1_1IpoptAlgorithm.html#a2bdced6a3ed9532a8a9abb182f0ec931',1,'Ipopt::IpoptAlgorithm::constr_viol_tol_'],['../classIpopt_1_1OptimalityErrorConvergenceCheck.html#af47a923f7b244f795fab367a7dfa089e',1,'Ipopt::OptimalityErrorConvergenceCheck::constr_viol_tol_'],['../classIpopt_1_1OrigIpoptNLP.html#a2103145a77a5dd0b9b8a61f67ad2ef6c',1,'Ipopt::OrigIpoptNLP::constr_viol_tol_'],['../classIpopt_1_1MinC__1NrmRestorationPhase.html#a85723ff97452a0a835c93fddc3204e77',1,'Ipopt::MinC_1NrmRestorationPhase::constr_viol_tol_']]], - ['control_5f_55',['control_',['../classIpopt_1_1Ma77SolverInterface.html#a4ac1564a6cc92c83e9d11f475e95e7cc',1,'Ipopt::Ma77SolverInterface::control_'],['../classIpopt_1_1Ma86SolverInterface.html#abf83bd354c9e6c13f183ad64a9e33fc2',1,'Ipopt::Ma86SolverInterface::control_'],['../classIpopt_1_1Ma97SolverInterface.html#af90324167f6886374e57075f8bc537f9',1,'Ipopt::Ma97SolverInterface::control_'],['../classIpopt_1_1SpralSolverInterface.html#a1036bdd74111ba894a49e63e1d61c277',1,'Ipopt::SpralSolverInterface::control_']]], - ['controller_56',['controller',['../classIpopt_1_1SensApplication.html#aa3f9d03f6473f56c0c2765b5897df99b',1,'Ipopt::SensApplication']]], - ['conv_5fcheck_5f_57',['conv_check_',['../classIpopt_1_1IpoptAlgorithm.html#a00a3bd1b384831e5fa894849d181f13e',1,'Ipopt::IpoptAlgorithm::conv_check_'],['../classIpopt_1_1BacktrackingLineSearch.html#a2b01e6a4860c4576b2786b442611bd28',1,'Ipopt::BacktrackingLineSearch::conv_check_']]], - ['conval_5fcalled_5fwith_5fcurrent_5fx_5f_58',['conval_called_with_current_x_',['../classIpopt_1_1AmplTNLP.html#aa63dc17fa5263ef062e1e57df929f902',1,'Ipopt::AmplTNLP']]], - ['convcheck_5f_59',['ConvCheck_',['../classIpopt_1_1AlgorithmBuilder.html#a59a5e839ff6dfaa30265f52b9234f6c7',1,'Ipopt::AlgorithmBuilder']]], - ['corrector_5fcompl_5favrg_5fred_5ffact_5f_60',['corrector_compl_avrg_red_fact_',['../classIpopt_1_1FilterLSAcceptor.html#ad688851f8b0edc3fc1d19108f40b668b',1,'Ipopt::FilterLSAcceptor']]], - ['corrector_5ftype_5f_61',['corrector_type_',['../classIpopt_1_1FilterLSAcceptor.html#afc3efaea1e54a8b64fe7d400e9e067fe',1,'Ipopt::FilterLSAcceptor']]], - ['count_5fqf_5fevals_5f_62',['count_qf_evals_',['../classIpopt_1_1QualityFunctionMuOracle.html#a6205dd51bc1660a1490a76205cef81d4',1,'Ipopt::QualityFunctionMuOracle']]], - ['count_5frestorations_5f_63',['count_restorations_',['../classIpopt_1_1MinC__1NrmRestorationPhase.html#afcbd1a157eba7a802699cd7d89876131',1,'Ipopt::MinC_1NrmRestorationPhase']]], - ['count_5fsuccessive_5ffilter_5frejections_5f_64',['count_successive_filter_rejections_',['../classIpopt_1_1FilterLSAcceptor.html#a3f1b4f8c416b002afe455d1d52953c77',1,'Ipopt::FilterLSAcceptor']]], - ['count_5fsuccessive_5fshortened_5fsteps_5f_65',['count_successive_shortened_steps_',['../classIpopt_1_1BacktrackingLineSearch.html#a4c08b213efd298ed6d20dbc007b47b78',1,'Ipopt::BacktrackingLineSearch']]], - ['counter_5f_66',['counter_',['../classIpopt_1_1OptionsList_1_1OptionValue.html#a5133ccf41c223a42a17964a0c99badad',1,'Ipopt::OptionsList::OptionValue::counter_'],['../classIpopt_1_1RegisteredOption.html#aa5fc3710068f0b277e9e624514e17e82',1,'Ipopt::RegisteredOption::counter_']]], - ['counter_5ffirst_5ftype_5fpenalty_5fupdates_5f_67',['counter_first_type_penalty_updates_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a8ee2a8b1c47d76940684e422d968fcf8',1,'Ipopt::CGPenaltyLSAcceptor']]], - ['counter_5fsecond_5ftype_5fpenalty_5fupdates_5f_68',['counter_second_type_penalty_updates_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a995edef721ff4b9348e84a9fc6707260',1,'Ipopt::CGPenaltyLSAcceptor']]], - ['cputime_5fexceeded_69',['CPUTIME_EXCEEDED',['../classorg_1_1coinor_1_1Ipopt.html#af915b9705da65d4ec1dfaf7b5889c61c',1,'org::coinor::Ipopt']]], - ['curr_5f_70',['curr_',['../classIpopt_1_1IpoptData.html#a5b815f4715fcfee5b3b2f67d4e290487',1,'Ipopt::IpoptData']]], - ['curr_5fadded_5fy_5fnrm2_5fcache_5f_71',['curr_added_y_nrm2_cache_',['../classIpopt_1_1CGPenaltyCq.html#a549f37ad03aca7f92f7936eddc4534e9',1,'Ipopt::CGPenaltyCq']]], - ['curr_5fav_5fc_5f_72',['curr_Av_c_',['../classIpopt_1_1InexactPDTerminationTester.html#a533f1698e65402664b11cb133d4bcbba',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fav_5fd_5f_73',['curr_Av_d_',['../classIpopt_1_1InexactPDTerminationTester.html#a79f4f0cf01aa5589d3658a72dafe1d88',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fav_5fnorm_5f_74',['curr_Av_norm_',['../classIpopt_1_1InexactPDTerminationTester.html#a9a0e065ce339095f483a273381ef406e',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5favrg_5fcompl_5fcache_5f_75',['curr_avrg_compl_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a65662db722297207785a74c690471a06',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fbarrier_5ferror_5fcache_5f_76',['curr_barrier_error_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aab5d523c1ff9b85dcc6d9734fb9a9c41',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fbarrier_5fobj_5fcache_5f_77',['curr_barrier_obj_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a4d315ad36a9ec9c6325c680f1a3ca7f0',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fc_5famax_5f_78',['curr_c_amax_',['../classIpopt_1_1QualityFunctionMuOracle.html#a85ac4bc3fdd8029d3350d6b75ffca573',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fc_5fasum_5f_79',['curr_c_asum_',['../classIpopt_1_1QualityFunctionMuOracle.html#aac1d16433140c2995b5d109500138c10',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fc_5fcache_5f_80',['curr_c_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ac12d66565a37a2cb00ca87e1be5207c7',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fc_5fnrm2_5f_81',['curr_c_nrm2_',['../classIpopt_1_1QualityFunctionMuOracle.html#ab09228071156a4c8157daff591543891',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fcentrality_5fmeasure_5fcache_5f_82',['curr_centrality_measure_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a40f668a395ca39d3abbae430860b6c13',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fcg_5fpert_5ffact_5fcache_5f_83',['curr_cg_pert_fact_cache_',['../classIpopt_1_1CGPenaltyCq.html#a93bc3b92335985ec97bb7825d325bd0d',1,'Ipopt::CGPenaltyCq']]], - ['curr_5fcompl_5fs_5fl_5fcache_5f_84',['curr_compl_s_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aa657f70dccea71d646b583d34ecac93f',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fcompl_5fs_5fu_5fcache_5f_85',['curr_compl_s_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a1af03f7e2b5f896e4603be8608dc6fa5',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fcompl_5fx_5fl_5fcache_5f_86',['curr_compl_x_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ad82d662107b2538ec556cbf008663486',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fcompl_5fx_5fu_5fcache_5f_87',['curr_compl_x_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#af154b4f264b8f422ed8dfa166b71be0d',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fcomplementarity_5fcache_5f_88',['curr_complementarity_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#afb4349c30671ac01dbcca61ca52505cc',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fconstraint_5fviolation_5fcache_5f_89',['curr_constraint_violation_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a06e070a29e3b2f6082454ad544bd459d',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fd_5fcache_5f_90',['curr_d_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#abd1d6030c68c69bdaa8382bc81ced0e0',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fd_5fminus_5fs_5famax_5f_91',['curr_d_minus_s_amax_',['../classIpopt_1_1QualityFunctionMuOracle.html#ada3fa499f855d76d125ab378c2a37923',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fd_5fminus_5fs_5fasum_5f_92',['curr_d_minus_s_asum_',['../classIpopt_1_1QualityFunctionMuOracle.html#acbae01688d1e5da56eed73f0ca662152',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fd_5fminus_5fs_5fcache_5f_93',['curr_d_minus_s_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a3191551e295971ec110d24501c503308',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fd_5fminus_5fs_5fnrm2_5f_94',['curr_d_minus_s_nrm2_',['../classIpopt_1_1QualityFunctionMuOracle.html#a38c3868ae9824305685fa856498e18e1',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fdirect_5fderiv_5fpenalty_5ffunction_5fcache_5f_95',['curr_direct_deriv_penalty_function_cache_',['../classIpopt_1_1CGPenaltyCq.html#a1028ea1e9e635c44f9710c8f66ca312f',1,'Ipopt::CGPenaltyCq']]], - ['curr_5fdr_5fx_5f_96',['curr_DR_x_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#af91acff1d8121c05414463d5ff29c5a3',1,'Ipopt::LimMemQuasiNewtonUpdater']]], - ['curr_5fdr_5fx_5ftag_5f_97',['curr_DR_x_tag_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a7d14331c82d5cb7136fcb6a224131cf1',1,'Ipopt::LimMemQuasiNewtonUpdater']]], - ['curr_5fdual_5finfeasibility_5fcache_5f_98',['curr_dual_infeasibility_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a479e175cdf16a8de25f6acc7700b91e0',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5feta_5f_99',['curr_eta_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a789105608badbec4cef9a15812443cbe',1,'Ipopt::LimMemQuasiNewtonUpdater::curr_eta_'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#ae0d9ea62a79ee3bd3965d181c59b0b34',1,'Ipopt::CGPenaltyLSAcceptor::curr_eta_']]], - ['curr_5fexact_5fhessian_5fcache_5f_100',['curr_exact_hessian_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a38dcf1b87176afc273819afc224bfa68',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5ff_5fcache_5f_101',['curr_f_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aa270c37f85fc81a576cfb5b430bf7e6d',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5ffast_5fdirect_5fderiv_5fpenalty_5ffunction_5fcache_5f_102',['curr_fast_direct_deriv_penalty_function_cache_',['../classIpopt_1_1CGPenaltyCq.html#a0cf10a096053e7c7a7f83e67f07f60e4',1,'Ipopt::CGPenaltyCq']]], - ['curr_5fgrad_5fbarrier_5fobj_5fs_5f_103',['curr_grad_barrier_obj_s_',['../classIpopt_1_1InexactPDTerminationTester.html#a3e18f2cdc2a73cae2ae9b3e0e0fdd9c8',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fgrad_5fbarrier_5fobj_5fs_5fcache_5f_104',['curr_grad_barrier_obj_s_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aeddcb989dcac80e63433f715b407f830',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5fbarrier_5fobj_5fx_5f_105',['curr_grad_barrier_obj_x_',['../classIpopt_1_1InexactPDTerminationTester.html#ad7d14bd528ad73b056736a2376446634',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fgrad_5fbarrier_5fobj_5fx_5fcache_5f_106',['curr_grad_barrier_obj_x_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a3e814e69d9f81f9cb8f94da08cd6424b',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5ff_5fcache_5f_107',['curr_grad_f_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a617fdb6e08dddb832a5b640c347c7eb6',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5flag_5fs_5famax_5f_108',['curr_grad_lag_s_amax_',['../classIpopt_1_1QualityFunctionMuOracle.html#a24806d4cd798f21928efd68df0f7f41d',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fgrad_5flag_5fs_5fasum_5f_109',['curr_grad_lag_s_asum_',['../classIpopt_1_1QualityFunctionMuOracle.html#a411f905bb519c21a01e7d37379102e16',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fgrad_5flag_5fs_5fcache_5f_110',['curr_grad_lag_s_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aadb0ffa18bf23551bfe7438d063d6a9e',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5flag_5fs_5fnrm2_5f_111',['curr_grad_lag_s_nrm2_',['../classIpopt_1_1QualityFunctionMuOracle.html#aaa1c72eeeb4c0d2e7b79390d5b91fb76',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fgrad_5flag_5fwith_5fdamping_5fs_5fcache_5f_112',['curr_grad_lag_with_damping_s_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#af6ea564a2947d32944cff1c6deec3674',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5flag_5fwith_5fdamping_5fx_5fcache_5f_113',['curr_grad_lag_with_damping_x_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a27754aa0141619ea0e2639bdce1b5000',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5flag_5fx_5famax_5f_114',['curr_grad_lag_x_amax_',['../classIpopt_1_1QualityFunctionMuOracle.html#ad7815e200e45bef37fe919fb7de6059d',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fgrad_5flag_5fx_5fasum_5f_115',['curr_grad_lag_x_asum_',['../classIpopt_1_1QualityFunctionMuOracle.html#a807bd37209e373962f6f3e7ba22fef48',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fgrad_5flag_5fx_5fcache_5f_116',['curr_grad_lag_x_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#adfe46b91ad1608d0a218d0be4d23a6d8',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fgrad_5flag_5fx_5fnrm2_5f_117',['curr_grad_lag_x_nrm2_',['../classIpopt_1_1QualityFunctionMuOracle.html#afdeb5885c1636b7b524d01d02f0f85e9',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fgradbarrtdelta_5fcache_5f_118',['curr_gradBarrTDelta_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a416117ba0957fe81cb5b4b2aa3fabcce',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5fc_5f_119',['curr_jac_c_',['../classIpopt_1_1InexactPDTerminationTester.html#a990d4c13be65eab04eaabdcfa333fa97',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fjac_5fc_5fcache_5f_120',['curr_jac_c_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ab041cf84cc44927f63b22a12e31bfed4',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5fc_5ftimes_5fvec_5fcache_5f_121',['curr_jac_c_times_vec_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#af95e63b226e5e76411afba79046626e8',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5fcd_5fnorm_5fcache_5f_122',['curr_jac_cd_norm_cache_',['../classIpopt_1_1CGPenaltyCq.html#a4f5c08c3a59c3c45934eeb57800d2910',1,'Ipopt::CGPenaltyCq']]], - ['curr_5fjac_5fcdt_5ftimes_5fcurr_5fcdminuss_5fcache_5f_123',['curr_jac_cdT_times_curr_cdminuss_cache_',['../classIpopt_1_1InexactCq.html#a688def427878e282d6e12665c72b2c94',1,'Ipopt::InexactCq']]], - ['curr_5fjac_5fct_5ftimes_5fvec_5fcache_5f_124',['curr_jac_cT_times_vec_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ad78fa39580d04e6a6bf39b33f762e2a2',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5fd_5f_125',['curr_jac_d_',['../classIpopt_1_1InexactPDTerminationTester.html#aa251df881dd54c49bf2edb392eb28628',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fjac_5fd_5fcache_5f_126',['curr_jac_d_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a7b502771b609db821c80c93efa7f0a84',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5fd_5ftimes_5fvec_5fcache_5f_127',['curr_jac_d_times_vec_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aa59ff8e3cf470fdd5416700d4fed3742',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5fdt_5ftimes_5fvec_5fcache_5f_128',['curr_jac_dT_times_vec_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a0d5c78b9b23d87d3f879716a8b8dc174',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fjac_5ftimes_5fnormal_5fc_5fcache_5f_129',['curr_jac_times_normal_c_cache_',['../classIpopt_1_1InexactCq.html#a8bb036c1876977b67416cfe7cd19b382',1,'Ipopt::InexactCq']]], - ['curr_5fjac_5ftimes_5fnormal_5fd_5fcache_5f_130',['curr_jac_times_normal_d_cache_',['../classIpopt_1_1InexactCq.html#a1e504bf9fe4dfd0800fc2ab4dda75c19',1,'Ipopt::InexactCq']]], - ['curr_5fkkt_5fpenalty_5f_131',['curr_kkt_penalty_',['../classIpopt_1_1CGPenaltyData.html#a17a6857b64824e469885de81babae114',1,'Ipopt::CGPenaltyData']]], - ['curr_5flm_5fmemory_5f_132',['curr_lm_memory_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#ac6d2c7e8ceee3996c32041e7eb91bb89',1,'Ipopt::LimMemQuasiNewtonUpdater']]], - ['curr_5flm_5fmemory_5fold_5f_133',['curr_lm_memory_old_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#af68441d4e1f531996c893ef537aefdd2',1,'Ipopt::LimMemQuasiNewtonUpdater']]], - ['curr_5fmu_5f_134',['curr_mu_',['../classIpopt_1_1IpoptData.html#aa5fb035f34a5412776d2ce410a27cb80',1,'Ipopt::IpoptData']]], - ['curr_5fnabla_5fphi_5fplus_5faty_5fs_5f_135',['curr_nabla_phi_plus_ATy_s_',['../classIpopt_1_1InexactPDTerminationTester.html#aef7b01fcc66e5820ab8e3cff5c3a2c46',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fnabla_5fphi_5fplus_5faty_5fx_5f_136',['curr_nabla_phi_plus_ATy_x_',['../classIpopt_1_1InexactPDTerminationTester.html#af6d9033f8589f48870a4017be3e7cd85',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fnlp_5fconstraint_5fviolation_5fcache_5f_137',['curr_nlp_constraint_violation_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a92875f2428af9b5a084e7e254f33c812',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fnlp_5ferror_5fcache_5f_138',['curr_nlp_error_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ab5b5b797b3326cdf7d4c97b8c983b5e5',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fnu_5f_139',['curr_nu_',['../classIpopt_1_1InexactData.html#aa17e4841f52eba662a010ff4332da39c',1,'Ipopt::InexactData']]], - ['curr_5fobj_5fval_5f_140',['curr_obj_val_',['../classIpopt_1_1OptimalityErrorConvergenceCheck.html#af8adfd264e51395eb9d1f9801f2283fd',1,'Ipopt::OptimalityErrorConvergenceCheck']]], - ['curr_5fomega_5f_141',['curr_omega_',['../classIpopt_1_1InexactDoglegNormalStep.html#a8c1e9351a207d032c2a09e6934a6b4b0',1,'Ipopt::InexactDoglegNormalStep']]], - ['curr_5forig_5fbounds_5fviol_5fcache_5f_142',['curr_orig_bounds_viol_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a29a351f65952aefcb449af85b7e64c0b',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5forig_5fx_5fl_5fviol_5fcache_5f_143',['curr_orig_x_L_viol_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ae3535e60d0135d86f8a875ed383717ea',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5forig_5fx_5fu_5fviol_5fcache_5f_144',['curr_orig_x_U_viol_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#addd320df9f0d62d6325339eccdd970ee',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fpenalty_5f_145',['curr_penalty_',['../classIpopt_1_1CGPenaltyData.html#a837271eeb7b684a39bb9fc06f06a5e4f',1,'Ipopt::CGPenaltyData']]], - ['curr_5fpenalty_5ffunction_5fcache_5f_146',['curr_penalty_function_cache_',['../classIpopt_1_1CGPenaltyCq.html#adcb60f4a9b3d9d6eb1a410057531eda2',1,'Ipopt::CGPenaltyCq']]], - ['curr_5fpenalty_5fpert_5f_147',['curr_penalty_pert_',['../classIpopt_1_1CGPenaltyData.html#ad8efc1158b392b6ebab565c43cb423c0',1,'Ipopt::CGPenaltyData']]], - ['curr_5fprimal_5fdual_5fsystem_5ferror_5fcache_5f_148',['curr_primal_dual_system_error_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a3f1ce712ff18e3a4684ed897b1916c57',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fprimal_5finfeasibility_5fcache_5f_149',['curr_primal_infeasibility_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aad0706dc464cf3b333bced55547cf90f',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fred_5fdr_5fx_5f_150',['curr_red_DR_x_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a5d1d56994acb3a1c934f4b73d96ffd3e',1,'Ipopt::LimMemQuasiNewtonUpdater']]], - ['curr_5frelaxed_5fcompl_5fs_5fl_5fcache_5f_151',['curr_relaxed_compl_s_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#af277b79a8d7ccbbb3761328926648b11',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5frelaxed_5fcompl_5fs_5fu_5fcache_5f_152',['curr_relaxed_compl_s_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a098cb1a995c5997ecb15cae161979f14',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5frelaxed_5fcompl_5fx_5fl_5fcache_5f_153',['curr_relaxed_compl_x_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ace97547e7a56479c1095871e100ea180',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5frelaxed_5fcompl_5fx_5fu_5fcache_5f_154',['curr_relaxed_compl_x_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a631dc69356cbb99e613251a0ae81ab0a',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fscaled_5fac_5fnorm_5fcache_5f_155',['curr_scaled_Ac_norm_cache_',['../classIpopt_1_1InexactCq.html#a074bc8e43e25c5162871f2b41e30517e',1,'Ipopt::InexactCq']]], - ['curr_5fscaled_5fy_5famax_5fcache_5f_156',['curr_scaled_y_Amax_cache_',['../classIpopt_1_1CGPenaltyCq.html#a1fe140182e98d7c5c1c3608783487c59',1,'Ipopt::CGPenaltyCq']]], - ['curr_5fscaling_5fslacks_5f_157',['curr_scaling_slacks_',['../classIpopt_1_1InexactPDTerminationTester.html#af3f9983d27a06ce24e29f9f9c32f70b0',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fscaling_5fslacks_5fcache_5f_158',['curr_scaling_slacks_cache_',['../classIpopt_1_1InexactCq.html#abf2a87e5bcdf762f01f83e414d7ce366',1,'Ipopt::InexactCq']]], - ['curr_5fsigma_5fs_5fcache_5f_159',['curr_sigma_s_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a7c8d43c61450299984ecbac622dae6b1',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fsigma_5fx_5fcache_5f_160',['curr_sigma_x_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a19ece31b15c6f4df41e81bcef714f464',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fslack_5fs_5fl_5f_161',['curr_slack_s_L_',['../classIpopt_1_1QualityFunctionMuOracle.html#aa6d861ee351f8b2019ce20bb3e144660',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fslack_5fs_5fl_5fcache_5f_162',['curr_slack_s_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a191032c5bd17983a7d455c1e373304a0',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fslack_5fs_5fu_5f_163',['curr_slack_s_U_',['../classIpopt_1_1QualityFunctionMuOracle.html#a4932f1243bd17528d058f02f7cfe5041',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fslack_5fs_5fu_5fcache_5f_164',['curr_slack_s_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#af2e2874dfc5e374b9ebaecac05e10b15',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fslack_5fscaled_5fd_5fminus_5fs_5fcache_5f_165',['curr_slack_scaled_d_minus_s_cache_',['../classIpopt_1_1InexactCq.html#a8dd2f70ab5a6235bbda16f417d8c29e1',1,'Ipopt::InexactCq']]], - ['curr_5fslack_5fx_5fl_5f_166',['curr_slack_x_L_',['../classIpopt_1_1QualityFunctionMuOracle.html#adce852e8b424ad32a6789e8526dc022b',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fslack_5fx_5fl_5fcache_5f_167',['curr_slack_x_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ae62cf06417ca7db29a692a9d14a1d514',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5fslack_5fx_5fu_5f_168',['curr_slack_x_U_',['../classIpopt_1_1QualityFunctionMuOracle.html#a8187ecb69b9e21f696399c174523eefd',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fslack_5fx_5fu_5fcache_5f_169',['curr_slack_x_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a86d8fa203aba0e7568d329a88e055792',1,'Ipopt::IpoptCalculatedQuantities']]], - ['curr_5ftau_5f_170',['curr_tau_',['../classIpopt_1_1IpoptData.html#a935519be0f344a3fa607e7741d7bf166',1,'Ipopt::IpoptData']]], - ['curr_5ftt1_5fnorm_5f_171',['curr_tt1_norm_',['../classIpopt_1_1InexactPDTerminationTester.html#a38dd6807a0f4d36a5fc17c1c7b4ad2e2',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5ftt2_5fnorm_5f_172',['curr_tt2_norm_',['../classIpopt_1_1InexactPDTerminationTester.html#acc2d6ff998d2b26582e313bfa98c640f',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fuwu_5fcache_5f_173',['curr_uWu_cache_',['../classIpopt_1_1InexactCq.html#a3761aabe2edbe7213f4c5d97458f2c57',1,'Ipopt::InexactCq']]], - ['curr_5fv_5fl_5f_174',['curr_v_L_',['../classIpopt_1_1QualityFunctionMuOracle.html#a281abf59e3082b3c4d2849a7082cd343',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fv_5fu_5f_175',['curr_v_U_',['../classIpopt_1_1QualityFunctionMuOracle.html#ad80d5e972cc97793d36a3ac22c658f0b',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fw_5ftimes_5fvec_5fs_5fcache_5f_176',['curr_W_times_vec_s_cache_',['../classIpopt_1_1InexactCq.html#a2e6ed134e4cfb9e5c3e1324b976e6650',1,'Ipopt::InexactCq']]], - ['curr_5fw_5ftimes_5fvec_5fx_5fcache_5f_177',['curr_W_times_vec_x_cache_',['../classIpopt_1_1InexactCq.html#ab9b376d8f1860fbe5dae4031260752fb',1,'Ipopt::InexactCq']]], - ['curr_5fwu_5fs_5fcache_5f_178',['curr_Wu_s_cache_',['../classIpopt_1_1InexactCq.html#a4f330b8627d5e010980f7999f30d801b',1,'Ipopt::InexactCq']]], - ['curr_5fwu_5fx_5fcache_5f_179',['curr_Wu_x_cache_',['../classIpopt_1_1InexactCq.html#a8b6e44dacfb6af243c4746802a77a0e4',1,'Ipopt::InexactCq']]], - ['curr_5fwv_5fs_5f_180',['curr_Wv_s_',['../classIpopt_1_1InexactPDTerminationTester.html#a4f5cb99bc44727ed960e2a57f3b0f329',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fwv_5fx_5f_181',['curr_Wv_x_',['../classIpopt_1_1InexactPDTerminationTester.html#a6845ca5873e785081f619e4c3c697807',1,'Ipopt::InexactPDTerminationTester']]], - ['curr_5fz_5fl_5f_182',['curr_z_L_',['../classIpopt_1_1QualityFunctionMuOracle.html#afbde898bd99bb1af467eaf47540d3d7d',1,'Ipopt::QualityFunctionMuOracle']]], - ['curr_5fz_5fu_5f_183',['curr_z_U_',['../classIpopt_1_1QualityFunctionMuOracle.html#a515e716a8ee07ee4be3e7398dc33d1d4',1,'Ipopt::QualityFunctionMuOracle']]], - ['current_5flevel_5f_184',['current_level_',['../classIpopt_1_1Ma97SolverInterface.html#a44e30eea06dc9831d25878d477d772c2',1,'Ipopt::Ma97SolverInterface::current_level_'],['../classIpopt_1_1SpralSolverInterface.html#a576f1c34d4ecbb4293cf825f2e3d1223',1,'Ipopt::SpralSolverInterface::current_level_']]], - ['current_5fregistering_5fcategory_5f_185',['current_registering_category_',['../classIpopt_1_1RegisteredOptions.html#a24fbd66ce87e7aadb1bd9ddb868a1ec5',1,'Ipopt::RegisteredOptions']]], - ['custom_5fsolver_5f_186',['custom_solver_',['../classIpopt_1_1InexactAlgorithmBuilder.html#a95c18af07c34a115a71967aeabf84538',1,'Ipopt::InexactAlgorithmBuilder::custom_solver_'],['../classIpopt_1_1AlgorithmBuilder.html#a5ec5728bfc607550d2aa959ea21c0aeb',1,'Ipopt::AlgorithmBuilder::custom_solver_']]], - ['custom_5fsolver_5fname_5f_187',['custom_solver_name_',['../classIpopt_1_1AlgorithmBuilder.html#a7c46e3b2a67ff8821ade55e75d4b1f5e',1,'Ipopt::AlgorithmBuilder']]] + ['checkinterrupt_5f_25',['checkinterrupt_',['../classIpopt_1_1AmplTNLP.html#ad564603d07c46119004ef35c84fe8964',1,'Ipopt::AmplTNLP']]], + ['chi_5fcup_5f_26',['chi_cup_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a867ab8b2228a0815acb9514df50712f0',1,'Ipopt::CGPenaltyLSAcceptor']]], + ['chi_5fhat_5f_27',['chi_hat_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a55736fdcefbfd45841c5ea8155a33d49',1,'Ipopt::CGPenaltyLSAcceptor']]], + ['chi_5ftilde_5f_28',['chi_tilde_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a600ec60ad2c62ae46b5bce3a0a98ee0b',1,'Ipopt::CGPenaltyLSAcceptor']]], + ['cntl_5f_29',['cntl_',['../classIpopt_1_1Ma27TSolverInterface.html#afe4299e1d2a13db4b3be5540fe614c72',1,'Ipopt::Ma27TSolverInterface']]], + ['cols_5f_30',['cols_',['../classIpopt_1_1IndexPCalculator.html#a73c9b88c0c77ba7723674786baac9f81',1,'Ipopt::IndexPCalculator']]], + ['column_5fscaling_5f_31',['column_scaling_',['../classIpopt_1_1ScaledMatrixSpace.html#a1046740ac352cc4a1c7c3284d3fb11a5',1,'Ipopt::ScaledMatrixSpace']]], + ['comp_5fspaces_5f_32',['comp_spaces_',['../classIpopt_1_1CompoundMatrixSpace.html#a9be1b58db439754df9dfd23acd6a5ca7',1,'Ipopt::CompoundMatrixSpace::comp_spaces_'],['../classIpopt_1_1CompoundSymMatrixSpace.html#aae0072b61bb9c679172a903c5772f46c',1,'Ipopt::CompoundSymMatrixSpace::comp_spaces_'],['../classIpopt_1_1CompoundVectorSpace.html#a1af6d17867673671b0057f5a2410bf9d',1,'Ipopt::CompoundVectorSpace::comp_spaces_']]], + ['compl_5f_33',['compl_',['../classIpopt_1_1SolveStatistics.html#aab161fe3cedc42eec6363e53f834d71c',1,'Ipopt::SolveStatistics']]], + ['compl_5finf_5ftol_5f_34',['compl_inf_tol_',['../classIpopt_1_1AdaptiveMuUpdate.html#aca672ca22155030b50de1b1d16244a32',1,'Ipopt::AdaptiveMuUpdate::compl_inf_tol_'],['../classIpopt_1_1MonotoneMuUpdate.html#a96158c1aeb7e63e961e149828e026e37',1,'Ipopt::MonotoneMuUpdate::compl_inf_tol_'],['../classIpopt_1_1OptimalityErrorConvergenceCheck.html#a62c241f4b9e248f10dada6e721f50570',1,'Ipopt::OptimalityErrorConvergenceCheck::compl_inf_tol_']]], + ['compound_5fsol_5fvecspace_5f_35',['compound_sol_vecspace_',['../classIpopt_1_1LowRankAugSystemSolver.html#a8618b3bb0e75e3f552d18fed55e99da4',1,'Ipopt::LowRankAugSystemSolver']]], + ['compressed_5fpos_5f_36',['compressed_pos_',['../classIpopt_1_1ExpansionMatrixSpace.html#a58fe433496b726b214d74a053cdb8a85',1,'Ipopt::ExpansionMatrixSpace']]], + ['comps_5f_37',['comps_',['../classIpopt_1_1CompoundMatrix.html#ad5d9c245cfc65f36820fad3e59212083',1,'Ipopt::CompoundMatrix::comps_'],['../classIpopt_1_1CompoundSymMatrix.html#aa28c63b5f6e396e47bca2696b56de7ec',1,'Ipopt::CompoundSymMatrix::comps_'],['../classIpopt_1_1CompoundVector.html#a45a77bf549eafc343cb74b83c2123dae',1,'Ipopt::CompoundVector::comps_']]], + ['compute_5fdsdp_5f_38',['compute_dsdp_',['../classIpopt_1_1SensApplication.html#af83a72c905f663e86954ffd0139553f2',1,'Ipopt::SensApplication']]], + ['compute_5feigenvalues_5f_39',['compute_eigenvalues_',['../classIpopt_1_1ReducedHessianCalculator.html#ad4e8be9c4483bcdae1e164c85bafabb0',1,'Ipopt::ReducedHessianCalculator']]], + ['compute_5fnormal_5f_40',['compute_normal_',['../classIpopt_1_1InexactData.html#ae402bd2f29828f461fe49ddb24ceb9c5',1,'Ipopt::InexactData']]], + ['compute_5fred_5fhessian_5f_41',['compute_red_hessian_',['../classIpopt_1_1SensApplication.html#a9106d751c6bc6b603e5b661dfab90b3b',1,'Ipopt::SensApplication::compute_red_hessian_'],['../classIpopt_1_1SensAmplTNLP.html#a667cde08f67c0d1015a54fa65c1dba9c',1,'Ipopt::SensAmplTNLP::compute_red_hessian_']]], + ['computeacceptabletrialpoint_5f_42',['ComputeAcceptableTrialPoint_',['../classIpopt_1_1TimingStatistics.html#ad596a4a6ebabe05fc78f2289ac90c9d0',1,'Ipopt::TimingStatistics']]], + ['computeresiduals_5f_43',['ComputeResiduals_',['../classIpopt_1_1TimingStatistics.html#ae60b6894c897466145e7c5a19ef4efae',1,'Ipopt::TimingStatistics']]], + ['computesearchdirection_5f_44',['ComputeSearchDirection_',['../classIpopt_1_1TimingStatistics.html#aad3a2328839adc17201a43ca7f2c5e0d',1,'Ipopt::TimingStatistics']]], + ['con_5finteger_5fmd_5f_45',['con_integer_md_',['../classIpopt_1_1AmplTNLP.html#af9d12945a7750eaef07feef07a51b3df',1,'Ipopt::AmplTNLP']]], + ['con_5fnumeric_5fmd_5f_46',['con_numeric_md_',['../classIpopt_1_1AmplTNLP.html#a89ebb03c7dc2eb964f78fd2499ce2da5',1,'Ipopt::AmplTNLP']]], + ['con_5fstring_5fmd_5f_47',['con_string_md_',['../classIpopt_1_1AmplTNLP.html#a0db97ee895b0c54a503772bb8667fdb5',1,'Ipopt::AmplTNLP']]], + ['consist_5ftol_48',['consist_tol',['../structma77__control__s.html#af0d5c3c689e055c5e4ed9b6b2a6eb817',1,'ma77_control_s::consist_tol'],['../structma97__control__d.html#abe7e350a74dbe697a5610659bc473de3',1,'ma97_control_d::consist_tol'],['../structma97__control__s.html#a68e8870721bddfa333923e21c32f3d85',1,'ma97_control_s::consist_tol'],['../structma77__control__d.html#a05a9cec699db33551ad7e1f551cda9ca',1,'ma77_control_d::consist_tol']]], + ['const_5fcomps_5f_49',['const_comps_',['../classIpopt_1_1CompoundMatrix.html#a6b8631ab1a9aeacd18d3ad8e7b735e0f',1,'Ipopt::CompoundMatrix::const_comps_'],['../classIpopt_1_1CompoundSymMatrix.html#a60b1128cb4a54380aa2cc227d18c6f26',1,'Ipopt::CompoundSymMatrix::const_comps_'],['../classIpopt_1_1CompoundVector.html#ac36eb38085d92112552b058d372e58ac',1,'Ipopt::CompoundVector::const_comps_']]], + ['const_5fvecs_5f_50',['const_vecs_',['../classIpopt_1_1MultiVectorMatrix.html#accfafd2d99df3186da3a59fba47ee852',1,'Ipopt::MultiVectorMatrix']]], + ['constr_5fmult_5finit_5fmax_5f_51',['constr_mult_init_max_',['../classIpopt_1_1DefaultIterateInitializer.html#a3bc5d7c92d857433f4a64393b99cec09',1,'Ipopt::DefaultIterateInitializer::constr_mult_init_max_'],['../classIpopt_1_1RestoIterateInitializer.html#a56a26b12756ca5fdabfc1f20a75847d3',1,'Ipopt::RestoIterateInitializer::constr_mult_init_max_']]], + ['constr_5fmult_5freset_5fthreshold_5f_52',['constr_mult_reset_threshold_',['../classIpopt_1_1MinC__1NrmRestorationPhase.html#af989b1cc697c140d2a35672d9be05712',1,'Ipopt::MinC_1NrmRestorationPhase']]], + ['constr_5fviol_5f_53',['constr_viol_',['../classIpopt_1_1SolveStatistics.html#a668a7eed8c4e0f242db59f875b01631d',1,'Ipopt::SolveStatistics']]], + ['constr_5fviol_5fnormtype_5f_54',['constr_viol_normtype_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a1640157e330bdcd41c10e175f1efd67a',1,'Ipopt::IpoptCalculatedQuantities']]], + ['constr_5fviol_5ftol_5f_55',['constr_viol_tol_',['../classIpopt_1_1BacktrackingLineSearch.html#a1976e93763eb416e335a900c66ac67e4',1,'Ipopt::BacktrackingLineSearch::constr_viol_tol_'],['../classIpopt_1_1IpoptAlgorithm.html#a2bdced6a3ed9532a8a9abb182f0ec931',1,'Ipopt::IpoptAlgorithm::constr_viol_tol_'],['../classIpopt_1_1OptimalityErrorConvergenceCheck.html#af47a923f7b244f795fab367a7dfa089e',1,'Ipopt::OptimalityErrorConvergenceCheck::constr_viol_tol_'],['../classIpopt_1_1OrigIpoptNLP.html#a2103145a77a5dd0b9b8a61f67ad2ef6c',1,'Ipopt::OrigIpoptNLP::constr_viol_tol_'],['../classIpopt_1_1MinC__1NrmRestorationPhase.html#a85723ff97452a0a835c93fddc3204e77',1,'Ipopt::MinC_1NrmRestorationPhase::constr_viol_tol_']]], + ['control_5f_56',['control_',['../classIpopt_1_1Ma77SolverInterface.html#a4ac1564a6cc92c83e9d11f475e95e7cc',1,'Ipopt::Ma77SolverInterface::control_'],['../classIpopt_1_1Ma86SolverInterface.html#abf83bd354c9e6c13f183ad64a9e33fc2',1,'Ipopt::Ma86SolverInterface::control_'],['../classIpopt_1_1Ma97SolverInterface.html#af90324167f6886374e57075f8bc537f9',1,'Ipopt::Ma97SolverInterface::control_'],['../classIpopt_1_1SpralSolverInterface.html#a1036bdd74111ba894a49e63e1d61c277',1,'Ipopt::SpralSolverInterface::control_']]], + ['controller_57',['controller',['../classIpopt_1_1SensApplication.html#aa3f9d03f6473f56c0c2765b5897df99b',1,'Ipopt::SensApplication']]], + ['conv_5fcheck_5f_58',['conv_check_',['../classIpopt_1_1IpoptAlgorithm.html#a00a3bd1b384831e5fa894849d181f13e',1,'Ipopt::IpoptAlgorithm::conv_check_'],['../classIpopt_1_1BacktrackingLineSearch.html#a2b01e6a4860c4576b2786b442611bd28',1,'Ipopt::BacktrackingLineSearch::conv_check_']]], + ['conval_5fcalled_5fwith_5fcurrent_5fx_5f_59',['conval_called_with_current_x_',['../classIpopt_1_1AmplTNLP.html#aa63dc17fa5263ef062e1e57df929f902',1,'Ipopt::AmplTNLP']]], + ['convcheck_5f_60',['ConvCheck_',['../classIpopt_1_1AlgorithmBuilder.html#a59a5e839ff6dfaa30265f52b9234f6c7',1,'Ipopt::AlgorithmBuilder']]], + ['corrector_5fcompl_5favrg_5fred_5ffact_5f_61',['corrector_compl_avrg_red_fact_',['../classIpopt_1_1FilterLSAcceptor.html#ad688851f8b0edc3fc1d19108f40b668b',1,'Ipopt::FilterLSAcceptor']]], + ['corrector_5ftype_5f_62',['corrector_type_',['../classIpopt_1_1FilterLSAcceptor.html#afc3efaea1e54a8b64fe7d400e9e067fe',1,'Ipopt::FilterLSAcceptor']]], + ['count_5fqf_5fevals_5f_63',['count_qf_evals_',['../classIpopt_1_1QualityFunctionMuOracle.html#a6205dd51bc1660a1490a76205cef81d4',1,'Ipopt::QualityFunctionMuOracle']]], + ['count_5frestorations_5f_64',['count_restorations_',['../classIpopt_1_1MinC__1NrmRestorationPhase.html#afcbd1a157eba7a802699cd7d89876131',1,'Ipopt::MinC_1NrmRestorationPhase']]], + ['count_5fsuccessive_5ffilter_5frejections_5f_65',['count_successive_filter_rejections_',['../classIpopt_1_1FilterLSAcceptor.html#a3f1b4f8c416b002afe455d1d52953c77',1,'Ipopt::FilterLSAcceptor']]], + ['count_5fsuccessive_5fshortened_5fsteps_5f_66',['count_successive_shortened_steps_',['../classIpopt_1_1BacktrackingLineSearch.html#a4c08b213efd298ed6d20dbc007b47b78',1,'Ipopt::BacktrackingLineSearch']]], + ['counter_5f_67',['counter_',['../classIpopt_1_1OptionsList_1_1OptionValue.html#a5133ccf41c223a42a17964a0c99badad',1,'Ipopt::OptionsList::OptionValue::counter_'],['../classIpopt_1_1RegisteredOption.html#aa5fc3710068f0b277e9e624514e17e82',1,'Ipopt::RegisteredOption::counter_']]], + ['counter_5ffirst_5ftype_5fpenalty_5fupdates_5f_68',['counter_first_type_penalty_updates_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a8ee2a8b1c47d76940684e422d968fcf8',1,'Ipopt::CGPenaltyLSAcceptor']]], + ['counter_5fsecond_5ftype_5fpenalty_5fupdates_5f_69',['counter_second_type_penalty_updates_',['../classIpopt_1_1CGPenaltyLSAcceptor.html#a995edef721ff4b9348e84a9fc6707260',1,'Ipopt::CGPenaltyLSAcceptor']]], + ['cputime_5fexceeded_70',['CPUTIME_EXCEEDED',['../classorg_1_1coinor_1_1Ipopt.html#af915b9705da65d4ec1dfaf7b5889c61c',1,'org::coinor::Ipopt']]], + ['curr_5f_71',['curr_',['../classIpopt_1_1IpoptData.html#a5b815f4715fcfee5b3b2f67d4e290487',1,'Ipopt::IpoptData']]], + ['curr_5fadded_5fy_5fnrm2_5fcache_5f_72',['curr_added_y_nrm2_cache_',['../classIpopt_1_1CGPenaltyCq.html#a549f37ad03aca7f92f7936eddc4534e9',1,'Ipopt::CGPenaltyCq']]], + ['curr_5fav_5fc_5f_73',['curr_Av_c_',['../classIpopt_1_1InexactPDTerminationTester.html#a533f1698e65402664b11cb133d4bcbba',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fav_5fd_5f_74',['curr_Av_d_',['../classIpopt_1_1InexactPDTerminationTester.html#a79f4f0cf01aa5589d3658a72dafe1d88',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fav_5fnorm_5f_75',['curr_Av_norm_',['../classIpopt_1_1InexactPDTerminationTester.html#a9a0e065ce339095f483a273381ef406e',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5favrg_5fcompl_5fcache_5f_76',['curr_avrg_compl_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a65662db722297207785a74c690471a06',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fbarrier_5ferror_5fcache_5f_77',['curr_barrier_error_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aab5d523c1ff9b85dcc6d9734fb9a9c41',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fbarrier_5fobj_5fcache_5f_78',['curr_barrier_obj_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a4d315ad36a9ec9c6325c680f1a3ca7f0',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fc_5famax_5f_79',['curr_c_amax_',['../classIpopt_1_1QualityFunctionMuOracle.html#a85ac4bc3fdd8029d3350d6b75ffca573',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fc_5fasum_5f_80',['curr_c_asum_',['../classIpopt_1_1QualityFunctionMuOracle.html#aac1d16433140c2995b5d109500138c10',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fc_5fcache_5f_81',['curr_c_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ac12d66565a37a2cb00ca87e1be5207c7',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fc_5fnrm2_5f_82',['curr_c_nrm2_',['../classIpopt_1_1QualityFunctionMuOracle.html#ab09228071156a4c8157daff591543891',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fcentrality_5fmeasure_5fcache_5f_83',['curr_centrality_measure_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a40f668a395ca39d3abbae430860b6c13',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fcg_5fpert_5ffact_5fcache_5f_84',['curr_cg_pert_fact_cache_',['../classIpopt_1_1CGPenaltyCq.html#a93bc3b92335985ec97bb7825d325bd0d',1,'Ipopt::CGPenaltyCq']]], + ['curr_5fcompl_5fs_5fl_5fcache_5f_85',['curr_compl_s_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aa657f70dccea71d646b583d34ecac93f',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fcompl_5fs_5fu_5fcache_5f_86',['curr_compl_s_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a1af03f7e2b5f896e4603be8608dc6fa5',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fcompl_5fx_5fl_5fcache_5f_87',['curr_compl_x_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ad82d662107b2538ec556cbf008663486',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fcompl_5fx_5fu_5fcache_5f_88',['curr_compl_x_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#af154b4f264b8f422ed8dfa166b71be0d',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fcomplementarity_5fcache_5f_89',['curr_complementarity_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#afb4349c30671ac01dbcca61ca52505cc',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fconstraint_5fviolation_5fcache_5f_90',['curr_constraint_violation_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a06e070a29e3b2f6082454ad544bd459d',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fd_5fcache_5f_91',['curr_d_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#abd1d6030c68c69bdaa8382bc81ced0e0',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fd_5fminus_5fs_5famax_5f_92',['curr_d_minus_s_amax_',['../classIpopt_1_1QualityFunctionMuOracle.html#ada3fa499f855d76d125ab378c2a37923',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fd_5fminus_5fs_5fasum_5f_93',['curr_d_minus_s_asum_',['../classIpopt_1_1QualityFunctionMuOracle.html#acbae01688d1e5da56eed73f0ca662152',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fd_5fminus_5fs_5fcache_5f_94',['curr_d_minus_s_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a3191551e295971ec110d24501c503308',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fd_5fminus_5fs_5fnrm2_5f_95',['curr_d_minus_s_nrm2_',['../classIpopt_1_1QualityFunctionMuOracle.html#a38c3868ae9824305685fa856498e18e1',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fdirect_5fderiv_5fpenalty_5ffunction_5fcache_5f_96',['curr_direct_deriv_penalty_function_cache_',['../classIpopt_1_1CGPenaltyCq.html#a1028ea1e9e635c44f9710c8f66ca312f',1,'Ipopt::CGPenaltyCq']]], + ['curr_5fdr_5fx_5f_97',['curr_DR_x_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#af91acff1d8121c05414463d5ff29c5a3',1,'Ipopt::LimMemQuasiNewtonUpdater']]], + ['curr_5fdr_5fx_5ftag_5f_98',['curr_DR_x_tag_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a7d14331c82d5cb7136fcb6a224131cf1',1,'Ipopt::LimMemQuasiNewtonUpdater']]], + ['curr_5fdual_5finfeasibility_5fcache_5f_99',['curr_dual_infeasibility_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a479e175cdf16a8de25f6acc7700b91e0',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5feta_5f_100',['curr_eta_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a789105608badbec4cef9a15812443cbe',1,'Ipopt::LimMemQuasiNewtonUpdater::curr_eta_'],['../classIpopt_1_1CGPenaltyLSAcceptor.html#ae0d9ea62a79ee3bd3965d181c59b0b34',1,'Ipopt::CGPenaltyLSAcceptor::curr_eta_']]], + ['curr_5fexact_5fhessian_5fcache_5f_101',['curr_exact_hessian_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a38dcf1b87176afc273819afc224bfa68',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5ff_5fcache_5f_102',['curr_f_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aa270c37f85fc81a576cfb5b430bf7e6d',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5ffast_5fdirect_5fderiv_5fpenalty_5ffunction_5fcache_5f_103',['curr_fast_direct_deriv_penalty_function_cache_',['../classIpopt_1_1CGPenaltyCq.html#a0cf10a096053e7c7a7f83e67f07f60e4',1,'Ipopt::CGPenaltyCq']]], + ['curr_5fgrad_5fbarrier_5fobj_5fs_5f_104',['curr_grad_barrier_obj_s_',['../classIpopt_1_1InexactPDTerminationTester.html#a3e18f2cdc2a73cae2ae9b3e0e0fdd9c8',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fgrad_5fbarrier_5fobj_5fs_5fcache_5f_105',['curr_grad_barrier_obj_s_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aeddcb989dcac80e63433f715b407f830',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5fbarrier_5fobj_5fx_5f_106',['curr_grad_barrier_obj_x_',['../classIpopt_1_1InexactPDTerminationTester.html#ad7d14bd528ad73b056736a2376446634',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fgrad_5fbarrier_5fobj_5fx_5fcache_5f_107',['curr_grad_barrier_obj_x_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a3e814e69d9f81f9cb8f94da08cd6424b',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5ff_5fcache_5f_108',['curr_grad_f_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a617fdb6e08dddb832a5b640c347c7eb6',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5flag_5fs_5famax_5f_109',['curr_grad_lag_s_amax_',['../classIpopt_1_1QualityFunctionMuOracle.html#a24806d4cd798f21928efd68df0f7f41d',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fgrad_5flag_5fs_5fasum_5f_110',['curr_grad_lag_s_asum_',['../classIpopt_1_1QualityFunctionMuOracle.html#a411f905bb519c21a01e7d37379102e16',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fgrad_5flag_5fs_5fcache_5f_111',['curr_grad_lag_s_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aadb0ffa18bf23551bfe7438d063d6a9e',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5flag_5fs_5fnrm2_5f_112',['curr_grad_lag_s_nrm2_',['../classIpopt_1_1QualityFunctionMuOracle.html#aaa1c72eeeb4c0d2e7b79390d5b91fb76',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fgrad_5flag_5fwith_5fdamping_5fs_5fcache_5f_113',['curr_grad_lag_with_damping_s_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#af6ea564a2947d32944cff1c6deec3674',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5flag_5fwith_5fdamping_5fx_5fcache_5f_114',['curr_grad_lag_with_damping_x_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a27754aa0141619ea0e2639bdce1b5000',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5flag_5fx_5famax_5f_115',['curr_grad_lag_x_amax_',['../classIpopt_1_1QualityFunctionMuOracle.html#ad7815e200e45bef37fe919fb7de6059d',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fgrad_5flag_5fx_5fasum_5f_116',['curr_grad_lag_x_asum_',['../classIpopt_1_1QualityFunctionMuOracle.html#a807bd37209e373962f6f3e7ba22fef48',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fgrad_5flag_5fx_5fcache_5f_117',['curr_grad_lag_x_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#adfe46b91ad1608d0a218d0be4d23a6d8',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fgrad_5flag_5fx_5fnrm2_5f_118',['curr_grad_lag_x_nrm2_',['../classIpopt_1_1QualityFunctionMuOracle.html#afdeb5885c1636b7b524d01d02f0f85e9',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fgradbarrtdelta_5fcache_5f_119',['curr_gradBarrTDelta_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a416117ba0957fe81cb5b4b2aa3fabcce',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5fc_5f_120',['curr_jac_c_',['../classIpopt_1_1InexactPDTerminationTester.html#a990d4c13be65eab04eaabdcfa333fa97',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fjac_5fc_5fcache_5f_121',['curr_jac_c_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ab041cf84cc44927f63b22a12e31bfed4',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5fc_5ftimes_5fvec_5fcache_5f_122',['curr_jac_c_times_vec_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#af95e63b226e5e76411afba79046626e8',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5fcd_5fnorm_5fcache_5f_123',['curr_jac_cd_norm_cache_',['../classIpopt_1_1CGPenaltyCq.html#a4f5c08c3a59c3c45934eeb57800d2910',1,'Ipopt::CGPenaltyCq']]], + ['curr_5fjac_5fcdt_5ftimes_5fcurr_5fcdminuss_5fcache_5f_124',['curr_jac_cdT_times_curr_cdminuss_cache_',['../classIpopt_1_1InexactCq.html#a688def427878e282d6e12665c72b2c94',1,'Ipopt::InexactCq']]], + ['curr_5fjac_5fct_5ftimes_5fvec_5fcache_5f_125',['curr_jac_cT_times_vec_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ad78fa39580d04e6a6bf39b33f762e2a2',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5fd_5f_126',['curr_jac_d_',['../classIpopt_1_1InexactPDTerminationTester.html#aa251df881dd54c49bf2edb392eb28628',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fjac_5fd_5fcache_5f_127',['curr_jac_d_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a7b502771b609db821c80c93efa7f0a84',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5fd_5ftimes_5fvec_5fcache_5f_128',['curr_jac_d_times_vec_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aa59ff8e3cf470fdd5416700d4fed3742',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5fdt_5ftimes_5fvec_5fcache_5f_129',['curr_jac_dT_times_vec_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a0d5c78b9b23d87d3f879716a8b8dc174',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fjac_5ftimes_5fnormal_5fc_5fcache_5f_130',['curr_jac_times_normal_c_cache_',['../classIpopt_1_1InexactCq.html#a8bb036c1876977b67416cfe7cd19b382',1,'Ipopt::InexactCq']]], + ['curr_5fjac_5ftimes_5fnormal_5fd_5fcache_5f_131',['curr_jac_times_normal_d_cache_',['../classIpopt_1_1InexactCq.html#a1e504bf9fe4dfd0800fc2ab4dda75c19',1,'Ipopt::InexactCq']]], + ['curr_5fkkt_5fpenalty_5f_132',['curr_kkt_penalty_',['../classIpopt_1_1CGPenaltyData.html#a17a6857b64824e469885de81babae114',1,'Ipopt::CGPenaltyData']]], + ['curr_5flm_5fmemory_5f_133',['curr_lm_memory_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#ac6d2c7e8ceee3996c32041e7eb91bb89',1,'Ipopt::LimMemQuasiNewtonUpdater']]], + ['curr_5flm_5fmemory_5fold_5f_134',['curr_lm_memory_old_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#af68441d4e1f531996c893ef537aefdd2',1,'Ipopt::LimMemQuasiNewtonUpdater']]], + ['curr_5fmu_5f_135',['curr_mu_',['../classIpopt_1_1IpoptData.html#aa5fb035f34a5412776d2ce410a27cb80',1,'Ipopt::IpoptData']]], + ['curr_5fnabla_5fphi_5fplus_5faty_5fs_5f_136',['curr_nabla_phi_plus_ATy_s_',['../classIpopt_1_1InexactPDTerminationTester.html#aef7b01fcc66e5820ab8e3cff5c3a2c46',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fnabla_5fphi_5fplus_5faty_5fx_5f_137',['curr_nabla_phi_plus_ATy_x_',['../classIpopt_1_1InexactPDTerminationTester.html#af6d9033f8589f48870a4017be3e7cd85',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fnlp_5fconstraint_5fviolation_5fcache_5f_138',['curr_nlp_constraint_violation_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a92875f2428af9b5a084e7e254f33c812',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fnlp_5ferror_5fcache_5f_139',['curr_nlp_error_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ab5b5b797b3326cdf7d4c97b8c983b5e5',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fnu_5f_140',['curr_nu_',['../classIpopt_1_1InexactData.html#aa17e4841f52eba662a010ff4332da39c',1,'Ipopt::InexactData']]], + ['curr_5fobj_5fval_5f_141',['curr_obj_val_',['../classIpopt_1_1OptimalityErrorConvergenceCheck.html#af8adfd264e51395eb9d1f9801f2283fd',1,'Ipopt::OptimalityErrorConvergenceCheck']]], + ['curr_5fomega_5f_142',['curr_omega_',['../classIpopt_1_1InexactDoglegNormalStep.html#a8c1e9351a207d032c2a09e6934a6b4b0',1,'Ipopt::InexactDoglegNormalStep']]], + ['curr_5forig_5fbounds_5fviol_5fcache_5f_143',['curr_orig_bounds_viol_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a29a351f65952aefcb449af85b7e64c0b',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5forig_5fx_5fl_5fviol_5fcache_5f_144',['curr_orig_x_L_viol_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ae3535e60d0135d86f8a875ed383717ea',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5forig_5fx_5fu_5fviol_5fcache_5f_145',['curr_orig_x_U_viol_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#addd320df9f0d62d6325339eccdd970ee',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fpenalty_5f_146',['curr_penalty_',['../classIpopt_1_1CGPenaltyData.html#a837271eeb7b684a39bb9fc06f06a5e4f',1,'Ipopt::CGPenaltyData']]], + ['curr_5fpenalty_5ffunction_5fcache_5f_147',['curr_penalty_function_cache_',['../classIpopt_1_1CGPenaltyCq.html#adcb60f4a9b3d9d6eb1a410057531eda2',1,'Ipopt::CGPenaltyCq']]], + ['curr_5fpenalty_5fpert_5f_148',['curr_penalty_pert_',['../classIpopt_1_1CGPenaltyData.html#ad8efc1158b392b6ebab565c43cb423c0',1,'Ipopt::CGPenaltyData']]], + ['curr_5fprimal_5fdual_5fsystem_5ferror_5fcache_5f_149',['curr_primal_dual_system_error_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a3f1ce712ff18e3a4684ed897b1916c57',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fprimal_5finfeasibility_5fcache_5f_150',['curr_primal_infeasibility_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#aad0706dc464cf3b333bced55547cf90f',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fred_5fdr_5fx_5f_151',['curr_red_DR_x_',['../classIpopt_1_1LimMemQuasiNewtonUpdater.html#a5d1d56994acb3a1c934f4b73d96ffd3e',1,'Ipopt::LimMemQuasiNewtonUpdater']]], + ['curr_5frelaxed_5fcompl_5fs_5fl_5fcache_5f_152',['curr_relaxed_compl_s_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#af277b79a8d7ccbbb3761328926648b11',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5frelaxed_5fcompl_5fs_5fu_5fcache_5f_153',['curr_relaxed_compl_s_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a098cb1a995c5997ecb15cae161979f14',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5frelaxed_5fcompl_5fx_5fl_5fcache_5f_154',['curr_relaxed_compl_x_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ace97547e7a56479c1095871e100ea180',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5frelaxed_5fcompl_5fx_5fu_5fcache_5f_155',['curr_relaxed_compl_x_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a631dc69356cbb99e613251a0ae81ab0a',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fscaled_5fac_5fnorm_5fcache_5f_156',['curr_scaled_Ac_norm_cache_',['../classIpopt_1_1InexactCq.html#a074bc8e43e25c5162871f2b41e30517e',1,'Ipopt::InexactCq']]], + ['curr_5fscaled_5fy_5famax_5fcache_5f_157',['curr_scaled_y_Amax_cache_',['../classIpopt_1_1CGPenaltyCq.html#a1fe140182e98d7c5c1c3608783487c59',1,'Ipopt::CGPenaltyCq']]], + ['curr_5fscaling_5fslacks_5f_158',['curr_scaling_slacks_',['../classIpopt_1_1InexactPDTerminationTester.html#af3f9983d27a06ce24e29f9f9c32f70b0',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fscaling_5fslacks_5fcache_5f_159',['curr_scaling_slacks_cache_',['../classIpopt_1_1InexactCq.html#abf2a87e5bcdf762f01f83e414d7ce366',1,'Ipopt::InexactCq']]], + ['curr_5fsigma_5fs_5fcache_5f_160',['curr_sigma_s_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a7c8d43c61450299984ecbac622dae6b1',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fsigma_5fx_5fcache_5f_161',['curr_sigma_x_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a19ece31b15c6f4df41e81bcef714f464',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fslack_5fs_5fl_5f_162',['curr_slack_s_L_',['../classIpopt_1_1QualityFunctionMuOracle.html#aa6d861ee351f8b2019ce20bb3e144660',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fslack_5fs_5fl_5fcache_5f_163',['curr_slack_s_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a191032c5bd17983a7d455c1e373304a0',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fslack_5fs_5fu_5f_164',['curr_slack_s_U_',['../classIpopt_1_1QualityFunctionMuOracle.html#a4932f1243bd17528d058f02f7cfe5041',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fslack_5fs_5fu_5fcache_5f_165',['curr_slack_s_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#af2e2874dfc5e374b9ebaecac05e10b15',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fslack_5fscaled_5fd_5fminus_5fs_5fcache_5f_166',['curr_slack_scaled_d_minus_s_cache_',['../classIpopt_1_1InexactCq.html#a8dd2f70ab5a6235bbda16f417d8c29e1',1,'Ipopt::InexactCq']]], + ['curr_5fslack_5fx_5fl_5f_167',['curr_slack_x_L_',['../classIpopt_1_1QualityFunctionMuOracle.html#adce852e8b424ad32a6789e8526dc022b',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fslack_5fx_5fl_5fcache_5f_168',['curr_slack_x_L_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#ae62cf06417ca7db29a692a9d14a1d514',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5fslack_5fx_5fu_5f_169',['curr_slack_x_U_',['../classIpopt_1_1QualityFunctionMuOracle.html#a8187ecb69b9e21f696399c174523eefd',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fslack_5fx_5fu_5fcache_5f_170',['curr_slack_x_U_cache_',['../classIpopt_1_1IpoptCalculatedQuantities.html#a86d8fa203aba0e7568d329a88e055792',1,'Ipopt::IpoptCalculatedQuantities']]], + ['curr_5ftau_5f_171',['curr_tau_',['../classIpopt_1_1IpoptData.html#a935519be0f344a3fa607e7741d7bf166',1,'Ipopt::IpoptData']]], + ['curr_5ftt1_5fnorm_5f_172',['curr_tt1_norm_',['../classIpopt_1_1InexactPDTerminationTester.html#a38dd6807a0f4d36a5fc17c1c7b4ad2e2',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5ftt2_5fnorm_5f_173',['curr_tt2_norm_',['../classIpopt_1_1InexactPDTerminationTester.html#acc2d6ff998d2b26582e313bfa98c640f',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fuwu_5fcache_5f_174',['curr_uWu_cache_',['../classIpopt_1_1InexactCq.html#a3761aabe2edbe7213f4c5d97458f2c57',1,'Ipopt::InexactCq']]], + ['curr_5fv_5fl_5f_175',['curr_v_L_',['../classIpopt_1_1QualityFunctionMuOracle.html#a281abf59e3082b3c4d2849a7082cd343',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fv_5fu_5f_176',['curr_v_U_',['../classIpopt_1_1QualityFunctionMuOracle.html#ad80d5e972cc97793d36a3ac22c658f0b',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fw_5ftimes_5fvec_5fs_5fcache_5f_177',['curr_W_times_vec_s_cache_',['../classIpopt_1_1InexactCq.html#a2e6ed134e4cfb9e5c3e1324b976e6650',1,'Ipopt::InexactCq']]], + ['curr_5fw_5ftimes_5fvec_5fx_5fcache_5f_178',['curr_W_times_vec_x_cache_',['../classIpopt_1_1InexactCq.html#ab9b376d8f1860fbe5dae4031260752fb',1,'Ipopt::InexactCq']]], + ['curr_5fwu_5fs_5fcache_5f_179',['curr_Wu_s_cache_',['../classIpopt_1_1InexactCq.html#a4f330b8627d5e010980f7999f30d801b',1,'Ipopt::InexactCq']]], + ['curr_5fwu_5fx_5fcache_5f_180',['curr_Wu_x_cache_',['../classIpopt_1_1InexactCq.html#a8b6e44dacfb6af243c4746802a77a0e4',1,'Ipopt::InexactCq']]], + ['curr_5fwv_5fs_5f_181',['curr_Wv_s_',['../classIpopt_1_1InexactPDTerminationTester.html#a4f5cb99bc44727ed960e2a57f3b0f329',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fwv_5fx_5f_182',['curr_Wv_x_',['../classIpopt_1_1InexactPDTerminationTester.html#a6845ca5873e785081f619e4c3c697807',1,'Ipopt::InexactPDTerminationTester']]], + ['curr_5fz_5fl_5f_183',['curr_z_L_',['../classIpopt_1_1QualityFunctionMuOracle.html#afbde898bd99bb1af467eaf47540d3d7d',1,'Ipopt::QualityFunctionMuOracle']]], + ['curr_5fz_5fu_5f_184',['curr_z_U_',['../classIpopt_1_1QualityFunctionMuOracle.html#a515e716a8ee07ee4be3e7398dc33d1d4',1,'Ipopt::QualityFunctionMuOracle']]], + ['current_5flevel_5f_185',['current_level_',['../classIpopt_1_1Ma97SolverInterface.html#a44e30eea06dc9831d25878d477d772c2',1,'Ipopt::Ma97SolverInterface::current_level_'],['../classIpopt_1_1SpralSolverInterface.html#a576f1c34d4ecbb4293cf825f2e3d1223',1,'Ipopt::SpralSolverInterface::current_level_']]], + ['current_5fregistering_5fcategory_5f_186',['current_registering_category_',['../classIpopt_1_1RegisteredOptions.html#a24fbd66ce87e7aadb1bd9ddb868a1ec5',1,'Ipopt::RegisteredOptions']]], + ['custom_5fsolver_5f_187',['custom_solver_',['../classIpopt_1_1InexactAlgorithmBuilder.html#a95c18af07c34a115a71967aeabf84538',1,'Ipopt::InexactAlgorithmBuilder::custom_solver_'],['../classIpopt_1_1AlgorithmBuilder.html#a5ec5728bfc607550d2aa959ea21c0aeb',1,'Ipopt::AlgorithmBuilder::custom_solver_']]], + ['custom_5fsolver_5fname_5f_188',['custom_solver_name_',['../classIpopt_1_1AlgorithmBuilder.html#a7c46e3b2a67ff8821ade55e75d4b1f5e',1,'Ipopt::AlgorithmBuilder']]] ]; diff --git a/search/variables_3.js b/search/variables_3.js index a15e7f460..910057db0 100644 --- a/search/variables_3.js +++ b/search/variables_3.js @@ -94,7 +94,7 @@ var searchData= ['dont_5fprint_5f_91',['dont_print_',['../classIpopt_1_1OptionsList_1_1OptionValue.html#a21cb8f7fdfdb20081fb7843c303be16f',1,'Ipopt::OptionsList::OptionValue']]], ['dot_5fcache_5f_92',['dot_cache_',['../classIpopt_1_1Vector.html#a2a83dd9b5f8b08ea1bcc7c826126a6f3',1,'Ipopt::Vector']]], ['dparm_5f_93',['dparm_',['../classIpopt_1_1IterativePardisoSolverInterface.html#a0e414ae7b01eea4c69783e9ac90b35ef',1,'Ipopt::IterativePardisoSolverInterface::DPARM_'],['../classIpopt_1_1WsmpSolverInterface.html#acb52b758540cc39196ed2ba9ad276e6e',1,'Ipopt::WsmpSolverInterface::DPARM_'],['../classIpopt_1_1PardisoSolverInterface.html#a6a00ceca66db4ec8b4ad8e375b3660e4',1,'Ipopt::PardisoSolverInterface::DPARM_'],['../classIpopt_1_1IterativeWsmpSolverInterface.html#a7fc4811f0a45111b2aec13f3afc61cd0',1,'Ipopt::IterativeWsmpSolverInterface::DPARM_'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a996adf94dc1812484d04653665aef920',1,'Ipopt::PardisoMKLSolverInterface::DPARM_']]], - ['dr2_5fx_5f_94',['dr2_x_',['../classIpopt_1_1RestoIpoptNLP.html#a138bc279115550a6751ace007c294698',1,'Ipopt::RestoIpoptNLP::dr2_x_'],['../classIpopt_1_1RestoIpoptNLP.html#a097deeb65f407782c1bdd67bd971f631',1,'Ipopt::RestoIpoptNLP::DR2_x_']]], + ['dr2_5fx_5f_94',['dr2_x_',['../classIpopt_1_1RestoIpoptNLP.html#a097deeb65f407782c1bdd67bd971f631',1,'Ipopt::RestoIpoptNLP::DR2_x_'],['../classIpopt_1_1RestoIpoptNLP.html#a138bc279115550a6751ace007c294698',1,'Ipopt::RestoIpoptNLP::dr2_x_']]], ['dr_5fx_5f_95',['dr_x_',['../classIpopt_1_1RestoIpoptNLP.html#a975e66c1f47c3a3826bd21c90876168c',1,'Ipopt::RestoIpoptNLP']]], ['driver_5f_96',['driver_',['../classIpopt_1_1SensitivityStepCalculator.html#ad4bc331e1e98efcf81d6b4176931a7a8',1,'Ipopt::SensitivityStepCalculator']]], ['driver_5fvec_5f_97',['driver_vec_',['../classIpopt_1_1SensAlgorithm.html#a02c2a01842c59ff52990831dd0a0130e',1,'Ipopt::SensAlgorithm']]], diff --git a/search/variables_8.js b/search/variables_8.js index f3bf789a8..24778a148 100644 --- a/search/variables_8.js +++ b/search/variables_8.js @@ -44,40 +44,41 @@ var searchData= ['init_5fdual_5finf_5f_41',['init_dual_inf_',['../classIpopt_1_1AdaptiveMuUpdate.html#a296dc3c5645c1236ebdfa78af9b5354e',1,'Ipopt::AdaptiveMuUpdate']]], ['init_5fprimal_5finf_5f_42',['init_primal_inf_',['../classIpopt_1_1AdaptiveMuUpdate.html#a897a06217586b910c900ea6003c66cd0',1,'Ipopt::AdaptiveMuUpdate']]], ['initialize_5fcalled_5f_43',['initialize_called_',['../classIpopt_1_1AlgorithmStrategyObject.html#a71fb1af37ead96891f9508b5df8ce5d6',1,'Ipopt::AlgorithmStrategyObject::initialize_called_'],['../classIpopt_1_1CGPenaltyData.html#ac5754c87ea201489f94bc3de5b1fe7d5',1,'Ipopt::CGPenaltyData::initialize_called_'],['../classIpopt_1_1CGPenaltyCq.html#ad8deee9ececd6997376faffec25e3a67',1,'Ipopt::CGPenaltyCq::initialize_called_'],['../classIpopt_1_1IpoptData.html#a34cf8a2de5f1b46345fa9c31e53e1e9e',1,'Ipopt::IpoptData::initialize_called_'],['../classIpopt_1_1IpoptCalculatedQuantities.html#a404bf0844d04c696f9b20d883fc0aa02',1,'Ipopt::IpoptCalculatedQuantities::initialize_called_']]], - ['initialized_5f_44',['initialized_',['../classIpopt_1_1DenseVector.html#a1b4f217194e9e271d0acbbb2eff2b518',1,'Ipopt::DenseVector::initialized_'],['../classIpopt_1_1SchurData.html#a72e3fc6718a5e745f27560e3cb95a9c9',1,'Ipopt::SchurData::initialized_'],['../classIpopt_1_1SymTMatrix.html#acaf8290a1e70fbd0dce6bbbd85379fbe',1,'Ipopt::SymTMatrix::initialized_'],['../classIpopt_1_1GenTMatrix.html#a135ffa11023af87fd2f7e05d3bc380c7',1,'Ipopt::GenTMatrix::initialized_'],['../classIpopt_1_1DenseSymMatrix.html#a92cf74debf401fb678a5304a64251792',1,'Ipopt::DenseSymMatrix::initialized_'],['../classIpopt_1_1DenseGenMatrix.html#af4f6c2e783fe9a55f715ec3945302266',1,'Ipopt::DenseGenMatrix::initialized_'],['../classIpopt_1_1OptionsList_1_1OptionValue.html#afcbf49bb2eb03c10401b85a592325ce1',1,'Ipopt::OptionsList::OptionValue::initialized_'],['../classIpopt_1_1WsmpSolverInterface.html#a5a41b64c9fa091831fbfeff5daccdd9c',1,'Ipopt::WsmpSolverInterface::initialized_'],['../classIpopt_1_1TSymLinearSolver.html#af1db7fe9fa7bda8eecbe08ee45b20ed3',1,'Ipopt::TSymLinearSolver::initialized_'],['../classIpopt_1_1TripletToCSRConverter.html#aac91825026e2ae37d97594448a1d1d47',1,'Ipopt::TripletToCSRConverter::initialized_'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a0c8362be9fd7092a99326fe1caec2261',1,'Ipopt::PardisoMKLSolverInterface::initialized_'],['../classIpopt_1_1MumpsSolverInterface.html#ae429537d801ee4605aa9c5741b63541a',1,'Ipopt::MumpsSolverInterface::initialized_'],['../classIpopt_1_1Ma57TSolverInterface.html#a89112d8dc87883444a61573e95152719',1,'Ipopt::Ma57TSolverInterface::initialized_'],['../classIpopt_1_1Ma27TSolverInterface.html#a26704dbaa7e4d6cf2be75ff1ea5924d2',1,'Ipopt::Ma27TSolverInterface::initialized_'],['../classIpopt_1_1IterativeWsmpSolverInterface.html#a170ce8487655c2185a0debec27d171ba',1,'Ipopt::IterativeWsmpSolverInterface::initialized_'],['../classIpopt_1_1RestoIpoptNLP.html#a52990c40accf241bb8178d425130bd37',1,'Ipopt::RestoIpoptNLP::initialized_'],['../classIpopt_1_1QualityFunctionMuOracle.html#a4462bffda24fd5fa4d8d818c59138520',1,'Ipopt::QualityFunctionMuOracle::initialized_'],['../classIpopt_1_1OrigIpoptNLP.html#a5251c4b6fe3909f4e02a9636d553ecb3',1,'Ipopt::OrigIpoptNLP::initialized_'],['../classIpopt_1_1MonotoneMuUpdate.html#a90ed1830175f33333558c2f16399e44d',1,'Ipopt::MonotoneMuUpdate::initialized_'],['../classIpopt_1_1IterativePardisoSolverInterface.html#ad80874551afd5074eb7d97549a73d869',1,'Ipopt::IterativePardisoSolverInterface::initialized_'],['../classIpopt_1_1PardisoSolverInterface.html#abc90ec6a9bb4025ca578cd3790e7bf0d',1,'Ipopt::PardisoSolverInterface::initialized_']]], + ['initialized_5f_44',['initialized_',['../classIpopt_1_1GenTMatrix.html#a135ffa11023af87fd2f7e05d3bc380c7',1,'Ipopt::GenTMatrix::initialized_'],['../classIpopt_1_1SchurData.html#a72e3fc6718a5e745f27560e3cb95a9c9',1,'Ipopt::SchurData::initialized_'],['../classIpopt_1_1SymTMatrix.html#acaf8290a1e70fbd0dce6bbbd85379fbe',1,'Ipopt::SymTMatrix::initialized_'],['../classIpopt_1_1DenseVector.html#a1b4f217194e9e271d0acbbb2eff2b518',1,'Ipopt::DenseVector::initialized_'],['../classIpopt_1_1DenseSymMatrix.html#a92cf74debf401fb678a5304a64251792',1,'Ipopt::DenseSymMatrix::initialized_'],['../classIpopt_1_1DenseGenMatrix.html#af4f6c2e783fe9a55f715ec3945302266',1,'Ipopt::DenseGenMatrix::initialized_'],['../classIpopt_1_1OptionsList_1_1OptionValue.html#afcbf49bb2eb03c10401b85a592325ce1',1,'Ipopt::OptionsList::OptionValue::initialized_'],['../classIpopt_1_1WsmpSolverInterface.html#a5a41b64c9fa091831fbfeff5daccdd9c',1,'Ipopt::WsmpSolverInterface::initialized_'],['../classIpopt_1_1TSymLinearSolver.html#af1db7fe9fa7bda8eecbe08ee45b20ed3',1,'Ipopt::TSymLinearSolver::initialized_'],['../classIpopt_1_1TripletToCSRConverter.html#aac91825026e2ae37d97594448a1d1d47',1,'Ipopt::TripletToCSRConverter::initialized_'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a0c8362be9fd7092a99326fe1caec2261',1,'Ipopt::PardisoMKLSolverInterface::initialized_'],['../classIpopt_1_1MumpsSolverInterface.html#ae429537d801ee4605aa9c5741b63541a',1,'Ipopt::MumpsSolverInterface::initialized_'],['../classIpopt_1_1Ma57TSolverInterface.html#a89112d8dc87883444a61573e95152719',1,'Ipopt::Ma57TSolverInterface::initialized_'],['../classIpopt_1_1Ma27TSolverInterface.html#a26704dbaa7e4d6cf2be75ff1ea5924d2',1,'Ipopt::Ma27TSolverInterface::initialized_'],['../classIpopt_1_1IterativeWsmpSolverInterface.html#a170ce8487655c2185a0debec27d171ba',1,'Ipopt::IterativeWsmpSolverInterface::initialized_'],['../classIpopt_1_1RestoIpoptNLP.html#a52990c40accf241bb8178d425130bd37',1,'Ipopt::RestoIpoptNLP::initialized_'],['../classIpopt_1_1QualityFunctionMuOracle.html#a4462bffda24fd5fa4d8d818c59138520',1,'Ipopt::QualityFunctionMuOracle::initialized_'],['../classIpopt_1_1OrigIpoptNLP.html#a5251c4b6fe3909f4e02a9636d553ecb3',1,'Ipopt::OrigIpoptNLP::initialized_'],['../classIpopt_1_1MonotoneMuUpdate.html#a90ed1830175f33333558c2f16399e44d',1,'Ipopt::MonotoneMuUpdate::initialized_'],['../classIpopt_1_1IterativePardisoSolverInterface.html#ad80874551afd5074eb7d97549a73d869',1,'Ipopt::IterativePardisoSolverInterface::initialized_'],['../classIpopt_1_1PardisoSolverInterface.html#abc90ec6a9bb4025ca578cd3790e7bf0d',1,'Ipopt::PardisoSolverInterface::initialized_']]], ['initializeiterates_5f_45',['InitializeIterates_',['../classIpopt_1_1TimingStatistics.html#ad6a4fd728e17f11fc91b8dd35e6b6b61',1,'Ipopt::TimingStatistics']]], ['insufficient_5fmemory_46',['INSUFFICIENT_MEMORY',['../classorg_1_1coinor_1_1Ipopt.html#a59b78aca47982a3930ff05caa43d89dd',1,'org::coinor::Ipopt']]], - ['int_47',['int',['../namespaceIpopt.html#a7deb460b5b67f0a165b9062761f1f132',1,'Ipopt::Int'],['../IpStdCInterface_8h.html#a981fcddf5a1e9bbdc3d71ef0f994259b',1,'Int: IpStdCInterface.h']]], + ['int_47',['int',['../IpStdCInterface_8h.html#a981fcddf5a1e9bbdc3d71ef0f994259b',1,'Int: IpStdCInterface.h'],['../namespaceIpopt.html#a7deb460b5b67f0a165b9062761f1f132',1,'Ipopt::Int']]], ['integer_5fmeta_5fdata_5f_48',['integer_meta_data_',['../classIpopt_1_1DenseVectorSpace.html#aa3590203566a169066e9e7fc5bb8e68f',1,'Ipopt::DenseVectorSpace']]], ['intermediate_5fcb_5f_49',['intermediate_cb_',['../classIpopt_1_1StdInterfaceTNLP.html#aa9e5a15de7c4b52155407c6b47de5e9c',1,'Ipopt::StdInterfaceTNLP']]], ['internal_5ferror_50',['INTERNAL_ERROR',['../classorg_1_1coinor_1_1Ipopt.html#afd5a2fcda4688ceef6ad841d2cb7f627',1,'org::coinor::Ipopt']]], - ['invalid_5fnumber_5fdetected_51',['INVALID_NUMBER_DETECTED',['../classorg_1_1coinor_1_1Ipopt.html#a9005b727656170847da4498472d44be0',1,'org::coinor::Ipopt']]], - ['invalid_5foption_52',['INVALID_OPTION',['../classorg_1_1coinor_1_1Ipopt.html#aa0b37ea4f81ff1dc33d0738a25aef2cd',1,'org::coinor::Ipopt']]], - ['invalid_5fproblem_5fdefinition_53',['INVALID_PROBLEM_DEFINITION',['../classorg_1_1coinor_1_1Ipopt.html#a6601c123db771db778c4c25061327048',1,'org::coinor::Ipopt']]], - ['invp_5f_54',['INVP_',['../classIpopt_1_1WsmpSolverInterface.html#a4b23f58fd68a0199c085433781f8ee0d',1,'Ipopt::WsmpSolverInterface']]], - ['iostat_55',['iostat',['../structma77__info__s.html#ad3dc8b5c1e51044ed05d0944f2732c46',1,'ma77_info_s::iostat'],['../structma77__info__d.html#aed7ded9b25f6271f36f7b4ec7476aec4',1,'ma77_info_d::iostat'],['../structmc68__info__i.html#a924bc2e32a43b1b759b1b9815ba3c59f',1,'mc68_info_i::iostat']]], - ['ip_5fcq_5f_56',['ip_cq_',['../classIpopt_1_1CGPenaltyCq.html#a1955a1bbf1375c101fce1bba0326b199',1,'Ipopt::CGPenaltyCq::ip_cq_'],['../classIpopt_1_1IpoptApplication.html#abb249b2e86584d279bdf5e254ca9094e',1,'Ipopt::IpoptApplication::ip_cq_'],['../classIpopt_1_1StdInterfaceTNLP.html#a0778c94409d27fc57d3a9b31ea02d44f',1,'Ipopt::StdInterfaceTNLP::ip_cq_'],['../classIpopt_1_1SensApplication.html#a335960efe34d7d406ce145a060df7394',1,'Ipopt::SensApplication::ip_cq_'],['../classIpopt_1_1InexactCq.html#a76e7f750bab7b1af0114a8de99861f1c',1,'Ipopt::InexactCq::ip_cq_'],['../classIpopt_1_1AlgorithmStrategyObject.html#a1c339999b0232bdaefc1fb7c623ad761',1,'Ipopt::AlgorithmStrategyObject::ip_cq_']]], - ['ip_5fdata_5f_57',['ip_data_',['../classIpopt_1_1CGPenaltyCq.html#adf8a9a01f87558a8d9c9e6372dc147e8',1,'Ipopt::CGPenaltyCq::ip_data_'],['../classIpopt_1_1SensApplication.html#a282b4bf2ae4db792021510e85f21b910',1,'Ipopt::SensApplication::ip_data_'],['../classIpopt_1_1StdInterfaceTNLP.html#af10e7bdc6187d34ef274f58cf61b330f',1,'Ipopt::StdInterfaceTNLP::ip_data_'],['../classIpopt_1_1IpoptApplication.html#ab62194fff9521997d28d9befb6922e07',1,'Ipopt::IpoptApplication::ip_data_'],['../classIpopt_1_1IpoptCalculatedQuantities.html#a086e2aae9531fc882e2b0a92aed6ef4f',1,'Ipopt::IpoptCalculatedQuantities::ip_data_'],['../classIpopt_1_1AlgorithmStrategyObject.html#a300fab52e53ccee1223bfaa1585129db',1,'Ipopt::AlgorithmStrategyObject::ip_data_'],['../classIpopt_1_1InexactCq.html#ab711ea6dbaf4bd60f7a64ab60d8eb60b',1,'Ipopt::InexactCq::ip_data_']]], - ['ip_5fnlp_5f_58',['ip_nlp_',['../classIpopt_1_1CGPenaltyCq.html#ab3aa6277ce982fda386639c1141eb18a',1,'Ipopt::CGPenaltyCq::ip_nlp_'],['../classIpopt_1_1SensApplication.html#a2888fa79b4a1e8918300fc564348592d',1,'Ipopt::SensApplication::ip_nlp_'],['../classIpopt_1_1IpoptApplication.html#a5b4190f5db621825c8d0805d7124f8fb',1,'Ipopt::IpoptApplication::ip_nlp_'],['../classIpopt_1_1InexactCq.html#a2064455be48c8985848f5b6ccd43e98b',1,'Ipopt::InexactCq::ip_nlp_'],['../classIpopt_1_1AlgorithmStrategyObject.html#a52e6df16538cc859e99cb764e67b9acf',1,'Ipopt::AlgorithmStrategyObject::ip_nlp_'],['../classIpopt_1_1IpoptCalculatedQuantities.html#acdc16cf1dcb29734da5ac8fb1f610506',1,'Ipopt::IpoptCalculatedQuantities::ip_nlp_']]], - ['iparm_5f_59',['iparm_',['../classIpopt_1_1IterativePardisoSolverInterface.html#ad8d379b4411ebb2a92826dec19f4f063',1,'Ipopt::IterativePardisoSolverInterface::IPARM_'],['../classIpopt_1_1IterativeWsmpSolverInterface.html#a444879d68e90f950c07b662108bb8ea7',1,'Ipopt::IterativeWsmpSolverInterface::IPARM_'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a89e489b526dfa9a63271c541799fd184',1,'Ipopt::PardisoMKLSolverInterface::IPARM_'],['../classIpopt_1_1PardisoSolverInterface.html#ad8b16eabbef77f7bfbab8d5fc22e80f4',1,'Ipopt::PardisoSolverInterface::IPARM_'],['../classIpopt_1_1WsmpSolverInterface.html#ab1f06ae436a167e11fdfac0c0dc58f7d',1,'Ipopt::WsmpSolverInterface::IPARM_']]], - ['ipfint_60',['ipfint',['../IpTypes_8h.html#aba735f678a3411ca9f2d041e77c00d66',1,'IpTypes.h']]], - ['ipopt_61',['ipopt',['../classorg_1_1coinor_1_1Ipopt.html#aaccf6965122e89d86f4ac57d950787e7',1,'org::coinor::Ipopt']]], - ['ipopt_5fname_5f_62',['ipopt_name_',['../classIpopt_1_1AmplOptionsList_1_1PrivatInfo.html#a4b1c32a1843ffec34cb4d483613a409d',1,'Ipopt::AmplOptionsList::PrivatInfo']]], - ['ipopt_5foption_5fname_5f_63',['ipopt_option_name_',['../classIpopt_1_1AmplOptionsList_1_1AmplOption.html#a7dfaab40e7dd285b5cb8d02e5322a6a1',1,'Ipopt::AmplOptionsList::AmplOption']]], - ['ipopt_5fretval_5f_64',['ipopt_retval_',['../classIpopt_1_1SensApplication.html#aa6c246fe22960a3c0c1678a869230264',1,'Ipopt::SensApplication']]], - ['ipos_5fdouble_5fcompressed_5f_65',['ipos_double_compressed_',['../classIpopt_1_1TripletToCSRConverter.html#a77778d1c463c8b1a602e12b0b450ee11',1,'Ipopt::TripletToCSRConverter']]], - ['ipos_5fdouble_5ftriplet_5f_66',['ipos_double_triplet_',['../classIpopt_1_1TripletToCSRConverter.html#a7c28bbd06089a2a3d95cb3cb79b155a3',1,'Ipopt::TripletToCSRConverter']]], - ['ipos_5ffirst_5f_67',['ipos_first_',['../classIpopt_1_1TripletToCSRConverter.html#afa6e0b3380e7cd9c1d5796689a38408f',1,'Ipopt::TripletToCSRConverter']]], - ['irows_5f_68',['irows_',['../classIpopt_1_1GenTMatrixSpace.html#ace386f17664c96f1f8cb34ce0e3295d5',1,'Ipopt::GenTMatrixSpace::iRows_'],['../classIpopt_1_1SymTMatrixSpace.html#a3a72d6f897240e2308eee9c62b98a553',1,'Ipopt::SymTMatrixSpace::iRows_']]], - ['is_5fpardiso_5f_69',['is_pardiso_',['../classIpopt_1_1InexactPDSolver.html#a534a1a1bbd2f78dfbcec15fe642569c9',1,'Ipopt::InexactPDSolver']]], - ['ispare_70',['ispare',['../structma77__info__d.html#acc554f50830e007c99e462d6d4608fd7',1,'ma77_info_d::ispare'],['../structma97__info__s.html#a63944efa36a9df62269fa40ae8c73fd0',1,'ma97_info_s::ispare'],['../structma97__control__s.html#a281a54994ad8d19268e60027e85f87ce',1,'ma97_control_s::ispare'],['../structma97__info__d.html#a3d0ce848b0adb6f1140e2e10bf75cd4f',1,'ma97_info_d::ispare'],['../structma97__control__d.html#a53f9a4496e8647f01fd525a3227a4055',1,'ma97_control_d::ispare'],['../structma77__info__s.html#a40855dacc81e9157cb0fc72441313a65',1,'ma77_info_s::ispare'],['../structma77__control__s.html#a097b072d38eb476abe3bb5cf00706a16',1,'ma77_control_s::ispare'],['../structma77__control__d.html#aaf2a8e83e137e33def01c51154cb3aeb',1,'ma77_control_d::ispare']]], - ['iter_5f_71',['iter_',['../classIpopt_1_1FilterEntry.html#a5979a86ff43864809fc486a5b3d21193',1,'Ipopt::FilterEntry']]], - ['iter_5fcount_5f_72',['iter_count_',['../classIpopt_1_1IpoptData.html#ad3e359f7fde09fe372950003debd09c0',1,'Ipopt::IpoptData']]], - ['iter_5foutput_5f_73',['iter_output_',['../classIpopt_1_1IpoptAlgorithm.html#ab1a4e607c390961f2e35cd1adbdc4e16',1,'Ipopt::IpoptAlgorithm']]], - ['iterate_5finitializer_5f_74',['iterate_initializer_',['../classIpopt_1_1IpoptAlgorithm.html#a8ef51f30cf5ae4d66273388948f101b1',1,'Ipopt::IpoptAlgorithm']]], - ['iterates_5fspace_5f_75',['iterates_space_',['../classIpopt_1_1IpoptData.html#a9ca143d0ba9a1023a613cae517a1513d',1,'Ipopt::IpoptData']]], - ['iteration_5fexceeded_76',['ITERATION_EXCEEDED',['../classorg_1_1coinor_1_1Ipopt.html#a7f2a52a6c5606b6703f02035914a2552',1,'org::coinor::Ipopt']]], - ['iterinitializer_5f_77',['IterInitializer_',['../classIpopt_1_1AlgorithmBuilder.html#a4da0e00ff35e8f9b1db5ed4943f2e68d',1,'Ipopt::AlgorithmBuilder']]], - ['iteroutput_5f_78',['IterOutput_',['../classIpopt_1_1AlgorithmBuilder.html#a25b5ea1d912348a3366d15b2250b167d',1,'Ipopt::AlgorithmBuilder']]], - ['iw_5f_79',['iw_',['../classIpopt_1_1Ma27TSolverInterface.html#aa4ccf91952c454b5878c1313606ee27b',1,'Ipopt::Ma27TSolverInterface']]] + ['interrupted_5f_51',['interrupted_',['../classIpopt_1_1AmplTNLP.html#a207103b08555ac8ebb38d0cf818e0a46',1,'Ipopt::AmplTNLP']]], + ['invalid_5fnumber_5fdetected_52',['INVALID_NUMBER_DETECTED',['../classorg_1_1coinor_1_1Ipopt.html#a9005b727656170847da4498472d44be0',1,'org::coinor::Ipopt']]], + ['invalid_5foption_53',['INVALID_OPTION',['../classorg_1_1coinor_1_1Ipopt.html#aa0b37ea4f81ff1dc33d0738a25aef2cd',1,'org::coinor::Ipopt']]], + ['invalid_5fproblem_5fdefinition_54',['INVALID_PROBLEM_DEFINITION',['../classorg_1_1coinor_1_1Ipopt.html#a6601c123db771db778c4c25061327048',1,'org::coinor::Ipopt']]], + ['invp_5f_55',['INVP_',['../classIpopt_1_1WsmpSolverInterface.html#a4b23f58fd68a0199c085433781f8ee0d',1,'Ipopt::WsmpSolverInterface']]], + ['iostat_56',['iostat',['../structma77__info__d.html#aed7ded9b25f6271f36f7b4ec7476aec4',1,'ma77_info_d::iostat'],['../structma77__info__s.html#ad3dc8b5c1e51044ed05d0944f2732c46',1,'ma77_info_s::iostat'],['../structmc68__info__i.html#a924bc2e32a43b1b759b1b9815ba3c59f',1,'mc68_info_i::iostat']]], + ['ip_5fcq_5f_57',['ip_cq_',['../classIpopt_1_1CGPenaltyCq.html#a1955a1bbf1375c101fce1bba0326b199',1,'Ipopt::CGPenaltyCq::ip_cq_'],['../classIpopt_1_1IpoptApplication.html#abb249b2e86584d279bdf5e254ca9094e',1,'Ipopt::IpoptApplication::ip_cq_'],['../classIpopt_1_1StdInterfaceTNLP.html#a0778c94409d27fc57d3a9b31ea02d44f',1,'Ipopt::StdInterfaceTNLP::ip_cq_'],['../classIpopt_1_1SensApplication.html#a335960efe34d7d406ce145a060df7394',1,'Ipopt::SensApplication::ip_cq_'],['../classIpopt_1_1InexactCq.html#a76e7f750bab7b1af0114a8de99861f1c',1,'Ipopt::InexactCq::ip_cq_'],['../classIpopt_1_1AlgorithmStrategyObject.html#a1c339999b0232bdaefc1fb7c623ad761',1,'Ipopt::AlgorithmStrategyObject::ip_cq_']]], + ['ip_5fdata_5f_58',['ip_data_',['../classIpopt_1_1CGPenaltyCq.html#adf8a9a01f87558a8d9c9e6372dc147e8',1,'Ipopt::CGPenaltyCq::ip_data_'],['../classIpopt_1_1SensApplication.html#a282b4bf2ae4db792021510e85f21b910',1,'Ipopt::SensApplication::ip_data_'],['../classIpopt_1_1StdInterfaceTNLP.html#af10e7bdc6187d34ef274f58cf61b330f',1,'Ipopt::StdInterfaceTNLP::ip_data_'],['../classIpopt_1_1IpoptApplication.html#ab62194fff9521997d28d9befb6922e07',1,'Ipopt::IpoptApplication::ip_data_'],['../classIpopt_1_1IpoptCalculatedQuantities.html#a086e2aae9531fc882e2b0a92aed6ef4f',1,'Ipopt::IpoptCalculatedQuantities::ip_data_'],['../classIpopt_1_1AlgorithmStrategyObject.html#a300fab52e53ccee1223bfaa1585129db',1,'Ipopt::AlgorithmStrategyObject::ip_data_'],['../classIpopt_1_1InexactCq.html#ab711ea6dbaf4bd60f7a64ab60d8eb60b',1,'Ipopt::InexactCq::ip_data_']]], + ['ip_5fnlp_5f_59',['ip_nlp_',['../classIpopt_1_1CGPenaltyCq.html#ab3aa6277ce982fda386639c1141eb18a',1,'Ipopt::CGPenaltyCq::ip_nlp_'],['../classIpopt_1_1SensApplication.html#a2888fa79b4a1e8918300fc564348592d',1,'Ipopt::SensApplication::ip_nlp_'],['../classIpopt_1_1IpoptApplication.html#a5b4190f5db621825c8d0805d7124f8fb',1,'Ipopt::IpoptApplication::ip_nlp_'],['../classIpopt_1_1InexactCq.html#a2064455be48c8985848f5b6ccd43e98b',1,'Ipopt::InexactCq::ip_nlp_'],['../classIpopt_1_1AlgorithmStrategyObject.html#a52e6df16538cc859e99cb764e67b9acf',1,'Ipopt::AlgorithmStrategyObject::ip_nlp_'],['../classIpopt_1_1IpoptCalculatedQuantities.html#acdc16cf1dcb29734da5ac8fb1f610506',1,'Ipopt::IpoptCalculatedQuantities::ip_nlp_']]], + ['iparm_5f_60',['iparm_',['../classIpopt_1_1IterativePardisoSolverInterface.html#ad8d379b4411ebb2a92826dec19f4f063',1,'Ipopt::IterativePardisoSolverInterface::IPARM_'],['../classIpopt_1_1IterativeWsmpSolverInterface.html#a444879d68e90f950c07b662108bb8ea7',1,'Ipopt::IterativeWsmpSolverInterface::IPARM_'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a89e489b526dfa9a63271c541799fd184',1,'Ipopt::PardisoMKLSolverInterface::IPARM_'],['../classIpopt_1_1PardisoSolverInterface.html#ad8b16eabbef77f7bfbab8d5fc22e80f4',1,'Ipopt::PardisoSolverInterface::IPARM_'],['../classIpopt_1_1WsmpSolverInterface.html#ab1f06ae436a167e11fdfac0c0dc58f7d',1,'Ipopt::WsmpSolverInterface::IPARM_']]], + ['ipfint_61',['ipfint',['../IpTypes_8h.html#aba735f678a3411ca9f2d041e77c00d66',1,'IpTypes.h']]], + ['ipopt_62',['ipopt',['../classorg_1_1coinor_1_1Ipopt.html#aaccf6965122e89d86f4ac57d950787e7',1,'org::coinor::Ipopt']]], + ['ipopt_5fname_5f_63',['ipopt_name_',['../classIpopt_1_1AmplOptionsList_1_1PrivatInfo.html#a4b1c32a1843ffec34cb4d483613a409d',1,'Ipopt::AmplOptionsList::PrivatInfo']]], + ['ipopt_5foption_5fname_5f_64',['ipopt_option_name_',['../classIpopt_1_1AmplOptionsList_1_1AmplOption.html#a7dfaab40e7dd285b5cb8d02e5322a6a1',1,'Ipopt::AmplOptionsList::AmplOption']]], + ['ipopt_5fretval_5f_65',['ipopt_retval_',['../classIpopt_1_1SensApplication.html#aa6c246fe22960a3c0c1678a869230264',1,'Ipopt::SensApplication']]], + ['ipos_5fdouble_5fcompressed_5f_66',['ipos_double_compressed_',['../classIpopt_1_1TripletToCSRConverter.html#a77778d1c463c8b1a602e12b0b450ee11',1,'Ipopt::TripletToCSRConverter']]], + ['ipos_5fdouble_5ftriplet_5f_67',['ipos_double_triplet_',['../classIpopt_1_1TripletToCSRConverter.html#a7c28bbd06089a2a3d95cb3cb79b155a3',1,'Ipopt::TripletToCSRConverter']]], + ['ipos_5ffirst_5f_68',['ipos_first_',['../classIpopt_1_1TripletToCSRConverter.html#afa6e0b3380e7cd9c1d5796689a38408f',1,'Ipopt::TripletToCSRConverter']]], + ['irows_5f_69',['irows_',['../classIpopt_1_1GenTMatrixSpace.html#ace386f17664c96f1f8cb34ce0e3295d5',1,'Ipopt::GenTMatrixSpace::iRows_'],['../classIpopt_1_1SymTMatrixSpace.html#a3a72d6f897240e2308eee9c62b98a553',1,'Ipopt::SymTMatrixSpace::iRows_']]], + ['is_5fpardiso_5f_70',['is_pardiso_',['../classIpopt_1_1InexactPDSolver.html#a534a1a1bbd2f78dfbcec15fe642569c9',1,'Ipopt::InexactPDSolver']]], + ['ispare_71',['ispare',['../structma77__info__d.html#acc554f50830e007c99e462d6d4608fd7',1,'ma77_info_d::ispare'],['../structma97__info__s.html#a63944efa36a9df62269fa40ae8c73fd0',1,'ma97_info_s::ispare'],['../structma97__control__s.html#a281a54994ad8d19268e60027e85f87ce',1,'ma97_control_s::ispare'],['../structma97__info__d.html#a3d0ce848b0adb6f1140e2e10bf75cd4f',1,'ma97_info_d::ispare'],['../structma97__control__d.html#a53f9a4496e8647f01fd525a3227a4055',1,'ma97_control_d::ispare'],['../structma77__info__s.html#a40855dacc81e9157cb0fc72441313a65',1,'ma77_info_s::ispare'],['../structma77__control__s.html#a097b072d38eb476abe3bb5cf00706a16',1,'ma77_control_s::ispare'],['../structma77__control__d.html#aaf2a8e83e137e33def01c51154cb3aeb',1,'ma77_control_d::ispare']]], + ['iter_5f_72',['iter_',['../classIpopt_1_1FilterEntry.html#a5979a86ff43864809fc486a5b3d21193',1,'Ipopt::FilterEntry']]], + ['iter_5fcount_5f_73',['iter_count_',['../classIpopt_1_1IpoptData.html#ad3e359f7fde09fe372950003debd09c0',1,'Ipopt::IpoptData']]], + ['iter_5foutput_5f_74',['iter_output_',['../classIpopt_1_1IpoptAlgorithm.html#ab1a4e607c390961f2e35cd1adbdc4e16',1,'Ipopt::IpoptAlgorithm']]], + ['iterate_5finitializer_5f_75',['iterate_initializer_',['../classIpopt_1_1IpoptAlgorithm.html#a8ef51f30cf5ae4d66273388948f101b1',1,'Ipopt::IpoptAlgorithm']]], + ['iterates_5fspace_5f_76',['iterates_space_',['../classIpopt_1_1IpoptData.html#a9ca143d0ba9a1023a613cae517a1513d',1,'Ipopt::IpoptData']]], + ['iteration_5fexceeded_77',['ITERATION_EXCEEDED',['../classorg_1_1coinor_1_1Ipopt.html#a7f2a52a6c5606b6703f02035914a2552',1,'org::coinor::Ipopt']]], + ['iterinitializer_5f_78',['IterInitializer_',['../classIpopt_1_1AlgorithmBuilder.html#a4da0e00ff35e8f9b1db5ed4943f2e68d',1,'Ipopt::AlgorithmBuilder']]], + ['iteroutput_5f_79',['IterOutput_',['../classIpopt_1_1AlgorithmBuilder.html#a25b5ea1d912348a3366d15b2250b167d',1,'Ipopt::AlgorithmBuilder']]], + ['iw_5f_80',['iw_',['../classIpopt_1_1Ma27TSolverInterface.html#aa4ccf91952c454b5878c1313606ee27b',1,'Ipopt::Ma27TSolverInterface']]] ]; diff --git a/search/variables_9.js b/search/variables_9.js index 87eb45959..9d8fedbaf 100644 --- a/search/variables_9.js +++ b/search/variables_9.js @@ -11,7 +11,7 @@ var searchData= ['jac_5fc_5fconstant_5f_8',['jac_c_constant_',['../classIpopt_1_1OrigIpoptNLP.html#a83825625014ce059c52106039dc05247',1,'Ipopt::OrigIpoptNLP']]], ['jac_5fc_5feval_5ftime_5f_9',['jac_c_eval_time_',['../classIpopt_1_1TimingStatistics.html#aa6a57e7c5503bfa827d08019a4756d1a',1,'Ipopt::TimingStatistics']]], ['jac_5fc_5fevals_5f_10',['jac_c_evals_',['../classIpopt_1_1OrigIpoptNLP.html#a99418f13432b6cb8b117faaade3394c9',1,'Ipopt::OrigIpoptNLP::jac_c_evals_'],['../classIpopt_1_1RestoIpoptNLP.html#a224c6ea35c10670e76ef5eabe1bcfbe6',1,'Ipopt::RestoIpoptNLP::jac_c_evals_']]], - ['jac_5fc_5fspace_5f_11',['jac_c_space_',['../classIpopt_1_1OrigIpoptNLP.html#af57472577cb7d86ee74e70a3fef1cbaf',1,'Ipopt::OrigIpoptNLP::jac_c_space_'],['../classIpopt_1_1RestoIpoptNLP.html#a6b4fd74c7c7e02c2248b0c6ef41f354d',1,'Ipopt::RestoIpoptNLP::jac_c_space_'],['../classIpopt_1_1TNLPAdapter.html#a03acfea8551d3f701d8854f2a994f659',1,'Ipopt::TNLPAdapter::Jac_c_space_']]], + ['jac_5fc_5fspace_5f_11',['jac_c_space_',['../classIpopt_1_1TNLPAdapter.html#a03acfea8551d3f701d8854f2a994f659',1,'Ipopt::TNLPAdapter::Jac_c_space_'],['../classIpopt_1_1OrigIpoptNLP.html#af57472577cb7d86ee74e70a3fef1cbaf',1,'Ipopt::OrigIpoptNLP::jac_c_space_'],['../classIpopt_1_1RestoIpoptNLP.html#a6b4fd74c7c7e02c2248b0c6ef41f354d',1,'Ipopt::RestoIpoptNLP::jac_c_space_']]], ['jac_5fd_5fcache_5f_12',['jac_d_cache_',['../classIpopt_1_1OrigIpoptNLP.html#a2171a5cd8e6fcb5ac679f90ffb99df90',1,'Ipopt::OrigIpoptNLP']]], ['jac_5fd_5fconstant_5f_13',['jac_d_constant_',['../classIpopt_1_1OrigIpoptNLP.html#a18e56de2090163ea5a1503468c9dafc4',1,'Ipopt::OrigIpoptNLP']]], ['jac_5fd_5feval_5ftime_5f_14',['jac_d_eval_time_',['../classIpopt_1_1TimingStatistics.html#ae07914fac17758a01b10a4905a2a8f0e',1,'Ipopt::TimingStatistics']]], diff --git a/search/variables_d.js b/search/variables_d.js index 9ec7e48a4..56efbb130 100644 --- a/search/variables_d.js +++ b/search/variables_d.js @@ -68,7 +68,7 @@ var searchData= ['non_5fipopt_5fexception_65',['NON_IPOPT_EXCEPTION',['../classorg_1_1coinor_1_1Ipopt.html#ac3f7ebbac769cbf00c30a2d1e7ca124a',1,'org::coinor::Ipopt']]], ['nonconst_5fmatrix_5f_66',['nonconst_matrix_',['../classIpopt_1_1ScaledMatrix.html#a88ac5b43cb15d9ab865e1ce0add8f175',1,'Ipopt::ScaledMatrix::nonconst_matrix_'],['../classIpopt_1_1SymScaledMatrix.html#af9b0be6eae9ad70481b806c7691c7a29',1,'Ipopt::SymScaledMatrix::nonconst_matrix_']]], ['nonmonotone_5fpen_5fupdate_5fcounter_5f_67',['nonmonotone_pen_update_counter_',['../classIpopt_1_1CGSearchDirCalculator.html#a74fdfaf5dc53c89193248dbc90b4fed1',1,'Ipopt::CGSearchDirCalculator']]], - ['nonzeros_5f_68',['nonzeros_',['../classIpopt_1_1GenTMatrixSpace.html#abaeb33ff553e6b3a1c462ec619af64a2',1,'Ipopt::GenTMatrixSpace::nonZeros_'],['../classIpopt_1_1SymTMatrixSpace.html#af766c0c384b3504a8c220fa5b8e98b14',1,'Ipopt::SymTMatrixSpace::nonZeros_'],['../classIpopt_1_1IterativePardisoSolverInterface.html#adee55633dfa4c72dd0e5229ca323e53a',1,'Ipopt::IterativePardisoSolverInterface::nonzeros_'],['../classIpopt_1_1Ma27TSolverInterface.html#af3204245e78c42a654af3a39af7c249c',1,'Ipopt::Ma27TSolverInterface::nonzeros_'],['../classIpopt_1_1Ma57TSolverInterface.html#a476851dc1a18da45a17239b1ccd20cef',1,'Ipopt::Ma57TSolverInterface::nonzeros_'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a51d03d3de73f541b636e7aeea774eb8e',1,'Ipopt::PardisoMKLSolverInterface::nonzeros_'],['../classIpopt_1_1PardisoSolverInterface.html#a550f41bb001f05d9bbf0ec40b89d86d9',1,'Ipopt::PardisoSolverInterface::nonzeros_'],['../classIpopt_1_1WsmpSolverInterface.html#a761e4088aac852e941331ac5050e841e',1,'Ipopt::WsmpSolverInterface::nonzeros_']]], + ['nonzeros_5f_68',['nonzeros_',['../classIpopt_1_1IterativePardisoSolverInterface.html#adee55633dfa4c72dd0e5229ca323e53a',1,'Ipopt::IterativePardisoSolverInterface::nonzeros_'],['../classIpopt_1_1Ma27TSolverInterface.html#af3204245e78c42a654af3a39af7c249c',1,'Ipopt::Ma27TSolverInterface::nonzeros_'],['../classIpopt_1_1Ma57TSolverInterface.html#a476851dc1a18da45a17239b1ccd20cef',1,'Ipopt::Ma57TSolverInterface::nonzeros_'],['../classIpopt_1_1PardisoMKLSolverInterface.html#a51d03d3de73f541b636e7aeea774eb8e',1,'Ipopt::PardisoMKLSolverInterface::nonzeros_'],['../classIpopt_1_1PardisoSolverInterface.html#a550f41bb001f05d9bbf0ec40b89d86d9',1,'Ipopt::PardisoSolverInterface::nonzeros_'],['../classIpopt_1_1WsmpSolverInterface.html#a761e4088aac852e941331ac5050e841e',1,'Ipopt::WsmpSolverInterface::nonzeros_'],['../classIpopt_1_1GenTMatrixSpace.html#abaeb33ff553e6b3a1c462ec619af64a2',1,'Ipopt::GenTMatrixSpace::nonZeros_'],['../classIpopt_1_1SymTMatrixSpace.html#af766c0c384b3504a8c220fa5b8e98b14',1,'Ipopt::SymTMatrixSpace::nonZeros_']]], ['nonzeros_5fcompressed_5f_69',['nonzeros_compressed_',['../classIpopt_1_1TripletToCSRConverter.html#a9267cd6ac93e84e9dae103acbe95c84e',1,'Ipopt::TripletToCSRConverter::nonzeros_compressed_'],['../classIpopt_1_1TSymLinearSolver.html#a3829f644edd9b5d54050fb988bdf5ddb',1,'Ipopt::TSymLinearSolver::nonzeros_compressed_']]], ['nonzeros_5ftriplet_5f_70',['nonzeros_triplet_',['../classIpopt_1_1TripletToCSRConverter.html#a811a3f449e3542a45498e1de34240fb2',1,'Ipopt::TripletToCSRConverter::nonzeros_triplet_'],['../classIpopt_1_1TSymLinearSolver.html#ab8549a015c360b2e31e331914ea2465b',1,'Ipopt::TSymLinearSolver::nonzeros_triplet_']]], ['normal_5fpardiso_5fiter_5fcoarse_5fsize_5f_71',['normal_pardiso_iter_coarse_size_',['../classIpopt_1_1IterativePardisoSolverInterface.html#a0fc3d215d08c70ec60bf6d66962799e0',1,'Ipopt::IterativePardisoSolverInterface']]], @@ -88,7 +88,7 @@ var searchData= ['not_5fenough_5fdegrees_5fof_5ffre_85',['NOT_ENOUGH_DEGREES_OF_FRE',['../classorg_1_1coinor_1_1Ipopt.html#a5b51f92e8764572d9c48569908a22dce',1,'org::coinor::Ipopt']]], ['np_5f_86',['np_',['../classIpopt_1_1SensAlgorithm.html#a17db15bdf2f9166796ea058557380ebe',1,'Ipopt::SensAlgorithm']]], ['nrm2_5fcache_5ftag_5f_87',['nrm2_cache_tag_',['../classIpopt_1_1Vector.html#a29c13a03f941940f50d555954bbf9e95',1,'Ipopt::Vector']]], - ['nrows_5f_88',['nrows_',['../classIpopt_1_1MatrixSpace.html#a156d99aca8da52830b67cd64e00280aa',1,'Ipopt::MatrixSpace::nRows_'],['../classIpopt_1_1IndexPCalculator.html#aa3e83851cbec02a015f8d92dcfa3f394',1,'Ipopt::IndexPCalculator::nrows_'],['../classIpopt_1_1SchurData.html#a94209d32f74ab7fcf6ba489788d87685',1,'Ipopt::SchurData::nrows_']]], + ['nrows_5f_88',['nrows_',['../classIpopt_1_1IndexPCalculator.html#aa3e83851cbec02a015f8d92dcfa3f394',1,'Ipopt::IndexPCalculator::nrows_'],['../classIpopt_1_1SchurData.html#a94209d32f74ab7fcf6ba489788d87685',1,'Ipopt::SchurData::nrows_'],['../classIpopt_1_1MatrixSpace.html#a156d99aca8da52830b67cd64e00280aa',1,'Ipopt::MatrixSpace::nRows_']]], ['ns_5f_89',['ns_',['../classIpopt_1_1SensAlgorithm.html#a16c172bc51744a99f1396f7fd111cc58',1,'Ipopt::SensAlgorithm']]], ['nsteps_5f_90',['nsteps_',['../classIpopt_1_1Ma27TSolverInterface.html#a7ccbc97641d119a3647a0ab33c9ec225',1,'Ipopt::Ma27TSolverInterface']]], ['nsup_91',['nsup',['../structma77__info__d.html#af13160d148da9f05acf339b8e9b41b00',1,'ma77_info_d::nsup'],['../structma77__info__s.html#a5eb04f00467b7eca577cd4c0269986ac',1,'ma77_info_s::nsup']]], diff --git a/special_8dox.html b/special_8dox.html index 245c8a29b..b3405268d 100644 --- a/special_8dox.html +++ b/special_8dox.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structIpopt_1_1PiecewisePenEntry-members.html b/structIpopt_1_1PiecewisePenEntry-members.html index c6f5cac37..6243c284c 100644 --- a/structIpopt_1_1PiecewisePenEntry-members.html +++ b/structIpopt_1_1PiecewisePenEntry-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structIpopt_1_1PiecewisePenEntry.html b/structIpopt_1_1PiecewisePenEntry.html index 1efb11d0f..07a9b2a87 100644 --- a/structIpopt_1_1PiecewisePenEntry.html +++ b/structIpopt_1_1PiecewisePenEntry.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma77__control__d-members.html b/structma77__control__d-members.html index 05b7b44be..2ef693906 100644 --- a/structma77__control__d-members.html +++ b/structma77__control__d-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma77__control__d.html b/structma77__control__d.html index ace68fa2a..9067f6cde 100644 --- a/structma77__control__d.html +++ b/structma77__control__d.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma77__control__s-members.html b/structma77__control__s-members.html index 554506d57..c050b84fc 100644 --- a/structma77__control__s-members.html +++ b/structma77__control__s-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma77__control__s.html b/structma77__control__s.html index 3ea72e040..fd0f7bfad 100644 --- a/structma77__control__s.html +++ b/structma77__control__s.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma77__info__d-members.html b/structma77__info__d-members.html index d5d8de75e..5ac008e74 100644 --- a/structma77__info__d-members.html +++ b/structma77__info__d-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma77__info__d.html b/structma77__info__d.html index 19c3db449..402dd14aa 100644 --- a/structma77__info__d.html +++ b/structma77__info__d.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma77__info__s-members.html b/structma77__info__s-members.html index d12ab90db..50c694275 100644 --- a/structma77__info__s-members.html +++ b/structma77__info__s-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma77__info__s.html b/structma77__info__s.html index 91b9a4046..2f4c61ff9 100644 --- a/structma77__info__s.html +++ b/structma77__info__s.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma86__control__d-members.html b/structma86__control__d-members.html index 01bea3bfb..8dab4e938 100644 --- a/structma86__control__d-members.html +++ b/structma86__control__d-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma86__control__d.html b/structma86__control__d.html index 9b339772e..73313f323 100644 --- a/structma86__control__d.html +++ b/structma86__control__d.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma86__control__s-members.html b/structma86__control__s-members.html index c54014d4d..63aefba87 100644 --- a/structma86__control__s-members.html +++ b/structma86__control__s-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma86__control__s.html b/structma86__control__s.html index 6e9174ab2..d55bd562a 100644 --- a/structma86__control__s.html +++ b/structma86__control__s.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma86__info__d-members.html b/structma86__info__d-members.html index 2be6fe33f..610b3b127 100644 --- a/structma86__info__d-members.html +++ b/structma86__info__d-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma86__info__d.html b/structma86__info__d.html index 8eaefffbe..f46640f1b 100644 --- a/structma86__info__d.html +++ b/structma86__info__d.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma86__info__s-members.html b/structma86__info__s-members.html index 1f49551e3..f69e50081 100644 --- a/structma86__info__s-members.html +++ b/structma86__info__s-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma86__info__s.html b/structma86__info__s.html index 07c522811..58db456f8 100644 --- a/structma86__info__s.html +++ b/structma86__info__s.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma97__control__d-members.html b/structma97__control__d-members.html index cfc9ff901..bd2809aea 100644 --- a/structma97__control__d-members.html +++ b/structma97__control__d-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma97__control__d.html b/structma97__control__d.html index 56fa9ea05..8ac4bf969 100644 --- a/structma97__control__d.html +++ b/structma97__control__d.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma97__control__s-members.html b/structma97__control__s-members.html index d0b5368ea..bad5625f2 100644 --- a/structma97__control__s-members.html +++ b/structma97__control__s-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma97__control__s.html b/structma97__control__s.html index f7bcb4b84..f73021139 100644 --- a/structma97__control__s.html +++ b/structma97__control__s.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma97__info__d-members.html b/structma97__info__d-members.html index 56f8833b1..b09bb7d24 100644 --- a/structma97__info__d-members.html +++ b/structma97__info__d-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma97__info__d.html b/structma97__info__d.html index 7217c1319..50cb2c0be 100644 --- a/structma97__info__d.html +++ b/structma97__info__d.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma97__info__s-members.html b/structma97__info__s-members.html index 75a4a1bea..b94604350 100644 --- a/structma97__info__s-members.html +++ b/structma97__info__s-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structma97__info__s.html b/structma97__info__s.html index cefc64f38..b83d014d9 100644 --- a/structma97__info__s.html +++ b/structma97__info__s.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structmc68__control__i-members.html b/structmc68__control__i-members.html index bf5f3517b..ec81ca223 100644 --- a/structmc68__control__i-members.html +++ b/structmc68__control__i-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structmc68__control__i.html b/structmc68__control__i.html index 585486d8a..5dc5f4e44 100644 --- a/structmc68__control__i.html +++ b/structmc68__control__i.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structmc68__info__i-members.html b/structmc68__info__i-members.html index 86e88984f..421a87ae0 100644 --- a/structmc68__info__i-members.html +++ b/structmc68__info__i-members.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +  
    diff --git a/structmc68__info__i.html b/structmc68__info__i.html index e2e4c1991..bf7343525 100644 --- a/structmc68__info__i.html +++ b/structmc68__info__i.html @@ -39,7 +39,7 @@
    Ipopt Documentation -   +