Updated prototype to show correct function

This commit is contained in:
2019-01-28 12:47:28 -05:00
parent d8f8408c7c
commit aa5ae520c3

View File

@@ -54,7 +54,7 @@ bool isFound(T num, std::vector<T> list);
std::vector<std::string> getPermutations(std::string master, int num = 0);
//These functions return the numth Fibonacci number
uint64_t getFib(uint64_t num);
void getFib(mpz_t fibNum, uint64_t num);
mpz_class getMpzFib(uint64_t num);
//This is a function that performs a bubble sort on a vector
template<class T>
bool bubbleSort(std::vector<T> nums);