source: git/factory/cf_factor.cc @ 95e3732

spielwiese
Last change on this file since 95e3732 was cb7d8e, checked in by Hans Schoenemann <hannes@…>, 5 years ago
selection in factorize(f,a)
  • Property mode set to 100644
File size: 18.9 KB
Line 
1/* emacs edit mode for this file is -*- C++ -*- */
2
3/**
4 *
5 * @file cf_factor.cc
6 *
7 * Interface to factorization and square free factorization algorithms.
8 *
9 * Used by: cf_irred.cc
10 *
11 * Header file: cf_algorithm.h
12 *
13**/
14
15
16#include "config.h"
17
18
19#include "cf_assert.h"
20
21#include "cf_defs.h"
22#include "canonicalform.h"
23#include "cf_iter.h"
24#include "fac_sqrfree.h"
25#include "cf_algorithm.h"
26#include "facFqFactorize.h"
27#include "facFqSquarefree.h"
28#include "cf_map.h"
29#include "facAlgExt.h"
30#include "facFactorize.h"
31#include "singext.h"
32#include "cf_util.h"
33
34#include "int_int.h"
35#ifdef HAVE_NTL
36#include "NTLconvert.h"
37#endif
38
39#include "factory/cf_gmp.h"
40#ifdef HAVE_FLINT
41#include "FLINTconvert.h"
42#endif
43
44//static bool isUnivariateBaseDomain( const CanonicalForm & f )
45//{
46//    CFIterator i = f;
47//    bool ok = i.coeff().inBaseDomain();
48//    i++;
49//    while ( i.hasTerms() && ( ok = ok && i.coeff().inBaseDomain() ) ) i++;
50//    return ok;
51//}
52
53void find_exp(const CanonicalForm & f, int * exp_f)
54{
55  if ( ! f.inCoeffDomain() )
56  {
57    int e=f.level();
58    CFIterator i = f;
59    if (e>=0)
60    {
61      if (i.exp() > exp_f[e]) exp_f[e]=i.exp();
62    }
63    for (; i.hasTerms(); i++ )
64    {
65      find_exp(i.coeff(), exp_f);
66    }
67  }
68}
69
70int find_mvar(const CanonicalForm & f)
71{
72  int mv=f.level();
73  int *exp_f=NEW_ARRAY(int,mv+1);
74  int i;
75  for(i=mv;i>0;i--) exp_f[i]=0;
76  find_exp(f,exp_f);
77  for(i=mv;i>0;i--)
78  {
79    if ((exp_f[i]>0) && (exp_f[i]<exp_f[mv]))
80    {
81      mv=i;
82    }
83  }
84  DELETE_ARRAY(exp_f);
85  return mv;
86}
87
88#if 1
89//#ifndef NOSTREAMIO
90void out_cf(const char *s1,const CanonicalForm &f,const char *s2)
91{
92  printf("%s",s1);
93  if (f.isZero()) printf("+0");
94  //else if (! f.inCoeffDomain() )
95  else if (! f.inBaseDomain() )
96  {
97    int l = f.level();
98    for ( CFIterator i = f; i.hasTerms(); i++ )
99    {
100      int e=i.exp();
101      if (i.coeff().isOne())
102      {
103        printf("+");
104        if (e==0) printf("1");
105        else
106        {
107          printf("v(%d)",l);
108          if (e!=1) printf("^%d",e);
109        }
110      }
111      else
112      {
113        out_cf("+(",i.coeff(),")");
114        if (e!=0)
115        {
116          printf("*v(%d)",l);
117          if (e!=1) printf("^%d",e);
118        }
119      }
120    }
121  }
122  else
123  {
124    if ( f.isImm() )
125    {
126      if (CFFactory::gettype()==GaloisFieldDomain)
127      {
128         long a= imm2int (f.getval());
129         if ( a == gf_q )
130           printf ("+%ld", a);
131         else  if ( a == 0L )
132           printf ("+1");
133         else  if ( a == 1L )
134           printf ("+%c",gf_name);
135         else
136         {
137           printf ("+%c",gf_name);
138           printf ("^%ld",a);
139         }
140      }
141      else
142        printf("+%ld",f.intval());
143    }
144    else
145    {
146    #ifdef NOSTREAMIO
147      if (f.inZ())
148      {
149        mpz_t m;
150        gmp_numerator(f,m);
151        char * str = new char[mpz_sizeinbase( m, 10 ) + 2];
152        str = mpz_get_str( str, 10, m );
153        puts(str);
154        delete[] str;
155        mpz_clear(m);
156      }
157      else if (f.inQ())
158      {
159        mpz_t m;
160        gmp_numerator(f,m);
161        char * str = new char[mpz_sizeinbase( m, 10 ) + 2];
162        str = mpz_get_str( str, 10, m );
163        puts(str);putchar('/');
164        delete[] str;
165        mpz_clear(m);
166        gmp_denominator(f,m);
167        str = new char[mpz_sizeinbase( m, 10 ) + 2];
168        str = mpz_get_str( str, 10, m );
169        puts(str);
170        delete[] str;
171        mpz_clear(m);
172      }
173    #else
174       std::cout << f;
175    #endif
176    }
177    //if (f.inZ()) printf("(Z)");
178    //else if (f.inQ()) printf("(Q)");
179    //else if (f.inFF()) printf("(FF)");
180    //else if (f.inPP()) printf("(PP)");
181    //else if (f.inGF()) printf("(PP)");
182    //else
183    if (f.inExtension()) printf("E(%d)",f.level());
184  }
185  printf("%s",s2);
186}
187void out_cff(CFFList &L)
188{
189  //int n = L.length();
190  CFFListIterator J=L;
191  int j=0;
192  for ( ; J.hasItem(); J++, j++ )
193  {
194    printf("F%d",j);out_cf(":",J.getItem().factor()," ^ ");
195    printf("%d\n", J.getItem().exp());
196  }
197}
198void test_cff(CFFList &L,const CanonicalForm & f)
199{
200  //int n = L.length();
201  CFFListIterator J=L;
202  CanonicalForm t=1;
203  int j=0;
204  if (!(L.getFirst().factor().inCoeffDomain()))
205    printf("first entry is not const\n");
206  for ( ; J.hasItem(); J++, j++ )
207  {
208    CanonicalForm tt=J.getItem().factor();
209    if (tt.inCoeffDomain() && (j!=0))
210      printf("other entry is const\n");
211    j=J.getItem().exp();
212    while(j>0) { t*=tt; j--; }
213  }
214  if (!(f-t).isZero()) { printf("problem:\n");out_cf("factor:",f," has problems\n");}
215}
216//#endif
217#endif
218
219bool isPurePoly_m(const CanonicalForm & f)
220{
221  if (f.inBaseDomain()) return true;
222  if (f.level()<0) return false;
223  for (CFIterator i=f;i.hasTerms();i++)
224  {
225    if (!isPurePoly_m(i.coeff())) return false;
226  }
227  return true;
228}
229bool isPurePoly(const CanonicalForm & f)
230{
231  if (f.level()<=0) return false;
232  for (CFIterator i=f;i.hasTerms();i++)
233  {
234    if (!(i.coeff().inBaseDomain())) return false;
235  }
236  return true;
237}
238
239
240/**
241 * get_max_degree_Variable returns Variable with
242 * highest degree. We assume f is *not* a constant!
243**/
244Variable
245get_max_degree_Variable(const CanonicalForm & f)
246{
247  ASSERT( ( ! f.inCoeffDomain() ), "no constants" );
248  int max=0, maxlevel=0, n=level(f);
249  for ( int i=1; i<=n; i++ )
250  {
251    if (degree(f,Variable(i)) >= max)
252    {
253      max= degree(f,Variable(i)); maxlevel= i;
254    }
255  }
256  return Variable(maxlevel);
257}
258
259/**
260 * get_Terms: Split the polynomial in the containing terms.
261 * getTerms: the real work is done here.
262**/
263void
264getTerms( const CanonicalForm & f, const CanonicalForm & t, CFList & result )
265{
266  if ( getNumVars(f) == 0 ) result.append(f*t);
267  else{
268    Variable x(level(f));
269    for ( CFIterator i=f; i.hasTerms(); i++ )
270      getTerms( i.coeff(), t*power(x,i.exp()), result);
271  }
272}
273CFList
274get_Terms( const CanonicalForm & f ){
275  CFList result,dummy,dummy2;
276  CFIterator i;
277  CFListIterator j;
278
279  if ( getNumVars(f) == 0 ) result.append(f);
280  else{
281    Variable _x(level(f));
282    for ( i=f; i.hasTerms(); i++ ){
283      getTerms(i.coeff(), 1, dummy);
284      for ( j=dummy; j.hasItem(); j++ )
285        result.append(j.getItem() * power(_x, i.exp()));
286
287      dummy= dummy2; // have to initalize new
288    }
289  }
290  return result;
291}
292
293
294/**
295 * homogenize homogenizes f with Variable x
296**/
297CanonicalForm
298homogenize( const CanonicalForm & f, const Variable & x)
299{
300#if 0
301  int maxdeg=totaldegree(f), deg;
302  CFIterator i;
303  CanonicalForm elem, result(0);
304
305  for (i=f; i.hasTerms(); i++)
306  {
307    elem= i.coeff()*power(f.mvar(),i.exp());
308    deg = totaldegree(elem);
309    if ( deg < maxdeg )
310      result += elem * power(x,maxdeg-deg);
311    else
312      result+=elem;
313  }
314  return result;
315#else
316  CFList Newlist, Termlist= get_Terms(f);
317  int maxdeg=totaldegree(f), deg;
318  CFListIterator i;
319  CanonicalForm elem, result(0);
320
321  for (i=Termlist; i.hasItem(); i++)
322  {
323    elem= i.getItem();
324    deg = totaldegree(elem);
325    if ( deg < maxdeg )
326      Newlist.append(elem * power(x,maxdeg-deg));
327    else
328      Newlist.append(elem);
329  }
330  for (i=Newlist; i.hasItem(); i++) // rebuild
331    result += i.getItem();
332
333  return result;
334#endif
335}
336
337CanonicalForm
338homogenize( const CanonicalForm & f, const Variable & x, const Variable & v1, const Variable & v2)
339{
340#if 0
341  int maxdeg=totaldegree(f), deg;
342  CFIterator i;
343  CanonicalForm elem, result(0);
344
345  for (i=f; i.hasTerms(); i++)
346  {
347    elem= i.coeff()*power(f.mvar(),i.exp());
348    deg = totaldegree(elem);
349    if ( deg < maxdeg )
350      result += elem * power(x,maxdeg-deg);
351    else
352      result+=elem;
353  }
354  return result;
355#else
356  CFList Newlist, Termlist= get_Terms(f);
357  int maxdeg=totaldegree(f), deg;
358  CFListIterator i;
359  CanonicalForm elem, result(0);
360
361  for (i=Termlist; i.hasItem(); i++)
362  {
363    elem= i.getItem();
364    deg = totaldegree(elem,v1,v2);
365    if ( deg < maxdeg )
366      Newlist.append(elem * power(x,maxdeg-deg));
367    else
368      Newlist.append(elem);
369  }
370  for (i=Newlist; i.hasItem(); i++) // rebuild
371    result += i.getItem();
372
373  return result;
374#endif
375}
376
377VAR int singular_homog_flag=1;
378
379int cmpCF( const CFFactor & f, const CFFactor & g )
380{
381  if (f.exp() > g.exp()) return 1;
382  if (f.exp() < g.exp()) return 0;
383  if (f.factor() > g.factor()) return 1;
384  return 0;
385}
386
387/**
388 * factorization over \f$ F_p \f$ or \f$ Q \f$
389**/
390CFFList factorize ( const CanonicalForm & f, bool issqrfree )
391{
392  if ( f.inCoeffDomain() )
393        return CFFList( f );
394#ifndef NOASSERT
395  Variable a;
396  ASSERT (!hasFirstAlgVar (f, a), "f has an algebraic variable use factorize \
397          ( const CanonicalForm & f, const Variable & alpha ) instead");
398#endif
399  //out_cf("factorize:",f,"==================================\n");
400  if (! f.isUnivariate() )
401  {
402    if ( singular_homog_flag && f.isHomogeneous())
403    {
404      Variable xn = get_max_degree_Variable(f);
405      int d_xn = degree(f,xn);
406      CFMap n;
407      CanonicalForm F = compress(f(1,xn),n);
408      CFFList Intermediatelist;
409      Intermediatelist = factorize(F);
410      CFFList Homoglist;
411      CFFListIterator j;
412      for ( j=Intermediatelist; j.hasItem(); j++ )
413      {
414        Homoglist.append(
415            CFFactor( n(j.getItem().factor()), j.getItem().exp()) );
416      }
417      CFFList Unhomoglist;
418      CanonicalForm unhomogelem;
419      for ( j=Homoglist; j.hasItem(); j++ )
420      {
421        unhomogelem= homogenize(j.getItem().factor(),xn);
422        Unhomoglist.append(CFFactor(unhomogelem,j.getItem().exp()));
423        d_xn -= (degree(unhomogelem,xn)*j.getItem().exp());
424      }
425      if ( d_xn != 0 ) // have to append xn^(d_xn)
426        Unhomoglist.append(CFFactor(CanonicalForm(xn),d_xn));
427      if(isOn(SW_USE_NTL_SORT)) Unhomoglist.sort(cmpCF);
428      return Unhomoglist;
429    }
430  }
431  CFFList F;
432  if ( getCharacteristic() > 0 )
433  {
434    if (f.isUnivariate())
435    {
436#ifdef HAVE_NTL
437#ifdef HAVE_FLINT
438      if (degree (f) < 300)
439      {
440        nmod_poly_t f1;
441        convertFacCF2nmod_poly_t (f1, f);
442        nmod_poly_factor_t result;
443        nmod_poly_factor_init (result);
444        mp_limb_t leadingCoeff= nmod_poly_factor (result, f1);
445        F= convertFLINTnmod_poly_factor2FacCFFList (result, leadingCoeff, f.mvar());
446        nmod_poly_factor_clear (result);
447        nmod_poly_clear (f1);
448      }
449      else
450#endif
451      {
452        // USE NTL
453        if (getCharacteristic()!=2)
454        {
455          if (fac_NTL_char != getCharacteristic())
456          {
457            fac_NTL_char = getCharacteristic();
458            zz_p::init(getCharacteristic());
459          }
460
461          // convert to NTL
462          zz_pX f1=convertFacCF2NTLzzpX(f);
463          zz_p leadcoeff = LeadCoeff(f1);
464
465          //make monic
466          f1=f1 / LeadCoeff(f1);
467          // factorize
468          vec_pair_zz_pX_long factors;
469          CanZass(factors,f1);
470
471          F=convertNTLvec_pair_zzpX_long2FacCFFList(factors,leadcoeff,f.mvar());
472          //test_cff(F,f);
473        }
474        else /*getCharacteristic()==2*/
475        {
476          // Specialcase characteristic==2
477          if (fac_NTL_char != 2)
478          {
479            fac_NTL_char = 2;
480            zz_p::init(2);
481          }
482          // convert to NTL using the faster conversion routine for characteristic 2
483          GF2X f1=convertFacCF2NTLGF2X(f);
484          // no make monic necessary in GF2
485          //factorize
486          vec_pair_GF2X_long factors;
487          CanZass(factors,f1);
488
489          // convert back to factory again using the faster conversion routine for vectors over GF2X
490          F=convertNTLvec_pair_GF2X_long2FacCFFList(factors,LeadCoeff(f1),f.mvar());
491        }
492      }
493#else
494      // Use Factory without NTL
495      factoryError ("univariate factorization depends on NTL(missing)");
496      return CFFList (CFFactor (f, 1));
497#endif //HAVE_NTL
498    }
499    else
500    {
501      #ifdef HAVE_NTL
502      if (issqrfree)
503      {
504        CFList factors;
505        Variable alpha;
506        if (CFFactory::gettype() == GaloisFieldDomain)
507          factors= GFSqrfFactorize (f);
508        else
509          factors= FpSqrfFactorize (f);
510        for (CFListIterator i= factors; i.hasItem(); i++)
511          F.append (CFFactor (i.getItem(), 1));
512      }
513      else
514      {
515        Variable alpha;
516        if (CFFactory::gettype() == GaloisFieldDomain)
517          F= GFFactorize (f);
518        else
519          F= FpFactorize (f);
520      }
521      #else
522      ASSERT( f.isUnivariate(), "multivariate factorization depends on NTL(missing)" );
523      factoryError ("multivariate factorization depends on NTL(missing)");
524      return CFFList (CFFactor (f, 1));
525      #endif
526    }
527  }
528  else
529  {
530    bool on_rational = isOn(SW_RATIONAL);
531    On(SW_RATIONAL);
532    CanonicalForm cd = bCommonDen( f );
533    CanonicalForm fz = f * cd;
534    Off(SW_RATIONAL);
535    if ( f.isUnivariate() )
536    {
537      #ifdef HAVE_NTL
538      //USE NTL
539      CanonicalForm ic=icontent(fz);
540      fz/=ic;
541      ZZ c;
542      vec_pair_ZZX_long factors;
543      //factorize the converted polynomial
544      factor(c,factors,convertFacCF2NTLZZX(fz));
545
546      //convert the result back to Factory
547      F=convertNTLvec_pair_ZZX_long2FacCFFList(factors,c,fz.mvar());
548      if ( ! ic.isOne() )
549      {
550        if ( F.getFirst().factor().inCoeffDomain() )
551        {
552          CFFactor new_first( F.getFirst().factor() * ic );
553          F.removeFirst();
554          F.insert( new_first );
555        }
556        else
557          F.insert( CFFactor( ic ) );
558      }
559      else
560      {
561        if ( !F.getFirst().factor().inCoeffDomain() )
562        {
563          CFFactor new_first( 1 );
564          F.insert( new_first );
565        }
566      }
567      #else
568      factoryError ("univariate factorization over Z depends on NTL(missing)");
569      return CFFList (CFFactor (f, 1));
570      #endif
571    }
572    else
573    {
574      #ifdef HAVE_NTL
575      On (SW_RATIONAL);
576      if (issqrfree)
577      {
578        CFList factors;
579        factors= ratSqrfFactorize (fz);
580        for (CFListIterator i= factors; i.hasItem(); i++)
581          F.append (CFFactor (i.getItem(), 1));
582      }
583      else
584        F = ratFactorize (fz);
585      Off (SW_RATIONAL);
586      #else
587      factoryError ("multivariate factorization  depends on NTL(missing)");
588      return CFFList (CFFactor (f, 1));
589      #endif
590    }
591
592    if ( on_rational )
593      On(SW_RATIONAL);
594    if ( ! cd.isOne() )
595    {
596      if ( F.getFirst().factor().inCoeffDomain() )
597      {
598        CFFactor new_first( F.getFirst().factor() / cd );
599        F.removeFirst();
600        F.insert( new_first );
601      }
602      else
603      {
604        F.insert( CFFactor( 1/cd ) );
605      }
606    }
607  }
608
609  //out_cff(F);
610  if(isOn(SW_USE_NTL_SORT)) F.sort(cmpCF);
611  return F;
612}
613
614/**
615 * factorization over \f$ F_p(\alpha) \f$ or \f$ Q(\alpha) \f$
616**/
617CFFList factorize ( const CanonicalForm & f, const Variable & alpha )
618{
619  if ( f.inCoeffDomain() )
620    return CFFList( f );
621  //out_cf("factorize:",f,"==================================\n");
622  //out_cf("mipo:",getMipo(alpha),"\n");
623
624  CFFList F;
625  ASSERT( alpha.level() < 0 && getReduce (alpha), "not an algebraic extension" );
626#ifndef NOASSERT
627  Variable beta;
628  if (hasFirstAlgVar(f, beta))
629    ASSERT (beta == alpha, "f has an algebraic variable that \
630                            does not coincide with alpha");
631#endif
632  int ch=getCharacteristic();
633  if (ch>0)
634  {
635    if (f.isUnivariate()&& (ch>0))
636    {
637#ifdef HAVE_NTL
638      //USE NTL
639      if (ch>2)
640      {
641#if (HAVE_FLINT && __FLINT_RELEASE >= 20400)
642        nmod_poly_t FLINTmipo, leadingCoeff;
643        fq_nmod_ctx_t fq_con;
644
645        nmod_poly_init (FLINTmipo, getCharacteristic());
646        nmod_poly_init (leadingCoeff, getCharacteristic());
647        convertFacCF2nmod_poly_t (FLINTmipo, getMipo (alpha));
648
649        fq_nmod_ctx_init_modulus (fq_con, FLINTmipo, "Z");
650        fq_nmod_poly_t FLINTF;
651        convertFacCF2Fq_nmod_poly_t (FLINTF, f, fq_con);
652        fq_nmod_poly_factor_t res;
653        fq_nmod_poly_factor_init (res, fq_con);
654        fq_nmod_poly_factor (res, leadingCoeff, FLINTF, fq_con);
655        F= convertFLINTFq_nmod_poly_factor2FacCFFList (res, f.mvar(), alpha, fq_con);
656        F.insert (CFFactor (Lc (f), 1));
657
658        fq_nmod_poly_factor_clear (res, fq_con);
659        fq_nmod_poly_clear (FLINTF, fq_con);
660        nmod_poly_clear (FLINTmipo);
661        nmod_poly_clear (leadingCoeff);
662        fq_nmod_ctx_clear (fq_con);
663#else
664        // First all cases with characteristic !=2
665        // set remainder
666        if (fac_NTL_char != getCharacteristic())
667        {
668          fac_NTL_char = getCharacteristic();
669          zz_p::init(getCharacteristic());
670        }
671
672        // set minimal polynomial in NTL
673        zz_pX minPo=convertFacCF2NTLzzpX(getMipo(alpha));
674        zz_pE::init (minPo);
675
676        // convert to NTL
677        zz_pEX f1=convertFacCF2NTLzz_pEX(f,minPo);
678        zz_pE leadcoeff= LeadCoeff(f1);
679
680        //make monic
681        f1=f1 / leadcoeff;
682
683        // factorize using NTL
684        vec_pair_zz_pEX_long factors;
685        CanZass(factors,f1);
686
687        // return converted result
688        F=convertNTLvec_pair_zzpEX_long2FacCFFList(factors,leadcoeff,f.mvar(),alpha);
689#endif
690      }
691      else if (/*getCharacteristic()*/ch==2)
692      {
693        // special case : GF2
694
695        // remainder is two ==> nothing to do
696
697        // set minimal polynomial in NTL using the optimized conversion routines for characteristic 2
698        GF2X minPo=convertFacCF2NTLGF2X(getMipo(alpha,f.mvar()));
699        GF2E::init (minPo);
700
701        // convert to NTL again using the faster conversion routines
702        GF2EX f1;
703        if (isPurePoly(f))
704        {
705          GF2X f_tmp=convertFacCF2NTLGF2X(f);
706          f1=to_GF2EX(f_tmp);
707        }
708        else
709          f1=convertFacCF2NTLGF2EX(f,minPo);
710
711        // make monic (in Z/2(a))
712        GF2E f1_coef=LeadCoeff(f1);
713        MakeMonic(f1);
714
715        // factorize using NTL
716        vec_pair_GF2EX_long factors;
717        CanZass(factors,f1);
718
719        // return converted result
720        F=convertNTLvec_pair_GF2EX_long2FacCFFList(factors,f1_coef,f.mvar(),alpha);
721      }
722#else
723      factoryError ("univariate factorization  depends on NTL(missing)");
724      return CFFList (CFFactor (f, 1));
725#endif //HAVE_NTL
726    }
727    else
728    {
729#ifdef HAVE_NTL
730      F= FqFactorize (f, alpha);
731#else
732      ASSERT( f.isUnivariate(), "multivariate factorization depends on NTL(missing)" );
733      factoryError ("multivariate factorization  depends on NTL(missing)");
734      return CFFList (CFFactor (f, 1));
735#endif
736    }
737  }
738  else // Q(a)[x]
739  {
740    if (f.isUnivariate())
741    {
742      F= AlgExtFactorize (f, alpha);
743    }
744    else //Q(a)[x1,...,xn]
745    {
746#ifdef HAVE_NTL
747      F= ratFactorize (f, alpha);
748#else
749      ASSERT( f.isUnivariate(), "multivariate factorization  depends on NTL(missing)" );
750      factoryError ("multivariate factorization  depends on NTL(missing)");
751      return CFFList (CFFactor (f, 1));
752#endif
753    }
754  }
755  if(isOn(SW_USE_NTL_SORT)) F.sort(cmpCF);
756  return F;
757}
758
759/**
760 * squarefree factorization
761**/
762CFFList sqrFree ( const CanonicalForm & f, bool sort )
763{
764//    ASSERT( f.isUnivariate(), "multivariate factorization not implemented" );
765    CFFList result;
766
767    if ( getCharacteristic() == 0 )
768        result = sqrFreeZ( f );
769    else
770    {
771        Variable alpha;
772        if (hasFirstAlgVar (f, alpha))
773          result = FqSqrf( f, alpha );
774        else
775          result= FpSqrf (f);
776    }
777    if (sort)
778    {
779      CFFactor buf= result.getFirst();
780      result.removeFirst();
781      result= sortCFFList (result);
782      result.insert (buf);
783    }
784    return result;
785}
786
Note: See TracBrowser for help on using the repository browser.