Skip to content
Commits on Source (13)
  • Matthew Dawson's avatar
    Update version number. · e3a02fac
    Matthew Dawson authored
    
    git-svn-id: https://groke.mcmaster.ca/svn/grad/colin/trunk/TableTool@10907 57e6efec-57d4-0310-aeb1-a6c144bb1a8b
    e3a02fac
  • Matthew Dawson's avatar
    Avoid unnecessary changes to the Simulink block on saving. · 2e39f03e
    Matthew Dawson authored
    When the table is closed, there is lots of unnecessary data being stored in
    the block, all of which changes on the next load.  Remove that data before
    closing, to try and avoid changing the underlying storage, making the TET
    friendlier to SCMs.
    2e39f03e
  • Matthew Dawson's avatar
    Create a mechanism to upgrade the TET's data structures, and do some cleanup. · 423efd72
    Matthew Dawson authored
    The TET now has a mechanism to upgrade TE blocks to the latest data structures,
    though backwards compatibility is not currently dealt with.
    Also clear unneeded cell arrays that held text.  I'm not sure why that existed,
     and at least the quadratic example has both cell and non-cell arrays for
    holding the text, speaking to the uselessness of the array.  Thus remove the
    array as an upgrade mechanism.  This shrinks down the size of the TE blocks
    some too!
    423efd72
  • Matthew Dawson's avatar
    Update the examples against the new upgrade/purge code. · 866f5873
    Matthew Dawson authored
    Since the storage format has changed, update the examples to match.
    Also downgrade all samples to work against MATLAB 2010a, since they
    seem to have been originally created for it.
    866f5873
  • Matthew Dawson's avatar
    Update version numbers for release. · 543c6389
    Matthew Dawson authored
    Update all version numbers to 0.7.2 for release.  Also update my copyright
    to the current year.
    543c6389
  • Mark Lawford's avatar
    Merge branch 'purge_and_sanitize' into 'master' · 710fcdfa
    Mark Lawford authored
    Purge and sanitize table storage format
    
    This is a patch against the latest stable to prepare it for the SimCheck work.  Currently the table has a mixture of how text entries are stored, for no apparent reason.  Examples include this mixture, so it does appear to be a useless difference.  This version introduces a way to upgrade tables, and makes use of that to remove a redundant cell array for TE's generated with the tool.  There should be no functional difference.
    
    Also, this includes a commit to remove changes that would occur to the table upon an open/close cycle, even though the table wouldn't actually change.  This just makes the table behave better in the context of a SCM.
    
    I've updated the version numbers, and it would be good to get this out there now so that the SimCheck work can be used against tables sooner, without having to re-save as many tables.
    710fcdfa
  • Matthew Dawson's avatar
    Fix critical bug that would mis-align port numbers. · e8118f0f
    Matthew Dawson authored
    When adding new inputs to a TET block, it was possible that the port numbers
    would no longer line up between the code block and the outer input ports on
    the TET block.  This would cause Simulink models to appear to be hooked up
    correctly, but misbehave when actually run.
    
    Fix by ensuring ports are always correct on save.  Both existing ports and
    new ports are always numbered to match the internal port numbers on the code
    block.  Existing connections are maintained as expected.
    
    Due to this change, it is possible that on saving a TET block connections will
    be re-arranged.  Note that these connections will have been incorrect and need
    adjustment anyways.
    e8118f0f
  • Matthew Dawson's avatar
    Update version to 0.7.3 · e16aee40
    Matthew Dawson authored
    Update version numbers for critical update to 0.7.3.
    e16aee40
  • Matthew Dawson's avatar
    Stop trying to clip text boxes. · 87fe6290
    Matthew Dawson authored
    Clipping is used to avoid having text spill on axes, clipping text boxes
    does nothing as text boxes always clip their contents.  This fixes
    MATLAB R2015a (and possibly R2014b).
    87fe6290
  • Matthew Dawson's avatar
    Update version numbers to 0.7.4 · df68c56b
    Matthew Dawson authored
    Release 0.7.4, fixing MATLAB R2014b/R2015a
    df68c56b
  • Abdulrahman elgendy's avatar
  • Abdulrahman elgendy's avatar
  • Matthew Dawson's avatar
    Merge branch 'fix_port_assignments' into 'master' · dc0f1445
    Matthew Dawson authored
    Fix some minor issues (output port misalignment + GUI errors)
    
    Closes #9 and #10
    
    See merge request !7
    dc0f1445
