update math fibonacci see-also links

This commit is contained in:
Krishna Vedala 2020-05-28 15:19:27 -04:00
parent ea8aaf963d
commit 2216628678
No known key found for this signature in database
GPG Key ID: BA19ACF8FC8792F7
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
* integer as input. * integer as input.
* \f[\text{fib}(n) = \text{fib}(n-1) + \text{fib}(n-2)\f] * \f[\text{fib}(n) = \text{fib}(n-1) + \text{fib}(n-2)\f]
* *
* @see fibonacci_large.cpp, fibonacci_fast.cpp * @see fibonacci_large.cpp, fibonacci_fast.cpp, string_fibonacci.cpp
*/ */
#include <cassert> #include <cassert>
#include <iostream> #include <iostream>

View File

@ -7,7 +7,7 @@
* Took 0.608246 seconds to compute 50,000^th Fibonacci * Took 0.608246 seconds to compute 50,000^th Fibonacci
* number that contains 10450 digits! * number that contains 10450 digits!
* *
* @see fibonacci.cpp, fibonacci_fast.cpp * @see fibonacci.cpp, fibonacci_fast.cpp, string_fibonacci.cpp
*/ */
#include <cinttypes> #include <cinttypes>