Changeset 14b690e in git


Ignore:
Timestamp:
Mar 13, 2014, 5:07:54 PM (10 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
e102d4ec06976b47d6c651423092633b88f744b2
Parents:
b9cb8c8a040ef87acfc952d2d3984a3574c8d888
Message:
fix typo
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/cf_factor.cc

    rb9cb8c r14b690e  
    503503        if (CFFactory::gettype() == GaloisFieldDomain)
    504504          factors= GFSqrfFactorize (f);
    505         else if (hasFirstAlgVar (f, alpha))
    506           factors= FqSqrfFactorize (f, alpha);
    507505        else
    508506          factors= FpSqrfFactorize (f);
     
    515513        if (CFFactory::gettype() == GaloisFieldDomain)
    516514          F= GFFactorize (f);
    517         else if (hasFirstAlgVar (f, alpha))
    518           F= FqFactorize (f, alpha);
    519515        else
    520516          F= FpFactorize (f);
     
    625621  Variable beta;
    626622  if (hasFirstAlgVar(f, beta))
    627     ASSERT (hasFirstAlgVar (f, beta) != alpha, "f has an algebraic variable that \
    628     does not coincide with alpha");
     623    ASSERT (beta == alpha, "f has an algebraic variable that \
     624                            does not coincide with alpha");
    629625#endif
    630626  int ch=getCharacteristic();
Note: See TracChangeset for help on using the changeset viewer.