<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic steve,  in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964861#M95505</link>
    <description>&lt;P&gt;steve,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It seems that the reason we dont converge on a solution is due to the following message. Please find the attached output.txt for more information on how NNLPF tried the solve the case.&lt;/P&gt;
&lt;P&gt;TERMINATION REASON:&lt;BR /&gt; STEPSIZESELECTION: DIRECTIONAL DERIV. VERY SMALL, INFEASIBLE&lt;/P&gt;
&lt;P&gt;How do we adjust the step-size to acheive convergence?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Just for information, below are the defaults we are using in our program:&lt;/P&gt;
&lt;P&gt;IDTYPE = 1 !! Type of numerical differntiation&lt;BR /&gt; EPSDIF = EPSILON(X(1)) !! Relative precision in gradients&lt;BR /&gt; TAU0 = 1.0 !! Universal boundry condition&lt;BR /&gt; DEL0 = 0.5*TAU0 !! Phase minimization constraint&lt;BR /&gt; EPSFCN = EPSILON(X(1)) !! Relative precision to evaluate to&lt;BR /&gt; TAUBND = 1.0 !! Amount by which bounds may be violated&lt;BR /&gt; SMALLW = exp(2*log(epsilon(x(1)/3))) !! Error allowed in multipliers&lt;BR /&gt; DELMIN = min(DEL0/10, max(EPSDIF,min(DEL0/10,max(.000001*DEL0,SMALLW)))) !! Allowable constraint violations&lt;BR /&gt; SCFMAX = 10000&lt;/P&gt;</description>
    <pubDate>Tue, 21 May 2013 18:30:53 GMT</pubDate>
    <dc:creator>suresh_p_1</dc:creator>
    <dc:date>2013-05-21T18:30:53Z</dc:date>
    <item>
      <title>: Runtime errors when using D_NNLPF routine (new IMSL)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964854#M95498</link>
      <description>&lt;P&gt;we are using the routine &amp;nbsp;D_NNLPF for optimization .&amp;nbsp;The previous version of the above routine is called DNCONF&lt;/P&gt;
&lt;P&gt;It appears the signature of the new D_NNLPF is changed. It has required and optional&amp;nbsp;arguments.&lt;/P&gt;
&lt;P&gt;The following are arguments we are passing to the D_NNLPF&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;CALL&amp;nbsp;D_NNLPF(FCN7, M, ME, IBTYPE, XLB, XUB, X,N, XGUESS, XSCALE, IPRINT, MAXITN,&amp;nbsp;EPSDIF, TAU0, DEL0, EPSFCN,&amp;nbsp;IDTYPE, TAUBND, SMALLW, DELMIN,SCFMAX, FVALUE)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Per documentation, below is the call without optional arguments.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;CALL&amp;nbsp;D_NNLPF(FCN7, M, ME, IBTYPE, XLB, XUB, X)&lt;/P&gt;
&lt;P&gt;We are getting run-time errors such as access violations when we run the program.&amp;nbsp;We suspect the order of optional arguments and size of arrays could be source of the problem.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But not sure, how to troubleshoot to understand&amp;nbsp;where is the problem. Also, we would&amp;nbsp;like to know how to enable debugging of IMSL to understand internally what is going&amp;nbsp;wrong.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Appreciate your quick response.&lt;/P&gt;</description>
      <pubDate>Fri, 17 May 2013 21:08:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964854#M95498</guid>
      <dc:creator>suresh_p_1</dc:creator>
      <dc:date>2013-05-17T21:08:04Z</dc:date>
    </item>
    <item>
      <title>Quote:suresh p. wrote:</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964855#M95499</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;suresh p. wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;
