Skip to content
Snippets Groups Projects
Commit 3afffba9 authored by weirdwizardthomas's avatar weirdwizardthomas
Browse files

Updated documentation

parent 9dddcf18
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ DOXYFILE_ENCODING = UTF-8
# title of most generated pages and in a few other places.
# The default value is: My Project.
 
PROJECT_NAME = "Vector model"
PROJECT_NAME = "Vector model of information retrieval - Querying"
 
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
# could be handy for archiving the generated documentation or if some version
......
......@@ -4,9 +4,15 @@
#include <exception>
#include <string>
 
/**
* An exception that is thrown when the end of an inverted index list is reached (list is exhausted)
*/
class EndOfIndexException : public std::exception {
};
 
/**
* An exception that is thrown when a document ID cannot be found
*/
class IDNotFoundException : public std::exception {
};
 
......
......@@ -10,7 +10,7 @@
#include "../query/Query.h"
 
/**
* @brief Class representing the vector space of the collection
* @brief A class representing the vector space of the collection
*
* @author koristo1@fit.cvut.cz
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment