source: git/dyn_modules/callgfanlib/gfanlib.cc @ 81384b

jengelh-datetimespielwiese
Last change on this file since 81384b was 81384b, checked in by Yue Ren <ren@…>, 10 years ago
new: newest version of callgfanlib package as master branch also includes minor changes in bigintmat to allow empty matrices and a new function which returns the regular print output as char* (necessary for the print routines of the convex objects)
  • Property mode set to 100644
File size: 438 bytes
Line 
1#include <kernel/mod2.h>
2#ifdef HAVE_FANS
3#include <bbcone.h>
4#include <bbfan.h>
5#include <bbpolytope.h>
6#include <gitfan.h>
7
8template class gfan::Vector<gfan::Integer>;
9template class gfan::Vector<gfan::Rational>;
10template class gfan::Matrix<gfan::Integer>;
11template class gfan::Matrix<gfan::Rational>;
12
13extern "C" int mod_init(void* gfanlibsingular)
14{
15  bbcone_setup();
16  bbfan_setup();
17  bbpolytope_setup();
18  gitfan_setup();
19}
20#endif
Note: See TracBrowser for help on using the repository browser.