Ipopt Documentation  
 
Loading...
Searching...
No Matches
IpRestoPenaltyConvCheck.hpp
Go to the documentation of this file.
1// Copyright (C) 2008 International Business Machines and others.
2// All Rights Reserved.
3// This code is published under the Eclipse Public License.
4//
5// Authors: Andreas Waechter IBM 2008-06-24
6// based on IpRestoFilterConvCheck.hpp
7
8#ifndef __IPRESTOPENALTYCONVCHECK_HPP__
9#define __IPRESTOPENALTYCONVCHECK_HPP__
10
11#include "IpRestoConvCheck.hpp"
13
14namespace Ipopt
15{
16
22{
23public:
26
28
32
41 const BacktrackingLSAcceptor& orig_ls_acceptor
42 );
43
44 virtual bool InitializeImpl(
45 const OptionsList& options,
46 const std::string& prefix
47 );
48
49 static void RegisterOptions(
51 );
52
53private:
63
66 );
67
71 );
73
78 Number orig_trial_barr,
79 Number orig_trial_theta
80 );
81
91};
92
93} // namespace Ipopt
94
95#endif
Base class for backtracking line search acceptors.
ConvergenceStatus
Convergence return enum.
This class stores a list of user set options.
Penalty function line search.
RestoConvergenceCheck()
Default Constructor.
RestoPenaltyConvergenceCheck(const RestoPenaltyConvergenceCheck &)
Copy Constructor.
virtual ~RestoPenaltyConvergenceCheck()
Destructor.
virtual bool InitializeImpl(const OptionsList &options, const std::string &prefix)
overloaded from AlgorithmStrategyObject
void SetOrigLSAcceptor(const BacktrackingLSAcceptor &orig_ls_acceptor)
Set the object for the original penalty line search.
RestoPenaltyConvergenceCheck()
Default Constructor.
static void RegisterOptions(SmartPtr< RegisteredOptions > roptions)
const PenaltyLSAcceptor * orig_penalty_ls_acceptor_
Strategy object for the filter line search method for the original NLP.
virtual ConvergenceStatus TestOrigProgress(Number orig_trial_barr, Number orig_trial_theta)
Method for checking progress with original filter globalization mechanism.
void operator=(const RestoPenaltyConvergenceCheck &)
Default Assignment Operator.
Template class for Smart Pointers.
This file contains a base class for all exceptions and a set of macros to help with exceptions.
ipnumber Number
Type of all numbers.
Definition IpTypes.hpp:17