Ipopt 3.11.9
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// $Id: IpRestoFilterConvCheck.hpp 1861 2010-12-21 21:34:47Z andreasw $
6//
7// Authors: Carl Laird, Andreas Waechter IBM 2004-08-13
8//
9// A Waechter: moved most code to IpRestoConvCheck.cpp 2008-06-24
10
11#ifndef __IPRESTOFILTERCONVCHECK_HPP__
12#define __IPRESTOFILTERCONVCHECK_HPP__
13
14#include "IpRestoConvCheck.hpp"
16
17namespace Ipopt
18{
19
26 {
27 public:
32
36
42 void SetOrigLSAcceptor(const BacktrackingLSAcceptor& orig_ls_acceptor);
43
45 virtual bool InitializeImpl(const OptionsList& options,
46 const std::string& prefix);
47
52 private:
61
65
69 virtual ConvergenceStatus
70 TestOrigProgress(Number orig_trial_barr, Number orig_trial_theta);
71
78 };
79
80} // namespace Ipopt
81
82#endif
Base class for backtracking line search acceptors.
ConvergenceStatus
Convergence return enum.
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()
Default 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)
Methods used by IpoptType.
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 &)
Overloaded Equals Operator.
Template class for Smart Pointers.
double Number
Type of all numbers.
Definition IpTypes.hpp:17