load11.gms : Load UEL Table

Description

Contributor: Alex Meeraus, March 2014


Small Model of Type : GAMS


Category : GAMS Test library


Main file : load11.gms

$title 'Load UEL Table' (LOAD11,SEQ=650)

$ontext
Contributor: Alex Meeraus, March 2014
$offtext


set i / a*z /;
$gdxout xxx.gdx
$unload i
$gdxout

set u(*),w(*);
$gdxin xxx.gdx
$load u=*
$gdxin

execute_load 'xxx.gdx',w=*;

abort$sum(i$(not u(i) and w(i)), 1) 'problem with UEL table reading';