Description
Test GDX Bug AB01548. Loading data sorted did not set the first dimension that changed correctly. This in turn caused GAMS to write the data to the gdx unsorted. Contributor: Jan-Henrik Jagla, July 2008
Small Model of Type : GAMS
Category : GAMS Test library
Main file : gdx6.gms
$title 'GDX Test - Unsorted full domains' (GDX6,SEQ=396)
$onText
Test GDX Bug AB01548.
Loading data sorted did not set the first dimension that changed correctly.
This in turn caused GAMS to write the data to the gdx unsorted.
Contributor: Jan-Henrik Jagla, July 2008
$offText
Set y / 1*100 /
a
b
c;
Parameter test(a,b,c);
Scalar rc /0/;
$gdxIn gdx6.gdx
$load a b c test
execute_unload 'test' test;
rc=errorlevel;
abort$(rc > 0) 'Nonzero from execute_unload', rc;