Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagelib
Path: blob/master/sage/geometry/triangulation/functions.h
4057 views
1
#ifndef FUNCTIONS__H
2
#define FUNCTIONS__H
3
4
int factorial(int n);
5
int binomial(int n, int D);
6
7
8
#endif
9
10