Overview
Comment: | Put in correct $MTT_LIB |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
48836c4862ee8f519905fe27c8ea7d2d |
User & Date: | gawthrop@users.sourceforge.net on 2000-10-03 11:34:29 |
Other Links: | branch diff | manifest | tags |
Context
2000-10-03
| ||
11:34:53 | Correct $MTT_LIB check-in: 1f3b0f166c user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:34:29 | Put in correct $MTT_LIB check-in: 48836c4862 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2000-09-30
| ||
14:12:03 | Fixed bug with no-parameter systems - changed mtt_txt2m and mtt_m2p check-in: 7862b740b8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/cmp2sub_m2sh from [04a8e7d025] to [db33551972].
︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # Copyright (c) P.J.Gawthrop 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.6 1999/08/25 21:20:07 peterg ## Don't list components starting with 0 ot 1 ## ## Revision 1.5 1996/11/09 21:09:43 peterg ## Added lib path. ## # Revision 1.4 1996/11/03 21:19:55 peterg | > > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # Copyright (c) P.J.Gawthrop 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.7 2000/01/18 14:22:58 peterg ## Now exits if file already exists ## ## Revision 1.6 1999/08/25 21:20:07 peterg ## Don't list components starting with 0 ot 1 ## ## Revision 1.5 1996/11/09 21:09:43 peterg ## Added lib path. ## # Revision 1.4 1996/11/03 21:19:55 peterg |
︙ | ︙ | |||
51 52 53 54 55 56 57 | awk '/comp_type = / {print substr($3,2,length($3)-3)}' $1_cmp.m |\ sort -u > mtt_tmp1 # Remove all components starting with 0 or 1 grep -v '^[01]' < mtt_tmp1 > mtt_tmp4 # Get a list of all standard simple components | | | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | awk '/comp_type = / {print substr($3,2,length($3)-3)}' $1_cmp.m |\ sort -u > mtt_tmp1 # Remove all components starting with 0 or 1 grep -v '^[01]' < mtt_tmp1 > mtt_tmp4 # Get a list of all standard simple components ls $MTT_LIB/comp/simple |\ awk '/_cause.m/{split($1,a,"_");print(a[1])}' >mtt_tmp2 # Get a list of all standard compound components #ls $MTTPATH/comp/compound |\ # awk '/_abg.m/{split($1,a,"_");print(a[1])}' >> mtt_tmp2 # Sorted combined list |
︙ | ︙ |