factorial.hpp
Go to the documentation of this file.
1 #ifndef FACTORIAL_H
2 #define FACTORIAL_H
3 
4 namespace SPE{
10  unsigned factorial(
11  unsigned n
12  );
13 }
14 #endif
Namespace containing all functions and data classes for this solver.
Definition: Ax_b.hpp:5
unsigned factorial(unsigned n)
calculate the factorial of an integer
Definition: factorial.cpp:2