1/0 notation

Hi all,
I was wondering if someone had come across the 1/0 notation and what it meant. Here is an example:

PARAMETER
 SAMGAPCUTOFF  max acceptable abs gap bt model SAM row and col totals
 ERRSAMBAL(AC) if UNDF -- the absolute imbalance for AC exceeds cutoff
 ;

 SAMGAPCUTOFF = 1.0e-5;

 ERRSAMBAL(AC)$(ABS(SAMBALCHK(AC)) GT SAMGAPCUTOFF) = 1/0;

The result of this is that an error occurs if the left side is greater than SAMGAPCUTOFF.
Thank you!

Hmmm, this looks like on old way to trigger an execution error if the data is too bad (the SAM is too imbalanced) to run the model. Nowadays, we would do things like this:

Parameter
 SAMGAPCUTOFF  'max acceptable abs gap bt model SAM row and col totals'
 ERRSAMBAL(AC) 'the absolute imbalance for AC exceeds cutoff - we abort is this is none empty'
 ;

 SAMGAPCUTOFF = 1.0e-5;

 ERRSAMBAL(AC)$(ABS(SAMBALCHK(AC)) GT SAMGAPCUTOFF) = SAMBALCHK(AC);
 abort$card(ERRSAMBAL) ERRSAMBAL;

-Michael

Thank you Michael!