&lt;P&gt;we are using the routine &amp;nbsp;D_NNLPF for optimization .&amp;nbsp;The previous version of the above routine is called DNCONF.&amp;nbsp;It appears the signature of the new D_NNLPF is changed. It has required and optional&amp;nbsp;arguments.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;
&lt;P&gt;These routines are from different original authors (Schittkowski for the older, Spellucci for the newer); they are superficially equivalent, but the algorithms and calling sequences are quite different.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;We are getting run-time errors such as access violations when we run the program.&amp;nbsp;We suspect the order of optional arguments and size of arrays could be source of the problem. &lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Did you call the specific name D_NNLPF, or did you call the generic name NNLPF? Did you provide the required interface using "USE NNLPF_INT?"&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;But not sure, how to troubleshoot to understand&amp;nbsp;where is the problem. Also, we would&amp;nbsp;like to know how to enable debugging of IMSL to understand internally what is going&amp;nbsp;wrong.&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;
&lt;P&gt;That is not feasible to do since the source code to IMSL is not available. Even if the source code had been available, few end users of IMSL would be capable of debugging it, because of the rather complex algorithms that underlie the code. Most crashes from IMSL-dependent code are caused by errors in declaring and defining the arguments before making the call.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 May 2013 23:04:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964855#M95499</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2013-05-17T23:04:00Z</dc:date>
    </item>
    <item>
      <title>Do you have USE NNLPF_INT in</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964856#M95500</link>
      <description>&lt;P&gt;Do you have USE NNLPF_INT in your source?&amp;nbsp; You need that to call the "Fortran 90 interface".&amp;nbsp; I recommend against using the D_ name form - just call NNLPF which is generic. But DO make sure you are using the _INT module!&lt;/P&gt;</description>
      <pubDate>Sat, 18 May 2013 01:10:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964856#M95500</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2013-05-18T01:10:42Z</dc:date>
    </item>
    <item>
      <title>steve, we are using D_NNLPF</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964857#M95501</link>
      <description>&lt;P&gt;steve, we are using D_NNLPF because all the arguments we are passing are double precision. But as per your recommendation I will use NNLPF and USE NNLPF_INT directive.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 18 May 2013 15:08:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964857#M95501</guid>
      <dc:creator>suresh_p_1</dc:creator>
      <dc:date>2013-05-18T15:08:05Z</dc:date>
    </item>
    <item>
      <title>It's ok if you call D_NNLPF,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964858#M95502</link>
      <description>&lt;P&gt;It's ok if you call D_NNLPF, but if you do, you MUST add USE NNLPF_INT.&lt;/P&gt;</description>
      <pubDate>Sun, 19 May 2013 01:20:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964858#M95502</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2013-05-19T01:20:51Z</dc:date>
    </item>
    <item>
      <title>Steve,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964859#M95503</link>
      <description>&lt;P&gt;Steve,&lt;/P&gt;
&lt;P&gt;Per your suggestion, I'm using NNLPF and the directive USE NNLPF_INT.&lt;/P&gt;
&lt;P&gt;Now, on the error code (I couldnt follow the documentation). I'm getting error code 9. Do you shed some light on this? I understand Error Code of 0 means solution is converged and valid.&lt;/P&gt;
&lt;P&gt;With the same data using previous version of IMSL i.e., DNCONF, we got error code of 0.0 and solution seem converged.&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2013 15:57:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964859#M95503</guid>
      <dc:creator>suresh_p_1</dc:creator>
      <dc:date>2013-05-21T15:57:04Z</dc:date>
    </item>
    <item>
      <title>What is the text of the error</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964860#M95504</link>
      <description>&lt;P&gt;What is the text of the error message printed? I see a couple of different things that can give a code of 9. The fatal error with code 9 is "The unscaled penalty-term bound must be greater than zero while TAU0 = %(d1) is given." (%(d1) gets substituted with text based on the arguments, I think.)&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2013 17:44:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964860#M95504</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2013-05-21T17:44:47Z</dc:date>
    </item>
    <item>
      <title>steve, </title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964861#M95505</link>
      <description>&lt;P&gt;steve,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It seems that the reason we dont converge on a solution is due to the following message. Please find the attached output.txt for more information on how NNLPF tried the solve the case.&lt;/P&gt;
