Overview
Comment: | Sorted out to work with mtt_r2m |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
905029a5f3e9ecf7ed9098bcae10b338 |
User & Date: | gawthrop@users.sourceforge.net on 1998-07-27 16:31:10 |
Other Links: | branch diff | manifest | tags |
Context
1998-07-27
| ||
17:20:42 | Allow , between () check-in: 561e4543c9 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
16:31:10 | Sorted out to work with mtt_r2m check-in: 905029a5f3 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
16:30:26 | Initial revision check-in: 814160e071 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/lang_matrix.r from [815b309cd2] to [c96fea2576].
︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % $Id$ % % $Log$ % % Revision 1.1 1998/05/23 10:49:25 peterg % % Initial revision % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | > > > | < < < | | < < < < | < < | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % $Id$ % % $Log$ % % Revision 1.2 1998/05/23 15:00:27 peterg % % Removed the name = matrix statement - now done by sed. % % % % Revision 1.1 1998/05/23 10:49:25 peterg % % Initial revision % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% PROCEDURE Lang_Matrix(); BEGIN ON NERO; IF MTT_Matrix_n>0 THEN IF MTT_Matrix_m>0 THEN BEGIN FOR i := 1:MTT_Matrix_n DO FOR j := 1:MTT_Matrix_m DO GENTRAN mtt_matrix(i,j) ::=: mtt_matrix(i,j); END; END; END;; |