Overview
Comment: | Eliminated duplicate lines in type.sh. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
87056fd440af901cf5fb3d0932e597b0 |
User & Date: | geraint@users.sourceforge.net on 2001-07-28 21:09:22 |
Other Links: | branch diff | manifest | tags |
Context
2001-07-28
| ||
21:10:18 | Generate warning instead of error if reserved word used. check-in: 01ca3e89a7 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
21:09:22 | Eliminated duplicate lines in type.sh. check-in: 87056fd440 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2001-07-27
| ||
23:43:34 | Added -cc to usage options (required for use with xmtt). check-in: 577bdac00a user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/abg2cbg_m from [d479e4b728] to [5440b5dfe8].
︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # Acausal bond graph to causal bond graph: mfile format ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.15 2001/07/23 23:24:02 gawthrop ## Now only writes to type.sh and cbg.m when causality is complete ## ## Revision 1.14 2000/12/28 12:16:13 peterg ## *** empty log message *** ## ## Revision 1.13 1998/07/27 20:30:12 peterg | > > > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Acausal bond graph to causal bond graph: mfile format ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.16 2001/07/26 04:07:28 gawthrop ## Changed a to w on open (Geraint's suggestion) ## Explictly close files ## ## Revision 1.15 2001/07/23 23:24:02 gawthrop ## Now only writes to type.sh and cbg.m when causality is complete ## ## Revision 1.14 2000/12/28 12:16:13 peterg ## *** empty log message *** ## ## Revision 1.13 1998/07/27 20:30:12 peterg |
︙ | ︙ | |||
166 167 168 169 170 171 172 | ## close the files fclose(infofilenum); fclose(errorfilenum); fclose(typefilenum); EOF | | > | 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | ## close the files fclose(infofilenum); fclose(errorfilenum); fclose(typefilenum); EOF cat $typefile | sort -u > ${typefile}.tmp mv ${typefile}.tmp $typefile if [ "$info" = "info" ]; then cat $infofile fi # cp $1_$1_cbg.m $1_cbg.m 2>> mtt_error.txt # Print errors, if any. mtt_error mtt_error.txt |