&lt;P&gt;TERMINATION REASON:&lt;BR /&gt; STEPSIZESELECTION: DIRECTIONAL DERIV. VERY SMALL, INFEASIBLE&lt;/P&gt;
&lt;P&gt;How do we adjust the step-size to acheive convergence?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Just for information, below are the defaults we are using in our program:&lt;/P&gt;
&lt;P&gt;IDTYPE = 1 !! Type of numerical differntiation&lt;BR /&gt; EPSDIF = EPSILON(X(1)) !! Relative precision in gradients&lt;BR /&gt; TAU0 = 1.0 !! Universal boundry condition&lt;BR /&gt; DEL0 = 0.5*TAU0 !! Phase minimization constraint&lt;BR /&gt; EPSFCN = EPSILON(X(1)) !! Relative precision to evaluate to&lt;BR /&gt; TAUBND = 1.0 !! Amount by which bounds may be violated&lt;BR /&gt; SMALLW = exp(2*log(epsilon(x(1)/3))) !! Error allowed in multipliers&lt;BR /&gt; DELMIN = min(DEL0/10, max(EPSDIF,min(DEL0/10,max(.000001*DEL0,SMALLW)))) !! Allowable constraint violations&lt;BR /&gt; SCFMAX = 10000&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2013 18:30:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964861#M95505</guid>
      <dc:creator>suresh_p_1</dc:creator>
      <dc:date>2013-05-21T18:30:53Z</dc:date>
    </item>
    <item>
      <title>Sorry, that involves deeper</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964862#M95506</link>
      <description>&lt;P&gt;Sorry, that involves deeper understanding of IMSL than I have. Perhaps some of the users here are familiar with this routine, or you could ask in &lt;A href="http://forums.roguewave.com/forumdisplay.php?110-IMSL-Numerical-Libraries" target="_blank"&gt;http://forums.roguewave.com/forumdisplay.php?110-IMSL-Numerical-Libraries&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2013 19:30:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964862#M95506</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2013-05-21T19:30:10Z</dc:date>
    </item>
    <item>
      <title>Quote:Suresh P wrote:How do</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964863#M95507</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Suresh P wrote:&lt;BR /&gt;How do we adjust the step-size to achieve convergence? &lt;/BLOCKQUOTE&gt; You have not reached a point where that is a reasonable question.&lt;P&gt;&lt;/P&gt;
&lt;BR /&gt;
&lt;P&gt;Your output is full of NaN-s and shows numerous instances of the large number&amp;nbsp;-0.62774D+67, which indicate that you are either not calling NNLPF properly or that your problem functions are properly coded. If you make up a small self-contained example it may be feasible to check into the reasons. With what you have shown so far, we do not even know what the objective function and constraints are, so it is premature to speculate as to why the library routine did not find your desired optimum.&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2013 19:55:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964863#M95507</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2013-05-21T19:55:00Z</dc:date>
    </item>
    <item>
      <title>After further debugging, I</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964864#M95508</link>
      <description>&lt;P&gt;After further debugging, I see the routine FCN (where objective function and constraints are calculated) never gets called when IACT=0.&amp;nbsp;IACT=0 when objective function is requested.&lt;/P&gt;
&lt;P&gt;Any idea why objective function is never requested?&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;from IMSL doc -&lt;/P&gt;
&lt;P&gt;IACT – Integer indicating whether evaluation of the objective function is requested or&lt;BR /&gt;evaluation of a constraint is requested. If IACT is zero, then an objective&lt;BR /&gt;function evaluation is requested. If IACT is nonzero then the value if IACT&lt;BR /&gt;indicates the index of the constraint to evaluate. (Input)&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 13:17:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964864#M95508</guid>
      <dc:creator>suresh_p_1</dc:creator>
      <dc:date>2013-05-22T13:17:08Z</dc:date>
    </item>
    <item>
      <title>mecej4 ,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964865#M95509</link>
      <description>&lt;P&gt;&lt;A href="http://software.intel.com/en-us/user/9972"&gt;mecej4&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;While further troubleshooting, it appears that FCN WAS NEVER CALLED WITH IACT=0 (i.e., it never requested the objective function)&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;I&gt;FCN is&amp;nbsp;&lt;/I&gt;&lt;/B&gt;User-supplied subroutine to evaluate the objective function and constraints at a given&amp;nbsp;point. The internal usage is CALL FCN (X, IACT, RESULT, IERR)&lt;/P&gt;
