Overview
| Comment: | Version 2.5. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
39d0b3986f055cfa44721524ed3e553f |
| User & Date: | gawthrop@users.sourceforge.net on 1997-08-25 07:51:47.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1997-08-26
| ||
| 07:51:30 |
Now counts the local input and outputs by order of appearence rather than by port number - it therfore handles ports with bicausality correctely. check-in: 27b5d4d5a5 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
1997-08-25
| ||
| 07:51:47 | Version 2.5. check-in: 39d0b3986f user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
1997-08-24
| ||
| 11:21:37 | Tied up the file header. check-in: 792098f436 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt
from [fe4073fa0a]
to [1b07dded31].
| ︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ # Revision 1.86 1997/06/29 19:05:51 peterg # Seascale changes -- mainly to new rep format. # ## Revision 1.85 1997/06/27 12:14:49 peterg ## Upped version to 2.4++ ## # Revision 1.84 1997/06/13 14:08:23 peterg | > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.87 1997/07/27 13:11:11 peterg ## Added path checking code -- mtt_check_vars ## # Revision 1.86 1997/06/29 19:05:51 peterg # Seascale changes -- mainly to new rep format. # ## Revision 1.85 1997/06/27 12:14:49 peterg ## Upped version to 2.4++ ## # Revision 1.84 1997/06/13 14:08:23 peterg |
| ︙ | ︙ | |||
339 340 341 342 343 344 345 | shift done #Print header if not in quiet (-q) mode. if [ "$quiet" != "quiet" ]; then echo | | | 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 |
shift
done
#Print header if not in quiet (-q) mode.
if [ "$quiet" != "quiet" ]; then
echo
echo 'MTT (Model Transformation Tools) version 2.5'
echo 'This is free software with ABSOLUTELY NO WARRANTY.'
echo 'Type `mtt warranty'\' 'for details.'
echo
fi
if [ -z "$1" ]; then
echo 'Usage: mtt help -- mtt on-line help'
|
| ︙ | ︙ |