Index: mttroot/mtt/bin/trans/lang_matrix.r ================================================================== --- mttroot/mtt/bin/trans/lang_matrix.r +++ mttroot/mtt/bin/trans/lang_matrix.r @@ -11,10 +11,13 @@ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % $Id$ % % $Log$ +% % Revision 1.5 2000/08/24 17:12:01 peterg +% % Now optimises using SCOPE +% % % % Revision 1.4 1998/07/27 17:34:59 peterg % % Sorted syntax errors % % % % Revision 1.3 1998/07/27 16:31:10 peterg % % Sorted out to work with mtt_r2m @@ -35,20 +38,20 @@ BEGIN IF MTT_Matrix_m>1 THEN BEGIN FOR col := 1:MTT_Matrix_m DO BEGIN - INAME(mtt_t); + INAME(mtt_o); % Set temp name GENTRAN mtt_matrix(row,col) ::=: mtt_matrix(row,col); END; END ELSE BEGIN - INAME(mtt_o); + INAME(mtt_o); % Set temp name GENTRAN mtt_matrix(row) ::=: mtt_matrix(row,1); END; END END; END;;