Converted Inputs
Previous
Top
Next
For each input you want to optimize you must create a variable of the same name, and then prefix the input name with
I_
, as seen here:
Before:
inputs
:
Len1( 15 ),
Len2( 20 );
After:
{_____CONVERTED INPUTS__}
inputs:
I_Len1( 15 ),
I_Len2( 20 );
Vars:
Len1( 15 ),
Len2( 20 );
This is only necessary for the inputs you want to optimize. The default values of the new variables don't matter.