Experiments with variable permutation.

This commit is contained in:
Alan Mishchenko 2011-11-06 08:26:30 -08:00
parent cb5be5118b
commit 6a939b6382
1 changed files with 2 additions and 2 deletions

View File

@ -252,8 +252,8 @@ word Tf ( word f, int n)
return f;
else
{
int x = (int)pow(2,n-1);
// int x;
// int x = (int)pow(2,n-1);
int x;
x = (1 << (n-1));
return ( M (Tf( (f << x) >> x, n-1), Tf( (f >> x), n-1), x) ); //def. of M just below the function
}