/usr/include/coin/IpIpoptData.hpp is in coinor-libipopt-dev 3.11.4-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 | // Copyright (C) 2004, 2009 International Business Machines and others.
// All Rights Reserved.
// This code is published under the Eclipse Public License.
//
// $Id: IpIpoptData.hpp 2276 2013-05-05 12:33:44Z stefan $
//
// Authors: Carl Laird, Andreas Waechter IBM 2004-08-13
#ifndef __IPIPOPTDATA_HPP__
#define __IPIPOPTDATA_HPP__
#include "IpSymMatrix.hpp"
#include "IpOptionsList.hpp"
#include "IpIteratesVector.hpp"
#include "IpRegOptions.hpp"
#include "IpTimingStatistics.hpp"
namespace Ipopt
{
/* Forward declaration */
class IpoptNLP;
/** 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. */
class IpoptAdditionalData : public ReferencedObject
{
public:
/**@name Constructors/Destructors */
//@{
/** Default Constructor */
IpoptAdditionalData()
{}
/** Default destructor */
virtual ~IpoptAdditionalData()
{}
//@}
/** This method is called to initialize the global algorithmic
* parameters. The parameters are taken from the OptionsList
* object. */
virtual bool Initialize(const Journalist& jnlst,
const OptionsList& options,
const std::string& prefix) = 0;
/** Initialize Data Structures at the beginning. */
virtual bool InitializeDataStructures() = 0;
/** Do whatever is necessary to accept a trial point as current
* iterate. This is also used to finish an iteration, i.e., to
* release memory, and to reset any flags for a new iteration. */
virtual void AcceptTrialPoint() = 0;
private:
/**@name Default Compiler Generated Methods
* (Hidden to avoid implicit creation/calling).
* These methods are not implemented and
* we do not want the compiler to implement
* them for us, so we declare them private
* and do not define them. This ensures that
* they will not be implicitly created/called. */
//@{
/** Copy Constructor */
IpoptAdditionalData(const IpoptAdditionalData&);
/** Overloaded Equals Operator */
void operator=(const IpoptAdditionalData&);
//@}
};
/** 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 prototyes 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.
*/
class IpoptData : public ReferencedObject
{
public:
/**@name Constructors/Destructors */
//@{
/** Constructor */
IpoptData(SmartPtr<IpoptAdditionalData> add_data = NULL,
Number cpu_time_start = -1.);
/** Default destructor */
virtual ~IpoptData();
//@}
/** Initialize Data Structures */
bool InitializeDataStructures(IpoptNLP& ip_nlp,
bool want_x,
bool want_y_c,
bool want_y_d,
bool want_z_L,
bool want_z_U);
/** This method must be called to initialize the global
* algorithmic parameters. The parameters are taken from the
* OptionsList object. */
bool Initialize(const Journalist& jnlst,
const OptionsList& options,
const std::string& prefix);
/** @name Get Methods for Iterates */
//@{
/** Current point */
inline
SmartPtr<const IteratesVector> curr() const;
/** Get the current point in a copied container that is non-const.
The entries in the container cannot be modified, but
the container can be modified to point to new entries.
*/
// SmartPtr<IteratesVector> curr_container() const;
/** Get Trial point */
inline
SmartPtr<const IteratesVector> trial() const;
/** Get Trial point in a copied container that is non-const.
* The entries in the container can not be modified, but
* the container can be modified to point to new entries.
*/
//SmartPtr<IteratesVector> trial_container() const;
/** Set the trial point - this method copies the pointer for
* efficiency (no copy and to keep cache tags the same) so
* after you call set you cannot modify the data again
*/
inline
void set_trial(SmartPtr<IteratesVector>& trial);
/** Set the values of the primal trial variables (x and s) from
* provided Step with step length alpha.
*/
void SetTrialPrimalVariablesFromStep(Number alpha,
const Vector& delta_x,
const Vector& delta_s);
/** Set the values of the trial values for the equality constraint
* multipliers (y_c and y_d) from provided step with step length
* alpha.
*/
void SetTrialEqMultipliersFromStep(Number alpha,
const Vector& delta_y_c,
const Vector& delta_y_d);
/** Set the value of the trial values for the bound multipliers
* (z_L, z_U, v_L, v_U) from provided step with step length
* alpha.
*/
void SetTrialBoundMultipliersFromStep(Number alpha,
const Vector& delta_z_L,
const Vector& delta_z_U,
const Vector& delta_v_L,
const Vector& delta_v_U);
/** ToDo: I may need to add versions of set_trial like the
* following, but I am not sure
*/
// void set_trial(const SmartPtr<IteratesVector>& trial_iterates);
// void set_trial(SmartPtr<const IteratesVector>& trial_iterates);
/** get the current delta */
inline
SmartPtr<const IteratesVector> delta() const;
/** Set the current delta - like the trial point, this method copies
* the pointer for efficiency (no copy and to keep cache tags the
* same) so after you call set, you cannot modify the data
*/
inline
void set_delta(SmartPtr<IteratesVector>& delta);
/** Set the current delta - like the trial point, this method
* copies the pointer for efficiency (no copy and to keep cache
* tags the same) so after you call set, you cannot modify the
* data. This is the version that is happy with a pointer to
* const IteratesVector.
*/
inline
void set_delta(SmartPtr<const IteratesVector>& delta);
/** Affine Delta */
inline
SmartPtr<const IteratesVector> delta_aff() const;
/** Set the affine delta - like the trial point, this method copies
* the pointer for efficiency (no copy and to keep cache tags the
* same) so after you call set, you cannot modify the data
*/
inline
void set_delta_aff(SmartPtr<IteratesVector>& delta_aff);
/** Hessian or Hessian approximation (do not hold on to it, it might be changed) */
SmartPtr<const SymMatrix> W()
{
DBG_ASSERT(IsValid(W_));
return W_;
}
/** Set Hessian approximation */
void Set_W(SmartPtr<const SymMatrix> W)
{
W_ = W;
}
/** @name ("Main") Primal-dual search direction. Those fields are
* used to store the search directions computed from solving the
* primal-dual system, and can be used in the line search. They
* are overwritten in every iteration, so do not hold on to the
* pointers (make copies instead) */
//@{
/** Returns true, if the primal-dual step have been already
* computed for the current iteration. This flag is reset after
* every call of 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. */
bool HaveDeltas() const
{
return have_deltas_;
}
/** Method for setting the HaveDeltas flag. This method should be
* called if some method computes the primal-dual step (and
* stores it in the delta_ fields of IpoptData) at an early part
* of the iteration. If that flag is set to true, the
* IpoptAlgorithm object will not recompute the step. */
void SetHaveDeltas(bool have_deltas)
{
have_deltas_ = have_deltas;
}
//@}
/** @name Affine-scaling step. Those fields can be used to store
* the affine scaling step. For example, if the method for
* computing the current barrier parameter computes the affine
* scaling steps, then the corrector step in the line search does
* not have to recompute those solutions of the linear system. */
//@{
/** Returns true, if the affine-scaling step have been already
* computed for the current iteration. This flag is reset after
* every call of 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. */
bool HaveAffineDeltas() const
{
return have_affine_deltas_;
}
/** Method for setting the HaveDeltas flag. This method should be
* called if some method computes the primal-dual step (and
* stores it in the delta_ fields of IpoptData) at an early part
* of the iteration. If that flag is set to true, the
* IpoptAlgorithm object will not recompute the step. */
void SetHaveAffineDeltas(bool have_affine_deltas)
{
have_affine_deltas_ = have_affine_deltas;
}
//@}
/** @name Public Methods for updating iterates */
//@{
/** Copy the trial values to the current values */
inline
void CopyTrialToCurrent();
/** Set the current iterate values from the
* trial values. */
void AcceptTrialPoint();
//@}
/** @name General algorithmic data */
//@{
Index iter_count() const
{
return iter_count_;
}
void Set_iter_count(Index iter_count)
{
iter_count_ = iter_count;
}
Number curr_mu() const
{
DBG_ASSERT(mu_initialized_);
return curr_mu_;
}
void Set_mu(Number mu)
{
curr_mu_ = mu;
mu_initialized_ = true;
}
bool MuInitialized() const
{
return mu_initialized_;
}
Number curr_tau() const
{
DBG_ASSERT(tau_initialized_);
return curr_tau_;
}
void Set_tau(Number tau)
{
curr_tau_ = tau;
tau_initialized_ = true;
}
bool TauInitialized() const
{
return tau_initialized_;
}
void SetFreeMuMode(bool free_mu_mode)
{
free_mu_mode_ = free_mu_mode;
}
bool FreeMuMode() const
{
return free_mu_mode_;
}
/** Setting the flag that indicates if a tiny step (below machine
* precision) has been detected */
void Set_tiny_step_flag(bool flag)
{
tiny_step_flag_ = flag;
}
bool tiny_step_flag()
{
return tiny_step_flag_;
}
//@}
/** Overall convergence tolerance. It is used in the convergence
* test, but also in some other parts of the algorithm that
* depend on the specified tolerance, such as the minimum value
* for the barrier parameter. */
//@{
/** Obtain the tolerance. */
Number tol() const
{
DBG_ASSERT(initialize_called_);
return tol_;
}
/** Set a new value for the tolerance. One should be very careful
* when using this, since changing the predefined tolerance might
* have unexpected consequences. This method is for example used
* in the restoration convergence checker to tighten the
* restoration phase convergence tolerance, if the restoration
* phase converged to a point that has not a large value for the
* constraint violation. */
void Set_tol(Number tol)
{
tol_ = tol;
}
//@}
/** Cpu time counter at the beginning of the optimization. This
* is useful to see how much CPU time has been spent in this
* optimization run. */
Number cpu_time_start() const
{
return cpu_time_start_;
}
/** @name Information gathered for iteration output */
//@{
Number info_regu_x() const
{
return info_regu_x_;
}
void Set_info_regu_x(Number regu_x)
{
info_regu_x_ = regu_x;
}
Number info_alpha_primal() const
{
return info_alpha_primal_;
}
void Set_info_alpha_primal(Number alpha_primal)
{
info_alpha_primal_ = alpha_primal;
}
char info_alpha_primal_char() const
{
return info_alpha_primal_char_;
}
void Set_info_alpha_primal_char(char info_alpha_primal_char)
{
info_alpha_primal_char_ = info_alpha_primal_char;
}
Number info_alpha_dual() const
{
return info_alpha_dual_;
}
void Set_info_alpha_dual(Number alpha_dual)
{
info_alpha_dual_ = alpha_dual;
}
Index info_ls_count() const
{
return info_ls_count_;
}
void Set_info_ls_count(Index ls_count)
{
info_ls_count_ = ls_count;
}
bool info_skip_output() const
{
return info_skip_output_;
}
void Append_info_string(const std::string& add_str)
{
info_string_ += add_str;
}
const std::string& info_string() const
{
return info_string_;
}
/** Set this to true, if the next time when output is written, the
* summary line should not be printed. */
void Set_info_skip_output(bool info_skip_output)
{
info_skip_output_ = info_skip_output;
}
/** gives time when the last summary output line was printed */
Number info_last_output()
{
return info_last_output_;
}
/** sets time when the last summary output line was printed */
void Set_info_last_output(Number info_last_output)
{
info_last_output_ = info_last_output;
}
/** gives number of iteration summaries actually printed
* since last summary header was printed */
int info_iters_since_header()
{
return info_iters_since_header_;
}
/** increases number of iteration summaries actually printed
* since last summary header was printed */
void Inc_info_iters_since_header()
{
info_iters_since_header_++;
}
/** sets number of iteration summaries actually printed
* since last summary header was printed */
void Set_info_iters_since_header(int info_iters_since_header)
{
info_iters_since_header_ = info_iters_since_header;
}
/** Reset all info fields */
void ResetInfo()
{
info_regu_x_ = 0;
info_alpha_primal_ = 0;
info_alpha_dual_ = 0.;
info_alpha_primal_char_ = ' ';
info_skip_output_ = false;
info_string_.erase();
}
//@}
/** Return Timing Statistics Object */
TimingStatistics& TimingStats()
{
return timing_statistics_;
}
/** Check if additional data has been set */
bool HaveAddData()
{
return IsValid(add_data_);
}
/** Get access to additional data object */
IpoptAdditionalData& AdditionalData()
{
return *add_data_;
}
/** Set a new pointer for additional Ipopt data */
void SetAddData(SmartPtr<IpoptAdditionalData> add_data)
{
DBG_ASSERT(!HaveAddData());
add_data_ = add_data;
}
/** Set the perturbation of the primal-dual system */
void setPDPert(Number pd_pert_x, Number pd_pert_s,
Number pd_pert_c, Number pd_pert_d)
{
pd_pert_x_ = pd_pert_x;
pd_pert_s_ = pd_pert_s;
pd_pert_c_ = pd_pert_c;
pd_pert_d_ = pd_pert_d;
}
/** Get the current perturbation of the primal-dual system */
void getPDPert(Number& pd_pert_x, Number& pd_pert_s,
Number& pd_pert_c, Number& pd_pert_d)
{
pd_pert_x = pd_pert_x_;
pd_pert_s = pd_pert_s_;
pd_pert_c = pd_pert_c_;
pd_pert_d = pd_pert_d_;
}
/** Methods for IpoptType */
//@{
static void RegisterOptions(const SmartPtr<RegisteredOptions>& roptions);
//@}
private:
/** @name Iterates */
//@{
/** Main iteration variables
* (current iteration) */
SmartPtr<const IteratesVector> curr_;
/** Main iteration variables
* (trial calculations) */
SmartPtr<const IteratesVector> trial_;
/** Hessian (approximation) - might be changed elsewhere! */
SmartPtr<const SymMatrix> W_;
/** @name Primal-dual Step */
//@{
SmartPtr<const IteratesVector> delta_;
/** The following flag is set to true, if some other part of the
* algorithm (like the method for computing the barrier
* parameter) has already computed the primal-dual search
* direction. This flag is reset when the AcceptTrialPoint
* method is called.
* ToDo: we could cue off of a null delta_;
*/
bool have_deltas_;
//@}
/** @name Affine-scaling step. This used to transfer the
* information about the affine-scaling step from the computation
* of the barrier parameter to the corrector (in the line
* search). */
//@{
SmartPtr<const IteratesVector> delta_aff_;
/** The following flag is set to true, if some other part of the
* algorithm (like the method for computing the barrier
* parameter) has already computed the affine-scaling step. This
* flag is reset when the AcceptTrialPoint method is called.
* ToDo: we could cue off of a null delta_aff_;
*/
bool have_affine_deltas_;
//@}
/** iteration count */
Index iter_count_;
/** current barrier parameter */
Number curr_mu_;
bool mu_initialized_;
/** current fraction to the boundary parameter */
Number curr_tau_;
bool tau_initialized_;
/** flag indicating if Initialize method has been called (for
* debugging) */
bool initialize_called_;
/** flag for debugging whether we have already curr_ values
* available (from which new Vectors can be generated */
bool have_prototypes_;
/** @name Global algorithm parameters. Those are options that can
* be modified by the user and appear at different places in the
* algorithm. They are set using an OptionsList object in the
* Initialize method. */
//@{
/** Overall convergence tolerance */
Number tol_;
//@}
/** @name Status data **/
//@{
/** flag indicating whether the algorithm is in the free mu mode */
bool free_mu_mode_;
/** flag indicating if a tiny step has been detected */
bool tiny_step_flag_;
//@}
/** @name Gathered information for iteration output */
//@{
/** Size of regularization for the Hessian */
Number info_regu_x_;
/** Primal step size */
Number info_alpha_primal_;
/** Info character for primal step size */
char info_alpha_primal_char_;
/** Dual step size */
Number info_alpha_dual_;
/** Number of backtracking trial steps */
Index info_ls_count_;
/** true, if next summary output line should not be printed (eg
* after restoration phase. */
bool info_skip_output_;
/** any string of characters for the end of the output line */
std::string info_string_;
/** time when the last summary output line was printed */
Number info_last_output_;
/** number of iteration summaries actually printed since last
* summary header was printed */
int info_iters_since_header_;
//@}
/** VectorSpace for all the iterates */
SmartPtr<IteratesVectorSpace> iterates_space_;
/** TimingStatistics object collecting all Ipopt timing
* statistics */
TimingStatistics timing_statistics_;
/** CPU time counter at initialization. */
Number cpu_time_start_;
/** Object for the data specific for the Chen-Goldfarb penalty
* method algorithm */
SmartPtr<IpoptAdditionalData> add_data_;
/** @name Information about the perturbation of the primal-dual
* system */
//@{
Number pd_pert_x_;
Number pd_pert_s_;
Number pd_pert_c_;
Number pd_pert_d_;
//@}
/**@name Default Compiler Generated Methods
* (Hidden to avoid implicit creation/calling).
* These methods are not implemented and
* we do not want the compiler to implement
* them for us, so we declare them private
* and do not define them. This ensures that
* they will not be implicitly created/called. */
//@{
/** Copy Constructor */
IpoptData(const IpoptData&);
/** Overloaded Equals Operator */
void operator=(const IpoptData&);
//@}
#if COIN_IPOPT_CHECKLEVEL > 0
/** Some debug flags to make sure vectors are not changed
* behind the IpoptData's back
*/
//@{
TaggedObject::Tag debug_curr_tag_;
TaggedObject::Tag debug_trial_tag_;
TaggedObject::Tag debug_delta_tag_;
TaggedObject::Tag debug_delta_aff_tag_;
TaggedObject::Tag debug_curr_tag_sum_;
TaggedObject::Tag debug_trial_tag_sum_;
TaggedObject::Tag debug_delta_tag_sum_;
TaggedObject::Tag debug_delta_aff_tag_sum_;
//@}
#endif
};
inline
SmartPtr<const IteratesVector> IpoptData::curr() const
{
DBG_ASSERT(IsNull(curr_) || (curr_->GetTag() == debug_curr_tag_ && curr_->GetTagSum() == debug_curr_tag_sum_) );
return curr_;
}
inline
SmartPtr<const IteratesVector> IpoptData::trial() const
{
DBG_ASSERT(IsNull(trial_) || (trial_->GetTag() == debug_trial_tag_ && trial_->GetTagSum() == debug_trial_tag_sum_) );
return trial_;
}
inline
SmartPtr<const IteratesVector> IpoptData::delta() const
{
DBG_ASSERT(IsNull(delta_) || (delta_->GetTag() == debug_delta_tag_ && delta_->GetTagSum() == debug_delta_tag_sum_) );
return delta_;
}
inline
SmartPtr<const IteratesVector> IpoptData::delta_aff() const
{
DBG_ASSERT(IsNull(delta_aff_) || (delta_aff_->GetTag() == debug_delta_aff_tag_ && delta_aff_->GetTagSum() == debug_delta_aff_tag_sum_) );
return delta_aff_;
}
inline
void IpoptData::CopyTrialToCurrent()
{
curr_ = trial_;
#if COIN_IPOPT_CHECKLEVEL > 0
if (IsValid(curr_)) {
debug_curr_tag_ = curr_->GetTag();
debug_curr_tag_sum_ = curr_->GetTagSum();
}
else {
debug_curr_tag_ = TaggedObject::Tag();
debug_curr_tag_sum_ = TaggedObject::Tag();
}
#endif
}
inline
void IpoptData::set_trial(SmartPtr<IteratesVector>& trial)
{
trial_ = ConstPtr(trial);
#if COIN_IPOPT_CHECKLEVEL > 0
// verify the correct space
DBG_ASSERT(trial_->OwnerSpace() == (VectorSpace*)GetRawPtr(iterates_space_));
if (IsValid(trial)) {
debug_trial_tag_ = trial->GetTag();
debug_trial_tag_sum_ = trial->GetTagSum();
}
else {
debug_trial_tag_ = TaggedObject::Tag();
debug_trial_tag_sum_ = TaggedObject::Tag();
}
#endif
trial = NULL;
}
inline
void IpoptData::set_delta(SmartPtr<IteratesVector>& delta)
{
delta_ = ConstPtr(delta);
#if COIN_IPOPT_CHECKLEVEL > 0
if (IsValid(delta)) {
debug_delta_tag_ = delta->GetTag();
debug_delta_tag_sum_ = delta->GetTagSum();
}
else {
debug_delta_tag_ = TaggedObject::Tag();
debug_delta_tag_sum_ = TaggedObject::Tag();
}
#endif
delta = NULL;
}
inline
void IpoptData::set_delta(SmartPtr<const IteratesVector>& delta)
{
delta_ = delta;
#if COIN_IPOPT_CHECKLEVEL > 0
if (IsValid(delta)) {
debug_delta_tag_ = delta->GetTag();
debug_delta_tag_sum_ = delta->GetTagSum();
}
else {
debug_delta_tag_ = TaggedObject::Tag();
debug_delta_tag_sum_ = TaggedObject::Tag();
}
#endif
delta = NULL;
}
inline
void IpoptData::set_delta_aff(SmartPtr<IteratesVector>& delta_aff)
{
delta_aff_ = ConstPtr(delta_aff);
#if COIN_IPOPT_CHECKLEVEL > 0
if (IsValid(delta_aff)) {
debug_delta_aff_tag_ = delta_aff->GetTag();
debug_delta_aff_tag_sum_ = delta_aff->GetTagSum();
}
else {
debug_delta_aff_tag_ = TaggedObject::Tag();
debug_delta_aff_tag_sum_ = delta_aff->GetTagSum();
}
#endif
delta_aff = NULL;
}
} // namespace Ipopt
#endif
|