Overview
Comment: | New smxa and smxax forms |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
1f316418873c6428aa30806bdc1105d4 |
User & Date: | gawthrop@users.sourceforge.net on 2000-04-07 19:07:54 |
Other Links: | branch diff | manifest | tags |
Context
2000-04-07
| ||
19:10:01 | Extra Nxx version check-in: 7021067391 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
19:07:54 | New smxa and smxax forms check-in: 1f31641887 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
19:02:18 | *** empty log message *** check-in: 84f70ab7a2 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/cse2smx_lang from [4a0f834f3b] to [9767a0d613].
︙ | ︙ | |||
12 13 14 15 16 17 18 | # Language if [ -n "$2" ]; then lang=$2 else lang="r" fi | < < > | | > | | > | < | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | > > > | | 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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | # Language if [ -n "$2" ]; then lang=$2 else lang="r" fi # Inform user echo Creating $1_smx.$lang #echo Creating $1_smxx.$lang #echo Creating $1_smxtx.$lang # Remove the old log file rm -f cse2smx_r.log rm -f $1_smx.$lang rm -f $1_smxx.$lang rm -f $1_smxtx.$lang rm -f $1_smx.body # Use reduce to accomplish the transformation reduce << EOF >cse2smx_lang.log lang := $lang; in "$1_subs.r"; in "$1_def.r"; in "$1_cse.r"; in "$1_cr.r"; clear mttx; % Dont need this now - use mkid instead OFF Echo; % Load the general translator package LOAD GENTRAN; GENTRANLANG!* := 'Pascal; ON GENTRANSEG; MAXEXPPRINTLEN!* := 120; TEMPVARNUM!* := 1; TEMPVARNAME!* := 'mtt_t; % Matrix output function in"$MTTPATH/trans/lang_matrix.r"; %Set up output according to the language. OFF NAT; GENTRANOUT "$1_smx.body"; % Set up output according to the language. IF (lang = r) THEN BEGIN write "matrix mtta(", mttnx, ",", mttnx, ");"; write "matrix mttb(", mttnx, ",", mttnu, ");"; write "matrix mttc(", mttny, ",", mttnx, ");"; write "matrix mttd(", mttny, ",", mttnu, ");"; END; % find MTTA : the A matrix FOR i := 1:MTTNx DO BEGIN mttAAx_i := 0; FOR j := 1:MTTNx DO BEGIN ij := i + MTTNx*(j-1); xj := mkid(mttx,j); a_ij := df(MTTEdx(i,1), xj, 1); aa_ij := MTTE(i,j) - mttt*a_ij; IF (aa_ij NEQ 0) THEN %%% GENTRAN mtta(i,j) ::=: aa_ij; GENTRAN mtta(ij) ::=: aa_ij; mttAAx_i := mttAAx_i + aa_ij*xj; END; IF (mttAAx_i NEQ 0) THEN GENTRAN mttax(i) ::=: mttAAx_i; END; %Shut the output according to the language. GENTRANSHUT "$1_smx.body"; EOF if [ "$lang" = "m" ]; then lang_header $1 smx m 'mttx,mttu,mttt,mttpar' '[mtta,mttax]' > $1_smx.m echo '#====== Start of code ======#' >> $1_smx.m cat $1_smx.body | mtt_p2m >> $1_smx.m ## Now do the separate files ## smxa echo Creating $1_smxa.$lang lang_header $1 smxa m 'mttx,mttu,mttt,mttpar' '[mtta]' > $1_smxa.m echo '#====== Start of code ======#' >> $1_smxa.m ## This needs more work cat $1_smx.body | grep 'mtta\[' | mtt_p2m >> $1_smxa.m ## smxax echo Creating $1_smxax.$lang lang_header $1 smxax m 'mttx,mttu,mttt,mttpar' '[mttax]' > $1_smxax.m echo '#====== Start of code ======#' >> $1_smxax.m ## This needs more work cat $1_smx.body |\ awk '{ if (match($1,"mtt")) { printing=0 if (match($1,"mttax\\[")) printing=1; } if (printing) print $0 }' | mtt_p2m >> $1_smxax.m #rm -f $1_smx.body # mv $1_smxx.$lang mtt_junk # lang_header $1 smxx m 'mttx,mttu,mttxx,mttdt' '[mttax]' > $1_smxx.m # cat mtt_junk | mtt_p2m >> $1_smxx.m # rm -f mtt_junk # # mv $1_smxtx.$lang mtt_junk |
︙ | ︙ |