| 66 | |
| 67 | } |
| 68 | void export_module() |
| 69 | { |
| 70 | boost::python::class_<Module>("Module", "supports most operation a\ |
| 71 | python list supports with the expception, that elements must\ |
| 72 | be Polynomials") |
| 73 | .def(init<>()) |
| 74 | .def(init<const Module&>()) |
| 75 | .def("__str__", Module_as_str) |
| 76 | .def("ring",Ideal_get_Ring) |
| 77 | .def(boost::python::init <>()) |
| 78 | .def(vector_indexing_suite<Module>()); |
| 79 | |
| 80 | } |
| 81 | #endif |
no outgoing calls
no test coverage detected