MCPcopy Create free account
hub / github.com/Singular/Singular / export_module

Function export_module

Singular/dyn_modules/python/ideal_wrap.cc:68–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66
67}
68void 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

Callers 1

BOOST_PYTHON_MODULEFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected