CoxIter 1.3
CoxIter - Computing invariants of hyperbolic Coxeter groups
Loading...
Searching...
No Matches
signature.h
Go to the documentation of this file.
1/*
2Copyright (C) 2013-2017
3Rafael Guglielmetti, rafael.guglielmetti@unifr.ch
4*/
5
6/*
7This file is part of CoxIter.
8
9CoxIter is free software: you can redistribute it and/or modify
10it under the terms of the GNU General Public License as
11published by the Free Software Foundation, either version 3 of the
12License, or (at your option) any later version.
13
14CoxIter is distributed in the hope that it will be useful,
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License for more details.
18
19You should have received a copy of the GNU General Public License
20along with CoxIter. If not, see <http://www.gnu.org/licenses/>.
21*/
22
31#ifndef SIGNATURE_H
32#define SIGNATURE_H
33
34#include <array>
35#include <pari/pari.h>
36#include <string>
37
38using namespace std;
39
40class Signature {
41private:
43
44public:
45 Signature();
46 ~Signature();
47
48 array<unsigned int, 3> computeSignature(string matrix);
49};
50
51#endif // SIGNATURE_H
Definition signature.h:40
array< unsigned int, 3 > computeSignature(string matrix)
Definition signature.cpp:37
Signature()
Definition signature.cpp:25
~Signature()
Definition signature.cpp:35
GEN gEpsilon
Some small number (typically 10^-50)
Definition signature.h:42