source: git/Singular/dyn_modules/gfanlib/callgfanlib_conversion.h @ 296b78

fieker-DuValspielwiese
Last change on this file since 296b78 was 3f58b8d, checked in by Oleksandr Motsak <motsak@…>, 9 years ago
Removed libpolys from include path
  • Property mode set to 100644
File size: 925 bytes
Line 
1#ifndef CALLGFANLIB_CONVERSION_H
2#define CALLGFANLIB_CONVERSION_H
3
4#include <gfanlib/gfanlib.h>
5#include <coeffs/bigintmat.h>
6#include <coeffs/longrat.h>
7#include <coeffs/numbers.h>
8
9gfan::Integer* numberToInteger(const number &n);
10number integerToNumber(const gfan::Integer &I);
11bigintmat* zVectorToBigintmat(const gfan::ZVector &zv);
12bigintmat* zMatrixToBigintmat(const gfan::ZMatrix &zm);
13gfan::ZMatrix* bigintmatToZMatrix(const bigintmat &bim);
14gfan::ZVector* bigintmatToZVector(const bigintmat &bim);
15
16gfan::ZVector intStar2ZVector(const int d, const int* i);
17gfan::ZVector wvhdlEntryToZVector(const int n, const int* wvhdl0);
18int* ZVectorToIntStar(const gfan::ZVector &v, bool &overflow);
19char* toString(gfan::ZMatrix const &m);
20
21gfan::ZVector expvToZVector(const int n, const int* expv);
22
23gfan::ZFan* toFanStar(std::set<gfan::ZCone> setOfCones);
24std::set<gfan::ZVector> rays(std::set<gfan::ZCone> setOfCones);
25
26#endif
Note: See TracBrowser for help on using the repository browser.