&lt;P&gt;below is the excerpt from the document&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;I&gt;IACT &lt;/I&gt;&lt;/B&gt;– Integer indicating whether evaluation of the objective function is requested or&amp;nbsp;evaluation of a constraint is requested. If IACT is zero, then an objective&amp;nbsp;function evaluation is requested. If IACT is nonzero then the value if IACT&amp;nbsp;indicates the index of the constraint to evaluate. (Input)&lt;/P&gt;
&lt;P&gt;Now UNDER WHAT CONDITIONS NNLPF NEVER REQUESTS FOR OBJECTIVE FUNCTION?&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 15:27:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964865#M95509</guid>
      <dc:creator>suresh_p_1</dc:creator>
      <dc:date>2013-05-22T15:27:21Z</dc:date>
    </item>
    <item>
      <title>Please don't start new</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964866#M95510</link>
      <description>&lt;P&gt;Please don't start new threads for existing issues.&lt;/P&gt;
&lt;P&gt;I commented in your other thread that you should make sure the project property Fortran &amp;gt; External Procedures &amp;gt; Calling Convention is set to Default.&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 15:29:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964866#M95510</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2013-05-22T15:29:40Z</dc:date>
    </item>
    <item>
      <title>The problem appears to be</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964867#M95511</link>
      <description>&lt;P&gt;The problem appears to be with the NLP program, which in my opinion is not a robust NLP solver. It is based on a legacy code called DONLP2, which I did not have a good experience with and I don't know whether IMSL fixed all the bugs. Here, each call to FCN must yield either a constraint or the objective function. In maintaining constraint feasibility, the value of the objective function is not required, hence no calls with IACT=0 are needed. My suggestion would be to first solve a simple toy problem to make sure the IMSL routine works as required. Then, I would change TAUBND to zero in your code and make sure the initial guess for each variable is at least a distance of 1E-5*(1 + abs(X)) away from each bound. Looking at your output, it appears as though constraints have resulted in some kind of NaN error such as evaluating the log of a negative number. Finally, play with TAU0 setting it to a large value so that constraint feasibility is not strictly met at all iterations. Unfortunately, IMSL does not have a robust NLP solver. I don't have the latest IMSL and have stopped using it since CVF days because of compatibility issues.&lt;/P&gt;
&lt;P&gt;Also, I have found that using option /iface:cvf is necessary when linking to these legacy codes. The Intel compiler catches many errors that did not appear using g77, CVF etc. since it strictly adheres to the latest standards. Unfortunately, the developers of legacy codes did not use this compiler and their codes produced the correct output with these "errors" involving non-standard FORTRAN in place.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2013 21:44:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964867#M95511</guid>
      <dc:creator>avinashs</dc:creator>
      <dc:date>2013-07-15T21:44:51Z</dc:date>
    </item>
    <item>
      <title>[comment=avinashs]The problem</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964868#M95512</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;avinashs wrote:&lt;BR /&gt;The problem appears to be with the NLP program, which in my opinion is not a robust NLP solver....Unfortunately, IMSL does not have a robust NLP solver. I don't have the latest IMSL and have stopped using it since CVF days&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;
&lt;P&gt;This thread is mostly about using NNLPF, which is the constrained NLP solver supplied with current versions of IMSL. The routine supplied with the older IMSL 4 that came with CVF is a different routine. If you have found NNLPF to be "not robust", it is not clear what the reasons were. Or were you commenting about NCONF?&lt;/P&gt;
&lt;P&gt;No NLP solver, or for that matter no library routine, is likely to be robust w.r.t. being passed incorrect arguments. Secondly, NLP routines typically call user-provided routines for function, constraint and gradient evaluations, which gives scope for more errors than is usual for calling library routines with no call-backs.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2013 18:57:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Runtime-errors-when-using-D-NNLPF-routine-new-IMSL/m-p/964868#M95512</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2013-07-16T18:57:00Z</dc:date>
    </item>
  </channel>
</rss>

