Dear All,<br><br>First of all, i'm a newbie lemon user.<br>First,  i would like to solve LP problems with it. I choosed GLPK. After including the header files, and added the "lemon.lib" to the dependencies, i tried to compile the following lines:<br>
<br>#include "glpk.h"<br><br>using namespace lemon;<br><br>int main () {<br>    GlpkMip mip;    <br>    return 0;<br><br>}<br><br>I'm getting the following error message:<br>"1>Compiling...<br>1>glpk.cpp<br>
1>Linking...<br>1>glpk.obj : error LNK2019: unresolved external symbol "public: __thiscall lemon::GlpkMip::GlpkMip(void)" (??0GlpkMip@lemon@@QAE@XZ) referenced in function _main<br>1>glpk.obj : error LNK2019: unresolved external symbol "protected: virtual __thiscall lemon::GlpkBase::~GlpkBase(void)" (??1GlpkBase@lemon@@MAE@XZ) referenced in function "public: virtual __thiscall lemon::GlpkMip::~GlpkMip(void)" (??1GlpkMip@lemon@@UAE@XZ)"<br>
<br>Have somebody any idea what can occur this error message? (i already googled it, and it came out, that there is maybe a lib error, but i added the lemon.lib to the project)<br><br>Thanks in advance,<br>Laszlo<br><br>