Go to the source code of this file.
Functions | |
| void | rtmraimcycle (const int &Msize, const int &mmax, const int &mrastep, int &imcycle) |
|
||||||||||||||||||||
|
Definition at line 11 of file rtmraimcycle.cpp. References rtmraimcycle_(). Referenced by Rtmra< Data_t, scalar >.imcycle(), and Rtmra< Data_t, array >.imcycle().
00016 {
00017
00018 #ifdef STORM_USEF
00019
00020 rtmraimcycle_( &Msize, &mmax, &mrastep, &imcycle );
00021
00022 #else
00023
00024 int itmp = (1<<mmax) - 1;
00025 itmp = itmp - ( itmp & (mrastep+1) );
00026 imcycle = 0;
00027 while ( ( itmp & (1<<imcycle) ) && ( imcycle < mmax ) ) { imcycle++; }
00028
00029 #endif
00030
00031 }
|
1.3.6