Changeset 997e23 in git


Ignore:
Timestamp:
May 31, 2010, 11:27:31 AM (14 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
Children:
739cb950f14d52e78c8e8ee0370fc4cf8625ffdb
Parents:
652a47948292e84db4e972ecd607184d09345d6e
Message:
debug stuff

git-svn-id: file:///usr/local/Singular/svn/trunk@12834 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
kernel
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • kernel/fast_maps.cc

    r652a47 r997e23  
    1717#include "ring.h"
    1818#include "febase.h"
     19#include "sbuckets.h"
    1920#include "fast_maps.h"
    2021
  • kernel/matpol.cc

    r652a47 r997e23  
    280280          if ((bkj=MATELEM(b,k,j))!=NULL)
    281281          {
    282             poly *cij=&(MATELEM(c,i,j));
     282            poly *cij=&(MATELEM(c,i,j));
    283283            poly s = ppMult_qq(aik /*MATELEM(a,i,k)*/, bkj/*MATELEM(b,k,j)*/);
    284284            if (/*MATELEM(c,i,j)*/ (*cij)==NULL) (*cij)=s;
  • kernel/ncSAMult.cc

    r652a47 r997e23  
    3131
    3232#include "options.h"
     33#include "p_Procs.h"
    3334#include <ncSAMult.h> // for CMultiplier etc classes
    3435#include <sca.h> // for SCA
  • kernel/p_polys.cc

    r652a47 r997e23  
    218218            if( vo != -1) // TODO: optimize: can be done once!
    219219            {
    220               p_SetExp(p, p_GetExp(p, i, r), r, vo); // copy put them verbatim
    221               assume( p_GetExp(p, r, vo) == p_GetExp(p, i, r) ); // copy put them verbatim
     220              p_SetExp(p, p_GetExp(p, i, r), vo, r); // copy put them verbatim
     221              assume( p_GetExp(p, vo, r) == p_GetExp(p, i, r) ); // copy put them verbatim
    222222            }
    223223          }
     
    231231            if( vo != -1) // TODO: optimize: can be done once!
    232232            {
    233               assume( p_GetExp(p, r, vo) == p_GetExp(p, i, r) ); // copy put them verbatim
     233              assume( p_GetExp(p, vo, r) == p_GetExp(p, i, r) ); // copy put them verbatim
    234234            }
    235235          }
     
    302302              const int vo = pVarOffset[i];
    303303              if( vo != -1) // TODO: optimize: can be done once!
    304                 assume( p_GetExp(p, r, vo) == (p_GetExp(p, i, r) + p_GetExp(pp, r, vo)) );
     304                assume( p_GetExp(p, vo, r) == (p_GetExp(p, i, r) + p_GetExp(pp, vo, r)) );
    305305            }
    306306            // TODO: how to check this for computed values???
  • kernel/polys.cc

    r652a47 r997e23  
    1919#include "polys.h"
    2020#include "ring.h"
     21#include "sbuckets.h"
    2122
    2223#ifdef HAVE_PLURAL
Note: See TracChangeset for help on using the changeset viewer.