...@@ -87,6 +87,8 @@ for i=1:size(inports,1) ...@@ -87,6 +87,8 @@ for i=1:size(inports,1)
for j=1:size(in_handles,1) for j=1:size(in_handles,1)
if strcmp(get_param(inports(i),'Name'),get_param(in_handles(j),'Name')) if strcmp(get_param(inports(i),'Name'),get_param(in_handles(j),'Name'))
% Make sure the port numbers agree.
set_param(inports(i), 'Port', get_param(in_handles(j), 'Port'));
found = 1; found = 1;
end end
end end
...@@ -121,6 +123,8 @@ for j = 1:size(in_handles,1) ...@@ -121,6 +123,8 @@ for j = 1:size(in_handles,1)
add_block('simulink/Sources/In1',new_port); add_block('simulink/Sources/In1',new_port);
new_port_num = sprintf('%s/1',get_param(in_handles(j),'Name')); new_port_num = sprintf('%s/1',get_param(in_handles(j),'Name'));
dest_port = sprintf('%s/%d','code',j); dest_port = sprintf('%s/%d','code',j);
% Set the port number so the ports line up properly.
set_param(new_port, 'Port', get_param(in_handles(j), 'Port'));
% sometimes line will be created automatically % sometimes line will be created automatically
try try
add_line(getfullname(block_handle),new_port_num,dest_port); add_line(getfullname(block_handle),new_port_num,dest_port);
...@@ -139,6 +143,10 @@ for i=1:size(outports,1) ...@@ -139,6 +143,10 @@ for i=1:size(outports,1)
for j=1:size(out_handles,1) for j=1:size(out_handles,1)
if strcmp(get_param(outports(i),'Name'),get_param(out_handles(j),'Name')) if strcmp(get_param(outports(i),'Name'),get_param(out_handles(j),'Name'))
% Set the port number so the ports line up properly.
set_param(outports(i), 'Port', get_param(out_handles(j), 'Port'));
found = 1; found = 1;
end end
end end
...@@ -170,6 +178,10 @@ for j = 1:size(out_handles,1) ...@@ -170,6 +178,10 @@ for j = 1:size(out_handles,1)
add_block('simulink/Sinks/Out1',new_port); add_block('simulink/Sinks/Out1',new_port);
new_port_num = sprintf('%s/1',get_param(out_handles(j),'Name')); new_port_num = sprintf('%s/1',get_param(out_handles(j),'Name'));
dest_port = sprintf('%s/%d','code',j); dest_port = sprintf('%s/%d','code',j);
% Set the port number so the ports line up properly.
set_param(new_port, 'Port', get_param(out_handles(j), 'Port'));
try try
add_line(getfullname(block_handle),dest_port,new_port_num); add_line(getfullname(block_handle),dest_port,new_port_num);
end end
......
%% purge
% Removes useless data from the block on saving, avoiding unnecessary
% changes and data storage.
% inputs:
% object - Cell object
% outputs:
% none
% Author: Matthew Dawson <matthew@mjdsystems.ca>
% Organization: McMaster Centre for Software Certification
function purge( object )
object.grid_pb = [];
object.cond = [];
object.color = []; % This is always regenerated, so it is safe to kill.
for i=1:size(object.subgrid,2)
object.subgrid(i).purge;
end
end
%% upgrade
% Preforms any necessary upgrades to the TET to comply with the latest version.
% inputs:
% object - Cell object
% outputs:
% none
% Author: Matthew Dawson <matthew@mjdsystems.ca>
% Organization: McMaster Centre for Software Certification
function upgrade( object )
if iscell(object.cond_text)
object.cond_text = object.cond_text{1};
end
for i=1:size(object.subgrid,2)
object.subgrid(i).upgrade;
end
end
%% purge
% Removes useless data from the block on saving, avoiding unnecessary
% changes and data storage.
% inputs:
% object - Data object
% outputs:
% none
% Author: Matthew Dawson <matthew@mjdsystems.ca>
% Organization: McMaster Centre for Software Certification
function purge( object )
object.Grid0.purge
object.Grid1.purge
object.Grid2.purge
end
%% upgrade
% Preforms any necessary upgrades to the TET to comply with the latest version.
% inputs:
% object - Data object
% outputs:
% none
% Author: Matthew Dawson <matthew@mjdsystems.ca>
% Organization: McMaster Centre for Software Certification
function upgrade( object )
object.Grid0.upgrade
object.Grid1.upgrade
object.Grid2.upgrade
end
...@@ -64,7 +64,7 @@ classdef GUI < handle ...@@ -64,7 +64,7 @@ classdef GUI < handle
multi_opt_out = []; multi_opt_out = [];
prover_opt_pvs = []; prover_opt_pvs = [];
prover_opt_cvc = []; prover_opt_cvc = [];
version = '0.7'; version = '0.7.4';
undo_man = []; undo_man = [];
undo_opt = []; undo_opt = [];
redo_opt = []; redo_opt = [];
......
...@@ -20,6 +20,8 @@ object.Data.fig = []; ...@@ -20,6 +20,8 @@ object.Data.fig = [];
delete(object.fig); delete(object.fig);
% remove reference to the old figure. % remove reference to the old figure.
object.fig = []; object.fig = [];
% Purge unnecessary information from Data
object.Data.purge;
% in simulink mode % in simulink mode
if(object.mode == 1) if(object.mode == 1)
parent = get_param(object.block_handle,'Parent'); parent = get_param(object.block_handle,'Parent');
......
...@@ -19,7 +19,6 @@ control = uicontrol('style','edit',... ...@@ -19,7 +19,6 @@ control = uicontrol('style','edit',...
'min',0,'max',1,... % This is the key to multiline edits. 'min',0,'max',1,... % This is the key to multiline edits.
'string',{''},... 'string',{''},...
'Max',2.0,... 'Max',2.0,...
'Clipping','on',...
'fontweight','bold',... 'fontweight','bold',...
'BackgroundColor',[1 1 1],... 'BackgroundColor',[1 1 1],...
'horizontalalign','center',... 'horizontalalign','center',...
......
%% purge
% Removes useless data from the block on saving, avoiding unnecessary
% changes and data storage.
% inputs:
% object - Grid object
% outputs:
% none
% Author: Matthew Dawson <matthew@mjdsystems.ca>
% Organization: McMaster Centre for Software Certification
function purge( object )
% delete(object.new_cell_pb)
% delete(object.delete_cell_pb)
object.new_cell_pb = [];
object.delete_cell_pb = [];
for i=1:size(object.cells, 2)
object.cells(i).purge
end
end
%% upgrade
% Preforms any necessary upgrades to the TET to comply with the latest version.
% inputs:
% object - Grid object
% outputs:
% none
% Author: Matthew Dawson <matthew@mjdsystems.ca>
% Organization: McMaster Centre for Software Certification
function upgrade( object )
for i=1:size(object.cells, 2)
object.cells(i).upgrade
end
end
%% purge
% Removes useless data from the block on saving, avoiding unnecessary
% changes and data storage.
% inputs:
% object - RCell object
% outputs:
% none
% Author: Matthew Dawson <matthew@mjdsystems.ca>
% Organization: McMaster Centre for Software Certification
function purge( object )
object.result = [];
end
%% upgrade
% Preforms any necessary upgrades to the TET to comply with the latest version.
% inputs:
% object - RCell object
% outputs:
% none
% Author: Matthew Dawson <matthew@mjdsystems.ca>
% Organization: McMaster Centre for Software Certification
function upgrade( object )
if iscell(object.result_text)
object.result_text = object.result_text{1};
end
end
...@@ -17,7 +17,7 @@ for i=1:size(object.Cells,2) ...@@ -17,7 +17,7 @@ for i=1:size(object.Cells,2)
end end
end end
if(~isempty(deleted)) if(~isempty(deleted))
delete(object.Cells(deleted).result); delete([object.Cells(deleted).result]);
object.Cells(deleted) = []; object.Cells(deleted) = [];
end end
end end
......
...@@ -20,7 +20,7 @@ for i=1:size(object.Cells,2) ...@@ -20,7 +20,7 @@ for i=1:size(object.Cells,2)
end end
end end
if(~isempty(deleted)) if(~isempty(deleted))
delete(object.Cells(deleted).result); delete([object.Cells(deleted).result]);
object.Cells(deleted) = []; object.Cells(deleted) = [];
end end
end end
......
%% purge
% Removes useless data from the block on saving, avoiding unnecessary
% changes and data storage.
% inputs:
% object - RGrid object
% outputs:
% none
% Author: Matthew Dawson <matthew@mjdsystems.ca>
% Organization: McMaster Centre for Software Certification
function purge( object )
for i = 1:size(object.Cells, 2)
object.Cells(i).purge;
end
end
%% upgrade
% Preforms any necessary upgrades to the TET to comply with the latest version.
% inputs:
% object - RGrid object
% outputs:
% none
% Author: Matthew Dawson <matthew@mjdsystems.ca>
% Organization: McMaster Centre for Software Certification
function upgrade( object )
for i = 1:size(object.Cells, 2)
object.Cells(i).upgrade;
end
end
...@@ -41,7 +41,6 @@ else ...@@ -41,7 +41,6 @@ else
'units','pix',... 'units','pix',...
'min',0,'max',1,... % This is the key to multiline edits. 'min',0,'max',1,... % This is the key to multiline edits.
'Max',2.0,... 'Max',2.0,...
'Clipping','on',...
'fontweight','bold',... 'fontweight','bold',...
'BackgroundColor',[1 1 1],... 'BackgroundColor',[1 1 1],...
'horizontalalign','center',... 'horizontalalign','center',...
...@@ -52,7 +51,6 @@ else ...@@ -52,7 +51,6 @@ else
'units','pix',... 'units','pix',...
'min',0,'max',1,... % This is the key to multiline edits. 'min',0,'max',1,... % This is the key to multiline edits.
'Max',2.0,... 'Max',2.0,...
'Clipping','on',...
'fontweight','bold',... 'fontweight','bold',...
'BackgroundColor',[1 1 1],... 'BackgroundColor',[1 1 1],...
'horizontalalign','left',... 'horizontalalign','left',...
...@@ -64,7 +62,6 @@ else ...@@ -64,7 +62,6 @@ else
'units','pix',... 'units','pix',...
'min',0,'max',1,... % This is the key to multiline edits. 'min',0,'max',1,... % This is the key to multiline edits.
'Max',2.0,... 'Max',2.0,...
'Clipping','on',...
'fontweight','bold',... 'fontweight','bold',...
'BackgroundColor',[1 1 1],... 'BackgroundColor',[1 1 1],...
'horizontalalign','left',... 'horizontalalign','left',...
......
...@@ -6,7 +6,7 @@ Model { ...@@ -6,7 +6,7 @@ Model {
NumRootInports 0 NumRootInports 0
NumRootOutports 0 NumRootOutports 0
ParameterArgumentNames "" ParameterArgumentNames ""
ComputedModelVersion "1.1" ComputedModelVersion "1.2"
NumModelReferences 0 NumModelReferences 0
NumTestPointedSignals 0 NumTestPointedSignals 0
} }
...@@ -23,11 +23,11 @@ Model { ...@@ -23,11 +23,11 @@ Model {
Creator "colin" Creator "colin"
UpdateHistory "UpdateHistoryNever" UpdateHistory "UpdateHistoryNever"
ModifiedByFormat "%<Auto>" ModifiedByFormat "%<Auto>"
LastModifiedBy "colin" LastModifiedBy "matthew"
ModifiedDateFormat "%<Auto>" ModifiedDateFormat "%<Auto>"
LastModifiedDate "Mon Jan 24 12:39:05 2011" LastModifiedDate "Thu May 15 15:26:50 2014"
RTWModifiedTimeStamp 217773526 RTWModifiedTimeStamp 322068405
ModelVersionFormat "1.%<AutoIncrement:1>" ModelVersionFormat "1.%<AutoIncrement:2>"
ConfigurationManager "none" ConfigurationManager "none"
SampleTimeColors off SampleTimeColors off
SampleTimeAnnotations off SampleTimeAnnotations off
...@@ -669,7 +669,7 @@ Model { ...@@ -669,7 +669,7 @@ Model {
} }
System { System {
Name "Jin_Parnas_Example" Name "Jin_Parnas_Example"
Location [165, 265, 745, 525] Location [1009, 551, 1589, 811]
Open on Open on
ModelBrowserVisibility off ModelBrowserVisibility off
ModelBrowserWidth 200 ModelBrowserWidth 200
...@@ -918,198 +918,167 @@ MatData { ...@@ -918,198 +918,167 @@ MatData {
DataRecord { DataRecord {
Tag DataTag0 Tag DataTag0
Data " %)30 . > 8 ( $0 ! $ ! !-0T]3 0 $ $1A=&$. 2 8 ( #0 " Data " %)30 . > 8 ( $0 ! $ ! !-0T]3 0 $ $1A=&$. 2 8 ( #0 "
" % \" 8 ! 0 & & -T\" 0 $ ! !0 X !8/0 !@ @ ) 4" " % \" 8 ! 0 & & -T\" 0 $ ! !0 X #@,@ !@ @ ) 4"
" ( 0 \"@] ! ( H/0 %)30 . B#P 8 ( @ % \" $ ! 0 " " ( 0 + R ! ( \"P,@ %)30 . $#( 8 ( @ % \" $ ! 0 "
" % 0 !0 $ % 34-/4P . 0#P 8 ( $0 ! $ ! !-0T]3 0 T !&:6QE5W)A<'!E<" " % 0 !0 $ % 34-/4P . R#$ 8 ( $0 ! $ ! !-0T]3 0 T !&:6QE5W)A<'!E<"
"E]? #@ \\ & \" $ !0 @ !U 0 $ #@ *@* & \" D !0 @ " "E]? #@ (@Q & \" $ !0 @ !9 0 $ #@ (@) & \" D !0 @ "
" !X\"@ 0 $ @ '@* \" + -@! X @ . ( !@$ #8\"0 > H 1W)I9# 0V5L;', 0V5L;#$" " !8\"0 0 $ @ %@) \" + -@! X @ . ( !@$ \"X\" 6 D 1W)I9# 0V5L;', 0V5L;#$"
" 8V]N9 !C;VYD7W1E>'0 8V5L;%]I;F1E> !P87)E;G1?9W)I9 !C96QL<P!'<FED '!A<F5N=%]C96QL '-P;&ET7W!B &YU;5]C96QL<P!G<FED7" " 8V]N9%]T97AT &-E;&Q?:6YD97@ <&%R96YT7V=R:60 8V5L;', 1W)I9 !P87)E;G1?8V5L; !S<&QI=%]P8@!N=6U?8V5L;', 9W)I9%]I;F1E>"
"VEN9&5X ')'<FED &YE=U]C96QL7W!B &1E;&5T95]C96QL7W!B '!B7V9L86< 8V]L;W( 0V5L; !S=6)G<FED '=I9'1H &AE:6=H= !G<FED7W!" " !R1W)I9 !N97=?8V5L;%]P8@!D96QE=&5?8V5L;%]P8@!P8E]F;&%G $-E;&P <W5B9W)I9 !C;VYD '=I9'1H &AE:6=H= !G<FED7W!B &-O;&]"
"B &-O;F1I=&EO;E]T97AT7W=I9'1H &-O;F1I=&EO;E]T97AT7VAE:6=H= !C;VYD:71I;VY?=&5X=%]X &-O;F1I=&EO;E]T97AT7WD 8V]N9&ET:" "R &-O;F1I=&EO;E]T97AT7W=I9'1H &-O;F1I=&EO;E]T97AT7VAE:6=H= !C;VYD:71I;VY?=&5X=%]X &-O;F1I=&EO;E]T97AT7WD 8V]N9&ET:"
"6]N7W1E>'1?;V9F<V5T &=R:61?<'5S:%]W:61T: !21W)I9 !'<FED,0!'<FED,@!#96QL,@!R97-U;'0 <F5S=6QT7W1E>'0 4D-E;&P 9G5N8W1" "6]N7W1E>'1?;V9F<V5T &=R:61?<'5S:%]W:61T: !21W)I9 !'<FED,0!'<FED,@!#96QL,@!R97-U;'1?=&5X= !20V5L; !R97-U;'0 9G5N8W1"
"I;VY?;F%M90!F=6YC=&EO;E]I;G!U=', <V5T=&EN9W, 8VAE8VME9 !O<&5N &UU;'1I7VUO9&4 1&%T80!F:6< " "I;VY?;F%M90!F=6YC=&EO;E]I;G!U=', <V5T=&EN9W, 8VAE8VME9 !O<&5N &UU;'1I7VUO9&4 1&%T80!F:6< "
" ) $P !X D *P " " ( $0 !X C *P "
" !0 $ 3 P ( 2 ! " " !0 $ 3 P ( 2 ! "
" , ) @ 0 $ 0 4 # @ 8 ! @ " " , ) @ 0 $ 0 4 # @ 8 ! @ "
" < \" @ @ ( 0 D ' @ H " " < \" @ @ ( 0 D ' @ H "
" % @ L & ! P * ! T + ! " " % @ L & ! P * ! T + ! "
" X , ! \\ - ! ! . ! !$ " " X , ! \\ - ! ! . ! !$ "
"/ ! !( 0 ! !, 1 ) 0 $ !I 'P $ !J " "/ ! !( 0 ! !, 1 ) 0 $ !- 'P $ !. "
" ( $ !K )0 $ !L )@ $ !M )P $ !N * $ !O *0 $ !P *@ $ !Q " " ( $ !/ )0 $ !0 )@ $ !1 )P $ !2 * $ !3 *0 $ !4 *@ $ !5 "
" P ( ! 9@ !\\ ! 9P \" ! : 4 # 0 !@ A 0 #H B 0 #L C " " P ( ! 2@ !\\ ! 2P \" ! 3 0 # 0 ! A 0 \"< B 0 \"@ 7 "
" 0 #P 2 0 #T & ! $ !0 $ ! !@ $ \" !P $ 5 $0 $ 6 " " 0 \"D ! 0 ! 4 ! 0 8 ! #@ ! ! #P $ !P $ * "
"$@ $ 7 8 ( 0 \\ , 0 ! - 0 !$ . 0 !( / 0 !, 0 " " \"P $ + # $ , #0 $ - 0 $ 0 ( % 0 , & 0 0 0 "
"0 !0 !@ 0 ! P 4 ! ! 8 ! !0 < ! !@ !$ ! !P !( ! \" " " 0 4 ! 0 ! !@ 4 ! !P 8 ! \" ! ! \"0 & ! $ 1 "
" & ! $ ) !0 $ * !@ $ + !P $ , $0 $ - $@ $ . " " !0 $ 2 !@ $ C % $ D %0 $ E $ $ F 0 ' 0 !\\ + "
" D $ 0 !D % 0 !H & 0 !L ' 0 #0 5 0 #4 6 0 #8 7 0 #" " 0 \" , 0 \"$ - 0 \"( !@ 0 ! $P 4 ! % 8 ! %0 !0 ! "
"< 1 0 #@ 2 0 #D & \" $ N # $ O #0 $ P #@ $ Q #P $" " %@ !4 ! %P ! ! & & ! $ 9 !0 $ : !@ $ ; % $ < %"
" R $ $ S D $ 0 !P % 0 !T & 0 !X ' 0 !\\ 5 0 \" " "0 $ = $ $ > 0 # 0 \"H A 0 \"L B 0 \"P 7 0 \"T "
" 6 0 \"$ 7 0 \"( 1 0 \", 2 0 \"0 ) ! $ E !0 $ F !@ " " ! , ! +@ \"$ ! +P \"( ! , !< ! ,0 $ P $ R (0 $ S "
" $ G !P $ H %0 $ I %@ $ J %P $ K $0 $ L $@ $ M !0 ," " (@ $ T %P $ U 0 # 0 #8 A 0 #< B 0 #@ 7 0 #D !"
" ! /@ \"$ ! /P \"( ! 0 \", ! 00 !( ! 0@ 4 # 0 $, A 0 $" " , ! .@ \"$ ! .P \"( ! / !< ! /0 $ P $ ^ (0 $ _ ("
"0 B 0 $4 C 0 $8 2 0 $< % P $ !( (0 $ !) (@ $ !* (P $ " "@ $ ! %P $ !! 0 # 0 $( A 0 $, B 0 $0 7 0 $4 ! "
" !+ $@ $ !, !0 , ! 30 \"$ ! 3@ \"( ! 3P \", ! 4 !( ! 40 4" " , ! 1@ \"$ ! 1P \"( ! 2 !< ! 20 "
" # 0 %( A 0 %, B 0 %0 C 0 %4 2 0 %8 % P $ !7 (0 $ "
" !8 (@ $ !9 (P $ !: $@ $ !; !0 , ! 7 \"$ ! 70 \"( ! 7@ \", "
" ! 7P !( ! 8 4 # 0 &$ A 0 &( B 0 &, C 0 &0 2 0 &4 "
" " " "
" #@ . " " #@ . , 8 ( ! % \" "
" . 8 ( !@ % \" $ ! 0 ) \" ( !8*) #@ # & \" 0 " "$ # 0 0 , >#PP X X !@ @ & 4 ( 0 $ ! D ( "
" !0 @ ! P $ $ # '@\\, . . 8 ( !@ % \" $ ! 0 ) " "\\#\\. , 8 ( ! % \" $ $ 0 0 0 >#T], X X !@ @ & 4"
" \" / _#@ #@ & \" 8 !0 @ ! 0 $ \"0 @ !@ 8\"B0 X !" " ( 0 $ ! D ( $ . 2 8 ( #0 % \" 8 ! 0 "
"@ !@ @ ! 4 ( 0 $ ! X P !@ @ $ 4 ( 0 0 ! " " & & -T\" 0 $ % 0 X X !@ @ & 4 ( 0 $ ! D "
" ! ! !X/3TP#@ #@ & \" 8 !0 @ ! 0 $ \"0 @ 0 X !( " " ( \\#\\. , 8 ( ! % \" $ # 0 0 , >#XP X X !@ @ "
" !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 4 ! #@ #@ & " " & 4 ( 0 $ ! D ( \"$ . 2 8 ( #0 % \" 8 "
" \" 8 !0 @ ! 0 $ \"0 @ #P/PX !( !@ @ & 4 ( " " ! 0 & & -T\" 0 $ % 0 X X !@ @ & 4 ( 0 $ "
" 0 , ! D 8 \\#\\ #P/P / _#@ #@ & \" 8 !0 @ ! " " ! D ( \\#\\. 4 8 ( #0 % \" @ ! 0 & ( "
" 0 $ \"0 @ !@ 8BB0 X !@ !@ @ ! 4 ( 0 $ ! X P " " -T\" 0 , $ !@ < \" #@ #@ & \" 8 !0 @ ! 0 $ \"0 "
" !@ @ $ 4 ( 0 , ! ! P!X/C #@ #@ & \" 8 !0 @ ! " "@ (0 X X !@ @ & 4 ( 0 $ ! D ( \\#\\. 2 "
" 0 $ \"0 @ (0 X !( !@ @ - 4 ( !@ $ ! 8 8 " "8 ( #0 % \" 8 ! 0 & & -T\" 0 $ \" P X !( !@ "
" W0( ! 0 4 ! #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ " " @ - 4 ( !@ $ ! 8 8 W0( ! 0 4 ! #@ #@ & \" "
" #P/PX !( !@ @ & 4 ( 0 , ! D 8 \\#\\ #P/P / _#" "8 !0 @ ! 0 $ \"0 @ #P/PX !( !@ @ - 4 ( !@ $"
"@ % & \" T !0 @ ( 0 $ !@ \" #= @ $ # ! 8 ' " " ! 8 8 W0( ! 0 0 \" #@ # & \" 0 !0 @ ! P $"
"@ X X !@ @ & 4 ( 0 $ ! D ( \"$ . . 8 ( !@" " $ # 'D\\, . . 8 ( !@ % \" $ ! 0 ) \" / _#@ #"
" % \" $ ! 0 ) \" / _#@ $@ & \" T !0 @ & " " & \" 0 !0 @ ! ! $ $ $ 'D]/3 . . 8 ( !@ % \" "
"0 $ !@ !@ #= @ $ ! @ , . . 8 ( !@ % \" $ ! 0" "$ ! 0 ) \" ! #@ $@ & \" T !0 @ & 0 $ !@ !"
" ) \" ) !8J) #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ \"0" "@ #= @ $ ! \"0 $ . . 8 ( !@ % \" $ ! 0 ) \" "
" 6BB0 X !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 4 ! #@" " / _#@ #@ & \" 8 !0 @ ! 0 $ \"0 @ #P/PX X !@ "
" #@ & \" 8 !0 @ ! 0 $ \"0 @ #P/PX !( !@ @ & " " @ & 4 ( 0 $ ! D ( \\#\\. , 8 ( ! % \" "
" 4 ( 0 , ! D 8 \\#\\ #P/P / _#@ $@ & \" T !" " $ # 0 0 , >3XP X X !@ @ & 4 ( 0 $ ! D ( "
"0 @ & 0 $ !@ !@ #= @ $ ! ! ( . . 8 ( !@ % \" " " \"$ . 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ ) 0 "
" $ ! 0 ) \" ) !6*) #@ # & \" 0 !0 @ ! P $ $ " " X X !@ @ & 4 ( 0 $ ! D ( \\#\\. . 8 ( !@ "
" # 'D\\, . . 8 ( !@ % \" $ ! 0 ) \" / _#@ #@ & \"" " % \" $ ! 0 ) \" / _#@ #@ & \" 8 !0 @ ! 0 "
" 8 !0 @ ! 0 $ \"0 @ \" 7\"B0 X !@ !@ @ ! 4 ( " " $ \"0 @ #P/PX !0 !@ @ - 4 ( \" $ ! 8 @ "
" 0 $ ! X P !@ @ $ 4 ( 0 0 ! ! ! !Y/3TP#@ #@ & \"" "W0( ! P @ * \"P ( . . 8 ( !@ % \" $ ! 0 ) \" "
" 8 !0 @ ! 0 $ \"0 @ 0 X !( !@ @ - 4 ( !@" " A #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ 0 X !( !@ "
" $ ! 8 8 W0( ! 0 D ! #@ #@ & \" 8 !0 @ ! 0 " " @ - 4 ( !@ $ ! 8 8 W0( ! 0 ( # #@ $@ & \" "
" $ \"0 @ #P/PX X !@ @ & 4 ( 0 $ ! D ( " " T !0 @ & 0 $ !@ !@ #= @ $ ! \"0 $ . . 8 ( !@ "
" \\#\\. . 8 ( !@ % \" $ ! 0 ) \" * !<J) #@ #@ & \"" " % \" $ ! 0 ) \" / _#@ #@ & \" 8 !0 @ ! 0 "
" 8 !0 @ ! 0 $ \"0 @ #P/PX !( !@ @ & 4 ( 0" " $ \"0 @ #P/PX X !@ @ & 4 ( 0 $ ! D ( "
" , ! D 8 \"^CQ\"*+*[S]VG%6N\"$/O/T;B&H-?&.X_#@ #@ & \" 8 !0 @ ! " " \\#\\. 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ ( @ "
" 0 $ \"0 @ \"@ 7:B0 X !@ !@ @ ! 4 ( 0 $ ! X P " " X X !@ @ $ 4 ( 0 < ! ! ' >%XR+7E>,@ . 2 8 ( !@ "
"!@ @ $ 4 ( 0 , ! ! P!Y/C #@ #@ & \" 8 !0 @ ! " " % \" $ # 0 ) & / _ \\#\\ #P/PX !( !@ @ - "
"0 $ \"0 @ (0 X !( !@ @ - 4 ( !@ $ ! 8 8 " " 4 ( !@ $ ! 8 8 W0( ! 0 0 \" #@ $@ & \" T !0 "
" W0( ! 0 D ! #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ " " @ & 0 $ !@ !@ #= @ $ ! \"@ ( . , 8 ( ! % \" "
"#P/PX X !@ @ & 4 ( 0 $ ! D ( \\#\\. . 8 ( !@"
" % \" $ ! 0 ) \" ) !>*) #@ #@ & \" 8 !0 @ ! "
"0 $ \"0 @ #P/PX !( !@ @ & 4 ( 0 , ! D 8 \""
"^CQ\"*+*[S]VG%6N\"$/O/T;B&H-?&.X_#@ % & \" T !0 @ ( 0 $ !@ \" #"
"= @ $ # \" H + @ X X !@ @ & 4 ( 0 $ ! D ( "
" \"$ . . 8 ( !@ % \" $ ! 0 ) \" ! #@ $@ & "
" \" T !0 @ & 0 $ !@ !@ #= @ $ ! @ , . . 8 ( "
"!@ % \" $ ! 0 ) \" ' !7*) #@ #@ & \" 8 !0 @ ! "
" 0 $ \"0 @ \"0 5ZB0 X !( !@ @ - 4 ( !@ $ ! 8 8 "
" W0( ! 0 D ! #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ "
" #P/PX X !@ @ & 4 ( 0 $ ! D ( \\#\\. . 8 ( "
" !@ % \" $ ! 0 ) \" ) !6J) #@ #@ & \" 8 !0 @ ! "
" 0 $ \"0 @ #P/PX !( !@ @ & 4 ( 0 , ! D 8 "
" \"^CQ\"*+*[S]VG%6N\"$/O/T;B&H-?&.X_#@ $@ & \" T !0 @ & 0 $ !@ !@ "
" #= @ $ ! \" ( . . 8 ( !@ % \" $ ! 0 ) \" ) !"
":J) #@ #@ & \" 0 !0 @ ! !P $ $ < !X7C(M>5XR X !( !@ @ & "
" 4 ( 0 , ! D 8 \\#\\ #P/P / _#@ $@ & \" T "
" !0 @ & 0 $ !@ !@ #= @ $ ! ! ( . 2 8 ( #0 % "
" \" 8 ! 0 & & -T\" 0 $ * @ X X !@ @ & 4 ( "
" 0 $ ! D ( @ %THD . 8 8 ( 0 % \" $ ! 0 . "
" , 8 ( ! % \" $ # 0 0 , >\"MY X !( !@ @ & 4 ( "
" 0 , ! D 8 \\#\\ #P/P / _#@ $@ & \" T !0 @ & "
" 0 $ !@ !@ #= @ $ ! ! ( . 2 8 ( #0 % \" 8 ! "
" 0 & & -T\" 0 $ + @ X X !@ @ & 4 ( 0 $ ! "
" D ( < %^HD . : 8 ( 0 % \" $ ! 0 . . 8 ( !"
" % \" $ ' 0 0 !P 'A>,BMY7C( #@ $@ & \" 8 !0 @ ! "
"P $ \"0 !@ #P/P / _ \\#\\. 2 8 ( #0 % \" 8 ! "
" 0 & & -T\" 0 $ & @ X !( !@ @ - 4 ( !@ $ ! "
" 8 8 W0( ! 0 @ \" #@ #@ & \" 8 !0 @ ! 0 $ "
"\"0 @ !P 8*B0 X !H !@ @ ! 4 ( 0 $ ! X X !@ @ $ "
" 4 ( 0 < ! ! ' >%XR*WE>,@ . 2 8 ( !@ % \" $ # 0"
" ) & / _ \\#\\ #P/PX !( !@ @ - 4 ( !@ $ ! "
" 8 8 W0( ! 0 8 \" #@ $@ & \" T !0 @ & 0 $ !@"
" !@ #= @ $ ! \"@ ( . . 8 ( !@ % \" $ ! 0 ) \""
" & !A*) #@ &@ & \" $ !0 @ ! 0 $ #@ #@ & \" 0 !"
"0 @ ! !P $ $ < !X7C(M>5XR X !( !@ @ & 4 ( 0 , ! "
" D 8 \\#\\ #P/P / _#@ $@ & \" T !0 @ & 0 $ !@"
" !@ #= @ $ ! !@ ( . 2 8 ( #0 % \" 8 ! 0 & & "
" -T\" 0 $ + @ X X !@ @ & 4 ( 0 $ ! D ( "
"< &&HD . 8 8 ( 0 % \" $ ! 0 . , 8 ( ! % \" "
" $ # 0 0 , >\"MY X !( !@ @ & 4 ( 0 , ! D 8 " " $ # 0 0 , >\"MY X !( !@ @ & 4 ( 0 , ! D 8 "
" \\#\\ #P/P / _#@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ " " \\#\\ #P/P / _#@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ "
" $ ! !P ( . 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 " " $ ! ! ( . 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 "
" $ ( @ X X !@ @ & 4 ( 0 $ ! D ( < &*HD . : " " $ + @ X X !@ @ $ 4 ( 0 < ! ! ' >%XR*WE>,@ . 2 "
"8 ( 0 % \" $ ! 0 . . 8 ( ! % \" $ ' 0 " "8 ( !@ % \" $ # 0 ) & / _ \\#\\ #P/PX !( !@ "
" 0 !P 'A>,BUY7C( #@ $@ & \" 8 !0 @ ! P $ \"0 !@ #P/P" " @ - 4 ( !@ $ ! 8 8 W0( ! 0 8 \" #@ $@ & \" "
" / _ \\#\\. 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 " " T !0 @ & 0 $ !@ !@ #= @ $ ! \" ( . . 8 ( ! "
" $ ' @ X !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 " " % \" $ ' 0 0 !P 'A>,BMY7C( #@ $@ & \" 8 !0 @ ! P "
"H \" #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ !@ 8RB0 X !@ !@ " "$ \"0 !@ #P/P / _ \\#\\. 2 8 ( #0 % \" 8 ! 0 "
" @ ! 4 ( 0 $ ! X P !@ @ $ 4 ( 0 , ! ! " " & & -T\" 0 $ & @ X !( !@ @ - 4 ( !@ $ ! "
" P!X*WD #@ $@ & \" 8 !0 @ ! P $ \"0 !@ #P/P / _ " " 8 8 W0( ! 0 H \" #@ #@ & \" 0 !0 @ ! !P $ $ "
" \\#\\. 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ ' @ " " < !X7C(M>5XR X !( !@ @ & 4 ( 0 , ! D 8 \\#\\ #P/"
" X !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 L \" #@ #" "P / _#@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ ! !@ "
"@ & \" 8 !0 @ ! 0 $ \"0 @ !P 8ZB0 X !H !@ @ ! " "( . 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ + @ "
"4 ( 0 $ ! X X !@ @ $ 4 ( 0 < ! ! ' >%XR*WE>" "X P !@ @ $ 4 ( 0 , ! ! P!X*WD #@ $@ & \" 8 !0 @"
",@ . 2 8 ( !@ % \" $ # 0 ) & / _ \\#\\ #P/PX" " ! P $ \"0 !@ #P/P / _ \\#\\. 2 8 ( #0 % \" "
" !H !@ @ - 4 ( #@ $ ! 8 X W0( ! \"0 , , #0 X " " 8 ! 0 & & -T\" 0 $ ' @ X !( !@ @ - 4 ( !@ "
" / $ !$ 2 $P 0 . 2 8 ( #0 % \" 8 ! 0 & & " "$ ! 8 8 W0( ! 0 @ \" #@ #@ & \" 0 !0 @ ! !P "
"-T\" 0 $ % 0 X !( !@ @ - 4 ( !@ $ ! 8 8 W0( " "$ $ < !X7C(M>5XR X !( !@ @ & 4 ( 0 , ! D 8 "
" ! 0 D ! #@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ " "\\#\\ #P/P / _#@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $"
"! @ , . 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ " " ! !P ( . 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $"
"% 0 X !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 D ! " " * @ X P !@ @ $ 4 ( 0 , ! ! P!X*WD #@ $@ & \" 8 "
" #@ #@ & \" 0 !0 @ ! !@ $ $ 8 !J:6Y?97@ X P !@ @ $ " " !0 @ ! P $ \"0 !@ #P/P / _ \\#\\. 2 8 ( #0 "
" 4 ( 0 , ! ! P!X+'D #@ % ! & \" ( !0 @ ! 0 $ " " % \" 8 ! 0 & & -T\" 0 $ ' @ X !( !@ @ - 4"
" !0 $ < ! ' '-E= !I;G!U=', 8V]U;G0 ')A;F=E #@ #@ & \" 8 !0 @ ! " " ( !@ $ ! 8 8 W0( ! 0 L \" #@ #@ & \" 0 !0 @"
" 0 $ \"0 @ #P/PX P !@ @ & 4 ( ! D #" " ! !P $ $ < !X7C(K>5XR X !( !@ @ & 4 ( 0 , ! D "
"@ #@ & \" 8 !0 @ ! 0 $ \"0 @ $\"/0 X X !@ @ & " " 8 \\#\\ #P/P / _#@ &@ & \" T !0 @ . 0 $ !@ #@ "
" 4 ( 0 $ ! D ( 64 . . 8 ( !@ % \" $ ! " " #= @ $ ) P P - #@ \\ 0 $0 !( 3 ! X !( !@ @ - 4 "
"0 ) \" / _#@ #@ & \" 8 !0 @ ! 0 $ \"0 @ " " ( !@ $ ! 8 8 W0( ! 0 4 ! #@ $@ & \" T !0 @ "
" X X !@ @ & 4 ( 0 $ ! D ( . 4 X 8 ( 0" " & 0 $ !@ !@ #= @ $ ! \"0 $ . 2 8 ( #0 % \" 8 "
" % \" 8 ! 0 . . 8 ( @ % \" $ 0 % 0 0" " ! 0 & & -T\" 0 $ \" P X !( !@ @ - 4 ( !@ $ "
" $ #@ ,@\" & \" ( !0 @ ! 0 $ !0 $ \\ ! AP '!A<F5N=%]C9" " ! 8 8 W0( ! 0 4 ! #@ $@ & \" T !0 @ & 0 $ "
"6QL '!A<F5N=%]G<FED &-E;&QS '-P;&ET7W!B &YU;5]C96QL<P &=R:61?:6YD97@ ')'<FE" " !@ !@ #= @ $ ! \"0 $ . . 8 ( ! % \" $ & 0 "
"D &YE=U]C96QL7W!B &1E;&5T95]C96QL7W!B . , 8 ( !@ % \" 0 " "0 !@ &II;E]E> #@ # & \" 0 !0 @ ! P $ $ # '@L>0 . F $ 8 ("
" ) X P !@ @ & 4 ( ! D #@ # & \" " " @ % \" $ ! 0 % 0 !P $ C <V5T &EN<'5T<P!C;W5N= <F%N9V4 &5X8V5P="
" 8 !0 @ $ \"0 . , 8 ( !@ % \" 0 " " X X !@ @ & 4 ( 0 $ ! D ( \\#\\. , 8 ( "
" ) X X !@ @ & 4 ( 0 $ ! D ( . . 8" " !@ % \" 0 ) X X !@ @ & 4 ( 0 $ ! "
" ( !@ % \" $ ! 0 ) \" #@ # & \" 8 !0 " " D ( ! CT . . 8 ( !@ % \" $ ! 0 ) \" %"
"@ $ \"0 . , 8 ( !@ % \" 0 ) " "E #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ X X !@ @ & "
"X P !@ @ & 4 ( ! D #@ &@% & \" ( !0 @" " 4 ( 0 $ ! D ( \\#\\. . 8 ( !@ % \" $ ! "
" ! 0 $ !0 $ !8 ! 8 $ '-U8F=R:60 !C;VYD 8V]N9%]T9" " 0 ) \" #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ "
"7AT &-E;&Q?:6YD97@ !P87)E;G1?9W)I9 =VED=&@ &AE:6=" " X !0#@ !@ @ ! 4 ( !@ $ ! X X !@ @ \" 4 ( "
"H= !G<FED7W!B <&)?9FQA9P &-O;&]R !C;" " 0 ! 4 ! ! 0 . R ( 8 ( @ % \" $ ! 0 % "
"VYD:71I;VY?=&5X=%]W:61T: 8V]N9&ET:6]N7W1E>'1?:&5I9VAT &-O;F1I=&EO;E]T97AT7W@ !C;VYD:71I;VY?=&5X=%]Y " "0 #P $ \"' <&%R96YT7V-E;&P <&%R96YT7V=R:60 8V5L;', <W!L:71?<&( ;G5M7V-E;&QS "
" 8V]N9&ET:6]N7W1E>'1?;V9F<V5T &=R:61?<'5S:%]W:61T: . , 8 ( !@ % \" " " 9W)I9%]I;F1E> <D=R:60 ;F5W7V-E;&Q?<&( 9&5L971E7V-E;&Q?<&( X P !@ @ & "
" 0 ) X P !@ @ & 4 ( ! D #@ # & \"" " 4 ( ! D #@ # & \" 8 !0 @ $ \""
" 8 !0 @ $ \"0 . . 8 ( !@ % \" $ ! " "0 . , 8 ( !@ % \" 0 ) X P !@ @ & "
"0 ) \" #@ # & \" 8 !0 @ $ \"0 . " " 4 ( ! D #@ #@ & \" 8 !0 @ ! 0 $ \"0"
". 8 ( !@ % \" $ ! 0 ) \" #@ #@ & \" 8 " " @ X X !@ @ & 4 ( 0 $ ! D ( . , "
" !0 @ ! 0 $ \"0 @ X P !@ @ & 4 ( ! " " 8 ( !@ % \" 0 ) X P !@ @ & 4 ( "
" D #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ X P " " ! D #@ # & \" 8 !0 @ $ \"0 . : 4 "
"!@ @ & 4 ( ! D #@ #@ & \" 8 !0 @ ! " " 8 ( @ % \" $ ! 0 % 0 %@ $ !@ 0 <W5B9W)I9 &-O;F0 "
"0 $ \"0 @ !I0 X X !@ @ & 4 ( 0 $ ! D ( " " !C;VYD7W1E>'0 8V5L;%]I;F1E> '!A<F5N=%]G<FED !W:61T"
" 3D . . 8 ( !@ % \" $ ! 0 ) \" \"1 #@ #@ & \"" ": :&5I9VAT &=R:61?<&( !P8E]F;&%G 8V"
" 8 !0 @ ! 0 $ \"0 @ D0 X X !@ @ & 4 ( 0" "]L;W( &-O;F1I=&EO;E]T97AT7W=I9'1H !C;VYD:71I;VY?=&5X=%]H96EG:'0 8V]N9&ET:6]N7W1E>'1?> "
" $ ! D ( -$ . . 8 ( !@ % \" $ ! 0 ) \" " " &-O;F1I=&EO;E]T97AT7WD !C;VYD:71I;VY?=&5X=%]O9F9S970 9W)I9%]P=7-H7W=I9'1H X P !@ @ & "
" #Y #@ /@ & \" ( !0 @ ! 0 $ !0 $ 8 ! $@ $-E;&QS $=R:60" " 4 ( ! D #@ # & \" 8 !0 @ $ "
"Q $=R:60R X P !@ @ & 4 ( ! D #@ # & \" " " \"0 . , 8 ( !@ % \" 0 ) X X !@ @ & "
" 8 !0 @ $ \"0 . , 8 ( !@ % \" 0 " " 4 ( 0 $ ! D ( . , 8 ( !@ % \" "
" ) X \"0 0 !@ @ \" 4 ( 0 $ ! 4 ! , 0 #P !#96QL,0 " " 0 ) X X !@ @ & 4 ( 0 $ ! D ( . . "
" !#96QL,@ !R97-U;'0 !R97-U;'1?=&5X= !C;VQO<@ #@ # & \" 8 !0 " " 8 ( !@ % \" $ ! 0 ) \" #@ # & \" 8 !"
" @ $ \"0 . , 8 ( !@ % \" 0 ) " "0 @ $ \"0 . . 8 ( !@ % \" $ ! 0 ) \""
" X P !@ @ & 4 ( ! D #@ # & \" 8 !0 " " #@ # & \" 8 !0 @ $ \"0 . . 8 ( !"
"@ $ \"0 . , 8 ( !@ % \" 0 ) " "@ % \" $ ! 0 ) \" &E #@ #@ & \" 8 !0 @ ! "
"X ( P !@ @ \" 4 ( 0 $ ! 4 ! 0 0 * !'<FED, 1W)I9#$" " 0 $ \"0 @ !.0 X X !@ @ & 4 ( 0 $ ! D ( "
" $=R:60R !F=6YC=&EO;E]N86UE 9G5N8W1I;VY?:6YP=71S '-E='1I;F=S !C:&5C:V5D " " )$ . . 8 ( !@ % \" $ ! 0 ) \" \"1 #@ #@ & "
" ;W!E;@ &9I9P !M=6QT:5]M;V1E #@ # & \" 8 !0 @ " "\" 8 !0 @ ! 0 $ \"0 @ T0 X X !@ @ & 4 ( "
" $ \"0 . , 8 ( !@ % \" 0 ) X " " 0 $ ! D ( /D . ^ 8 ( @ % \" $ ! 0 % 0 !"
" P !@ @ & 4 ( ! D #@ # & \" 8 !0 @ " "@ $ 2 0V5L;', 1W)I9#$ 1W)I9#( #@ # & \" 8 !0 @ $ \""
" $ \"0 . , 8 ( !@ % \" 0 ) X " "0 . , 8 ( !@ % \" 0 ) X P !@ @ & "
"P !@ @ & 4 ( ! D #@ # & \" 8 !0 @ " " 4 ( ! D #@ ) ! & \" ( !0 @ ! 0 $ !0 "
" $ \"0 . , 8 ( !@ % \" 0 ) X P" "$ P ! / $-E;&PQ $-E;&PR ')E<W5L= ')E<W5L=%]T97AT &-O;&]R . , "
" !@ @ & 4 ( ! D #@ # & \" 8 !0 @ " " 8 ( !@ % \" 0 ) X P !@ @ & 4 ( "
" $ \"0 . B 8 ( \"0 % \" $ !8 0 \" 6 !24T" " ! D #@ # & \" 8 !0 @ $ \"0 . , "
" #@ $@ & \" ( !0 @ ! 0 $ !0 $ 4 ! !0 $U#3U, #@ " "8 ( !@ % \" 0 ) X P !@ @ & 4 ( "
" ! D #@ @# & \" ( !0 @ ! 0 $ !0 $ ! ! H $=R"
":60P !'<FED,0 1W)I9#( &9U;F-T:6]N7VYA;64 !F=6YC=&EO;E]I;G!U=', <V5T=&EN9W"
", &-H96-K960 !O<&5N 9FEG &UU;'1I7VUO9&4 . , 8 ("
" !@ % \" 0 ) X P !@ @ & 4 ( ! "
" D #@ # & \" 8 !0 @ $ \"0 . , 8 ( "
" !@ % \" 0 ) X P !@ @ & 4 ( ! "
" D #@ # & \" 8 !0 @ $ \"0 . , 8 ( "
" !@ % \" 0 ) X P !@ @ & 4 ( ! "
" D #@ # & \" 8 !0 @ $ \"0 . , 8 ( "
" !@ % \" 0 ) X \"( !@ @ ) 4 ( 0 %@ ! "
" ( !8 %)30 . 2 8 ( @ % \" $ ! 0 % 0 !0 $ % "
"34-/4P . "
} }
} }
# Finite State Machines # Finite State Machines
# #
# Stateflow Version 7.5 (R2010a) dated Jan 19 2010, 11:44:41 # Stateflow Version 7.5 (R2010a) dated Jan 19 2010, 11:07:24
# #
# #
...@@ -1135,8 +1104,6 @@ Stateflow { ...@@ -1135,8 +1104,6 @@ Stateflow {
viewObj 2 viewObj 2
machine 1 machine 1
toolbarMode LIBRARY_TOOLBAR toolbarMode LIBRARY_TOOLBAR
subviewS {
}
ssIdHighWaterMark 6 ssIdHighWaterMark 6
decomposition CLUSTER_CHART decomposition CLUSTER_CHART
type EML_CHART type EML_CHART
......
...@@ -6,7 +6,7 @@ Model { ...@@ -6,7 +6,7 @@ Model {
NumRootInports 0 NumRootInports 0
NumRootOutports 0 NumRootOutports 0
ParameterArgumentNames "" ParameterArgumentNames ""
ComputedModelVersion "1.4" ComputedModelVersion "1.5"
NumModelReferences 0 NumModelReferences 0
NumTestPointedSignals 0 NumTestPointedSignals 0
} }
...@@ -23,11 +23,11 @@ Model { ...@@ -23,11 +23,11 @@ Model {
Creator "lawford" Creator "lawford"
UpdateHistory "UpdateHistoryNever" UpdateHistory "UpdateHistoryNever"
ModifiedByFormat "%<Auto>" ModifiedByFormat "%<Auto>"
LastModifiedBy "colin" LastModifiedBy "matthew"
ModifiedDateFormat "%<Auto>" ModifiedDateFormat "%<Auto>"
LastModifiedDate "Mon Jan 24 12:31:15 2011" LastModifiedDate "Thu May 15 15:27:04 2014"
RTWModifiedTimeStamp 217773073 RTWModifiedTimeStamp 322068420
ModelVersionFormat "1.%<AutoIncrement:4>" ModelVersionFormat "1.%<AutoIncrement:5>"
ConfigurationManager "None" ConfigurationManager "None"
SampleTimeColors off SampleTimeColors off
SampleTimeAnnotations off SampleTimeAnnotations off
...@@ -676,7 +676,7 @@ Model { ...@@ -676,7 +676,7 @@ Model {
} }
System { System {
Name "PowerCond" Name "PowerCond"
Location [133, 226, 713, 486] Location [842, 554, 1422, 814]
Open on Open on
ModelBrowserVisibility off ModelBrowserVisibility off
ModelBrowserWidth 200 ModelBrowserWidth 200
...@@ -1009,144 +1009,128 @@ MatData { ...@@ -1009,144 +1009,128 @@ MatData {
DataRecord { DataRecord {
Tag DataTag0 Tag DataTag0
Data " %)30 . > 8 ( $0 ! $ ! !-0T]3 0 $ $1A=&$. 2 8 ( #0 " Data " %)30 . > 8 ( $0 ! $ ! !-0T]3 0 $ $1A=&$. 2 8 ( #0 "
" % \" 8 ! 0 & & -T\" 0 $ ! !0 X \"(*P !@ @ ) " " % \" 8 ! 0 & & -T\" 0 $ ! !0 X @)@ !@ @ ) 4"
"4 ( 0 %@K ! ( !8*P %)30 . N\"H 8 ( @ % \" $ ! 0 " " ( 0 / E ! ( #P)0 %)30 . 4\"4 8 ( @ % \" $ ! 0 "
" % 0 !0 $ % 34-/4P . <\"H 8 ( $0 ! $ ! !-0T]3 0 T !&:6QE5W)A<'!" " % 0 !0 $ % 34-/4P . \"\"4 8 ( $0 ! $ ! !-0T]3 0 T !&:6QE5W)A<'!"
"E<E]? #@ # J & \" $ !0 @ !% 0 $ #@ $@' & \" D !0 @" "E<E]? #@ ,@D & \" $ !0 @ U 0 $ #@ )@& & \" D !0 @"
" 8!P 0 $ @ !@' \" + -@! X @ . ( %@# \"X!@ & < 1W)I9# 0V5L;', 0V5L;#$" " !H!@ 0 $ @ &@& \" + -@! X @ . ( %@# (!@ : 8 1W)I9# 0V5L;', 0V5L;#$ "
" 8V]N9 !C;VYD7W1E>'0 8V5L;%]I;F1E> !P87)E;G1?9W)I9 !C96QL<P!'<FED '!A<F5N=%]C96QL '-P;&ET7W!B &YU;5]C96QL<P!G<FED7" "8V]N9%]T97AT &-E;&Q?:6YD97@ <&%R96YT7V=R:60 8V5L;', 1W)I9 !P87)E;G1?8V5L; !S<&QI=%]P8@!N=6U?8V5L;', 9W)I9%]I;F1E> "
"VEN9&5X ')'<FED &YE=U]C96QL7W!B &1E;&5T95]C96QL7W!B '!B7V9L86< 8V]L;W( 0V5L; !S=6)G<FED '=I9'1H &AE:6=H= !G<FED7W!" "!R1W)I9 !N97=?8V5L;%]P8@!D96QE=&5?8V5L;%]P8@!P8E]F;&%G $-E;&P <W5B9W)I9 !C;VYD '=I9'1H &AE:6=H= !G<FED7W!B &-O;&]R"
"B &-O;F1I=&EO;E]T97AT7W=I9'1H &-O;F1I=&EO;E]T97AT7VAE:6=H= !C;VYD:71I;VY?=&5X=%]X &-O;F1I=&EO;E]T97AT7WD 8V]N9&ET:" " &-O;F1I=&EO;E]T97AT7W=I9'1H &-O;F1I=&EO;E]T97AT7VAE:6=H= !C;VYD:71I;VY?=&5X=%]X &-O;F1I=&EO;E]T97AT7WD 8V]N9&ET:6"
"6]N7W1E>'1?;V9F<V5T &=R:61?<'5S:%]W:61T: !21W)I9 !'<FED,0!'<FED,@!#96QL,@!R97-U;'0 <F5S=6QT7W1E>'0 4D-E;&P 9G5N8W1" "]N7W1E>'1?;V9F<V5T &=R:61?<'5S:%]W:61T: !21W)I9 !'<FED,0!'<FED,@!#96QL,@!R97-U;'1?=&5X= !20V5L; !R97-U;'0 9G5N8W1I"
"I;VY?;F%M90!F=6YC=&EO;E]I;G!U=', <V5T=&EN9W, 8VAE8VME9 !O<&5N &UU;'1I7VUO9&4 1&%T80!F:6< " ";VY?;F%M90!F=6YC=&EO;E]I;G!U=', <V5T=&EN9W, 8VAE8VME9 !O<&5N &UU;'1I7VUO9&4 1&%T80!F:6< "
" ) $P !X D *P " " ( $0 !X C *P "
" !0 $ + P ( * ! " " !0 $ + P ( * ! "
" , ' @ 0 $ 0 4 # @ 8 ! @ " ", ' @ 0 $ 0 4 # @ 8 ! @ "
" < \" @ @ & 0 D % ! H " " < \" @ @ & 0 D % ! H "
" ( ! L ) ) 0 $ Y 'P $ Z ( $ [ )0 $ " " ( ! L ) ) 0 $ I 'P $ J ( $ K )0 $ "
" \\ )@ $ ] )P $ ^ * $ _ *0 $ ! *@ $ !! P ( ! -@ !\\ " "L )@ $ M )P $ N * $ O *0 $ P *@ $ Q P ( ! )@ !\\ !"
" ! -P \" ! . 4 # 0 !@ A 0 \"@ B 0 \"D C 0 \"H 2 0 \"L" " )P \" ! * 0 # 0 ! A 0 !L B 0 !P 7 0 !T ! 0 ! "
" & ! $ !0 $ ! !@ $ \" !P $ 5 $0 $ 6 $@ $ 7 8 " " 4 ! 0 8 ! #@ ! ! #P $ !P $ * \"P $ + # $ , "
" ( 0 \\ , 0 ! - 0 !$ . 0 !( / 0 !, 0 0 !0 !@ 0 " " #0 $ - 0 $ 0 ( % 0 , & 0 0 0 0 4 ! 0 ! "
" ! P 4 ! ! 8 ! !0 < ! !@ !$ ! !P !( ! \" & ! $ " "!@ 4 ! !P 8 ! \" ! ! \"0 & ! $ 1 !0 $ 2 !@ $ 7 "
" ) !0 $ * !@ $ + !P $ , $0 $ - $@ $ . D $ 0 !D %" "% $ 8 %0 $ 9 $ $ : 0 ' 0 !, + 0 !0 , 0 !4 - 0"
" 0 !H & 0 !L ' 0 \"( 5 0 \", 6 0 \"0 7 0 \"4 1 0 \"8 " " !8 ! , ! '@ \"$ ! 'P \"( ! ( !< ! (0 $ P $ B (0"
" 2 0 \"< & \" $ < # $ = #0 $ > #@ $ ? #P $ @ $ $ " " $ C (@ $ D %P $ E "
" A 4 # 0 \"P A 0 \"T B 0 \"X C 0 \"\\ 2 0 # % P " " X #@ $ & \" 0 !0 "
"$ Q (0 $ R (@ $ S (P $ T $@ $ U " " @ ! \"@ $ $ H !0;W=E<CQ+;W5T #@ #@ & \" 8 !0 @ ! 0 "
" #@ . . 8 " " $ \"0 @ #P/PX !0 !@ @ $ 4 ( 0 !D ! ! 9 2V]U=#"
" ( !@ % \" $ ! 0 ) \" * !]J% #@ $ & \" 0 !0 @ " "P]4&]W97(@)B8@4&]W97(\\/4MI;@ . . 8 ( !@ % \" $ ! 0 ) \" "
" ! \"@ $ $ H !0;W=E<CQ+;W5T #@ #@ & \" 8 !0 @ ! 0 $ " " ! #@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ ! !0 "
" \"0 @ #P/PX X !@ @ & 4 ( 0 $ ! D ( D 'XH4" "$ . . 8 ( !@ % \" $ ! 0 ) \" / _#@ $ & \" "
" . @ 8 ( 0 % \" $ ! 0 . 4 8 ( ! % \" $ " " 0 !0 @ ! \"0 $ $ D !+:6X\\4&]W97( #@ #@ & \" 8 !0 "
" 9 0 0 &0 $MO=70\\/5!O=V5R(\"8F(%!O=V5R/#U+:6X #@ #@ & \" 8 !0 @ " " @ ! 0 $ \"0 @ (0 X !( !@ @ - 4 ( !@ $ ! "
" ! 0 $ \"0 @ 0 X !( !@ @ - 4 ( !@ $ ! 8 " " 8 8 W0( ! 0 4 ! #@ #@ & \" 8 !0 @ ! 0 $ \"0 "
" 8 W0( ! 0 4 ! #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ " " @ #P/PX !0 !@ @ - 4 ( \" $ ! 8 @ W0( ! P "
" #P/PX !( !@ @ & 4 ( 0 , ! D 8 \\#\\ #P/P " "0 & !P ( . . 8 ( !@ % \" $ ! 0 ) \" A #@ #"
" / _#@ #@ & \" 8 !0 @ ! 0 $ \"0 @ \"0 ?JA0 X !P !@ @ " "@ & \" 8 !0 @ ! 0 $ \"0 @ #P/PX !( !@ @ - "
" ! 4 ( 0 $ ! X ! !@ @ $ 4 ( 0 D ! ! " "4 ( !@ $ ! 8 8 W0( ! 0 ( # #@ $@ & \" T !0 @"
") 2VEN/%!O=V5R X X !@ @ & 4 ( 0 $ ! D ( \"$ ." " & 0 $ !@ !@ #= @ $ ! !0 $ . . 8 ( !@ % \" $ "
" 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ % 0 X X" " ! 0 ) \" / _#@ $@ & \" T !0 @ & 0 $ !@ !@ "
" !@ @ & 4 ( 0 $ ! D ( \\#\\. 2 8 ( !@ %" " #= @ $ ! ! ( . , 8 ( ! % \" $ 0 0 X "
" \" $ # 0 ) & / _ \\#\\ #P/PX !0 !@ @ - 4 " " X !@ @ & 4 ( 0 $ ! D ( \\#\\. 2 8 ( #0 "
"( \" $ ! 8 @ W0( ! P 0 & !P ( . . 8 ( !@ %" " % \" 8 ! 0 & & -T\" 0 $ ( @ X X !@ @ & 4 "
" \" $ ! 0 ) \" A #@ #@ & \" 8 !0 @ ! 0 $ " " ( 0 $ ! D ( \\#\\. . 8 ( !@ % \" $ ! 0 "
" \"0 @ #P/PX !( !@ @ - 4 ( !@ $ ! 8 8 W0( !" " ) \" ! #@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ "
" 0 ( # #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ \" ?RA0 X " " ! @ , . 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ "
"X !@ @ & 4 ( 0 $ ! D ( H '^H4 . 2 8 ( #0 % " " ) 0 X X !@ @ & 4 ( 0 $ ! D ( \\#\\. . 8 "
" \" 8 ! 0 & & -T\" 0 $ % 0 X X !@ @ & 4 ( " " ( !@ % \" $ ! 0 ) \" / _#@ #@ & \" 8 !0 @"
" 0 $ ! D ( \\#\\. 2 8 ( !@ % \" $ # 0 )" " ! 0 $ \"0 @ #P/PX !( !@ @ - 4 ( !@ $ ! 8 "
" & / _ \\#\\ #P/PX !( !@ @ - 4 ( !@ $ ! 8 8" " 8 W0( ! 0 @ \" #@ #@ & \" 0 !0 @ ! !0 $ $ 4 "
" W0( ! 0 0 \" #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ " " !F86QS90 X !( !@ @ & 4 ( 0 , ! D 8 \\#\\ #P/P "
" \"0 >ZA0 X P !@ @ $ 4 ( 0 ! ! #@ #@ & \" 8 " " / _#@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ ! !@ ( "
" !0 @ ! 0 $ \"0 @ #P/PX !( !@ @ - 4 ( !@ $ !" " . 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ ( @ X "
" 8 8 W0( ! 0 @ \" #@ #@ & \" 8 !0 @ ! 0 $ " " P !@ @ $ 4 ( 0 0 ! ! ! !0<F5V#@ $@ & \" 8 !0 @ "
" \"0 @ #P/PX X !@ @ & 4 ( 0 $ ! D ( $ . " " ! P $ \"0 !@ #P/P / _ \\#\\. 2 8 ( #0 % \" 8 "
" 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ \" P X X" " ! 0 & & -T\" 0 $ ' @ X !( !@ @ - 4 ( !@ $ "
" !@ @ & 4 ( 0 $ ! D ( @ 'RH4 . . 8 ( !@ % " " ! 8 8 W0( ! 0 @ \" #@ # & \" 0 !0 @ ! ! $ "
" \" $ ! 0 ) \" * !]*% #@ $@ & \" T !0 @ & 0 $ " " $ $ '1R=64. 2 8 ( !@ % \" $ # 0 ) & / _ \\"
" !@ !@ #= @ $ ! \"0 $ . . 8 ( !@ % \" $ ! 0 ) " "#\\ #P/PX !0 !@ @ - 4 ( \" $ ! 8 @ W0( ! P , "
" \" / _#@ #@ & \" 8 !0 @ ! 0 $ \"0 @ #P/PX X" " * \"P 0 . 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ "
" !@ @ & 4 ( 0 $ ! D ( D 'PH4 . . 8 ( !@ % " " % 0 X !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 D "
" \" $ ! 0 ) \" / _#@ $@ & \" 8 !0 @ ! P $ " " ! #@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ ! @ , "
" \"0 !@ \"5]_#B8)[O/]7<OV17/^T_0#7B*0UE[S\\. 2 8 ( #0 % \" 8 ! 0 " ". 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ % 0 X !"
"& & -T\" 0 $ ( @ X X !@ @ & 4 ( 0 $ ! D (" "( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 D ! #@ $ & "
" H $ HD . . 8 ( ! % \" $ % 0 0 !0 &9A;'-E #@ $@ & " " \" 0 !0 @ ! \"P $ $ L !F7U!O=V5R0V]N9 #@ & & \" 0 "
" \" 8 !0 @ ! P $ \"0 !@ #P/P / _ \\#\\. 2 8 " " !0 @ ! + $ $ \"P !0;W=E<BQ+:6XZ<F5A;\"Q+;W5T.GMX.G)E86Q\\>#Q+:6Y]+%!R978Z8F]O; "
"( #0 % \" 8 ! 0 & & -T\" 0 $ & @ X !( !@ @ " ". F $ 8 ( @ % \" $ ! 0 % 0 !P $ C <V5T &EN<'5T<P!C;W5N= "
"- 4 ( !@ $ ! 8 8 W0( ! 0 @ \" #@ #@ & \" 8 " "<F%N9V4 &5X8V5P= X X !@ @ & 4 ( 0 $ ! D ( \\#\\."
" !0 @ ! 0 $ \"0 @ \"0 0*B0 X !@ !@ @ ! 4 ( 0 $ " " , 8 ( ! % \" 0 0 X X !@ @ & 4 ( "
"! X P !@ @ $ 4 ( 0 0 ! ! ! !0<F5V#@ $@ & \" 8 " " 0 $ ! D ( \"(PT . . 8 ( !@ % \" $ ! 0 ) "
" !0 @ ! P $ \"0 !@ #P/P / _ \\#\\. 2 8 ( #0 " " \" %E #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ X X"
"% \" 8 ! 0 & & -T\" 0 $ ' @ X !( !@ @ - 4 " " !@ @ & 4 ( 0 $ ! D ( \\#\\. . 8 ( !@ %"
"( !@ $ ! 8 8 W0( ! 0 @ \" #@ #@ & \" 8 !0 @ " " \" $ ! 0 ) \" #@ #@ & \" 8 !0 @ ! 0 $ "
"! 0 $ \"0 @ @ CRB0 X !@ !@ @ ! 4 ( 0 $ ! X P" " \"0 @ X !0#@ !@ @ ! 4 ( !@ $ ! X X !@ @ \""
" !@ @ $ 4 ( 0 0 ! ! ! !T<G5E#@ $@ & \" 8 !0 @ ! " " 4 ( 0 ! 4 ! ! 0 . R ( 8 ( @ % \" $ ! "
" P $ \"0 !@ #P/P / _ \\#\\. 4 8 ( #0 % \" @ " " 0 % 0 #P $ \"' <&%R96YT7V-E;&P <&%R96YT7V=R:60 8V5L;', <W!L:71?<&( "
"! 0 & ( -T\" 0 , # \"@ L $ #@ $@ & \" T !0 @ " " ;G5M7V-E;&QS 9W)I9%]I;F1E> <D=R:60 ;F5W7V-E;&Q?<&( 9&5L971E7V-E;&Q?<&( X P "
" & 0 $ !@ !@ #= @ $ ! !0 $ . 2 8 ( #0 % \" 8 " "!@ @ & 4 ( ! D #@ # & \" 8 !0 @ "
"! 0 & & -T\" 0 $ ) 0 X !( !@ @ - 4 ( !@ $ !" " $ \"0 . , 8 ( !@ % \" 0 ) X P !"
" 8 8 W0( ! 0 ( # #@ $@ & \" T !0 @ & 0 $ " "@ @ & 4 ( ! D #@ #@ & \" 8 !0 @ ! 0"
" !@ !@ #= @ $ ! !0 $ . 2 8 ( #0 % \" 8 ! 0 & " " $ \"0 @ X X !@ @ & 4 ( 0 $ ! D ( "
" & -T\" 0 $ ) 0 X ! !@ @ $ 4 ( 0 L ! ! + " " . , 8 ( !@ % \" 0 ) X P !@ @ & "
" 9E]0;W=E<D-O;F0 X !@ !@ @ $ 4 ( 0 \"P ! ! L 4&]W97(L2VEN.G)E" " 4 ( ! D #@ # & \" 8 !0 @ $ \"0 "
"86PL2V]U=#I[>#IR96%L?'@\\2VEN?2Q0<F5V.F)O;VP #@ % ! & \" ( !0 @ ! 0 $ " " . : 4 8 ( @ % \" $ ! 0 % 0 %@ $ !@ 0 <W5B9W)I9 "
"!0 $ < ! ' '-E= !I;G!U=', 8V]U;G0 ')A;F=E #@ #@ & \" 8 !0 @ ! " " &-O;F0 !C;VYD7W1E>'0 8V5L;%]I;F1E> '!A<F5N=%]G<FED "
"0 $ \"0 @ #P/PX P !@ @ $ 4 ( ! ! #@" " !W:61T: :&5I9VAT &=R:61?<&( !P8E]F;&%G "
" #@ & \" 8 !0 @ ! 0 $ \"0 @ (C#0 X X !@ @ & " " 8V]L;W( &-O;F1I=&EO;E]T97AT7W=I9'1H !C;VYD:71I;VY?=&5X=%]H96EG:'0 8V]N9&ET:6]"
" 4 ( 0 $ ! D ( 64 . . 8 ( !@ % \" $ ! 0 " "N7W1E>'1?> &-O;F1I=&EO;E]T97AT7WD !C;VYD:71I;VY?=&5X=%]O9F9S970 9W)I9%]P=7-H7W=I9'1H X P "
" ) \" / _#@ #@ & \" 8 !0 @ ! 0 $ \"0 @ "
" X X !@ @ & 4 ( 0 $ ! D ( . 4 X 8 ( 0 "
" % \" 8 ! 0 . . 8 ( @ % \" $ 0 % 0 0 "
" $ #@ ,@\" & \" ( !0 @ ! 0 $ !0 $ \\ ! AP '!A<F5N=%]C96Q"
"L '!A<F5N=%]G<FED &-E;&QS '-P;&ET7W!B &YU;5]C96QL<P &=R:61?:6YD97@ ')'<FED "
" &YE=U]C96QL7W!B &1E;&5T95]C96QL7W!B . , 8 ( !@ % \" 0 "
" ) X P !@ @ & 4 ( ! D #@ # & \" 8"
" !0 @ $ \"0 . , 8 ( !@ % \" 0 "
" ) X X !@ @ & 4 ( 0 $ ! D ( . . 8 "
" ( !@ % \" $ ! 0 ) \" #@ # & \" 8 !0 @ "
" $ \"0 . , 8 ( !@ % \" 0 ) X "
" P !@ @ & 4 ( ! D #@ &@% & \" ( !0 @ "
" ! 0 $ !0 $ !8 ! 8 $ '-U8F=R:60 !C;VYD 8V]N9%]T97A"
"T &-E;&Q?:6YD97@ !P87)E;G1?9W)I9 =VED=&@ &AE:6=H="
" !G<FED7W!B <&)?9FQA9P &-O;&]R !C;VY"
"D:71I;VY?=&5X=%]W:61T: 8V]N9&ET:6]N7W1E>'1?:&5I9VAT &-O;F1I=&EO;E]T97AT7W@ !C;VYD:71I;VY?=&5X=%]Y 8"
"V]N9&ET:6]N7W1E>'1?;V9F<V5T &=R:61?<'5S:%]W:61T: . , 8 ( !@ % \" 0"
" ) X P !@ @ & 4 ( ! D #@ # & \" "
" 8 !0 @ $ \"0 . . 8 ( !@ % \" $ ! 0 "
" ) \" #@ # & \" 8 !0 @ $ \"0 . . "
" 8 ( !@ % \" $ ! 0 ) \" #@ #@ & \" 8 !"
"0 @ ! 0 $ \"0 @ X P !@ @ & 4 ( ! "
" D #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ X P !@"
" @ & 4 ( ! D #@ #@ & \" 8 !0 @ ! 0 "
" $ \"0 @ !I0 X X !@ @ & 4 ( 0 $ ! D ( "
" 3D . . 8 ( !@ % \" $ ! 0 ) \" \"1 #@ #@ & \" "
" 8 !0 @ ! 0 $ \"0 @ D0 X X !@ @ & 4 ( 0 "
" $ ! D ( -$ . . 8 ( !@ % \" $ ! 0 ) \" "
" #Y #@ /@ & \" ( !0 @ ! 0 $ !0 $ 8 ! $@ $-E;&QS $=R:60Q"
" $=R:60R X P !@ @ & 4 ( ! D #@ # & \" "
" 8 !0 @ $ \"0 . , 8 ( !@ % \" 0 "
" ) X \"0 0 !@ @ \" 4 ( 0 $ ! 4 ! , 0 #P !#96QL,0 "
" !#96QL,@ !R97-U;'0 !R97-U;'1?=&5X= !C;VQO<@ #@ # & \" 8 !0 "
"@ $ \"0 . , 8 ( !@ % \" 0 ) "
"X P !@ @ & 4 ( ! D #@ # & \" 8 !0 @"
" $ \"0 . , 8 ( !@ % \" 0 ) X"
" ( P !@ @ \" 4 ( 0 $ ! 4 ! 0 0 * !'<FED, 1W)I9#$ "
" $=R:60R !F=6YC=&EO;E]N86UE 9G5N8W1I;VY?:6YP=71S '-E='1I;F=S !C:&5C:V5D "
" ;W!E;@ &9I9P !M=6QT:5]M;V1E #@ # & \" 8 !0 @ "
" $ \"0 . , 8 ( !@ % \" 0 ) X "
"P !@ @ & 4 ( ! D #@ # & \" 8 !0 @ "
" $ \"0 . , 8 ( !@ % \" 0 ) X P"
" !@ @ & 4 ( ! D #@ # & \" 8 !0 @ "
" $ \"0 . , 8 ( !@ % \" 0 ) X P "
" !@ @ & 4 ( ! D #@ # & \" 8 !0 @ " " !@ @ & 4 ( ! D #@ # & \" 8 !0 @ "
" $ \"0 . B 8 ( \"0 % \" $ !8 0 \" 6 !24T " " $ \"0 . , 8 ( !@ % \" 0 ) X X "
" #@ $@ & \" ( !0 @ ! 0 $ !0 $ 4 ! !0 $U#3U, #@ " " !@ @ & 4 ( 0 $ ! D ( . , 8 ( !@ % "
"\" 0 ) X X !@ @ & 4 ( 0 $ ! D ( "
" . . 8 ( !@ % \" $ ! 0 ) \" #@ # & \""
" 8 !0 @ $ \"0 . . 8 ( !@ % \" $ ! "
"0 ) \" #@ # & \" 8 !0 @ $ \"0 . "
". 8 ( !@ % \" $ ! 0 ) \" &E #@ #@ & \" 8 "
" !0 @ ! 0 $ \"0 @ !.0 X X !@ @ & 4 ( 0 $ ! "
" D ( )$ . . 8 ( !@ % \" $ ! 0 ) \" \"1"
" #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ T0 X X !@ @ & "
" 4 ( 0 $ ! D ( /D . ^ 8 ( @ % \" $ ! "
" 0 % 0 !@ $ 2 0V5L;', 1W)I9#$ 1W)I9#( #@ # & \" 8 !0 @ "
" $ \"0 . , 8 ( !@ % \" 0 ) X P !"
"@ @ & 4 ( ! D #@ ) ! & \" ( !0 @ ! 0"
" $ !0 $ P ! / $-E;&PQ $-E;&PR ')E<W5L= ')E<W5L=%]T97AT &-O;&]R "
" . , 8 ( !@ % \" 0 ) X P !@ @ & "
" 4 ( ! D #@ # & \" 8 !0 @ $ \"0 "
" . , 8 ( !@ % \" 0 ) X P !@ @ & "
"4 ( ! D #@ @# & \" ( !0 @ ! 0 $ !0 $ ! "
" ! H $=R:60P !'<FED,0 1W)I9#( &9U;F-T:6]N7VYA;64 !F=6YC=&EO;E]I;"
"G!U=', <V5T=&EN9W, &-H96-K960 !O<&5N 9FEG &UU;'1I7VUO9&4 "
". , 8 ( !@ % \" 0 ) X P !@ @ & 4 ("
" ! D #@ # & \" 8 !0 @ $ \"0 ."
" , 8 ( !@ % \" 0 ) X P !@ @ & 4 ( "
" ! D #@ # & \" 8 !0 @ $ \"0 . "
" , 8 ( !@ % \" 0 ) X P !@ @ & 4 ( "
" ! D #@ # & \" 8 !0 @ $ \"0 . "
" , 8 ( !@ % \" 0 ) X \"( !@ @ ) 4 ( "
" 0 %@ ! ( !8 %)30 . 2 8 ( @ % \" $ ! 0 % 0"
" !0 $ % 34-/4P . "
} }
} }
# Finite State Machines # Finite State Machines
# #
# Stateflow Version 7.5 (R2010a) dated Jan 19 2010, 11:44:41 # Stateflow Version 7.5 (R2010a) dated Jan 19 2010, 11:07:24
# #
# #
......
Model { Model {
Name "ReadabilityExample" Name "ReadabilityExample"
Version 7.6 Version 7.5
MdlSubVersion 0 MdlSubVersion 0
GraphicalInterface { GraphicalInterface {
NumRootInports 0 NumRootInports 0
NumRootOutports 0 NumRootOutports 0
ParameterArgumentNames "" ParameterArgumentNames ""
ComputedModelVersion "1.1" ComputedModelVersion "1.3"
NumModelReferences 0 NumModelReferences 0
NumTestPointedSignals 0 NumTestPointedSignals 0
} }
...@@ -16,7 +16,6 @@ Model { ...@@ -16,7 +16,6 @@ Model {
OverrideScopeRefreshTime on OverrideScopeRefreshTime on
DisableAllScopes off DisableAllScopes off
DataTypeOverride "UseLocalSettings" DataTypeOverride "UseLocalSettings"
DataTypeOverrideAppliesTo "AllNumericTypes"
MinMaxOverflowLogging "UseLocalSettings" MinMaxOverflowLogging "UseLocalSettings"
MinMaxOverflowArchiveMode "Overwrite" MinMaxOverflowArchiveMode "Overwrite"
MaxMDLFileLineLength 120 MaxMDLFileLineLength 120
...@@ -24,11 +23,11 @@ Model { ...@@ -24,11 +23,11 @@ Model {
Creator "lawford" Creator "lawford"
UpdateHistory "UpdateHistoryNever" UpdateHistory "UpdateHistoryNever"
ModifiedByFormat "%<Auto>" ModifiedByFormat "%<Auto>"
LastModifiedBy "lawford" LastModifiedBy "matthew"
ModifiedDateFormat "%<Auto>" ModifiedDateFormat "%<Auto>"
LastModifiedDate "Wed Dec 22 14:26:48 2010" LastModifiedDate "Thu May 15 16:34:20 2014"
RTWModifiedTimeStamp 214928792 RTWModifiedTimeStamp 322072433
ModelVersionFormat "1.%<AutoIncrement:1>" ModelVersionFormat "1.%<AutoIncrement:3>"
ConfigurationManager "None" ConfigurationManager "None"
SampleTimeColors off SampleTimeColors off
SampleTimeAnnotations off SampleTimeAnnotations off
...@@ -127,7 +126,6 @@ Model { ...@@ -127,7 +126,6 @@ Model {
MaxConsecutiveMinStep "1" MaxConsecutiveMinStep "1"
RelTol "1e-3" RelTol "1e-3"
SolverMode "Auto" SolverMode "Auto"
ConcurrentTasks off
Solver "ode45" Solver "ode45"
SolverName "ode45" SolverName "ode45"
SolverJacobianMethodControl "auto" SolverJacobianMethodControl "auto"
...@@ -193,12 +191,12 @@ Model { ...@@ -193,12 +191,12 @@ Model {
ConditionallyExecuteInputs on ConditionallyExecuteInputs on
InlineParams off InlineParams off
UseIntDivNetSlope off UseIntDivNetSlope off
UseSpecifiedMinMax off
InlineInvariantSignals off InlineInvariantSignals off
OptimizeBlockIOStorage on OptimizeBlockIOStorage on
BufferReuse on BufferReuse on
EnhancedBackFolding off EnhancedBackFolding off
StrengthReduction off StrengthReduction off
EnforceIntegerDowncast on
ExpressionFolding on ExpressionFolding on
BooleansAsBitfields off BooleansAsBitfields off
BitfieldContainerType "uint_T" BitfieldContainerType "uint_T"
...@@ -251,8 +249,6 @@ Model { ...@@ -251,8 +249,6 @@ Model {
MinStepSizeMsg "warning" MinStepSizeMsg "warning"
TimeAdjustmentMsg "none" TimeAdjustmentMsg "none"
MaxConsecutiveZCsMsg "error" MaxConsecutiveZCsMsg "error"
MaskedZcDiagnostic "warning"
IgnoredZcDiagnostic "warning"
SolverPrmCheckMsg "warning" SolverPrmCheckMsg "warning"
InheritedTsInSrcMsg "warning" InheritedTsInSrcMsg "warning"
DiscreteInheritContinuousMsg "warning" DiscreteInheritContinuousMsg "warning"
...@@ -289,7 +285,6 @@ Model { ...@@ -289,7 +285,6 @@ Model {
AssertControl "UseLocalSettings" AssertControl "UseLocalSettings"
EnableOverflowDetection off EnableOverflowDetection off
ModelReferenceIOMsg "none" ModelReferenceIOMsg "none"
ModelReferenceMultiInstanceNormalModeStructChecksumCheck "error"
ModelReferenceVersionMismatchMessage "none" ModelReferenceVersionMismatchMessage "none"
ModelReferenceIOMismatchMessage "none" ModelReferenceIOMismatchMessage "none"
ModelReferenceCSMismatchMessage "none" ModelReferenceCSMismatchMessage "none"
...@@ -299,17 +294,11 @@ Model { ...@@ -299,17 +294,11 @@ Model {
ModelReferenceExtraNoncontSigs "error" ModelReferenceExtraNoncontSigs "error"
StateNameClashWarn "warning" StateNameClashWarn "warning"
SimStateInterfaceChecksumMismatchMsg "warning" SimStateInterfaceChecksumMismatchMsg "warning"
InitInArrayFormatMsg "warning"
StrictBusMsg "ErrorLevel1" StrictBusMsg "ErrorLevel1"
BusNameAdapt "WarnAndRepair" BusNameAdapt "WarnAndRepair"
NonBusSignalsTreatedAsBus "none" NonBusSignalsTreatedAsBus "none"
LoggingUnavailableSignals "error" LoggingUnavailableSignals "error"
BlockIODiagnostic "none" BlockIODiagnostic "none"
SFUnusedDataAndEventsDiag "warning"
SFUnexpectedBacktrackingDiag "warning"
SFInvalidInputDataAccessInChartInitDiag "warning"
SFNoUnconditionalDefaultTransitionDiag "warning"
SFTransitionOutsideNaturalParentDiag "warning"
} }
Simulink.HardwareCC { Simulink.HardwareCC {
$ObjectID 6 $ObjectID 6
...@@ -318,11 +307,6 @@ Model { ...@@ -318,11 +307,6 @@ Model {
ProdBitPerShort 16 ProdBitPerShort 16
ProdBitPerInt 32 ProdBitPerInt 32
ProdBitPerLong 32 ProdBitPerLong 32
ProdBitPerFloat 32
ProdBitPerDouble 64
ProdBitPerPointer 32
ProdLargestAtomicInteger "Char"
ProdLargestAtomicFloat "None"
ProdIntDivRoundTo "Undefined" ProdIntDivRoundTo "Undefined"
ProdEndianess "Unspecified" ProdEndianess "Unspecified"
ProdWordSize 32 ProdWordSize 32
...@@ -332,11 +316,6 @@ Model { ...@@ -332,11 +316,6 @@ Model {
TargetBitPerShort 16 TargetBitPerShort 16
TargetBitPerInt 32 TargetBitPerInt 32
TargetBitPerLong 32 TargetBitPerLong 32
TargetBitPerFloat 32
TargetBitPerDouble 64
TargetBitPerPointer 32
TargetLargestAtomicInteger "Char"
TargetLargestAtomicFloat "None"
TargetShiftRightIntArith on TargetShiftRightIntArith on
TargetIntDivRoundTo "Undefined" TargetIntDivRoundTo "Undefined"
TargetEndianess "Unspecified" TargetEndianess "Unspecified"
...@@ -354,7 +333,6 @@ Model { ...@@ -354,7 +333,6 @@ Model {
UpdateModelReferenceTargets "IfOutOfDateOrStructuralChange" UpdateModelReferenceTargets "IfOutOfDateOrStructuralChange"
CheckModelReferenceTargetMessage "error" CheckModelReferenceTargetMessage "error"
EnableParallelModelReferenceBuilds off EnableParallelModelReferenceBuilds off
ParallelModelReferenceErrorOnInvalidPool on
ParallelModelReferenceMATLABWorkerInit "None" ParallelModelReferenceMATLABWorkerInit "None"
ModelReferenceNumInstancesAllowed "Multi" ModelReferenceNumInstancesAllowed "Multi"
PropagateVarSize "Infer from blocks in model" PropagateVarSize "Infer from blocks in model"
...@@ -374,7 +352,6 @@ Model { ...@@ -374,7 +352,6 @@ Model {
SimExtrinsic on SimExtrinsic on
SimIntegrity on SimIntegrity on
SimUseLocalCustomCode off SimUseLocalCustomCode off
SimParseCustomCode on
SimBuildMode "sf_incremental_build" SimBuildMode "sf_incremental_build"
} }
Simulink.RTWCC { Simulink.RTWCC {
...@@ -422,7 +399,6 @@ Model { ...@@ -422,7 +399,6 @@ Model {
GenerateTraceReportSf off GenerateTraceReportSf off
GenerateTraceReportEml off GenerateTraceReportEml off
GenerateCodeInfo off GenerateCodeInfo off
GenerateSLWebview off
RTWCompilerOptimization "Off" RTWCompilerOptimization "Off"
CheckMdlBeforeBuild "Off" CheckMdlBeforeBuild "Off"
CustomRebuildMode "OnUpdate" CustomRebuildMode "OnUpdate"
...@@ -470,11 +446,10 @@ Model { ...@@ -470,11 +446,10 @@ Model {
IncAutoGenComments off IncAutoGenComments off
SimulinkDataObjDesc off SimulinkDataObjDesc off
SFDataObjDesc off SFDataObjDesc off
MATLABFcnDesc off
IncDataTypeInIds off IncDataTypeInIds off
MangleLength 1 MangleLength 1
CustomSymbolStrGlobalVar "$R$N$M" CustomSymbolStrGlobalVar "$R$N$M"
CustomSymbolStrType "$N$R$M" CustomSymbolStrType "$N$R$M_T"
CustomSymbolStrField "$N$M" CustomSymbolStrField "$N$M"
CustomSymbolStrFcn "$R$N$M$F" CustomSymbolStrFcn "$R$N$M$F"
CustomSymbolStrFcnArg "rt$I$N$M" CustomSymbolStrFcnArg "rt$I$N$M"
...@@ -485,9 +460,7 @@ Model { ...@@ -485,9 +460,7 @@ Model {
ParamNamingRule "None" ParamNamingRule "None"
SignalNamingRule "None" SignalNamingRule "None"
InsertBlockDesc off InsertBlockDesc off
InsertPolySpaceComments off
SimulinkBlockComments on SimulinkBlockComments on
MATLABSourceComments off
EnableCustomComments off EnableCustomComments off
InlinedPrmAccess "Literals" InlinedPrmAccess "Literals"
ReqsInCode off ReqsInCode off
...@@ -499,7 +472,7 @@ Model { ...@@ -499,7 +472,7 @@ Model {
Version "1.10.0" Version "1.10.0"
Array { Array {
Type "Cell" Type "Cell"
Dimension 16 Dimension 17
Cell "GeneratePreprocessorConditionals" Cell "GeneratePreprocessorConditionals"
Cell "IncludeMdlTerminateFcn" Cell "IncludeMdlTerminateFcn"
Cell "CombineOutputUpdateFcns" Cell "CombineOutputUpdateFcns"
...@@ -509,13 +482,14 @@ Model { ...@@ -509,13 +482,14 @@ Model {
Cell "GenerateTestInterfaces" Cell "GenerateTestInterfaces"
Cell "ModelStepFunctionPrototypeControlCompliant" Cell "ModelStepFunctionPrototypeControlCompliant"
Cell "CPPClassGenCompliant" Cell "CPPClassGenCompliant"
Cell "MultiInstanceERTCode" Cell "PortableWordSizes"
Cell "PurelyIntegerCode" Cell "PurelyIntegerCode"
Cell "SupportComplex" Cell "SupportComplex"
Cell "SupportAbsoluteTime" Cell "SupportAbsoluteTime"
Cell "SupportContinuousTime" Cell "SupportContinuousTime"
Cell "SupportNonInlinedSFcns" Cell "SupportNonInlinedSFcns"
Cell "PortableWordSizes" Cell "MultiInstanceERTCode"
Cell "SupportNonFinite"
PropName "DisabledProps" PropName "DisabledProps"
} }
TargetFcnLib "ansi_tfl_table_tmw.mat" TargetFcnLib "ansi_tfl_table_tmw.mat"
...@@ -537,7 +511,6 @@ Model { ...@@ -537,7 +511,6 @@ Model {
IncludeMdlTerminateFcn on IncludeMdlTerminateFcn on
GeneratePreprocessorConditionals "Disable all" GeneratePreprocessorConditionals "Disable all"
CombineOutputUpdateFcns off CombineOutputUpdateFcns off
CombineSignalStateStructs off
SuppressErrorStatus off SuppressErrorStatus off
ERTFirstTimeCompliant off ERTFirstTimeCompliant off
IncludeFileDelimiter "Auto" IncludeFileDelimiter "Auto"
...@@ -627,14 +600,19 @@ Model { ...@@ -627,14 +600,19 @@ Model {
Block { Block {
BlockType Inport BlockType Inport
Port "1" Port "1"
OutMin "[]" UseBusObject off
OutMax "[]" BusObject "BusObject"
OutDataTypeStr "Inherit: auto"
LockScale off
BusOutputAsStruct off BusOutputAsStruct off
PortDimensions "-1" PortDimensions "-1"
VarSizeSig "Inherit" VarSizeSig "Inherit"
SampleTime "-1" SampleTime "-1"
OutMin "[]"
OutMax "[]"
DataType "auto"
OutDataType "fixdt(1,16,0)"
OutScaling "[]"
OutDataTypeStr "Inherit: auto"
LockScale off
SignalType "auto" SignalType "auto"
SamplingMode "auto" SamplingMode "auto"
LatchByDelayingOutsideSignal off LatchByDelayingOutsideSignal off
...@@ -644,14 +622,19 @@ Model { ...@@ -644,14 +622,19 @@ Model {
Block { Block {
BlockType Outport BlockType Outport
Port "1" Port "1"
OutMin "[]" UseBusObject off
OutMax "[]" BusObject "BusObject"
OutDataTypeStr "Inherit: auto"
LockScale off
BusOutputAsStruct off BusOutputAsStruct off
PortDimensions "-1" PortDimensions "-1"
VarSizeSig "Inherit" VarSizeSig "Inherit"
SampleTime "-1" SampleTime "-1"
OutMin "[]"
OutMax "[]"
DataType "auto"
OutDataType "fixdt(1,16,0)"
OutScaling "[]"
OutDataTypeStr "Inherit: auto"
LockScale off
SignalType "auto" SignalType "auto"
SamplingMode "auto" SamplingMode "auto"
SourceOfInitialOutputValue "Dialog" SourceOfInitialOutputValue "Dialog"
...@@ -682,10 +665,7 @@ Model { ...@@ -682,10 +665,7 @@ Model {
RTWMemSecDataParameters "Inherit from model" RTWMemSecDataParameters "Inherit from model"
SimViewingDevice off SimViewingDevice off
DataTypeOverride "UseLocalSettings" DataTypeOverride "UseLocalSettings"
DataTypeOverrideAppliesTo "AllNumericTypes"
MinMaxOverflowLogging "UseLocalSettings" MinMaxOverflowLogging "UseLocalSettings"
Variant off
GeneratePreprocessorConditionals off
} }
Block { Block {
BlockType Terminator BlockType Terminator
...@@ -693,7 +673,7 @@ Model { ...@@ -693,7 +673,7 @@ Model {
} }
System { System {
Name "ReadabilityExample" Name "ReadabilityExample"
Location [70, 200, 650, 460] Location [683, 246, 1311, 741]
Open on Open on
ModelBrowserVisibility off ModelBrowserVisibility off
ModelBrowserWidth 200 ModelBrowserWidth 200
...@@ -707,11 +687,11 @@ Model { ...@@ -707,11 +687,11 @@ Model {
ShowPageBoundaries off ShowPageBoundaries off
ZoomFactor "100" ZoomFactor "100"
ReportName "simulink-default.rpt" ReportName "simulink-default.rpt"
SIDHighWatermark "6" SIDHighWatermark 6
Block { Block {
BlockType SubSystem BlockType SubSystem
Name "f" Name "f"
SID "1" SID 1
Ports [2, 1] Ports [2, 1]
Position [105, 64, 270, 131] Position [105, 64, 270, 131]
LibraryVersion "1.12" LibraryVersion "1.12"
...@@ -729,8 +709,8 @@ Model { ...@@ -729,8 +709,8 @@ Model {
MaskHideContents off MaskHideContents off
MaskDescription "Table Block" MaskDescription "Table Block"
MaskDisplay "port_label('input',1,'x');port_label('input',2,'y');port_label('output',1,'output');text(0.5," MaskDisplay "port_label('input',1,'x');port_label('input',2,'y');port_label('output',1,'output');text(0.5,"
" 0.9, 'Tabular Expression', 'horizontalAlignment', 'center')\ncolor('red')\ntext(0.5, 0.1, 'Not Checked', 'horiz" " 0.9, 'Tabular Expression', 'horizontalAlignment', 'center');color('green');text(0.5, 0.1, 'Checked', 'horizonta"
"ontalAlignment', 'center')" "lAlignment', 'center')"
MaskIconFrame on MaskIconFrame on
MaskIconOpaque on MaskIconOpaque on
MaskIconRotate "none" MaskIconRotate "none"
...@@ -738,7 +718,7 @@ Model { ...@@ -738,7 +718,7 @@ Model {
MaskIconUnits "normalized" MaskIconUnits "normalized"
System { System {
Name "f" Name "f"
Location [433, 447, 931, 747] Location [399, 328, 945, 863]
Open off Open off
ModelBrowserVisibility off ModelBrowserVisibility off
ModelBrowserWidth 200 ModelBrowserWidth 200
...@@ -754,14 +734,14 @@ Model { ...@@ -754,14 +734,14 @@ Model {
Block { Block {
BlockType Inport BlockType Inport
Name "x" Name "x"
SID "4" SID 4
Position [35, 38, 65, 52] Position [35, 38, 65, 52]
IconDisplay "Port number" IconDisplay "Port number"
} }
Block { Block {
BlockType Inport BlockType Inport
Name "y" Name "y"
SID "5" SID 5
Position [35, 38, 65, 52] Position [35, 38, 65, 52]
Port "2" Port "2"
IconDisplay "Port number" IconDisplay "Port number"
...@@ -769,7 +749,7 @@ Model { ...@@ -769,7 +749,7 @@ Model {
Block { Block {
BlockType SubSystem BlockType SubSystem
Name "code" Name "code"
SID "3" SID 3
Ports [2, 1] Ports [2, 1]
Position [250, 49, 320, 96] Position [250, 49, 320, 96]
LibraryVersion "1.31" LibraryVersion "1.31"
...@@ -784,16 +764,16 @@ Model { ...@@ -784,16 +764,16 @@ Model {
MaskHideContents off MaskHideContents off
MaskType "Stateflow" MaskType "Stateflow"
MaskDescription "Embedded MATLAB block" MaskDescription "Embedded MATLAB block"
MaskSelfModifiable on
MaskDisplay "disp('f');" MaskDisplay "disp('f');"
MaskSelfModifiable on
MaskIconFrame on MaskIconFrame on
MaskIconOpaque off MaskIconOpaque off
MaskIconRotate "none" MaskIconRotate "none"
MaskPortRotate "default" MaskPortRotate "default"
MaskIconUnits "autoscale" MaskIconUnits "normalized"
System { System {
Name "code" Name "code"
Location [257, 457, 812, 717] Location [223, 338, 826, 833]
Open off Open off
ModelBrowserVisibility off ModelBrowserVisibility off
ModelBrowserWidth 200 ModelBrowserWidth 200
...@@ -806,18 +786,18 @@ Model { ...@@ -806,18 +786,18 @@ Model {
TiledPageScale 1 TiledPageScale 1
ShowPageBoundaries off ShowPageBoundaries off
ZoomFactor "100" ZoomFactor "100"
SIDHighWatermark "19" SIDHighWatermark 22
Block { Block {
BlockType Inport BlockType Inport
Name "x" Name "x"
SID "3::1" SID 1
Position [20, 101, 40, 119] Position [20, 101, 40, 119]
IconDisplay "Port number" IconDisplay "Port number"
} }
Block { Block {
BlockType Inport BlockType Inport
Name "y" Name "y"
SID "3::18" SID 18
Position [20, 136, 40, 154] Position [20, 136, 40, 154]
Port "2" Port "2"
IconDisplay "Port number" IconDisplay "Port number"
...@@ -825,15 +805,15 @@ Model { ...@@ -825,15 +805,15 @@ Model {
Block { Block {
BlockType Demux BlockType Demux
Name " Demux " Name " Demux "
SID "3::15" SID 21
Ports [1, 1] Ports [1, 1]
Position [270, 160, 320, 200] Position [270, 230, 320, 270]
Outputs "1" Outputs "1"
} }
Block { Block {
BlockType "S-Function" BlockType "S-Function"
Name " SFunction " Name " SFunction "
SID "3::14" SID 20
Tag "Stateflow S-Function ReadabilityExample 2" Tag "Stateflow S-Function ReadabilityExample 2"
Ports [2, 2] Ports [2, 2]
Position [180, 100, 230, 160] Position [180, 100, 230, 160]
...@@ -850,25 +830,20 @@ Model { ...@@ -850,25 +830,20 @@ Model {
Block { Block {
BlockType Terminator BlockType Terminator
Name " Terminator " Name " Terminator "
SID "3::17" SID 22
Position [460, 171, 480, 189] Position [460, 241, 480, 259]
} }
Block { Block {
BlockType Outport BlockType Outport
Name "output" Name "output"
SID "3::19" SID 19
Position [460, 101, 480, 119] Position [460, 101, 480, 119]
IconDisplay "Port number" IconDisplay "Port number"
} }
Line {
SrcBlock " SFunction "
SrcPort 1
DstBlock " Demux "
DstPort 1
}
Line { Line {
SrcBlock "x" SrcBlock "x"
SrcPort 1 SrcPort 1
Points [120, 0]
DstBlock " SFunction " DstBlock " SFunction "
DstPort 1 DstPort 1
} }
...@@ -892,12 +867,18 @@ Model { ...@@ -892,12 +867,18 @@ Model {
DstBlock " Terminator " DstBlock " Terminator "
DstPort 1 DstPort 1
} }
Line {
SrcBlock " SFunction "
SrcPort 1
DstBlock " Demux "
DstPort 1
}
} }
} }
Block { Block {
BlockType Outport BlockType Outport
Name "output" Name "output"
SID "6" SID 6
Position [35, 53, 65, 67] Position [35, 53, 65, 67]
IconDisplay "Port number" IconDisplay "Port number"
} }
...@@ -928,171 +909,148 @@ MatData { ...@@ -928,171 +909,148 @@ MatData {
DataRecord { DataRecord {
Tag DataTag0 Tag DataTag0
Data " %)30 . > 8 ( $0 ! $ ! !-0T]3 0 $ $1A=&$. 2 8 ( #0 " Data " %)30 . > 8 ( $0 ! $ ! !-0T]3 0 $ $1A=&$. 2 8 ( #0 "
" % \" 8 ! 0 & & -T\" 0 $ ! !0 X !@- !@ @ ) 4" " % \" 8 ! 0 & & -T\" 0 $ ! !0 X # + !@ @ ) 4"
" ( 0 # T ! ( P- %)30 . D#, 8 ( @ % \" $ ! 0 " " ( 0 ) L ! ( \"0+ %)30 . \\\"L 8 ( @ % \" $ ! 0 "
" % 0 !0 $ % 34-/4P . 2#, 8 ( $0 ! $ ! !-0T]3 0 T !&:6QE5W)A<'!E<E" " % 0 !0 $ % 34-/4P . J\"L 8 ( $0 ! $ ! !-0T]3 0 T !&:6QE5W)A<'"
"]? #@ @S & \" $ !0 @ !> 0 $ #@ ) & \" D !0 @ " "!E<E]? #@ &@K & \" $ !0 @ !) 0 $ #@ \"@( & \" D !0 "
"#0\" 0 $ @ - ( \" + -@! X @ . ( +@# !0\" T @ 1W)I9# 0V5L;', 0V5L;#$ 8" " @ #X!P 0 $ @ /@' \" + -@! X @ . ( +@# !X!P ^ < 1W)I9# 0V5L;', 0V5L;#"
"V]N9 !C;VYD7W1E>'0 8V5L;%]I;F1E> !P87)E;G1?9W)I9 !C96QL<P!'<FED '!A<F5N=%]C96QL '-P;&ET7W!B &YU;5]C96QL<P!G<FED7VE" "$ 8V]N9%]T97AT &-E;&Q?:6YD97@ <&%R96YT7V=R:60 8V5L;', 1W)I9 !P87)E;G1?8V5L; !S<&QI=%]P8@!N=6U?8V5L;', 9W)I9%]I;F1E"
"N9&5X ')'<FED &YE=U]C96QL7W!B &1E;&5T95]C96QL7W!B '!B7V9L86< 8V]L;W( 0V5L; !S=6)G<FED '=I9'1H &AE:6=H= !G<FED7W!B " "> !R1W)I9 !N97=?8V5L;%]P8@!D96QE=&5?8V5L;%]P8@!P8E]F;&%G $-E;&P <W5B9W)I9 !C;VYD '=I9'1H &AE:6=H= !G<FED7W!B &-O;&"
"&-O;F1I=&EO;E]T97AT7W=I9'1H &-O;F1I=&EO;E]T97AT7VAE:6=H= !C;VYD:71I;VY?=&5X=%]X &-O;F1I=&EO;E]T97AT7WD 8V]N9&ET:6]" "]R &-O;F1I=&EO;E]T97AT7W=I9'1H &-O;F1I=&EO;E]T97AT7VAE:6=H= !C;VYD:71I;VY?=&5X=%]X &-O;F1I=&EO;E]T97AT7WD 8V]N9&ET"
"N7W1E>'1?;V9F<V5T &=R:61?<'5S:%]W:61T: !21W)I9 !'<FED,0!'<FED,@!#96QL,@!R97-U;'0 <F5S=6QT7W1E>'0 4D-E;&P 9G5N8W1I;" ":6]N7W1E>'1?;V9F<V5T &=R:61?<'5S:%]W:61T: !21W)I9 !'<FED,0!'<FED,@!#96QL,@!R97-U;'1?=&5X= !20V5L; !R97-U;'0 9G5N8W"
"VY?;F%M90!F=6YC=&EO;E]I;G!U=', <V5T=&EN9W, 8VAE8VME9 !O<&5N &UU;'1I7VUO9&4 1&%T80!F:6< " "1I;VY?;F%M90!F=6YC=&EO;E]I;G!U=', <V5T=&EN9W, 8VAE8VME9 !O<&5N &UU;'1I7VUO9&4 1&%T80!F:6< "
" ) $P !X D *P " " ( $0 !X C *P "
" !0 $ / P ( . ! ," " !0 $ / P ( . ! "
" ( @ 0 # 0 4 \" @ 8 ! @ " " , ( @ 0 # 0 4 \" @ 8 ! @ "
" < ' 0 @ & @ D $ @ H " " < ' 0 @ & @ D $ @ H"
" % ! L ) ! P * ! T + ! " " % ! L ) ! P * ! T + ! "
" X , ! \\ - ) 0 $ !2 'P $ !3 ( $ !4 " " X , ! \\ - ) 0 $ ] 'P $ ^ ( $ "
" )0 $ !5 )@ $ !6 )P $ !7 * $ !8 *0 $ !9 *@ $ !: P ( ! " " _ )0 $ ! )@ $ !! )P $ !\" * $ !# *0 $ !$ *@ $ !% P ( "
" 3P !\\ ! 4 \" ! 40 4 # 0 ! A 0 #( B 0 #, C 0 #0 2 " "! .@ !\\ ! .P \" ! / 0 # 0 P A 0 \", B 0 \"0 7 0 \"4 "
" 0 #4 & ! $ !0 $ ! !@ $ \" !P $ - $0 $ . $@ $ / " " ! 0 ! 4 ! 0 8 ! \"@ ! ! \"P $ !P $ & \"P $"
" 0 ( 0 D , 0 H - 0 L . 0 P !@ 0 ! P 4 ! ! " " ' # $ ( #0 $ ) 0 $ 0 ( % 0 , & 0 0 0 0 4 "
" 8 ! !0 < ! !@ !$ ! !P !( ! \" ) ! $ 1 !0 $ 2 !@ " " !@ 0 ! #0 4 ! #@ 8 ! 'P !0 ! ( !4 ! (0 ! ! (@ "
" $ 3 !P $ L %0 $ M %@ $ N %P $ O $0 $ P $@ $ Q !@ " "$ !P $ ; \"P $ < # $ = #0 $ > 8 $ 0 \\ % 0 ! "
" @ ! )@ P ! )P T ! * X ! *0 \\ ! *@ ! ! *P ) ! " "& 0 !$ 4 0 !( 5 0 !, 0 0 !0 !@ 0 ! %0 4 ! %@ 8 ! "
"$ 4 !0 $ 5 !@ $ 6 !P $ 7 %0 $ 8 %@ $ 9 %P $ : $0 $ " " %P !0 ! & !4 ! &0 ! ! &@ $ P $ F (0 $ G (@ $ H "
" ; $@ $ < \"0 0 ! '0 4 ! '@ 8 ! 'P < ! ( !4 ! (0 !8 " " %P $ I 0 # 0 \"H A 0 \"L B 0 \"P 7 0 \"T ! , ! "
" ! (@ !< ! (P !$ ! ) !( ! )0 4 # 0 #8 A 0 #< B 0 #@ " " +@ \"$ ! +P \"( ! , !< ! ,0 $ P $ R (0 $ S (@ $ T "
"C 0 #D 2 0 #H % P $ [ (0 $ \\ (@ $ ] (P $ ^ $@ $ _" " %P $ U 0 # 0 #8 A 0 #< B 0 #@ 7 0 #D "
" !0 , ! 0 \"$ ! 00 \"( ! 0@ \", ! 0P !( ! 1 4 # 0 $4 " " "
"A 0 $8 B 0 $< C 0 $@ 2 0 $D % P $ !* (0 $ !+ (@ $ !, " " . X P !@ @ $ 4 ( 0 0 ! "
" (P $ !- $@ $ !. " " ! ! !X/#TQ#@ #@ & \" 8 !0 @ ! 0 $ \"0 @ #P/PX P !@ "
" . X X !" " @ $ 4 ( 0 , ! ! P!X/C$ #@ #@ & \" 8 !0 @ ! 0 "
"@ @ & 4 ( 0 $ ! D ( 0 #DGD . , 8 ( ! % \" " " $ \"0 @ 0 X !( !@ @ - 4 ( !@ $ ! 8 8 W"
" $ $ 0 0 0 >#P],0X X !@ @ & 4 ( 0 $ ! D ( " "0( ! 0 4 ! #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ #P/"
" \\#\\. . 8 ( !@ % \" $ ! 0 ) \" $ _)Y #@ & & \"" "PX !0 !@ @ - 4 ( !P $ ! 8 < W0( ! @ 0 & @ "
" $ !0 @ ! 0 $ #@ # & \" 0 !0 @ ! P $ $ " " . . 8 ( !@ % \" $ ! 0 ) \" ! #@ #@ & \" "
" # '@^,0 . . 8 ( !@ % \" $ ! 0 ) \" ! #@ $@ & \"" "8 !0 @ ! 0 $ \"0 @ #P/PX !( !@ @ - 4 ( !@ $"
" T !0 @ & 0 $ !@ !@ #= @ $ ! !0 $ . . 8 ( !@ " " ! 8 8 W0( ! 0 ( # #@ $@ & \" T !0 @ & 0 $ "
" % \" $ ! 0 ) \" / _#@ $@ & \" 8 !0 @ ! P" " !@ !@ #= @ $ ! !0 $ . . 8 ( !@ % \" $ ! 0 "
" $ \"0 !@ #P/P / _ \\#\\. 4 8 ( #0 % \" < ! " " ) \" / _#@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ "
" 0 & ' -T\" 0 ( $ !@ ( #@ #@ & \" 8 !0 @ ! " " ! ! ( . , 8 ( ! % \" $ # 0 0 , >3PP X X !@ @ "
" 0 $ \"0 @ 0 X X !@ @ & 4 ( 0 $ ! D ( " " & 4 ( 0 $ ! D ( \\#\\. , 8 ( ! % \" $ "
" \\#\\. 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ \" " " $ 0 0 0 >3T], X X !@ @ & 4 ( 0 $ ! D ( $ "
" P X !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 4 ! " ". 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ ( 0 X "
"#@ #@ & \" 8 !0 @ ! 0 $ \"0 @ #P/PX !( !@ @ & " "X !@ @ & 4 ( 0 $ ! D ( \\#\\. . 8 ( !@ "
" 4 ( 0 , ! D 8 \\#\\ #P/P / _#@ $@ & \" T " "% \" $ ! 0 ) \" / _#@ #@ & \" 8 !0 @ ! 0 $ "
" !0 @ & 0 $ !@ !@ #= @ $ ! ! ( . . 8 ( !@ % \"" " \"0 @ #P/PX P !@ @ $ 4 ( 0 , ! ! P!Y/C #@ #@ "
" $ ! 0 ) \" $ U)Y #@ # & \" 0 !0 @ ! P $ $" "& \" 8 !0 @ ! 0 $ \"0 @ (0 X !( !@ @ - 4 "
" # 'D\\, . . 8 ( !@ % \" $ ! 0 ) \" / _#@ #@ & " "( !@ $ ! 8 8 W0( ! 0 @ ! #@ #@ & \" 8 !0 @ !"
"\" 8 !0 @ ! 0 $ \"0 @ ! 2?0 X !@ !@ @ ! 4 ( " " 0 $ \"0 @ #P/PX X !@ @ & 4 ( 0 $ ! D ( "
" 0 $ ! X P !@ @ $ 4 ( 0 0 ! ! ! !Y/3TP#@ #@ & \"" " \\#\\. . 8 ( !@ % \" $ ! 0 ) \" / _#@ % "
" 8 !0 @ ! 0 $ \"0 @ 0 X !( !@ @ - 4 ( !@" "& \" T !0 @ ( 0 $ !@ \" #= @ $ # !P D * @ X "
" $ ! 8 8 W0( ! 0 @ ! #@ #@ & \" 8 !0 @ ! 0 " "X !@ @ & 4 ( 0 $ ! D ( \"$ . . 8 ( !@ %"
" $ \"0 @ #P/PX X !@ @ & 4 ( 0 $ ! D ( " " \" $ ! 0 ) \" ! #@ $@ & \" T !0 @ & 0 $ "
" \\#\\. . 8 ( !@ % \" $ ! 0 ) \" $ \")] #@ #@ & \"" " !@ !@ #= @ $ ! @ , . 2 8 ( #0 % \" 8 ! 0 &"
" 8 !0 @ ! 0 $ \"0 @ #P/PX !( !@ @ & 4 ( 0" " & -T\" 0 $ ( 0 X X !@ @ & 4 ( 0 $ ! D ( "
" , ! D 8 #'FGO3AH[S\\-3B(CT[+O/WUIEMW3-.T_#@ #@ & \" 8 !0 @ ! 0" " \\#\\. . 8 ( !@ % \" $ ! 0 ) \" / _#@ #@ "
" $ \"0 @ ! !2?0 X !@ !@ @ ! 4 ( 0 $ ! X P !@ " "& \" 8 !0 @ ! 0 $ \"0 @ #P/PX !( !@ @ - 4 "
" @ $ 4 ( 0 , ! ! P!Y/C #@ #@ & \" 8 !0 @ ! 0 " "( !@ $ ! 8 8 W0( ! 0 < \" #@ # & \" 0 !0 @ "
" $ \"0 @ (0 X !( !@ @ - 4 ( !@ $ ! 8 8 W" "! P $ $ # '@M>0 . 2 8 ( !@ % \" $ # 0 ) & "
"0( ! 0 @ ! #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ #P/" " / _ \\#\\ #P/PX !( !@ @ - 4 ( !@ $ ! 8 8 W0( !"
"PX X !@ @ & 4 ( 0 $ ! D ( \\#\\. . 8 ( !@ " " 0 8 \" #@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ !"
" % \" $ ! 0 ) \" $ &)] #@ #@ & \" 8 !0 @ ! 0 " " !P ( . , 8 ( ! % \" $ # 0 0 , >\"MY X !( !@ @ &"
" $ \"0 @ #P/PX !( !@ @ & 4 ( 0 , ! D 8 #'FGO" " 4 ( 0 , ! D 8 \\#\\ #P/P / _#@ $@ & \" T "
"3AH[S\\-3B(CT[+O/WUIEMW3-.T_#@ % & \" T !0 @ ( 0 $ !@ \" #= @ " " !0 @ & 0 $ !@ !@ #= @ $ ! ! ( . 2 8 ( #0 % "
" $ # !P D * @ X X !@ @ & 4 ( 0 $ ! D ( " " \" 8 ! 0 & & -T\" 0 $ ) @ X P !@ @ $ 4 ( "
" \"$ . . 8 ( !@ % \" $ ! 0 ) \" ! #@ $@ & \" " " 0 , ! ! P!X*GD #@ $@ & \" 8 !0 @ ! P $ \"0 !@ "
" T !0 @ & 0 $ !@ !@ #= @ $ ! @ , . . 8 ( !@ " " #P/P / _ \\#\\. 2 8 ( #0 % \" 8 ! 0 & & -T\""
" % \" $ ! 0 ) \" $ W)Y #@ #@ & \" 8 !0 @ ! 0 " " 0 $ & @ X !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! "
" $ \"0 @ ! .\">0 X !( !@ @ - 4 ( !@ $ ! 8 8 W" " 0 D \" #@ # & \" 0 !0 @ ! 0 $ $ ! '@ . 2 8 ( "
"0( ! 0 @ ! #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ #P/" " !@ % \" $ # 0 ) & / _ \\#\\ #P/PX !( !@ @ - "
"PX X !@ @ & 4 ( 0 $ ! D ( \\#\\. . 8 ( !@ " " 4 ( !@ $ ! 8 8 W0( ! 0 0 \" #@ $@ & \" T "
" % \" $ ! 0 ) \" $ V)Y #@ #@ & \" 8 !0 @ ! 0 " " !0 @ & 0 $ !@ !@ #= @ $ ! \"@ ( . , 8 ( ! % "
" $ \"0 @ #P/PX !( !@ @ & 4 ( 0 , ! D 8 #'FGO" " \" $ # 0 0 , >\"]Y X !( !@ @ & 4 ( 0 , ! D 8 "
"3AH[S\\-3B(CT[+O/WUIEMW3-.T_#@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ " " \\#\\ #P/P / _#@ $@ & \" T !0 @ & 0 $ !@ !@ "
" $ ! !P ( . . 8 ( !@ % \" $ ! 0 ) \" $ \\)Y #@ " " #= @ $ ! !@ ( . 2 8 ( #0 % \" 8 ! 0 & & -T\" "
" # & \" 0 !0 @ ! P $ $ # '@M>0 . 2 8 ( !@ % \" " " 0 $ * @ X P !@ @ $ 4 ( 0 $ ! ! 0!Y #@ $@ & "
" $ # 0 ) & / _ \\#\\ #P/PX !( !@ @ - 4 ( !@ " " \" 8 !0 @ ! P $ \"0 !@ #P/P / _ \\#\\. 8 8 ( "
" $ ! 8 8 W0( ! 0 8 \" #@ $@ & \" T !0 @ & 0 " " #0 % \" L ! 0 & + -T\" 0 8 # \"P P - #@ \\ "
" $ !@ !@ #= @ $ ! !P ( . . 8 ( !@ % \" $ ! 0 " "$ X !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 4 ! "
" ) \" $ )] #@ & & \" $ !0 @ ! 0 $ #@ # & \" " " #@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ ! \" $ . "
" 0 !0 @ ! P $ $ # '@K>0 . 2 8 ( !@ % \" $ # 0 " " 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ \" P X !("
" ) & / _ \\#\\ #P/PX !( !@ @ - 4 ( !@ $ ! " " !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 4 ! #@ $@ & "
" 8 8 W0( ! 0 0 \" #@ $@ & \" T !0 @ & 0 $ !@ " " \" T !0 @ & 0 $ !@ !@ #= @ $ ! \" $ . , 8 ( "
"!@ #= @ $ ! \"0 ( . . 8 ( !@ % \" $ ! 0 ) \" " " ! % \" $ ! 0 0 $ 9@ X P !@ @ $ 4 ( 0 , ! "
" $ #)] #@ & & \" $ !0 @ ! 0 $ #@ # & \" 0 !0 " " ! P!X+'D #@ )@! & \" ( !0 @ ! 0 $ !0 $ < ! (P '-E= !I"
" @ ! P $ $ # '@J>0 . 2 8 ( !@ % \" $ # 0 ) & " ";G!U=', 8V]U;G0 ')A;F=E !E>&-E<'0 . . 8 ( !@ % \" $ ! 0 ) \""
" / _ \\#\\ #P/PX !( !@ @ - 4 ( !@ $ ! 8 8 W" " / _#@ # & \" 8 !0 @ $ \"0 . . 8 ( !"
"0( ! 0 8 \" #@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ " "@ % \" $ ! 0 ) \" 0(] #@ #@ & \" 8 !0 @ ! "
" $ ! \"0 ( . . 8 ( !@ % \" $ ! 0 ) \" $ $)] #@ " " 0 $ \"0 @ !90 X X !@ @ & 4 ( 0 $ ! D ( "
" & & \" $ !0 @ ! 0 $ #@ # & \" 0 !0 @ ! 0 " " . . 8 ( !@ % \" $ ! 0 ) \" / _#@ #@ & \""
" $ $ ! '@ . 2 8 ( !@ % \" $ # 0 ) & / _ " " 8 !0 @ ! 0 $ \"0 @ X X !@ @ & 4 ( 0"
" \\#\\ #P/PX !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 " " $ ! D ( . 4 X 8 ( 0 % \" 8 ! 0 . . "
" 0 \" #@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ ! \"@ " " 8 ( @ % \" $ 0 % 0 0 $ #@ ,@\" & \" ( !0"
" ( . . 8 ( !@ % \" $ ! 0 ) \" $ ')] #@ & & \" " " @ ! 0 $ !0 $ \\ ! AP '!A<F5N=%]C96QL '!A<F5N=%]G<FED &-E;&QS '-"
" $ !0 @ ! 0 $ #@ # & \" 0 !0 @ ! P $ $ #" "P;&ET7W!B &YU;5]C96QL<P &=R:61?:6YD97@ ')'<FED &YE=U]C96QL7W!B &1E;&5T95]C96QL7"
" '@O>0 . 2 8 ( !@ % \" $ # 0 ) & / _ \\#\\ #" "W!B . , 8 ( !@ % \" 0 ) X P !@ @ & "
"P/PX !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 8 \" #@ " "4 ( ! D #@ # & \" 8 !0 @ $ \"0 "
" $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ ! \"@ ( . . " " . , 8 ( !@ % \" 0 ) X X !@ @ & 4"
" 8 ( !@ % \" $ ! 0 ) \" $ ()] #@ & & \" $ !0 " " ( 0 $ ! D ( . . 8 ( !@ % \" $ ! 0 "
" @ ! 0 $ #@ # & \" 0 !0 @ ! 0 $ $ ! 'D . 2 " " ) \" #@ # & \" 8 !0 @ $ \"0 . , 8"
" 8 ( !@ % \" $ # 0 ) & / _ \\#\\ #P/PX !@ !@ " " ( !@ % \" 0 ) X P !@ @ & 4 ( "
" @ - 4 ( \"P $ ! 8 L W0( ! !@ , + # T . #P " " ! D #@ &@% & \" ( !0 @ ! 0 $ !0 $ !8 ! 8 $ '-U8"
" 0 #@ $@ & \" T !0 @ & 0 $ !@ !@ #= @ $ ! !0 " "F=R:60 !C;VYD 8V]N9%]T97AT &-E;&Q?:6YD97@ !"
" $ . 2 8 ( #0 % \" 8 ! 0 & & -T\" 0 $ ( 0 " "P87)E;G1?9W)I9 =VED=&@ &AE:6=H= !G<FED7W!B "
" X !( !@ @ - 4 ( !@ $ ! 8 8 W0( ! 0 ( # #@ $@" " <&)?9FQA9P &-O;&]R !C;VYD:71I;VY?=&5X=%]W:61T: 8V]N9&ET:6]N7W1E>'1?:&5"
" & \" T !0 @ & 0 $ !@ !@ #= @ $ ! !0 $ . 2 8 " "I9VAT &-O;F1I=&EO;E]T97AT7W@ !C;VYD:71I;VY?=&5X=%]Y 8V]N9&ET:6]N7W1E>'1?;V9F<V5T &=R:61?<'5S:%]W:61T:"
" ( #0 % \" 8 ! 0 & & -T\" 0 $ ( 0 X P !@ @ " " . , 8 ( !@ % \" 0 ) X P !@ @ & "
" $ 4 ( 0 $ ! ! 0!F #@ # & \" 0 !0 @ ! P $ " " 4 ( ! D #@ # & \" 8 !0 @ $ \"0"
" $ # '@L>0 . 4 $ 8 ( @ % \" $ ! 0 % 0 !P $ < <V5T &" " . . 8 ( !@ % \" $ ! 0 ) \" #@ # & \""
"EN<'5T<P!C;W5N= <F%N9V4 . . 8 ( !@ % \" $ ! 0 ) \" " " 8 !0 @ $ \"0 . . 8 ( !@ % \" $ ! "
" / _#@ # & \" 8 !0 @ $ \"0 . . 8 ( !@ " "0 ) \" #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ "
" % \" $ ! 0 ) \" 0(] #@ #@ & \" 8 !0 @ ! 0 $ " " X P !@ @ & 4 ( ! D #@ #@ & \" 8 !"
" \"0 @ !90 X X !@ @ & 4 ( 0 $ ! D ( " "0 @ ! 0 $ \"0 @ X P !@ @ & 4 ( ! "
" . . 8 ( !@ % \" $ ! 0 ) \" #@ #@ & \" 8 " " D #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ !I0 X X !@"
" !0 @ ! 0 $ \"0 @ X !0#@ !@ @ ! 4 ( !@ $ " " @ & 4 ( 0 $ ! D ( 3D . . 8 ( !@ % \" "
" ! X X !@ @ \" 4 ( 0 ! 4 ! ! 0 . R ( 8 " " $ ! 0 ) \" \"1 #@ #@ & \" 8 !0 @ ! 0 $ \""
"( @ % \" $ ! 0 % 0 #P $ \"' <&%R96YT7V-E;&P <&%R96YT7V=R:60 8V5" "0 @ D0 X X !@ @ & 4 ( 0 $ ! D ( -$ . . "
"L;', <W!L:71?<&( ;G5M7V-E;&QS 9W)I9%]I;F1E> <D=R:60 ;F5W7V-E;&Q?<&( " " 8 ( !@ % \" $ ! 0 ) \" #Y #@ /@ & \" ( !0"
" 9&5L971E7V-E;&Q?<&( X P !@ @ & 4 ( ! D #@ # & " " @ ! 0 $ !0 $ 8 ! $@ $-E;&QS $=R:60Q $=R:60R X P !@ @ & "
" \" 8 !0 @ $ \"0 . , 8 ( !@ % \" " " 4 ( ! D #@ # & \" 8 !0 @ $ \"0 "
" 0 ) X P !@ @ & 4 ( ! D #@ #@ & " " . , 8 ( !@ % \" 0 ) X \"0 0 !@ @ \" "
"\" 8 !0 @ ! 0 $ \"0 @ X X !@ @ & 4 ( " " 4 ( 0 $ ! 4 ! , 0 #P !#96QL,0 !#96QL,@ !R97-U;'0 !R97-U;'1?="
" 0 $ ! D ( . , 8 ( !@ % \" 0 ) " "&5X= !C;VQO<@ #@ # & \" 8 !0 @ $ \"0 . , "
" X P !@ @ & 4 ( ! D #@ # & \" 8 !0" " 8 ( !@ % \" 0 ) X P !@ @ & 4 ( "
" @ $ \"0 . : 4 8 ( @ % \" $ ! 0 % 0 %@" " ! D #@ # & \" 8 !0 @ $ \"0 . , "
" $ !@ 0 <W5B9W)I9 &-O;F0 !C;VYD7W1E>'0 8V5L;%]I;F1E" "8 ( !@ % \" 0 ) X ( P !@ @ \" 4 ( 0 "
"> '!A<F5N=%]G<FED !W:61T: :&5I9VAT &=R:61?<&" "$ ! 4 ! 0 0 * !'<FED, 1W)I9#$ $=R:60R !F=6YC=&EO;E]N"
"( !P8E]F;&%G 8V]L;W( &-O;F1I=&EO;E]T97AT7W=I9'1H !C;VYD" "86UE 9G5N8W1I;VY?:6YP=71S '-E='1I;F=S !C:&5C:V5D ;W!E;@ &9I9P "
":71I;VY?=&5X=%]H96EG:'0 8V]N9&ET:6]N7W1E>'1?> &-O;F1I=&EO;E]T97AT7WD !C;VYD:71I;VY?=&5X=%]O9F9S970 9W" "!M=6QT:5]M;V1E #@ # & \" 8 !0 @ $ \"0 . , 8 "
")I9%]P=7-H7W=I9'1H X P !@ @ & 4 ( ! D #@ # &" " ( !@ % \" 0 ) X P !@ @ & 4 ( "
" \" 8 !0 @ $ \"0 . , 8 ( !@ % \" " "! D #@ # & \" 8 !0 @ $ \"0 . , 8 "
" 0 ) X X !@ @ & 4 ( 0 $ ! D ( . " "( !@ % \" 0 ) X P !@ @ & 4 ( !"
" , 8 ( !@ % \" 0 ) X X !@ @ & 4 ( " " D #@ # & \" 8 !0 @ $ \"0 . , 8 ("
" 0 $ ! D ( . . 8 ( !@ % \" $ ! 0 ) " " !@ % \" 0 ) X P !@ @ & 4 ( ! "
" \" #@ # & \" 8 !0 @ $ \"0 . . 8 ( " " D #@ # & \" 8 !0 @ $ \"0 . B 8 ( "
" !@ % \" $ ! 0 ) \" #@ # & \" 8 !0 @ " " \"0 % \" $ !8 0 \" 6 !24T #@ $@ & \" ( !0 @ "
" $ \"0 . . 8 ( !@ % \" $ ! 0 ) \" " "! 0 $ !0 $ 4 ! !0 $U#3U, #@ "
" &E #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ !.0 X X !@ @ &"
" 4 ( 0 $ ! D ( )$ . . 8 ( !@ % \" $ ! "
" 0 ) \" \"1 #@ #@ & \" 8 !0 @ ! 0 $ \"0 @ "
" T0 X X !@ @ & 4 ( 0 $ ! D ( /D . ^ 8 ( "
" @ % \" $ ! 0 % 0 !@ $ 2 0V5L;', 1W)I9#$ 1W)I9#( #@ # & "
" \" 8 !0 @ $ \"0 . , 8 ( !@ % \" "
" 0 ) X P !@ @ & 4 ( ! D #@ ) ! & "
" \" ( !0 @ ! 0 $ !0 $ P ! / $-E;&PQ $-E;&PR ')E<W5L= "
" ')E<W5L=%]T97AT &-O;&]R . , 8 ( !@ % \" 0 ) "
" X P !@ @ & 4 ( ! D #@ # & \" 8 !0"
" @ $ \"0 . , 8 ( !@ % \" 0 ) "
" X P !@ @ & 4 ( ! D #@ @# & \" ( !0 "
" @ ! 0 $ !0 $ ! ! H $=R:60P !'<FED,0 1W)I9#( "
"&9U;F-T:6]N7VYA;64 !F=6YC=&EO;E]I;G!U=', <V5T=&EN9W, &-H96-K960 !O<&5N 9FEG "
" &UU;'1I7VUO9&4 . , 8 ( !@ % \" 0 ) X "
" P !@ @ & 4 ( ! D #@ # & \" 8 !0 @ "
" $ \"0 . , 8 ( !@ % \" 0 ) X "
" P !@ @ & 4 ( ! D #@ # & \" 8 !0 @ "
" $ \"0 . , 8 ( !@ % \" 0 ) X "
" P !@ @ & 4 ( ! D #@ # & \" 8 !0 @ "
" $ \"0 . , 8 ( !@ % \" 0 ) X \""
"( !@ @ ) 4 ( 0 %@ ! ( !8 %)30 . 2 8 ( @ % "
" \" $ ! 0 % 0 !0 $ % 34-/4P . "
} }
} }
# Finite State Machines # Finite State Machines
# #
# Stateflow Version 7.5 (R2010a) dated Aug 8 2010, 23:41:55 # Stateflow Version 7.5 (R2010a) dated Jan 19 2010, 11:07:24
# #
# #
...@@ -1104,22 +1062,20 @@ Stateflow { ...@@ -1104,22 +1062,20 @@ Stateflow {
created "22-Dec-2010 13:34:30" created "22-Dec-2010 13:34:30"
isLibrary 0 isLibrary 0
firstTarget 10 firstTarget 10
sfVersion 75014000.000003 sfVersion 75014000
} }
chart { chart {
id 2 id 2
name "f/code" name "f/code"
windowPosition [300.6 295.797 200.25 189.75] windowPosition [372 56 200 423]
viewLimits [0 156.75 0 153.75] viewLimits [0 156.75 0 153.75]
screen [1 1 1280 1024 1.25] screen [1 1 1366 768 1.25]
treeNode [0 3 0 0] treeNode [0 3 0 0]
firstTransition 5 firstTransition 5
firstJunction 4 firstJunction 4
viewObj 2 viewObj 2
machine 1 machine 1
toolbarMode LIBRARY_TOOLBAR toolbarMode LIBRARY_TOOLBAR
subviewS {
}
ssIdHighWaterMark 6 ssIdHighWaterMark 6
decomposition CLUSTER_CHART decomposition CLUSTER_CHART
type EML_CHART type EML_CHART
...@@ -1169,7 +1125,7 @@ Stateflow { ...@@ -1169,7 +1125,7 @@ Stateflow {
} }
dst { dst {
id 4 id 4
intersection [7 0 -1 -1 23.5747 42.5747 0 0] intersection [1 0 -1 0 23.5747 42.5747 0 0]
} }
midPoint [23.5747 24.9468] midPoint [23.5747 24.9468]
chart 2 chart 2
...@@ -1177,6 +1133,9 @@ Stateflow { ...@@ -1177,6 +1133,9 @@ Stateflow {
dataLimits [23.575 23.575 14.625 34.575] dataLimits [23.575 23.575 14.625 34.575]
subviewer 2 subviewer 2
drawStyle SMART drawStyle SMART
slide {
sticky BOTH_STICK
}
executionOrder 1 executionOrder 1
ssIdNumber 2 ssIdNumber 2
} }
......