Overview
| Comment: | Now writes cbg.fig when under-causal (again). |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
9a442e81f017196043d2d594d2acde0b |
| User & Date: | geraint@users.sourceforge.net on 2001-07-26 05:02:53.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2001-07-27
| ||
| 00:51:51 | This should not have been here! check-in: 5e46372586 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
2001-07-26
| ||
| 05:02:53 | Now writes cbg.fig when under-causal (again). check-in: 9a442e81f0 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 04:08:35 |
Removed lines deleting _type.sh and cbg.m -- how did they get there ?? check-in: b7154ccc2d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/m/abg2cbg.m
from [3c67584895]
to [5a064c61a6].
| ︙ | ︙ | |||
16 17 18 19 20 21 22 23 24 25 26 27 28 29 | ## [bonds,status] = abg2cbg(system_name, system_type, full_name, port_bonds, infofile) ## ############################################################### ## ## Version control history ## ############################################################### ## ## $Id$ ## ## $Log$ ## ## Revision 1.47 2000/03/20 16:45:26 peterg ## ## *** empty log message *** ## ## ## ## Revision 1.46 2000/02/17 16:14:49 peterg ## ## *** empty log message *** ## ## ## ## Revision 1.45 1999/11/01 03:17:45 peterg | > > > | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | ## [bonds,status] = abg2cbg(system_name, system_type, full_name, port_bonds, infofile) ## ############################################################### ## ## Version control history ## ############################################################### ## ## $Id$ ## ## $Log$ ## ## Revision 1.48 2001/07/23 23:20:27 gawthrop ## ## Now only writes to type.sh and cbg.m when causality is completed. ## ## ## ## Revision 1.47 2000/03/20 16:45:26 peterg ## ## *** empty log message *** ## ## ## ## Revision 1.46 2000/02/17 16:14:49 peterg ## ## *** empty log message *** ## ## ## ## Revision 1.45 1999/11/01 03:17:45 peterg |
| ︙ | ︙ | |||
502 503 504 505 506 507 508 |
elseif subsystem.status==1; # Over causal
status=-1;
mtt_info(sprintf("Component %s (%s) is overcausal", name, subsystem.type), ...
infofile);
endif;
endfor; # [subsystem,name] = ABG.subsystems
| | < | 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 |
elseif subsystem.status==1; # Over causal
status=-1;
mtt_info(sprintf("Component %s (%s) is overcausal", name, subsystem.type), ...
infofile);
endif;
endfor; # [subsystem,name] = ABG.subsystems
## write out the component .cbg file
disp(["Writing ", full_name]);
write_cbg(full_name,system_type,ABG,Flipped);
fprintf(typefile, "$1%s$2%s$3\n", system_type, full_name);
status, port_bonds
disp("====================================");
disp(["END: ", full_name, " (", fun_name, ")"]);
disp("====================================");
endfunction;
|