Overview
| Comment: | *** empty log message *** |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
a49daaeeffc2f68f88156e267acd9a16 |
| User & Date: | gawthrop@users.sourceforge.net on 2000-12-01 14:22:15.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2000-12-01
| ||
| 14:28:34 | Initial revision check-in: 31be576630 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 14:22:15 | *** empty log message *** check-in: a49daaeeff user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 14:18:44 |
-partition now partially works up to cse.m but need to think about indexing, struc files etc for subsystems. check-in: 625f96e751 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_make_subsystems
from [b6acb92e03]
to [9acb3856cd].
1 2 3 4 5 | #!/bin/sh # Makes subsystems for partitioning # Copyright (C) 2000 by Peter J. Gawthrop | < | | | > | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
#!/bin/sh
# Makes subsystems for partitioning
# Copyright (C) 2000 by Peter J. Gawthrop
sys=$1
rep=$2
lang=$3
echo Creating subsystem representations for ${sys}_${rep}.${lang}
# Get subsystems
subsystems=`mtt_get_subsystems -strip ${sys}`;
for subsystem in $subsystems; do
mtt $options -u -q -sub $subsystem ${sys} ${rep} ${lang}
## Repeating systems need sorting out !!!!
#cp $1_$subsystem"_"$2.$3 $1_$subsystem"_1_"$2.$3
done
|