Home
last modified time | relevance | path

Searched refs:DegreeFFE (Results 1 – 25 of 37) sorted by relevance

12

/dports/math/gap/gap-4.11.0/lib/
H A Dffe.gi112 #M DegreeFFE( <vector> )
114 InstallOtherMethod( DegreeFFE,
127 deg:= DegreeFFE( list[1] );
139 #M DegreeFFE( <matrix> )
141 InstallOtherMethod( DegreeFFE,
146 deg:= DegreeFFE( mat[1] );
163 if DegreeFFE( n ) = 1 and DegreeFFE( r ) = 1 then
821 d := DegreeFFE(z);
938 deg:=DegreeFFE(ffe);
973 d:= DegreeFFE( elms );
[all …]
H A Dffe.gd471 #A DegreeFFE( <z> )
472 #A DegreeFFE( <vec> )
473 #A DegreeFFE( <mat> )
475 ## <#GAPDoc Label="DegreeFFE">
477 ## <Attr Name="DegreeFFE" Arg='z' Label="for a FFE"/>
478 ## <Meth Name="DegreeFFE" Arg='vec' Label="for a vector of FFEs"/>
490 ## gap> DegreeFFE( Z( 16 )^10 );
492 ## gap> DegreeFFE( Z( 16 )^11 );
494 ## gap> DegreeFFE( [ Z(2^13), Z(2^10) ] );
501 DeclareAttribute( "DegreeFFE", IsFFE );
[all …]
H A Dffeconway.gi412 d1 := DegreeFFE(x);
546 #M DegreeFFE( <ffe> )
555 return DegreeFFE(y);
610 d2 := DegreeFFE(x2);
624 d1 := DegreeFFE(x1);
648 d1 := DegreeFFE(x1);
654 d2 := DegreeFFE(x2);
1346 d := DegreeFFE(z);
1349 dy := DegreeFFE(y);
1401 d := DegreeFFE(z);
[all …]
H A Dteachmod.g26 d:=DegreeFFE(x);
41 d:=DegreeFFE(x);
H A Dvec8bit.gi251 #M DegreeFFE( <vector> )
264 InstallOtherMethod( DegreeFFE, "for 8 bit vectors", true,
274 deg := DegreeFFE( vec[1] );
276 deg := LcmInt( deg, DegreeFFE( vec[i] ) );
337 if DegreeFFE(a) > 8 or IsLockedRepresentationVector(b) then
372 if DegreeFFE(b) > 8 or IsLockedRepresentationVector(a) then
H A Dzmodnz.gi186 return DegreeFFE( y ) = 1 and x![1] = IntFFE( y );
194 return DegreeFFE( x ) = 1 and y![1] = IntFFE( x );
555 #M DegreeFFE( <obj> ) . . . . . . . . . . . . . . . . . . for `IsZmodpZObj'
557 InstallMethod( DegreeFFE,
1160 if DegreeFFE( ffe ) = 1 then
H A Dffe.g67 InstallMethod( DegreeFFE,
H A Dmat8bit.gi293 d := DegreeFFE(x);
299 d := Lcm(d, DegreeFFE(x));
H A Dgrpffmat.gi47 deg := LcmInt( deg, DegreeFFE(j) );
73 deg := LcmInt( deg, DegreeFFE(j) );
H A Dmodulrow.gi346 if not (IsFFE(i) and IsInt(l/DegreeFFE(i))) then
/dports/math/gap/gap-4.11.0/src/
H A Dfinfield.c345 UInt DegreeFFE ( in DegreeFFE() function
380 return INTOBJ_INT( DegreeFFE( ffe ) ); in FuncDEGREE_FFE_DEFAULT()
632 fX = CommonFF( fL, DegreeFFE(opL), fR, DegreeFFE(opR) ); in SumFFEFFE()
791 fX = CommonFF( fL, DegreeFFE(opL), fR, DegreeFFE(opR) ); in DiffFFEFFE()
914 fX = CommonFF( fL, DegreeFFE(opL), fR, DegreeFFE(opR) ); in ProdFFEFFE()
1074 fX = CommonFF( fL, DegreeFFE(opL), fR, DegreeFFE(opR) ); in QuoFFEFFE()
1303 fX = CommonFF( fZ, DegreeFFE(opZ), fR, DegreeFFE(opR) ); in FuncLOG_FFE_DEFAULT()
H A Dvecffe.c702 if ((DEGR_FF(fld) % DegreeFFE(mult)) != 0) in FuncADD_ROWVECTOR_VECFFES_3()
779 if ((DEGR_FF(fld) % DegreeFFE(mult)) != 0) in FuncMULT_VECTOR_VECFFES()
939 deg = DegreeFFE(elm); in FuncSMALLEST_FIELD_VECFFE()
945 deg2 = DegreeFFE(elm); in FuncSMALLEST_FIELD_VECFFE()
H A Dfinfield.h399 UInt DegreeFFE(Obj ffe);
H A Dvec8bit.c732 assert(d % DegreeFFE(elt) == 0); in ConvVec8Bit()
886 assert(d % DegreeFFE(elt) == 0); in NewVec8Bit()
1605 d1 = DegreeFFE(mul); in FuncMULT_VECTOR_VEC8BITS()
1665 d2 = DegreeFFE(mul); in FuncADD_ROWVECTOR_VEC8BITS_5()
1725 d2 = DegreeFFE(mul); in FuncADD_ROWVECTOR_VEC8BITS_3()
2940 if (d % DegreeFFE(elm) != 0) { in ASS_VEC8BIT()
2943 DegreeFFE(elm)); in ASS_VEC8BIT()
4336 d2 = DegreeFFE(mult); in FuncADD_COEFFS_VEC8BIT_3()
/dports/math/gap/gap-4.11.0/tst/testinstall/
H A Dzmodnz.tst104 gap> DegreeFFE( z1 ); DegreeFFE( z2 ); DegreeFFE( z3 );
191 gap> DegreeFFE( z1 ); DegreeFFE( z2 ); DegreeFFE( z3 );
H A Dffe.tst412 gap> DegreeFFE( [Z(2), Z(4)]);
414 gap> DegreeFFE( [[Z(2),Z(8)],[Z(2), Z(4)]]);
/dports/math/gap/gap-4.11.0/tst/testbugfix/
H A D2007-03-12-t00173.tst4 gap> DegreeFFE(z);
/dports/math/gap/gap-4.11.0/hpcgap/lib/
H A Dffeconway.gi440 d1 := DegreeFFE(x);
574 #M DegreeFFE( <ffe> )
583 return DegreeFFE(y);
638 d2 := DegreeFFE(x2);
652 d1 := DegreeFFE(x1);
676 d1 := DegreeFFE(x1);
682 d2 := DegreeFFE(x2);
1376 d := DegreeFFE(z);
1379 dy := DegreeFFE(y);
1431 d := DegreeFFE(z);
[all …]
H A Dvec8bit.gi268 #M DegreeFFE( <vector> )
281 InstallOtherMethod( DegreeFFE, "for 8 bit vectors", true,
291 deg := DegreeFFE( vec[1] );
293 deg := LcmInt( deg, DegreeFFE( vec[i] ) );
354 if DegreeFFE(a) > 8 or IsLockedRepresentationVector(b) then
388 if DegreeFFE(b) > 8 or IsLockedRepresentationVector(a) then
/dports/math/gap/gap-4.11.0/pkg/Browse/app/
H A Dmatdisp.g234 deg:= Lcm( List( m, DegreeFFE ) );
260 if DegreeFFE( val ) = 1 then
319 deg:= Lcm( List( m, DegreeFFE ) );
/dports/math/gap/gap-4.11.0/pkg/cvec-2.7.4/
H A DTODO41 Fix DegreeFFE according to documentation -> really find smallest possible!
/dports/math/gap/gap-4.11.0/pkg/cvec-2.7.4/doc/
H A Dcvec.toc69 \contentsline {subsection}{\numberline {4.6.4}\leavevmode {\color {Chapter }DegreeFFE (cvec)}}{22}{…
131 \contentsline {subsection}{\numberline {5.6.3}\leavevmode {\color {Chapter }DegreeFFE (cmat)}}{32}{…
/dports/math/gap/gap-4.11.0/pkg/spinsym-1.5.2/gap/
H A Dmtx.gi112 info := ZevData( p ^ DegreeFFE( mat ), n );
/dports/math/gap/gap-4.11.0/pkg/cvec-2.7.4/src/
H A Dcvec.c530 DegreeFFE(o) == 1) { in INTREP_TO_CVEC()
561 (d % DegreeFFE(o) == 0)) { in INTREP_TO_CVEC()
662 (d % DegreeFFE(e)) != 0) { in FFELI_TO_INTLI()
1452 if (CHAR_FF(FLD_FFE(s)) == p && (d % DegreeFFE(s)) == 0) { in prepare_scalar()
/dports/math/gap/gap-4.11.0/pkg/fining/lib/
H A Dgroup.gi1063 #O DegreeFFE( <el> )
1067 InstallOtherMethod( DegreeFFE,
1076 #O DegreeFFE( <el> )
1080 InstallOtherMethod( DegreeFFE,

12