Skip to content

Commit

Permalink
Deleted prints and duplicates
Browse files Browse the repository at this point in the history
  • Loading branch information
BillyMich committed Jan 11, 2024
1 parent 5d06bf8 commit ce18c14
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion main/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ ARGSMAN = $(DATASETS)/100000.bin 100 80 manhattan 0.1 0.001 50

ARGSIMP = $(DATASETS)/asciiData3.bin 10 50 improved 0.1 0.001 50

ARGSIMP = $(DATASETS)/asciiData3.bin 10 50 improved 0.1 0.001

$(EXEC): $(OBJS)
$(CC) $(OBJS) -o $(EXEC) $(LDFLAGS)
Expand Down
3 changes: 1 addition & 2 deletions modules/MathematicalFunctions.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,7 @@ double euclidean_distance_improved(Node* node1, Node* node2){
tempDimension2 = tempDimension2->next;
}

// printf("improved cost-%f\n",norm1+norm2-2.0*mult);
printf("improved cost-%f\n",norm1+norm2-2.0*mult);
//printf("improved cost-%f\n",norm1+norm2-2.0*mult);
return norm1+norm2-2.0*mult;
}

Expand Down

0 comments on commit ce18c14

Please sign in to comment.