AntonisZks / Information-Systems-Software-Development-Project

A university project implementing Vamana-Indexing-Algorithm (VIA) for Approximate-Nearest-Neighbors (ANN) problem.
2 stars 0 forks source link

Add documentation #26

Closed AntonisZks closed 5 days ago

AntonisZks commented 1 week ago

Add documentation to the code and create a README.md file for the whole project. For the documentation I suggest we use java DocStrings. A usage example is the following:

/**
 * @brief Adds two numbers
 * 
 * @param num1 the first number
 * @param num2 the second number
 * 
 * @return the sum of num1 and num2
 */
int add numbers(int num1, int num2) {
  return num1 + num2;
}
StavrosJKw commented 5 days ago

I have started documenting our project