Changeset 19addd1 in git for gfanlib/gfanlib_polymakefile.cpp
- Timestamp:
- Oct 25, 2013, 6:22:01 PM (10 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 69b2c1754cbeecd7c1b844e71e2101e1b3794062
- Parents:
- b7b2c516034df879b01c7c8666bbdf0928da91dc
- git-author:
- Yue Ren <ren@mathematik.uni-kl.de>2013-10-25 18:22:01+02:00
- git-committer:
- Yue Ren <ren@mathematik.uni-kl.de>2013-10-25 18:25:28+02:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
gfanlib/gfanlib_polymakefile.cpp
rb7b2c5 r19addd1 53 53 list<int> ret; 54 54 int c=s.peek(); 55 while(( c>='0') && (c<='9')|| (c==' '))55 while(((c>='0') && (c<='9')) || (c==' ')) 56 56 { 57 57 // fprintf(Stderr,"?\n"); … … 66 66 namespace gfan{ 67 67 PolymakeProperty::PolymakeProperty(const std::string &name_, const std::string &value_): 68 name(name_),69 value(value_)68 value(value_), 69 name(name_) 70 70 { 71 71 } … … 271 271 272 272 273 bool PolymakeFile::readBooleanProperty(const char * p)273 bool PolymakeFile::readBooleanProperty(const char */*p*/) 274 274 { 275 275 return false; … … 277 277 278 278 279 void PolymakeFile::writeBooleanProperty(const char * p, bool n)279 void PolymakeFile::writeBooleanProperty(const char */*p*/, bool /*n*/) 280 280 { 281 281 } … … 322 322 stringstream t; 323 323 324 if(comments)assert( comments->size()>=m.getHeight());324 if(comments)assert((int)comments->size()>=m.getHeight()); 325 325 if(isXml) 326 326 { … … 389 389 { 390 390 t<<"<incidence_matrix>"; 391 for( inti=0;i<m.size();i++)391 for(unsigned i=0;i<m.size();i++) 392 392 { 393 393 t<<"<set>"; … … 405 405 else 406 406 { 407 for( inti=0;i<m.size();i++)407 for(unsigned i=0;i<m.size();i++) 408 408 { 409 409 t<<'{'; … … 445 445 { 446 446 t<<"<vector>"; 447 for( inti=0;i<v.size();i++)447 for(unsigned i=0;i<v.size();i++) 448 448 { 449 449 if(i!=0)t<<" "; … … 454 454 else 455 455 { 456 for( inti=0;i<v.size();i++)456 for(unsigned i=0;i<v.size();i++) 457 457 { 458 458 if(i!=0)t<<" ";
Note: See TracChangeset
for help on using the changeset viewer.