Overview
Comment: | Now writes the aliased args |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
73efa012bfead077d5d218874def3651 |
User & Date: | gawthrop@users.sourceforge.net on 2000-10-12 19:27:47 |
Other Links: | branch diff | manifest | tags |
Context
2000-10-13
| ||
08:07:24 |
Added state and input - it checks against sympar as well so that defined variables may be used here. check-in: ce9f56acf0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2000-10-12
| ||
19:27:47 | Now writes the aliased args check-in: 73efa012bf user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
19:27:20 | Now writes out the aliased args ... check-in: 795b8a7cc3 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/m/cbg2ese.m from [82aeaab65e] to [988642e373].
︙ | ︙ | |||
19 20 21 22 23 24 25 26 27 28 29 30 31 32 | ## Structure matrix [states,nonstates,inputs,outputs,zero_outputs] ## ############################################################### ## ## Version control history ## ############################################################### ## ## $Id$ ## ## $Log$ ## ## Revision 1.33 2000/09/01 08:05:32 peterg ## ## Reformatted with out changing function ## ## ## ## Revision 1.32 1998/11/16 13:01:19 peterg ## ## Fixed problem with repetitions>1 due to new data structures -- now ## ## computes initial next_bond correctly ## ## | > > > | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | ## Structure matrix [states,nonstates,inputs,outputs,zero_outputs] ## ############################################################### ## ## Version control history ## ############################################################### ## ## $Id$ ## ## $Log$ ## ## Revision 1.34 2000/09/01 08:42:44 peterg ## ## Cahged somes ends to end for etc for clarity ## ## ## ## Revision 1.33 2000/09/01 08:05:32 peterg ## ## Reformatted with out changing function ## ## ## ## Revision 1.32 1998/11/16 13:01:19 peterg ## ## Fixed problem with repetitions>1 due to new data structures -- now ## ## computes initial next_bond correctly ## ## |
︙ | ︙ | |||
239 240 241 242 243 244 245 | disp(["---- ", field, " ---"]); if AliasingArguments # Alias the args list if appropriate message = sprintf("\tfor component %s (%s) within %s",\ comp_name,subsystem.type,full_name); if struct_contains(CBG,"alias") | | | 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 | disp(["---- ", field, " ---"]); if AliasingArguments # Alias the args list if appropriate message = sprintf("\tfor component %s (%s) within %s",\ comp_name,subsystem.type,full_name); if struct_contains(CBG,"alias") subsystem.arg = alias_args(subsystem.arg,CBG.alias,";",message,infofilenum,full_name) endif; endif; if AliasingCRs # Alias the CR list if appropriate message = sprintf("\tfor component %s (%s) within %s",\ comp_name,subsystem.type,full_name); if struct_contains(CBG,"alias") |
︙ | ︙ |