Changeset 58b407 in git for dyn_modules/callgfanlib/gfanlib.cc
- Timestamp:
- Apr 11, 2013, 9:31:35 AM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 8b23bf954014d0a95b8966d5bb7a4845c21d9da1
- Parents:
- dd9de08cf1acd4433f35d74d593d1ec792b0176b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
dyn_modules/callgfanlib/gfanlib.cc
rdd9de0 r58b407 1 1 #include <kernel/mod2.h> 2 #ifdef HAVE_FANS 2 3 3 #include <bbcone.h> 4 4 #include <bbfan.h> 5 5 #include <bbpolytope.h> 6 6 #include <gitfan.h> 7 #include"Singular/ipid.h" 7 8 8 9 template class gfan::Vector<gfan::Integer>; … … 11 12 template class gfan::Matrix<gfan::Rational>; 12 13 13 extern "C" int mod_init( void* gfanlibsingular)14 extern "C" int mod_init(SModulFunctions* p) 14 15 { 15 bbcone_setup( );16 bbfan_setup( );17 bbpolytope_setup( );18 gitfan_setup( );16 bbcone_setup(p); 17 bbfan_setup(p); 18 bbpolytope_setup(p); 19 gitfan_setup(p); 19 20 } 20 #endif
Note: See TracChangeset
for help on using the changeset viewer.