CoxIter 1.3
CoxIter - Computing invariants of hyperbolic Coxeter groups
Loading...
Searching...
No Matches
paripolynomials.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 and AlVin.
8
9These are 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
14CIVA 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 CIVA. If not, see <http://www.gnu.org/licenses/>.
21*/
22
23#ifndef __PARI_POLYNOMIALS_H__
24#define __PARI_POLYNOMIALS_H__
25
26#include <pari/pari.h>
27#include <vector>
28#ifdef _USE_LOCAL_GMP_
29#include "gmpxx.h"
30#else
31#include <gmpxx.h>
32#endif
33using namespace std;
34
35namespace PariPolynomials {
43GEN vector2t_POL(const vector<int> &iCoefficients);
44
53GEN vector2t_POL(const vector<mpz_class> &iCoefficients);
54
62vector<long int> t_POL2vector(GEN poly);
63} // namespace PariPolynomials
64
65#endif
Definition paripolynomials.cpp:25
GEN vector2t_POL(const vector< int > &iCoefficients)
Definition paripolynomials.cpp:26
vector< long int > t_POL2vector(GEN poly)
Definition paripolynomials.cpp:63