Changeset 6aef6f2 in git
- Timestamp:
- Apr 21, 2005, 3:31:32 PM (18 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 666c9006c3ce6bb4011259e1c0edec1cd1490e29
- Parents:
- 7668071605e2a9aa0d4be436ad97d172a27d5ca4
- Files:
-
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/Makefile.in
r766807 r6aef6f2 112 112 gms.cc pcv.cc maps_ip.cc\ 113 113 tgb.cc\ 114 pShallowCopyDelete.cc fast_maps.cccntrlc.cc misc.cc114 pShallowCopyDelete.cc cntrlc.cc misc.cc 115 115 116 116 # stuff for MP … … 162 162 cntrlc.h ipprint.h sdb.h \ 163 163 ipshell.h tok.h \ 164 fast_maps.h \165 164 silink.h \ 166 165 fglm.h sing_dbm.h maps_ip.h \ -
kernel/Makefile.in
r766807 r6aef6f2 100 100 longalg.cc longrat.cc longrat0.cc \ 101 101 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 \ 103 103 fglmzero.cc fglmvec.cc fglmgauss.cc fglmhom.cc fglmcomb.cc \ 104 104 numbers.cc polys.cc p_polys.cc polys0.cc polys1.cc polys-impl.cc \ … … 148 148 numbers.h stype.h clapconv.h ipconv.h maps.h \ 149 149 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 \ 151 151 febase.h shortfl.h mpr_complex.h mpr_global.h \ 152 152 gring.h \ -
kernel/fast_maps.cc
r766807 r6aef6f2 7 7 * Author: obachman (Olaf Bachmann) 8 8 * Created: 02/01 9 * Version: $Id: fast_maps.cc,v 1. 1.1.1 2003-10-06 12:15:51Singular Exp $9 * Version: $Id: fast_maps.cc,v 1.2 2005-04-21 13:31:32 Singular Exp $ 10 10 *******************************************************************/ 11 11 #include "mod2.h" … … 34 34 poly pi_m, ring pi_r) 35 35 { 36 int n = min(pi_r->N, n_max_map_monomials);36 int n = si_min(pi_r->N, n_max_map_monomials); 37 37 int i, j; 38 38 Exponent_t e_i, e_j; … … 280 280 int* weights = (int*) omAlloc0(map_r->N*sizeof(int)); 281 281 int i; 282 int n = min(map_r->N, IDELEMS(image_id));282 int n = si_min(map_r->N, IDELEMS(image_id)); 283 283 284 284 for (i=0; i<n; i++) … … 412 412 Print("\n"); 413 413 414 idTest(res_image_id); 414 415 return res_image_id; 415 416 } -
kernel/fast_maps.h
r766807 r6aef6f2 8 8 * bricken (Michael Brickenstein) 9 9 * Created: 01/02 10 * Version: $Id: fast_maps.h,v 1. 1.1.1 2003-10-06 12:15:51Singular Exp $10 * Version: $Id: fast_maps.h,v 1.2 2005-04-21 13:31:32 Singular Exp $ 11 11 *******************************************************************/ 12 12
Note: See TracChangeset
for help on using the changeset viewer.