Eliminate pointless '#if 1' statements without matching '#else'.

This commit is contained in:
Diego Biurrun
2011-04-26 13:52:12 +02:00
parent 9d35fa520e
commit e6ff064845
11 changed files with 10 additions and 36 deletions
+1 -2
View File
@@ -218,7 +218,6 @@ int main(void){
printf("\n");
}
#if 1
for(i=0; i<LEN; i++){
double v[LEN];
double error=0;
@@ -233,7 +232,7 @@ int main(void){
printf("%f ", error);
}
printf("\n");
#endif
for(i=0; i<LEN; i++){
for(j=0; j<LEN; j++){
printf("%9.6f ", eigenvector[i + j*LEN]);