COIN-OR::LEMON - Graph Library

Changes between Initial Version and Version 1 of Ticket #356


Ignore:
Timestamp:
03/16/10 09:05:25 (14 years ago)
Author:
Alpar Juttner
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #356

    • Property Owner changed from Alpar Juttner to Balazs Dezso
    • Property Priority changed from minor to critical
    • Property Milestone changed from to LEMON 1.2 release
  • Ticket #356 – Description

    initial v1  
    33when calling run a second time after changing the referenced graph and weights the matching function may crash.
    44
     5{{{
    56Graph g;
    67Graph::EdgeMap<int>w(g);
     
    1213for(EdgeIt i(g);i!=INVALID; ++i)
    1314  mm.matching(i); // This can crash here
     15}}}
    1416
    1517Version is the 1.1.2 Download from the main site.