source: git/Singular/dyn_modules/gfanlib/gfanlib.cc @ aa4d31

spielwiese
Last change on this file since aa4d31 was aa4d31, checked in by Reimer Behrends <behrends@…>, 5 years ago
parallel preprocessor-related fixes.
  • Property mode set to 100644
File size: 573 bytes
Line 
1#include "kernel/mod2.h"
2
3#if HAVE_GFANLIB
4
5#include "bbcone.h"
6#include "bbfan.h"
7#include "bbpolytope.h"
8#include "tropical.h"
9
10#include "Singular/ipid.h"
11#include "Singular/mod_lib.h"
12
13
14template class gfan::Vector<gfan::Integer>;
15template class gfan::Vector<gfan::Rational>;
16template class gfan::Matrix<gfan::Integer>;
17template class gfan::Matrix<gfan::Rational>;
18
19extern "C" int SI_MOD_INIT(gfanlib)(SModulFunctions* p)
20{
21  gfan::initializeCddlibIfRequired();
22  bbcone_setup(p);
23  bbfan_setup(p);
24  bbpolytope_setup(p);
25  tropical_setup(p);
26  return MAX_TOK;
27}
28
29#endif
Note: See TracBrowser for help on using the repository browser.