| 53 | |
| 54 | |
| 55 | void export_ideal() |
| 56 | { |
| 57 | boost::python::class_<Ideal>("Ideal", "supports most operation a\ |
| 58 | python list supports with the expception, that elements must\ |
| 59 | be Polynomials") |
| 60 | .def(init<>()) |
| 61 | .def(init<const Ideal&>()) |
| 62 | .def("__str__", Ideal_as_str) |
| 63 | .def("ring",Ideal_get_Ring) |
| 64 | .def(boost::python::init <>()) |
| 65 | .def(vector_indexing_suite<Ideal >()); |
| 66 | |
| 67 | } |
| 68 | void export_module() |
| 69 | { |
| 70 | boost::python::class_<Module>("Module", "supports most operation a\ |
no outgoing calls
no test coverage detected