Changeset 6aef6f2 in git


Ignore:
Timestamp:
Apr 21, 2005, 3:31:32 PM (18 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
Children:
666c9006c3ce6bb4011259e1c0edec1cd1490e29
Parents:
7668071605e2a9aa0d4be436ad97d172a27d5ca4
Message:
*hannes: fast_maps.* ->kernel


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

Legend:

Unmodified
Added
Removed
  • Singular/Makefile.in

    r766807 r6aef6f2  
    112112    gms.cc pcv.cc maps_ip.cc\
    113113    tgb.cc\
    114     pShallowCopyDelete.cc fast_maps.cc cntrlc.cc misc.cc
     114    pShallowCopyDelete.cc cntrlc.cc misc.cc
    115115
    116116# stuff for MP
     
    162162        cntrlc.h ipprint.h sdb.h \
    163163        ipshell.h tok.h \
    164         fast_maps.h \
    165164        silink.h \
    166165        fglm.h sing_dbm.h maps_ip.h \
  • kernel/Makefile.in

    r766807 r6aef6f2  
    100100    longalg.cc longrat.cc longrat0.cc \
    101101    maps.cc matpol.cc misc.cc gnumpfl.cc gnumpc.cc \
    102     modulop.cc mpr_complex.cc sparsmat.cc \
     102    modulop.cc mpr_complex.cc sparsmat.cc fast_maps.cc \
    103103    fglmzero.cc fglmvec.cc fglmgauss.cc fglmhom.cc fglmcomb.cc \
    104104    numbers.cc polys.cc p_polys.cc polys0.cc polys1.cc polys-impl.cc \
     
    148148        numbers.h stype.h clapconv.h ipconv.h maps.h \
    149149        clapsing.h matpol.h polys.h p_polys.h syz.h \
    150         ring.h timer.h dError.h \
     150        ring.h timer.h dError.h fast_maps.h \
    151151        febase.h shortfl.h mpr_complex.h mpr_global.h \
    152152        gring.h \
  • kernel/fast_maps.cc

    r766807 r6aef6f2  
    77 *  Author:  obachman (Olaf Bachmann)
    88 *  Created: 02/01
    9  *  Version: $Id: fast_maps.cc,v 1.1.1.1 2003-10-06 12:15:51 Singular Exp $
     9 *  Version: $Id: fast_maps.cc,v 1.2 2005-04-21 13:31:32 Singular Exp $
    1010 *******************************************************************/
    1111#include "mod2.h"
     
    3434                         poly pi_m, ring pi_r)
    3535{
    36   int n = min(pi_r->N, n_max_map_monomials);
     36  int n = si_min(pi_r->N, n_max_map_monomials);
    3737  int i, j;
    3838  Exponent_t e_i, e_j;
     
    280280  int* weights = (int*) omAlloc0(map_r->N*sizeof(int));
    281281  int i;
    282   int n = min(map_r->N, IDELEMS(image_id));
     282  int n = si_min(map_r->N, IDELEMS(image_id));
    283283
    284284  for (i=0; i<n; i++)
     
    412412    Print("\n");
    413413
     414  idTest(res_image_id);
    414415  return res_image_id;
    415416}
  • kernel/fast_maps.h

    r766807 r6aef6f2  
    88 *           bricken (Michael Brickenstein)
    99 *  Created: 01/02
    10  *  Version: $Id: fast_maps.h,v 1.1.1.1 2003-10-06 12:15:51 Singular Exp $
     10 *  Version: $Id: fast_maps.h,v 1.2 2005-04-21 13:31:32 Singular Exp $
    1111 *******************************************************************/
    1212
Note: See TracChangeset for help on using the changeset viewer.