Overview
Comment:*** empty log message ***
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: a2a067f83fca302751ca149b4327830756da9ce068389b0de3df8cf9ef378b87
User & Date: gawthrop@users.sourceforge.net on 2000-12-03 15:47:53
Other Links: branch diff | manifest | tags
Context
2000-12-03
16:06:22
Fixed bug in generating dummies
Added logic declarations
check-in: a25ae5413f user: gawthrop@users.sourceforge.net tags: origin/master, trunk
15:47:53
*** empty log message *** check-in: a2a067f83f user: gawthrop@users.sourceforge.net tags: origin/master, trunk
2000-12-01
20:55:01
Added Geraint's fix for zeroing matrices check-in: f028d55876 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
Changes

Modified mttroot/mtt/bin/trans/sympar2par_txt2m from [5ffb0c47af] to [62092b15cb].

10
11
12
13
14
15
16
17
18


19
20
21
22
23
24


25
26
27
28
29
30


31
32
33
34
35
36
10
11
12
13
14
15
16


17
18
19
20
21
22


23
24
25
26
27
28


29
30
31
32
33
34
35
36







-
-
+
+




-
-
+
+




-
-
+
+






# Used in lang_header
# Copyright (C) 2000 by Peter J. Gawthrop

case $2 in
    zero)
	  strip_comments <$1_sympar.txt  |\
          awk '{
          i++; printf("  %s %s = 0.0;\n", decl, tolower($1));
          }' decl=$3
          i++; printf("  %s %s = 0.0;\n",  tolower($1));
          }' 
	;;
    set)
	  strip_comments <$1_sympar.txt  |\
         awk '{
           i++; printf("  %s mttpar(%i) \t= %s;\n", decl, i, tolower($1));
         }' decl=$3
           i++; printf("  %s mttpar(%i) \t= %s;\n", i, tolower($1));
         }' 
        ;;
    *)
         strip_comments <$1_sympar.txt  |\
         awk '{
           i++; printf("  %s %s \t= mttpar(%i);\n", decl, tolower($1), i);
         }' decl=$3
           i++; printf("  %s %s \t= mttpar(%i%s);\n", decl, tolower($1), i, minusone);
         }' decl="$3" minusone="$4"
	;;
esac





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