Overview
Comment: | Fixed bug in recursive cr.txt generation. Fixed bug in recursive sympar.txt generation. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
efcb3a59e0897c9ba0ac26711134cf62 |
User & Date: | gawthrop@users.sourceforge.net on 1997-03-22 17:09:11 |
Other Links: | branch diff | manifest | tags |
Context
1997-03-22
| ||
17:13:03 | Fixed bug for port nos. > 1 digit! check-in: cdce8cf407 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
17:09:11 |
Fixed bug in recursive cr.txt generation. Fixed bug in recursive sympar.txt generation. check-in: efcb3a59e0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
15:50:59 | Changed %1.0f to %d format. check-in: 9449b621f0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [e1c65d4523] to [f02fdd77b7].
︙ | |||
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 | + + + | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ # Revision 1.62 1997/03/20 17:48:50 peterg # Better _input.c file default. # # Revision 1.61 1997/03/20 16:53:01 peterg # Generates c files using include statements. # # Revision 1.60 1997/03/20 10:25:41 peterg # Generates a compehensive default params file. # # Revision 1.59 1997/03/19 10:14:04 peterg |
︙ | |||
310 311 312 313 314 315 316 | 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 | + - + + - + + - + + | fi # 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 rm -f *_sabg.fig *_sabg.ps |
︙ | |||
483 484 485 486 487 488 489 | 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 | - - + + + | lbl2cr_txt2txt $1 if [ "$level" = "0" ]; then \ mv $1_cr.txt MTT_cr.txt; \ else \ cat $1_cr.txt >> MTT_cr.txt; \ fi |
︙ | |||
506 507 508 509 510 511 512 | 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 | + - + - | if [ "$level" = "0" ]; then \ mv $1_sympar.txt MTT_sympar.txt; \ else \ cat $1_sympar.txt >> MTT_sympar.txt; \ fi sh $1_sub.sh "rm -f " '_sympar.txt' # Delete sympar files |
︙ | |||
696 697 698 699 700 701 702 | 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 | - + | #SUMMARY dae differential-algebraic equations (r) #SUMMARY dae differential-algebraic equations (m) #SUMMARY dae differential-algebraic equations (tex) #SUMMARY dae differential-algebraic equations (view) #SUMMARY dae differential-algebraic equations (ps) #Differential-algebraic equations |
︙ |