Changeset 7758 for branches/stable_5.0
- Timestamp:
- 26/07/11 10:20:50 (10 months ago)
- Location:
- branches/stable_5.0/GDE
- Files:
-
- 5 modified
-
CLUSTALW/interface.c (modified) (1 diff)
-
SUPPORT/Flatio.c (modified) (2 diffs)
-
SUPPORT/Zuk_to_gen.c (modified) (1 diff)
-
SUPPORT/count.c (modified) (4 diffs)
-
SUPPORT/lsadt.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/stable_5.0/GDE/CLUSTALW/interface.c
r1754 r7758 211 211 sint ajb; 212 212 213 if(args[0]==NULL) return ;213 if(args[0]==NULL) return 0; 214 214 215 215 -
branches/stable_5.0/GDE/SUPPORT/Flatio.c
r2347 r7758 25 25 exit(1); 26 26 } 27 return ;27 return 0; 28 28 } 29 29 … … 164 164 } 165 165 } 166 return ;166 return 0; 167 167 } 168 168 -
branches/stable_5.0/GDE/SUPPORT/Zuk_to_gen.c
r2 r7758 100 100 fprintf(file,"\n//\n"); 101 101 } 102 return ;102 return 0; 103 103 } 104 104 -
branches/stable_5.0/GDE/SUPPORT/count.c
r2 r7758 256 256 if(special) 257 257 (*num) = *denom - (int)fnum; 258 return ;258 return 0; 259 259 } 260 260 … … 318 318 aval[i] = '\0'; 319 319 } 320 return ;320 return 0; 321 321 } 322 322 … … 370 370 partu[j] = (float)u / (float)tot; 371 371 } 372 return ;372 return 0; 373 373 } 374 374 … … 395 395 jj++; 396 396 } 397 return ;397 return 0; 398 398 } 399 399 -
branches/stable_5.0/GDE/SUPPORT/lsadt.c
r655 r7758 523 523 for(j=1; j<i; j++) 524 524 d[i][j] = runif(); 525 return ;525 return 0; 526 526 } 527 527 if(nempty == 0 && start == 2) … … 531 531 for(j=1; j<i; j++) 532 532 d[i][j] = delta[i][j] + rnorm()*estd; 533 return ;533 return 0; 534 534 } 535 535 for(i=2; i<=n; i++) 536 536 for(j=1; j<i; j++) 537 537 d[i][j] = delta[i][j]; 538 if(start==3 && nempty==0) return ;538 if(start==3 && nempty==0) return 0; 539 539 emp=nempty; 540 540 nemp=0; … … 577 577 d[i][j]+= rnorm()*estd; 578 578 } 579 return ;579 return 0; 580 580 } 581 581 … … 736 736 prc = 0; 737 737 print_iter(maxfnc, f); 738 return ;738 return 0; 739 739 } 740 740 if(itcrs>m) … … 814 814 prc = 0; 815 815 print_iter(maxfnc, f); 816 return ;816 return 0; 817 817 } 818 818 }
