Iteration output doesn't include inf_compl #787
-
Why the iteration output uses When I run ipopt I see Is it possible to use |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I couldn't find any mention of You should get the output from The Ipopt/src/Algorithm/IpAlgBuilder.cpp Lines 980 to 983 in e10e5c7 To get always only OrigIterationOutput, you could try changing this code to SmartPtr<IterationOutput> resto_IterOutput = new OrigIterationOutput(); |
Beta Was this translation helpful? Give feedback.
I couldn't find any mention of
duration
in the Ipopt source.The headers for
OrigIterationOutput
andRestoIterationOutput
are the same:Ipopt/src/Algorithm/IpOrigIterationOutput.cpp
Line 81 in e10e5c7
Ipopt/src/Algorithm/IpRestoIterationOutput.cpp
Line 71 in e10e5c7
You should get the output from
RestoIterationOutput::WriteOutput
during restoration phase, and the output fromOrigIterationOutput::WriteOutput
outside restoration phase.The
RestoIterationOutput::Write…