Overview
| Comment: | Removed debugging lines. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
92adf76dbd773c404faed40d9dfa9ba7 |
| User & Date: | gawthrop@users.sourceforge.net on 1996-08-16 12:51:22.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1996-08-16
| ||
| 12:58:58 | Now does preferred causality of I and C. check-in: 4064008eaa user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 12:51:22 | Removed debugging lines. check-in: 92adf76dbd user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 12:50:41 | Initial revision check-in: 17224381f2 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/m/getdynamic.m
from [234857293f]
to [905e653ece].
1 2 3 4 5 6 7 8 9 10 | function [index,prefered] = getdynamic(status,system_type); % Get the index of a dynamic components which is not set. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | > > > < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
function [index,prefered] = getdynamic(status,system_type);
% Get the index of a dynamic components which is not set.
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% $Id$
% %% $Log$
% %% Revision 1.1 1996/08/16 12:50:41 peter
% %% Initial revision
% %%
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
index=0; prefered=0;
n_components = length(status);
for i = 1:n_components
if status(i)==-1 % Undercausal
eval([ '[comp_type,name,cr,arg] = ', system_type, '_cmp(i);' ]);
if strcmp(comp_type,'C')
index=i;
prefered=-1;
break;
end;
if strcmp(comp_type,'I')
index=i;
prefered=1;
break;
end;
end;
end;
|