source: git/Singular/dyn_modules/gfanlib/gfanlib.cc @ 97351e6

spielwiese
Last change on this file since 97351e6 was cbdc7a4, checked in by Hans Schoenemann <hannes@…>, 10 years ago
changed return value of mod_init from "grammar"-version to "all identifier"-Version
  • Property mode set to 100644
File size: 531 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 <gitfan.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  bbcone_setup(p);
22  bbfan_setup(p);
23  bbpolytope_setup(p);
24  gitfan_setup(p);
25  return MAX_TOK;
26}
27
28#endif
Note: See TracBrowser for help on using the repository browser.