I'm using knitro in a C program using reverse communication mode. It
seems to finish with the problem, but then returns a status code of 5,
which is not listed as a possible return value in the documentation.
Can someone suggest what's going on?
Thanks.
Return code 5 is "FINISHED". I guess it's not in the User Manual,
but it is in the knitro.h header file. Not sure why you are getting
it. One possibility is that KNITRO completed, giving you a normal
status, and then you called KTR_solve() again (unnecessarily); in this
case KNITRO returns "FINISHED" because there is nothing for it to do.
-- Todd
On May 21, 8:46 pm, "victor.chubukov" <victor.chubu...@gmail.com>
wrote:
V.