I created printDataSet.cpp file as a main file for the application, that reads the contents of a given dataset file and **prints* them to the terminal**. The command to run is:
./bin/printDataSet [datset_path]
I also made some changes to some files. Specifically:
Removed the EuclideanDistance() function from the test_distance.cc file.
Changed the Makefile to be compatible with the previous change.
Removed the section inside the readVectors.cpp file where it prints the size of the dataset (how many vector are there)
I created
printDataSet.cpp
file as a main file for the application, that reads the contents of a given dataset file and **prints* them to the terminal**. The command to run is:./bin/printDataSet [datset_path]
I also made some changes to some files. Specifically:
EuclideanDistance()
function from thetest_distance.cc
file.Makefile
to be compatible with the previous change.readVectors.cpp
file where it prints the size of the dataset (how many vector are there)and some other minor changes.