libfork
libfork copied to clipboard
Error in fib ccpp benchmark
In the ccpp fibonacci benchmark I found an error that caused the implementation to give the wrong answer. This is caused by the first if statement being n <= 2 and not n < 2 like in the fibonacci implementation. After changing this it didn't output error anymore.