Overview
Comment: | Removed 'touch $1_rep.txt' -- perhaps best to do this by hand if necessary. As it is, it cuased probs wene reediting the _rep.txt file. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
4fbf381bc5dba7976db0986444ae4dc8 |
User & Date: | gawthrop@users.sourceforge.net on 1998-01-21 09:24:46 |
Other Links: | branch diff | manifest | tags |
Context
1998-01-22
| ||
09:59:36 | Initial revision check-in: 4752205790 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1998-01-21
| ||
09:24:46 |
Removed 'touch $1_rep.txt' -- perhaps best to do this by hand if necessary. As it is, it cuased probs wene reediting the _rep.txt file. check-in: 4fbf381bc5 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1998-01-19
| ||
14:21:21 |
Removed ordinary differential equation representation - its to verbose. check-in: 90570509b8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [85a75e94d4] to [c96d0068a0].
︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | + + + + | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.111 1998/01/16 14:56:59 peterg ## Argument now correctely recognised as a string beginning with - ## (rather than containing -) ## # Revision 1.110 1998/01/06 13:59:30 peterg # Added rename function. # # Revision 1.109 1998/01/06 09:20:02 peterg # Made LATEX2HTML an environment variable. # # Revision 1.108 1997/12/19 08:48:55 peterg |
︙ | |||
536 537 538 539 540 541 542 | 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 | - + | # Clean up if [ "$1" = "clean" ] && [ "$2" = "" ]; then echo 'Removing all generated files for all systems' rm -f *.log mtt_info.txt warning.txt rm -f *_abg.m *_abg.ps *_args.* *_cr.r *_cr.txt *_abg.tex rm -f *_sabg.fig *_sabg.ps *_head.fig *_bnd.fig |
︙ | |||
561 562 563 564 565 566 567 | 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 | - + | # Clean up named system if [ "$2" = "clean" ] && [ "$3" = "" ]; then echo 'Removing all generated files for system ' $1 rm -f *.log mtt_info.txt warning.txt rm -f $1_abg.m $1_abg.ps $1_args.* $1_cr.r $1_cr.txt $1_abg.tex rm -f $1_sabg.fig $1_sabg.ps $1_head.fig $1_bnd.fig |
︙ | |||
868 869 870 871 872 873 874 875 876 877 878 879 880 881 | 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 | + + + + + | $1_sympar.c: $1_sympar.txt sympar_txt2c $1 #SUMMARY sympar symbolic parameters (h) # txt to ch (c header file) sympar conversion $1_sympar.h: $1_sympar.txt sympar_txt2h $1 #SUMMARY sympar symbolic parameters (tex) # txt to tex (LaTeX) sympar conversion $1_sympar.tex: $1_sympar.txt sympar_txt2tex $1 #SUMMARY simp simplification information (r) $1_simp.r: echo Creating $1_simp.r ( \ echo "%% Reduce comands to simplify output for system $1 ($1_simp.r)"; \ cat $MTTPATH/trans/m/rcs_header.txt; \ |
︙ | |||
1460 1461 1462 1463 1464 1465 1466 | 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 | - + | $DVIVIEW $1_$2.dvi& #Report generation $1_rep.make: $1_rep.txt $1_args.m rep_txt2make $1 "$mtt_switches" make_reps: |
︙ |