Changeset 4a21397 in git


Ignore:
Timestamp:
Sep 8, 2005, 1:45:23 PM (19 years ago)
Author:
Michael Brickenstein <bricken@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
d964f9729f190e72c24a8391d0e7b4ab964543a2
Parents:
14d732bb500559034e8e28d8ebdbb781ef15bfa1
Message:
*bricken: make ideals work


git-svn-id: file:///usr/local/Singular/svn/trunk@8600 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
modules/python
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • modules/python/SConstruct

    r14d732 r4a21397  
    2929SharedLibrary("python_module",
    3030              ["python.cc", "poly_wrap.cc", "vector_wrap.cc", "CF_wrap.cc",\
    31              "number_wrap.cc", "playground.cc"],
     31             "number_wrap.cc", "playground.cc", "ideal_wrap.cc"],
    3232           
    3333              CPPPATH=[".", SING_ROOT+"/kernel",\
  • modules/python/wrapper.h

    r14d732 r4a21397  
    1 //$Id: wrapper.h,v 1.24 2005-08-26 10:39:08 bricken Exp $
     1//$Id: wrapper.h,v 1.25 2005-09-08 11:45:23 bricken Exp $
    22#ifndef PYTHON_SINGULAR_WRAPPER_HEADER
    33#define PYTHON_SINGULAR_WRAPPER_HEADER
     
    1818#include "Poly.h"
    1919#include "PowerSeries.h"
     20#include "ideal_wrap.h"
    2021#include <factory.h>
    2122#include "poly_wrap.h"
     
    2526#include "playground.h"
    2627#include "matpol.h"
     28
    2729using boost::python::numeric::array;
    2830using boost::python::extract;
     
    224226  export_vector();
    225227  export_playground();
     228  export_ideal();
    226229  boost::python::class_<PowerSeries>("power_series")       
    227230    .def(boost::python::init <const PowerSeries::numerator_type &,const PowerSeries::denominator_type&>())
Note: See TracChangeset for help on using the changeset viewer.