Ignore:
Timestamp:
Jan 24, 2019, 1:08:04 PM (5 years ago)
Author:
Reimer Behrends <behrends@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
756676ef1fcf4cff300fb1607a6d21293b253245
Parents:
25fe907e3f7e0d124b25f97832c0b71e96c515e2
Message:
Modify variable declarions for pSingular.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/linear_algebra/MinorProcessor.cc

    r25fe907 ra3f0fea  
    1717
    1818#ifdef COUNT_AND_PRINT_OPERATIONS
    19 long addsPoly        = 0;    /* for the number of additions of two polynomials */
    20 long multsPoly       = 0;    /* for the number of multiplications of two polynomials */
    21 long addsPolyForDiv  = 0;    /* for the number of additions of two polynomials for
     19VAR long addsPoly        = 0;    /* for the number of additions of two polynomials */
     20VAR long multsPoly       = 0;    /* for the number of multiplications of two polynomials */
     21VAR long addsPolyForDiv  = 0;    /* for the number of additions of two polynomials for
    2222                                polynomial division part */
    23 long multsPolyForDiv = 0;    /* for the number of multiplications of two polynomials
     23VAR long multsPolyForDiv = 0;    /* for the number of multiplications of two polynomials
    2424                                for polynomial division part */
    25 long multsMon        = 0;    /* for the number of multiplications of two monomials */
    26 long multsMonForDiv  = 0;    /* for the number of m-m-multiplications for polynomial
     25VAR long multsMon        = 0;    /* for the number of multiplications of two monomials */
     26VAR long multsMonForDiv  = 0;    /* for the number of m-m-multiplications for polynomial
    2727                                division part */
    28 long savedMultsMFD   = 0;    /* number of m-m-multiplications that could be saved
     28VAR long savedMultsMFD   = 0;    /* number of m-m-multiplications that could be saved
    2929                                when polynomial division would be optimal
    3030                                (if p / t1 = t2 + ..., then t1 * t2 = LT(p), i.e.,
    3131                                this multiplication need not be performed which
    3232                                would save one m-m-multiplication) */
    33 long divsMon         = 0;    /* for the number of divisions of two monomials;
     33VAR long divsMon         = 0;    /* for the number of divisions of two monomials;
    3434                                these are all guaranteed to work, i.e., m1/m2 only
    3535                                when exponentVector(m1) >= exponentVector(m2) */
Note: See TracChangeset for help on using the changeset viewer.