You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
trunk\cbc\src\cbcgeneric.cpp abends with MSVisualStudio V8 because CbcOsiParamUtils::setOsiSolverInterfaceDefaults uses an unintialized variable. The uninitialized variable is 'result' on line 186 of file trunk\cbc\src\cbcgenosiparamutils.cpp:
if (!result)
{ result = osi->setIntParam(OsiNameDiscipline,0) ; }
'result' is declared on line 177, but never given an initial value.
The text was updated successfully, but these errors were encountered:
This adds a tiny build-time dependency on pkg-config. Note that if
`pkg-config` is not present, or is present but fails to locate the
library or execute, nothing weird happens: the user gets the same
behaviour they've had until now.
I've added a line to README to mention `pkg-config` too.
Fixescoin-or#23
Issue created by migration from Trac.
Original creator: @jpfasano
Original creation time: 2007-06-29 00:57:42
Assignee: somebody
Version:
trunk\cbc\src\cbcgeneric.cpp abends with MSVisualStudio V8 because CbcOsiParamUtils::setOsiSolverInterfaceDefaults uses an unintialized variable. The uninitialized variable is 'result' on line 186 of file trunk\cbc\src\cbcgenosiparamutils.cpp:
if (!result)
{ result = osi->setIntParam(OsiNameDiscipline,0) ; }
'result' is declared on line 177, but never given an initial value.
The text was updated successfully, but these errors were encountered: