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
// Copyright (C) 2008 International Business Machines and others.
// All Rights Reserved.
// This code is published under the Eclipse Public License.
//
// Authors: Andreas Waechter IBM 2008-08-31
#include "IpInexactData.hpp"
namespace Ipopt
{
InexactData::InexactData()
{ }
InexactData::~InexactData()
{ }
bool InexactData::Initialize(
const Journalist& /*jnlst*/,
const OptionsList& /*options*/,
const std::string& /*prefix*/
)
{
full_step_accepted_ = false;
return true;
}
bool InexactData::InitializeDataStructures()
{
return true;
}
void InexactData::AcceptTrialPoint()
{
// delete data
normal_x_ = NULL;
normal_s_ = NULL;
}
}