Description
Small Model of Type : GAMS
Category : GAMS Test library
Main file : baron02.gms
$title 'BARON test suite - bar_space_length is case sensitive' (BARON02,SEQ=315)
variable x; equation e; model m /e/;
e.. x =e= 1;
m.workspace=1;
option lp=baron;
solve m us lp min x;
abort$(m.solvestat <> %solveStat.normalCompletion% or m.modelstat <> %modelStat.optimal%) 'problems with BARON solver';