Changeset c1b9927 in git for factory/fac_univar.cc


Ignore:
Timestamp:
Jun 7, 2011, 3:27:18 PM (13 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
639652f186091509059ccc76f18852db93c1b988
Parents:
6e2ef0e6c1f75468f4ae12cfb9e5273eb4aa81c1
Message:
- removed some unsed variables
- never put static inline routine without a body in a .h file



git-svn-id: file:///usr/local/Singular/svn/trunk@14265 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/fac_univar.cc

    r6e2ef0e rc1b9927  
    9898    for ( i = F; i.hasItem(); i++ )
    9999        if ( (k = i.getItem().factor().degree()) < n )
     100        {
    100101            if ( k == -1 ) {
    101102                STICKYWARN( k == -1, "there occured an error.  factory was not able to factorize\n"
     
    106107            else if ( k != 0 )
    107108                a[k] = 1;
     109        }
    108110}
    109111
     
    115117    for ( i = 1; i < m; i++ )
    116118        if ( (k = F[i].degree()) < n )
    117             if ( k == -1 ) {
     119        {
     120            if ( k == -1 )
     121            {
    118122                STICKYWARN( k == -1, "there occured an error.  factory was not able to factorize\n"
    119123                            "correctly mod p.  Please send the example which caused\n"
     
    123127            else if ( k != 0 )
    124128                a[k] = 1;
     129        }
    125130}
    126131
Note: See TracChangeset for help on using the changeset viewer.