Changeset b9020c3 in git


Ignore:
Timestamp:
Jan 19, 2002, 6:20:59 PM (22 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', 'e7cc1ebecb61be8b9ca6c18016352af89940b21a')
Children:
63d0ae66dd2fa2c9dc02d5a744eb6986ece841d4
Parents:
e63e2390bd2de7a38f9c6a092970ef10827a89b7
Message:
extended fast_map


git-svn-id: file:///usr/local/Singular/svn/trunk@5752 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • Singular/extra.cc

    re63e239 rb9020c3  
    22*  Computer Algebra System SINGULAR      *
    33*****************************************/
    4 /* $Id: extra.cc,v 1.172 2002-01-19 14:48:14 obachman Exp $ */
     4/* $Id: extra.cc,v 1.173 2002-01-19 17:20:58 obachman Exp $ */
    55/*
    66* ABSTRACT: general interface to internals of Singular ("system" command)
     
    651651
    652652#include "mod_raw.h"
    653 #include "fast_maps.cc"
     653// #include "fast_maps.cc"
    654654   
    655655static BOOLEAN jjEXTENDED_SYSTEM(leftv res, leftv h)
     
    791791      ring map_r = IDRING(idroot->get(theMap->preimage, myynest));
    792792      ideal map_id = IDIDEAL(map_r->idroot->get(h->Next()->Name(), myynest));
    793 
     793#if 0
    794794      ring src_r, dest_r;
    795795      maMap_CreateRings(map_id, map_r, image_id, image_r, src_r, dest_r);
     
    799799      maMap_CreatePolyIdeal(map_id, map_r, src_r, dest_r, mp, mideal);
    800800      maPoly_Out(mp, src_r);
     801#endif
    801802      return FALSE;
    802803    }
  • Singular/fast_maps.cc

    re63e239 rb9020c3  
    77 *  Author:  obachman (Olaf Bachmann)
    88 *  Created: 02/01
    9  *  Version: $Id: fast_maps.cc,v 1.16 2002-01-19 17:11:42 obachman Exp $
     9 *  Version: $Id: fast_maps.cc,v 1.17 2002-01-19 17:20:59 obachman Exp $
    1010 *******************************************************************/
    1111#include "mod2.h"
     
    2424// define if you want to use optimization step
    2525#define HAVE_MAP_OPTIMIZATION 0
    26 
    27 
    2826
    2927/*******************************************************************************
  • Singular/ipshell.cc

    re63e239 rb9020c3  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ipshell.cc,v 1.72 2002-01-19 17:11:00 Singular Exp $ */
     4/* $Id: ipshell.cc,v 1.73 2002-01-19 17:20:59 obachman Exp $ */
    55/*
    66* ABSTRACT:
     
    3939
    4040// define this if you want to use the fast_map routine for mapping ideals
    41 //#define FAST_MAP
     41#define FAST_MAP
    4242
    4343#ifdef FAST_MAP
  • Singular/ring.cc

    re63e239 rb9020c3  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ring.cc,v 1.176 2002-01-19 17:11:42 obachman Exp $ */
     4/* $Id: ring.cc,v 1.177 2002-01-19 17:20:59 obachman Exp $ */
    55
    66/*
     
    26582658
    26592659// construct lp ring
    2660 ring rModifyRing_Simple(ring r, BOOLEAN ommit_degree, BOOLEAN ommit_comp, int exp_limit)
     2660ring rModifyRing_Simple(ring r, BOOLEAN ommit_degree, BOOLEAN ommit_comp, unsigned long exp_limit)
    26612661{
    26622662  if (!rHasSimpleOrder(r))
Note: See TracChangeset for help on using the changeset viewer.