Changeset ddbc22 in git


Ignore:
Timestamp:
Mar 16, 2011, 10:16:07 AM (12 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
b12a682a66f3db98763e57d2b2518e4e68ddf2db
Parents:
f993207fec134e360a3b5c19f33081173e937b41
Message:
intvec::view only for debugging

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

Legend:

Unmodified
Added
Removed
  • kernel/intvec.cc

    rf99320 rddbc22  
    127127}
    128128
     129#ifndef NDEBUG
     130// debug only
    129131void intvec::view () const
    130132{
     
    140142  PrintS ("}\n");
    141143}
     144#endif
    142145
    143146void intvec::show(int notmat,int spaces) const
  • kernel/intvec.h

    rf99320 rddbc22  
    8686  inline void length(int l) { row = l; col = 1; }
    8787  void show(int mat=0,int spaces=0) const;
     88  #ifndef NDEBUG
    8889  void view() const;
     90  #endif
    8991
    9092  inline void makeVector() { row*=col;col=1; }
Note: See TracChangeset for help on using the changeset viewer.