Changeset 971a80 in git


Ignore:
Timestamp:
Nov 9, 2017, 12:02:32 PM (6 years ago)
Author:
Andreas Steenpass <steenpass@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
afaa70d38d62970c0c6e74bac7b85dc87e48fbf2
Parents:
fe5c342ecf8a22a42207076f58d765fd452a81da
git-author:
Andreas Steenpass <steenpass@mathematik.uni-kl.de>2017-11-09 12:02:32+01:00
git-committer:
Andreas Steenpass <steenpass@mathematik.uni-kl.de>2017-12-15 12:17:08+01:00
Message:
chg: unify usage of const
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/GBEngine/syz4.cc

    rfe5c34 r971a80  
    115115
    116116#if CACHE
    117 static poly traverse_tail(poly multiplier, const int comp,
     117static poly traverse_tail(const poly multiplier, const int comp,
    118118        const ideal previous_module, const std::vector<bool> &variables,
    119119        const lts_hash *hash_previous_module);
    120120#else
    121 static poly compute_image(poly multiplier, const int comp,
     121static poly compute_image(const poly multiplier, const int comp,
    122122        const ideal previous_module, const std::vector<bool> &variables,
    123123        const lts_hash *hash_previous_module);
     
    143143}
    144144
    145 static poly compute_image(poly multiplier, const int comp,
     145static poly compute_image(const poly multiplier, const int comp,
    146146        const ideal previous_module, const std::vector<bool> &variables,
    147147        const lts_hash *hash_previous_module)
     
    396396}
    397397
    398 static int compare_comp(poly p_a, poly p_b)
     398static int compare_comp(const poly p_a, const poly p_b)
    399399{
    400400    const ring r = currRing;
     
    404404}
    405405
    406 static int compare_deg(poly p_a, poly p_b)
     406static int compare_deg(const poly p_a, const poly p_b)
    407407{
    408408    const ring r = currRing;
     
    412412}
    413413
    414 static int compare_lex(poly p_a, poly p_b)
     414static int compare_lex(const poly p_a, const poly p_b)
    415415{
    416416    int cmp;
     
    495495}
    496496
    497 static void denormalize_first_syz_module(resolvente res, int comp, number coef)
     497static void denormalize_first_syz_module(resolvente res, const int comp,
     498        const number coef)
    498499{
    499500    const ring r = currRing;
     
    523524}
    524525
    525 static int computeResolution(resolvente &res, const int max_index,
    526         syzHeadFunction *syzHead, bool do_lifting)
     526static int computeResolution(resolvente res, const int max_index,
     527        syzHeadFunction *syzHead, const bool do_lifting)
    527528{
    528529    int index = 0;
Note: See TracChangeset for help on using the changeset viewer.