Changeset c53308 in git


Ignore:
Timestamp:
Oct 3, 2014, 5:57:58 PM (10 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
fc5cd7a315afd36382127c7f65c59c4543b58d96
Parents:
d2c687e51cd1c5a8331e347267ee0939a40ed433
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2014-10-03 17:57:58+02:00
git-committer:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2014-10-03 18:02:04+02:00
Message:
fix: tr. #649 (charset)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/cfCharSets.cc

    rd2c687 rc53308  
    550550        {  // search for a non linear elem
    551551          qs= facAlgFunc2 (i.getItem(), as);
    552           if (qs.getFirst().factor().inCoeffDomain())
    553             qs.removeFirst();
    554           if (qs.length() > 1 || qs.getFirst().exp() > 1)
    555           { //found elem is reducible
    556             reducible= i.getItem();
    557             indexRed= nr + 1;
    558             break;
    559           }
     552          if (qs.length() > 0)
     553          {
     554            if (qs.getFirst().factor().inCoeffDomain())
     555              qs.removeFirst();
     556            if (qs.length() > 1 || qs.getFirst().exp() > 1)
     557            { //found elem is reducible
     558              reducible= i.getItem();
     559              indexRed= nr + 1;
     560              break;
     561            }
     562          }
    560563        }
    561564      }
Note: See TracChangeset for help on using the changeset viewer.