Overview
Comment: | Initial revision |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f9dda3faa0ba859e322392646d05c93d |
User & Date: | gawthrop@users.sourceforge.net on 1998-12-03 16:21:27 |
Other Links: | branch diff | manifest | tags |
Context
1998-12-03
| ||
16:46:16 | Deblanked attributes so that zero attribute works. check-in: 617407b2d6 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
16:21:27 | Initial revision check-in: f9dda3faa0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:55:40 |
Now uses number of components with complete causality to measure progress of algorithm -- Done. This replaces bond count -- done. check-in: d7c2bf278a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/m/mtt_error.m version [73f0ddc790].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 mtt_error(message, errorfile); % mtt_error(message, errorfile); % function [bonds, status] = abg2cbg(bonds,components,system_name,filename) % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %%%%% Model Transformation Tools %%%%% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %% Revision 1.2 1997/02/11 10:06:42 peterg % %% Removed a debugging line. % %% % %% Revision 1.1 1996/08/18 20:06:57 peter % %% Initial revision % %% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Set default file if it isn't there already if nargin<2 errorfile = fopen('mtt_error.txt','a'); end; fprintf(errorfile, '*MTT ERROR : %s\n', message); #error('MTT exiting this transformation on error'); |