[ << ] | [ < ] | [ Up ] | [ > ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
2.4.7 First Level for Spreading -fsp <level>
-fsp <level>
: it can be useful to set a
first level to begin equality spreading. Particularly when using
scattering functions, the user may want to see the scattering dimension
values instead of spreading or hiding them. If user has set a
spreading, level
is
the first level to start it. Default value is 1.
/* Generated using a given input file and option -fsp 1 */ for (j=0;j<=N+M;j++) { S1(i = N) ; } for (j=0;j<=N+M;j++) { S1(i = M) ; }
/* Generated using the same input file but option -fsp 2 */ c1 = N ; for (j=0;j<=c1+M;j++) { S1(i = c1) ; } c1 = M ; for (j=0;j<=N+c1;j++) { S1(i = c1) ; }
This document was generated on August 20, 2013 using texi2html 5.0.