1

Here is an example of checking CCZ-equivalence. How to rewrite the following function CF from Magma to GAP-system?

p=2;n=6;
function CF(f)
    M:=Matrix(  2*n+1, p^n,  
               [1: x in GF]    
         cat   [Trace(a^i * x): x in GF, i in [1..n]]   
         cat   [Trace(a^i * f(x)): x in GF, i in [1..n]]);
    return LinearCode( M );
end function;
f1:=func<x | x^3 >;
CF(f1);
talonmies
  • 70,661
  • 34
  • 192
  • 269
Konstantin
  • 11
  • 1

0 Answers0