Ipopt Documentation  
 
Loading...
Searching...
No Matches
IpRestoFilterConvCheck.hpp
Go to the documentation of this file.
1// Copyright (C) 2004, 2008 International Business Machines and others.
2// All Rights Reserved.
3// This code is published under the Eclipse Public License.
4//
5// Authors: Carl Laird, Andreas Waechter IBM 2004-08-13
6//
7// A Waechter: moved most code to IpRestoConvCheck.cpp 2008-06-24
8
9#ifndef __IPRESTOFILTERCONVCHECK_HPP__
10#define __IPRESTOFILTERCONVCHECK_HPP__
11
12#include "IpRestoConvCheck.hpp"
14
15namespace Ipopt
16{
17
23{
24public:
27
29
33
42 const BacktrackingLSAcceptor& orig_ls_acceptor
43 );
44
45 virtual bool InitializeImpl(
46 const OptionsList& options,
47 const std::string& prefix
48 );
49
50 static void RegisterOptions(
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.
Filter line search procedure.
This class stores a list of user set options.
Convergence check for the restoration phase.
This is the implementation of the restoration convergence check is the original algorithm used the fi...
virtual ~RestoFilterConvergenceCheck()
Destructor.
RestoFilterConvergenceCheck(const RestoFilterConvergenceCheck &)
Copy Constructor.
RestoFilterConvergenceCheck()
Default Constructor.
virtual ConvergenceStatus TestOrigProgress(Number orig_trial_barr, Number orig_trial_theta)
Method for checking progress with original filter globalization mechanism.
static void RegisterOptions(SmartPtr< RegisteredOptions > roptions)
virtual bool InitializeImpl(const OptionsList &options, const std::string &prefix)
overloaded from AlgorithmStrategyObject
const FilterLSAcceptor * orig_filter_ls_acceptor_
Strategy object for the filter line search method for the original NLP.
void SetOrigLSAcceptor(const BacktrackingLSAcceptor &orig_ls_acceptor)
Set the object for the original filter line search.
void operator=(const RestoFilterConvergenceCheck &)
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