Go to the source code of this file.
Functions | |
| void | rtrsmramcyclers (const int &Msize, const int &mmax, const int &mrastep, int &mcyclers) |
|
||||||||||||||||||||
|
Definition at line 11 of file rtrsmramcyclers.cpp. References rtrsmramcyclers_().
00017 {
00018 #ifdef STORM_USEF
00019 rtrsmramcyclers_(
00020 &Msize,
00021 &mmax,
00022 &mrastep,
00023 &mcyclers
00024 );
00025 #else
00026 mcyclers = 0;
00027 while ( ( mrastep & (1<<mcyclers) ) && ( mcyclers < mmax ) ) { mcyclers++; }
00028 mcyclers++;
00029 if ( ( mrastep < (1<<mcyclers) ) || ( mcyclers > mmax ) ) { mcyclers = 0; }
00030 #endif
00031 }
|
1.3.6