Changeset a513a7c in git
- Timestamp:
- Jan 8, 2014, 11:18:57 AM (10 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 18c4eb54cb30e33ff6748951479c04b14c359558
- Parents:
- f1b9ef6df309b52fb845716a27f07a3e7e39f2bb
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2014-01-08 11:18:57+01:00
- git-committer:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2014-01-08 11:39:52+01:00
- Location:
- Singular
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/Minor.cc
rf1b9ef6 ra513a7c 115 115 } 116 116 117 void MinorKey::print() const118 {119 PrintS(this->toString().c_str());120 }117 //void MinorKey::print() const 118 //{ 119 // PrintS(this->toString().c_str()); 120 //} 121 121 122 122 int MinorKey::getAbsoluteRowIndex(const int i) const … … 310 310 } 311 311 312 #ifndef SING_NDEBUG 312 313 int MinorKey::getSetBits(const int a) const 313 314 { … … 343 344 return b; 344 345 } 346 #endif 345 347 346 348 MinorKey MinorKey::getSubMinorKey (const int absoluteEraseRowIndex, … … 799 801 800 802 string MinorKey::toString() const 801 { 803 { return ""; } 804 /* 802 805 string t; 803 806 string s = "("; … … 833 836 return s; 834 837 } 838 */ 835 839 836 840 int MinorValue::g_rankingStrategy = -1; -
Singular/Minor.h
rf1b9ef6 ra513a7c 119 119 void reset(); 120 120 121 #ifndef SING_NDEBUG 121 122 /** 122 123 * A method for counting the number of set bits. … … 128 129 */ 129 130 int getSetBits (const int a) const; 131 #endif 130 132 131 133 /** … … 394 396 * string 395 397 */ 396 std::string toString () const;398 std::string toString () const; 397 399 398 400 /** … … 400 402 * std::cout. 401 403 */ 402 void print () const;404 //void print () const; 403 405 }; 404 406
Note: See TracChangeset
for help on using the changeset viewer.