Changeset dc2916 in git
- Timestamp:
- Mar 2, 2017, 3:39:16 PM (7 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- c33a45fa75ea4e4d477f6d9a1131e28778167816
- Parents:
- f230d92beb8c76f7ee1f9ea3e3e91993df4f4cad
- Location:
- Singular/dyn_modules/python
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/dyn_modules/python/CF_wrap.cc
rf230d92 rdc2916 1 #include <kernel/mod2.h> 2 #ifdef HAVE_PYTHON 1 3 #include <sstream> 2 4 #include <boost/python.hpp> 3 #include <kernel/mod2.h>4 5 #include "factory/factory.h" 5 6 … … 46 47 .def(self/=int()); 47 48 } 49 #endif -
Singular/dyn_modules/python/ideal_wrap.cc
rf230d92 rdc2916 1 #include <kernel/mod2.h> 2 #ifdef HAVE_PYTHON 1 3 #include <boost/python.hpp> 2 #include <kernel/mod2.h>3 4 #include "Poly.h" 4 5 #include "Ideal.h" … … 78 79 79 80 } 80 81 81 #endif -
Singular/dyn_modules/python/interpreter_support.cc
rf230d92 rdc2916 1 #include <kernel/mod2.h> 2 #ifdef HAVE_PYTHON 1 3 #include <sstream> 2 4 #include <boost/python.hpp> 3 5 #include <boost/python/suite/indexing/vector_indexing_suite.hpp> 4 #include <kernel/mod2.h>5 6 #include "Singular/subexpr.h" 6 7 #include "Poly.h" … … 552 553 def("is_builtin", is_builtin); 553 554 } 554 555 #endif -
Singular/dyn_modules/python/intvec_wrap.cc
rf230d92 rdc2916 1 #include <kernel/mod2.h> 2 #ifdef HAVE_PYTHON 1 3 #include <boost/python.hpp> 2 4 #include <boost/python/suite/indexing/vector_indexing_suite.hpp> 3 #include <kernel/mod2.h>4 5 #include "IIntvec.h" 5 6 #include "intvec_wrap.h" … … 33 34 .def(boost::python::vector_indexing_suite<Intvec>()); 34 35 } 36 #endif 37 -
Singular/dyn_modules/python/number_wrap.cc
rf230d92 rdc2916 1 #include <kernel/mod2.h> 2 #ifdef HAVE_PYTHON 1 3 #include <boost/python.hpp> 2 #include <kernel/mod2.h>3 4 #include "Number.h" 4 5 #include "number_wrap.h" … … 47 48 .def("ring",Number_get_Ring); 48 49 } 49 50 50 #endif -
Singular/dyn_modules/python/playground.cc
rf230d92 rdc2916 1 #include <kernel/mod2.h> 2 #ifdef HAVE_PYTHON 1 3 #include <boost/python.hpp> 2 #include <kernel/mod2.h>3 4 #include "Poly.h" 4 5 #include "boost/python/numeric.hpp" … … 53 54 def("foo2",foo2); 54 55 } 56 #endif -
Singular/dyn_modules/python/poly_wrap.cc
rf230d92 rdc2916 1 #include <kernel/mod2.h> 2 #ifdef HAVE_PYTHON 1 3 #include <boost/python.hpp> 2 #include <kernel/mod2.h>3 4 #include "Poly.h" 4 5 #include "ring_wrap.h" … … 59 60 60 61 } 61 62 62 #endif -
Singular/dyn_modules/python/python_module.cc
rf230d92 rdc2916 1 #include <kernel/mod2.h> 2 #ifdef HAVE_PYTHON 1 3 #include <stdlib.h> 2 4 #include <stdio.h> … … 8 10 #include <boost/python.hpp> 9 11 #include <Python.h> 10 #include <kernel/mod2.h>11 12 #include <Singular/tok.h> 12 13 #include <kernel/structs.h> … … 80 81 return MAX_TOK; 81 82 } 82 83 #endif -
Singular/dyn_modules/python/ring_wrap.cc
rf230d92 rdc2916 1 1 #include <kernel/mod2.h> 2 #ifdef HAVE_PYTHON 2 3 #include <boost/python.hpp> 3 #include <kernel/mod2.h>4 4 #include <Singular/ipshell.h> 5 5 #include "ring_wrap.h" … … 37 37 .def(boost::python::init <>()); 38 38 } 39 #endif -
Singular/dyn_modules/python/vector_wrap.cc
rf230d92 rdc2916 1 #include <kernel/mod2.h> 2 #ifdef HAVE_PYTHON 1 3 #include <boost/python.hpp> 2 #include <kernel/mod2.h>3 4 #include "Poly.h" 4 5 #include "vector_wrap.h" … … 33 34 .def("ring",Vector_get_Ring); 34 35 } 36 #endif
Note: See TracChangeset
for help on using the changeset viewer.