<![CDATA[ ... ]]> tag is an escape indicator. This
will ensure that any special characters in your inputs (such as <, >,
&, etc.) will be interpreted correctly.
For email, send this file as the message body or as a plain text attachment to
For XML-RPC, you need to submit the contents of this file to NEOS with the
submitJob() method, and retrieve the results with the getResults() method. Go here for more information on using the XML-RPC interface to NEOS.
<document>
<category>bco</category>
<solver>TRON</solver>
<inputMethod>FORTRAN</inputMethod>
<n><![CDATA[
...Insert Value Here...
]]></n>
<nf><![CDATA[
...Insert Value Here...
]]></nf>
<initpt><![CDATA[
...Insert Value Here...
]]></initpt>
<fcn><![CDATA[
...Insert Value Here...
]]></fcn>
<xbound><![CDATA[
...Insert Value Here...
]]></xbound>
<fatol><![CDATA[
...Insert Value Here...
]]></fatol>
<frtol><![CDATA[
...Insert Value Here...
]]></frtol>
<gtol><![CDATA[
...Insert Value Here...
]]></gtol>
<fmin><![CDATA[
...Insert Value Here...
]]></fmin>
<comments><![CDATA[
...Insert Value Here...
]]></comments>
</document>
subroutine initpt(n,x)
n - integer (input)
number of variables
x - double precision, length n (output)
starting point
subroutine fcn(n,x,nf,fvec)
n - integer (input)
number of variables
x - double precision, length n (input)
vector of variables
nf - integer (input)
number of element functions
fvec - double precision, length nf (output)
element functions at x
subroutine xbound(n,xl,xu)
n - integer (input)
number of variables
xl - double precision, length n (output)
lower bound
xu - double precision, length n (output)
upper bound
(If x(i) has no lower bound, then do not assign a value to xl(i), similarly
if x(i) has no upper bound, then xu(i) should not be set.)