11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# %% Version control history
# %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# %% $Id$
# %% $Log$
# %% Revision 1.10 2000/10/15 09:51:50 peterg
# %% Set array code in input rep
# %%
# %% Revision 1.9 2000/10/13 11:07:33 peterg
# %% Started conversion to new style state, input ext
# %%
# %% Revision 1.8 2000/09/30 13:53:07 peterg
|
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# %% Version control history
# %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# %% $Id$
# %% $Log$
# %% Revision 1.11 2000/10/17 09:55:21 peterg
# %% Added logic rep
# %%
# %% Revision 1.10 2000/10/15 09:51:50 peterg
# %% Set array code in input rep
# %%
# %% Revision 1.9 2000/10/13 11:07:33 peterg
# %% Started conversion to new style state, input ext
# %%
# %% Revision 1.8 2000/09/30 13:53:07 peterg
|
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
|
if [ -n "$arraycode" ]; then
new_style=`strip_comments < $1_$2.txt| grep "$name(">/dev/null; echo $?`
if [ "$new_style" = "1" ]; then
echo >> $outfile
echo " ## Set up the $name vector" >> $outfile
echo " $name = []; # Default to empty matrix (Remove in mtt_m2p)" >> $outfile
mtt_name2array $1 $arraycode set >> $outfile
else
echo "Old-style file detected: not creating array translations"
fi
fi
## Special for logic rep
if [ "$representation" = "logic" ]; then
echo >> $outfile
echo "## Open switches" >> $outfile
switch_txt2m Bounce >> $outfile
fi
# End of the function
echo '## END Code' >> $outfile
echo 'endfunction' >> $outfile
|
|
|
<
<
<
<
<
<
|
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
|
if [ -n "$arraycode" ]; then
new_style=`strip_comments < $1_$2.txt| grep "$name(">/dev/null; echo $?`
if [ "$new_style" = "1" ]; then
echo >> $outfile
echo " ## Set up the $name vector" >> $outfile
## echo " $name = []; # Default to empty matrix (Remove in mtt_m2p)" >> $outfile
mtt_name2array $1 $arraycode set >> $outfile
else
echo "Old-style file detected: not creating array translations"
fi
fi
## Special for logic rep
if [ "$representation" = "logic" ]; then
echo >> $outfile
echo "## Open switches" >> $outfile
switch_txt2m $system >> $outfile
fi
# End of the function
echo '## END Code' >> $outfile
echo 'endfunction' >> $outfile
|