update
This commit is contained in:
@@ -4,8 +4,6 @@
|
||||
|
||||
#include "mini-odeint.hpp"
|
||||
|
||||
#include <ranges>
|
||||
|
||||
unsigned int Factorial(unsigned int number) {
|
||||
return number <= 1 ? number : Factorial(number - 1) * number;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user