From aa5ae520c3577a065f5e246b515fb30a45aaa1f0 Mon Sep 17 00:00:00 2001 From: Mattrixwv Date: Mon, 28 Jan 2019 12:47:28 -0500 Subject: [PATCH] Updated prototype to show correct function --- Algorithms.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Algorithms.hpp b/Algorithms.hpp index 6655a1e..5b61898 100644 --- a/Algorithms.hpp +++ b/Algorithms.hpp @@ -54,7 +54,7 @@ bool isFound(T num, std::vector list); std::vector 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 bool bubbleSort(std::vector nums);