COIN-OR::LEMON - Graph Library

Changeset 1997:b7a70cdb5520 in lemon-0.x


Ignore:
Timestamp:
03/03/06 22:49:39 (18 years ago)
Author:
Mihaly Barasz
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2605
Message:

Bugfix: an ugly artefact of the 'id' -> 'label' renaming

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/lemon_reader.h

    r1993 r1997  
    863863      std::string command;
    864864      std::string id;
    865       ls >> command >> name;
     865      ls >> command >> id;
    866866      return command == "@nodeset" && name == id;
    867867    }
     
    10861086      std::string command;
    10871087      std::string id;
    1088       ls >> command >> name;
     1088      ls >> command >> id;
    10891089      return command == "@edgeset" && name == id;
    10901090    }
     
    13821382      std::string command;
    13831383      std::string id;
    1384       ls >> command >> name;
     1384      ls >> command >> id;
    13851385      return command == "@uedgeset" && name == id;
    13861386    }
     
    15491549      std::string command;
    15501550      std::string id;
    1551       ls >> command >> name;
     1551      ls >> command >> id;
    15521552      return command == "@nodes" && name == id;
    15531553    }
     
    16551655      std::string command;
    16561656      std::string id;
    1657       ls >> command >> name;
     1657      ls >> command >> id;
    16581658      return command == "@edges" && name == id;
    16591659    }
     
    17791779      std::string command;
    17801780      std::string id;
    1781       ls >> command >> name;
     1781      ls >> command >> id;
    17821782      return command == "@uedges" && name == id;
    17831783    }
     
    19231923      std::string command;
    19241924      std::string id;
    1925       ls >> command >> name;
     1925      ls >> command >> id;
    19261926      return command == "@attributes" && name == id;
    19271927    }
Note: See TracChangeset for help on using the changeset viewer.