Index: mttroot/mtt/bin/trans/switch_txt2m ================================================================== --- mttroot/mtt/bin/trans/switch_txt2m +++ mttroot/mtt/bin/trans/switch_txt2m @@ -14,10 +14,13 @@ ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ +## Revision 1.12 2000/11/09 09:52:07 peterg +## Removed [] from zero_state output +## ## Revision 1.11 2000/10/17 09:55:55 peterg ## Now writes to standard output ## Write the name, not the array ## ## Revision 1.10 2000/10/17 09:04:12 peterg @@ -87,12 +90,12 @@ # Set states to zero awk '{ if ($1=="#"){ printf("#== open - boolean vector of open switches ==#\n") - printf("open = zero_state(%i); # Default to not open\n", Nx); - + for (i=1;i<=Nx;i++) + printf("open(%i) = 0; # Default to not open\n", i); } else{ printf("\n#== Switch: %s ==#\n",$1) printf("if (%s_logic==0.0) \n", $1); printf(" open(%s) = 1;\n", $2);