Data editing > Expressions > Speeding up large programs
 
Speeding up large programs
Quick reference
To speed up your Quantum program by converting expressions of the form c(1,4)=$1234$ into C in a more efficient way, type:
inline n
where n is the maximum field width to be converted in this manner. This statement must appear at the start of the edit.
More information
If you have a large edit, you can make it faster to run by including the inline statement in your edit. This instructs the Quantum compiler to convert expressions of the form c(1,4)=$1234$ into statements in the C programming language in a different way to the way it normally does. You need not worry about these different methods of conversion, apart from deciding whether or not to use them.
Example
inline 6
This statement says that fields of six columns or less should be converted in the special way rather than in the normal way.
See also
Expressions