﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	revision
197	MaxWeightedMatching and MaxWeightedPerfectMatcing crash	Philip.Waldron	Balazs Dezso	"The following code crashes with the attach .lgf file, using either !MaxWeightedMatching or !MaxWeightedPerfectMatching

{{{
#include <lemon/max_matching.h>
#include <lemon/smart_graph.h>
#include <lemon/lgf_reader.h>

using namespace lemon;

int main() 
{
  typedef SmartGraph Graph;
  Graph g;
  Graph::EdgeMap<int> w(g);
  
  GraphReader<Graph>(g,std::cin).edgeMap(""weight"",w).run();

  MaxWeightedMatching<Graph> mwm(g,w);
  //MaxWeightedPerfectMatching<Graph> mwm(g,w);

  mwm.run();
}}}
"	defect	closed	major	LEMON 1.1 release	core	hg main	fixed		"""Waldron Philip"" <Philip.Waldron@…>"	30d22b636e57
