Overview
Comment: | Check correct bonds |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
3759b204d0f2cf28d06918962fa02002 |
User & Date: | gawthrop@users.sourceforge.net on 1996-11-01 14:42:12 |
Other Links: | branch diff | manifest | tags |
Context
1996-11-01
| ||
18:01:57 |
Rationalised port ordering. Fixed port bug. check-in: 5bb72d8833 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:42:12 | Check correct bonds check-in: 3759b204d0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
13:34:35 | -q (quiet) switch added check-in: cbad5dfd1a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/comp/simple/SS_cause.m from [1fe2266b8b] to [bdd5297b42].
︙ | ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | %DESCRIPTION may be bicausal % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Copyright (c) P.J. Gawthrop, 1996. if (bonds(1)==0)|(bonds(2)==0) % Under causal status = -1; else % causal status = 0; end; | > > > > > > > > | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | %DESCRIPTION may be bicausal % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %% Revision 1.1 1996/11/01 12:18:38 peterg % %% Initial revision % %% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Copyright (c) P.J. Gawthrop, 1996. % Check that there is exactly one bonds. if check_bonds(bonds,1,'SS')==0 return end if (bonds(1)==0)|(bonds(2)==0) % Under causal status = -1; else % causal status = 0; end; |
︙ | ︙ |
Modified mttroot/mtt/lib/comp/simple/TF_cause.m from [d8aa175336] to [7adfcd4d2d].
︙ | ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Copyright (c) P.J. Gawthrop, 1996. %Causality of TF is same as that of a junction [bonds,status] = zero_cause(bonds); | > > > > > > > > > | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %% Revision 1.1 1996/11/01 12:05:54 peterg % %% Initial revision % %% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Copyright (c) P.J. Gawthrop, 1996. % Check that there are exactly two bonds. if check_bonds(bonds,2,'TF')==0 return end %Causality of TF is same as that of a junction [bonds,status] = zero_cause(bonds); |