16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
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.45 1999/11/01 03:17:45 peterg
# ## Added extra info - current subsystem
# ##
# ## Revision 1.44 1999/03/11 23:54:11 peterg
# ## Include possibility of vector SS when finding port_bond_index
# ##
# ## Revision 1.43 1998/12/14 15:19:36 peterg
# ## Added missing "derivative_causality," argument to recursive call of
# ## this function
# ##
|
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
|
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
|
-
+
|
# ## Now recursively does causality on subsystems.
# ##
# ## Revision 1.1 1996/08/04 17:55:55 peter
# ## Initial revision
# ##
# ###############################################################
mtt_info(sprintf("\nCompleting causality for subsystem %s", system_name), infofile);
mtt_info(sprintf("Completing causality for subsystem %s", system_name), infofile);
pc = '%';
if nargin<1
system_name = 'no_name';
end;
if nargin<4
|