Difference between revisions of "Error Messages/40254"

(Created page with '= Error Message Examples = In call to function NlpDefine, the seventh parameter, X, should not be specified more than once. = Cause = You have specified the same paramete…')
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
= Error Message Examples =
+
[[Category: Error messages]]
  
In call to function [[NlpDefine]], the seventh parameter, X, should not be specified more than once.
+
== Error message examples ==
  
= Cause =
+
:<code>''In call to function NlpDefine, the seventh parameter, «X», should not be specified more than once.''</code>
 +
 
 +
== Cause ==
  
 
You have specified the same parameter more than once on a function call.
 
You have specified the same parameter more than once on a function call.
Line 9: Line 11:
 
The following call to [[NlpDefine]] would trigger this error:
 
The following call to [[NlpDefine]] would trigger this error:
  
<Code>NlpDefine(Vars:Dimensions, X:Dimensions, obj: SurfaceArea, lhs:Volume, sense: Sense, rhs: MaxVolume, X:Dimensions)</Code>
+
:<code>NlpDefine(Vars: Dimensions, X: Dimensions, obj: SurfaceArea, lhs: Volume, sense: Sense, rhs: MaxVolume, X: Dimensions)</Code>
  
= Remedies =
+
== Remedies ==
  
 
Remove the parameter specified more than once.
 
Remove the parameter specified more than once.
  
<br><comments />
+
==See Also==
 +
* [[NlpDefine]]
 +
* [[DefineOptimization]]
 +
* [[Function calls and parameters]]

Latest revision as of 19:27, 24 March 2016


Error message examples

In call to function NlpDefine, the seventh parameter, «X», should not be specified more than once.

Cause

You have specified the same parameter more than once on a function call.

The following call to NlpDefine would trigger this error:

NlpDefine(Vars: Dimensions, X: Dimensions, obj: SurfaceArea, lhs: Volume, sense: Sense, rhs: MaxVolume, X: Dimensions)

Remedies

Remove the parameter specified more than once.

See Also

Comments


You are not allowed to post comments.