﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	revision
479	Default MIP solver typdef broken with GLPK backend	Gabor Retvari	Alpar Juttner	"The default MIP solver typedef (lemon::Mip) seems to be broken with GLPK in current head.

The reason seems to be this typo in lp.h, introduced in 1233:fc3854d936f7:

{{{
#if LEMON_DEFAULT_MIP == GLPK
  typedef GlpkLp Mip;
...
}}}

The trivial fix removes all compile errors:

{{{
#if LEMON_DEFAULT_MIP == GLPK
  typedef GlpkMip Mip;
...
}}}
"	defect	closed	major	LEMON 1.4 release	core	hg main	fixed			
