CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

| Download

GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it

Views: 418384
1
#ifndef QNMZ_VERSION_H
2
#define QNMZ_VERSION_H
3
4
#define QNMZ_VERSION_MAJOR 3
5
#define QNMZ_VERSION_MINOR 2
6
#define QNMZ_VERSION_PATCH 1
7
#define QNMZ_VERSION 3.4.0
8
#define QNMZ_RELEASE (QNMZ_VERSION_MAJOR * 10000 + QNMZ_VERSION_MINOR * 100 + QNMZ_VERSION_PATCH)
9
10
namespace libQnormaliz {
11
inline unsigned int getVersion()
12
{
13
return QNMZ_RELEASE;
14
}
15
16
} //end namespace libQnormaliz
17
18
#endif // QNMZ_VERSION_H
19
20