Show
Ignore:
Timestamp:
07/02/08 06:34:55 (5 months ago)
Author:
dumas
Message:

added cexplicit this-> calls

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/linbox/linbox/algorithms/rational-cra-full-multip.h

    r2982 r2986  
    7676                    std::vector<Integer>::const_iterator t_it = _tab_it->begin(); 
    7777                    Integer invprod; 
    78                     precomputeInvProd(invprod, Product(), _mod_it->operator()() ); 
     78                    this->precomputeInvProd(invprod, Product(), _mod_it->operator()() ); 
    7979                    for( ; t0_it != num.end(); ++t0_it, ++t_it) 
    8080                        this->smallbigreconstruct(*t0_it, *t_it, invprod ); 
     
    8585                        *t0_it %= Product(); 
    8686                        Integer tmp(*t0_it); 
    87                         normalize(*t0_it, tmp, Product()); 
     87                        this->normalize(*t0_it, tmp, Product()); 
    8888                    } 
    8989                }