Changeset 4feee0a in git for kernel/F5cData.cc


Ignore:
Timestamp:
Jul 16, 2009, 9:58:46 AM (15 years ago)
Author:
Christian Eder
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
40f856763215f79e7dbf5992da04ba55904357b1
Parents:
0179d569cebe4081f964479a71818cd5d80626ee
Message:
fixed inlining


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

Legend:

Unmodified
Added
Removed
  • kernel/F5cData.cc

    r0179d5 r4feee0a  
    3535
    3636// constructor / destructor of class Label
    37 Label::Label(unsigned int* expVec) {
     37Label::Label(int* expVec) {
    3838  m_pExpVec       = expVec;
    3939  m_nShortExpVec  = computeShortExpVec(m_pExpVec);
     
    4646
    4747
    48 // GETTER of class Label
    49 unsigned int* Label::getExpVec() {
    50   return m_pExpVec;
    51 }
    52 
    53 unsigned long Label::getShortExpVec() {
    54   return m_nShortExpVec;
    55 }
    56 
    57 
    58 // SETTER of class Label
    59 
    6048
    6149// MISC of class Label
    62 unsigned long Label::computeShortExpVec(unsigned int* expVec) {
     50unsigned long Label::computeShortExpVec(int* expVec) {
    6351  //if (p == NULL) return 0;
    6452  unsigned long ev = 0; // short exponent vector
     
    10290}
    10391
    104 unsigned long Label::getBitFields(unsigned int e, unsigned int s, unsigned int n) {
     92unsigned long Label::getBitFields(int e, unsigned int s, unsigned int n) {
    10593#define Sy_bit_L(x)     (((unsigned long)1L)<<(x))
    10694  unsigned int i = 0;
Note: See TracChangeset for help on using the changeset viewer.