Overview
Comment:Do not write temporary variables if NUM_OF_TMP_VAR = 0.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: b3f70e2ca1ad5956f7f7f37ec50f44ec13ddcaacaf66c04dcdc9b1df05ff92c9
User & Date: geraint@users.sourceforge.net on 2004-08-29 03:18:11
Other Links: branch diff | manifest | tags
Context
2004-08-29
13:11:21
Writes MTTyz vector in the same format as MTTx and MTTy: MTTyz($d,1) check-in: c0575fea61 user: geraint@users.sourceforge.net tags: origin/master, trunk
03:18:11
Do not write temporary variables if NUM_OF_TMP_VAR = 0. check-in: b3f70e2ca1 user: geraint@users.sourceforge.net tags: origin/master, trunk
03:17:02
Vectorise sesx and sesy. check-in: f8f26c000a user: geraint@users.sourceforge.net tags: origin/master, trunk
Changes

Modified mttroot/mtt/cc/sympar_txt2h.sh from [4da6e2e9e7] to [94d0885238].

1
2
3



4
5
6
7
8
9
10
#! /bin/sh
# $Id$
# $Log$



# Revision 1.7.2.1  2002/09/04 10:44:59  geraint
# Added option to specify number of tmp variables declared (-ntmpvar <N>).
#
# Revision 1.7  2002/07/10 11:53:32  geraint
# Replaced shell loop with template expansion - perceptibly quicker generation of sympar.h.
#
# Revision 1.6  2002/05/19 13:01:22  geraint



>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh
# $Id$
# $Log$
# Revision 1.8  2002/09/16 08:08:01  geraint
# Merged changes from global-optimisation branch.
#
# Revision 1.7.2.1  2002/09/04 10:44:59  geraint
# Added option to specify number of tmp variables declared (-ntmpvar <N>).
#
# Revision 1.7  2002/07/10 11:53:32  geraint
# Replaced shell loop with template expansion - perceptibly quicker generation of sympar.h.
#
# Revision 1.6  2002/05/19 13:01:22  geraint
1111
1112
1113
1114
1115
1116
1117

1118

1119

#define MTT_UNUSED
#endif
#endif

EOF

declare_sys_param	>> ${OUT}

declare_temp_vars	>> ${OUT}










>
|
>

>
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
#define MTT_UNUSED
#endif
#endif

EOF

declare_sys_param	>> ${OUT}
if [ ${NUM_OF_TMP_VAR} -gt 0 ]; then
    declare_temp_vars	>> ${OUT}
fi



MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]