Changeset e2b511 in git
- Timestamp:
- Jan 19, 2002, 4:48:46 PM (22 years ago)
- Branches:
- (u'spielwiese', 'd1b01e9d51ade4b46b745d3bada5c5f3696be3a8')
- Children:
- 2d8590792119d11fdb84da502156b5d1f4aad4e7
- Parents:
- 754c54789bebe7fb2b9556146116f630b01a6bca
- Location:
- Singular
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/fast_maps.cc
r754c547 re2b511 7 7 * Author: obachman (Olaf Bachmann) 8 8 * Created: 02/01 9 * Version: $Id: fast_maps.cc,v 1.1 3 2002-01-19 14:48:15 obachman Exp $9 * Version: $Id: fast_maps.cc,v 1.14 2002-01-19 15:48:45 obachman Exp $ 10 10 *******************************************************************/ 11 11 #include "mod2.h" … … 241 241 omFree(m_id); 242 242 return res; 243 } 244 245 246 ideal fast_map(ideal map_id, ring map_r, ideal image_id, ring image_r) 247 { 248 ring src_r, dest_r; 249 maMap_CreateRings(map_id, map_r, image_id, image_r, src_r, dest_r); 250 251 mapoly mp; 252 maideal mideal; 253 maMap_CreatePolyIdeal(map_id, map_r, src_r, dest_r, mp, mideal); 254 255 return maIdeal_2_Ideal(mideal, dest_r); 243 256 } 244 257 -
Singular/fast_maps.h
r754c547 re2b511 8 8 * bricken (Michael Brickenstein) 9 9 * Created: 01/02 10 * Version: $Id: fast_maps.h,v 1.1 2 2002-01-19 14:48:15obachman Exp $10 * Version: $Id: fast_maps.h,v 1.13 2002-01-19 15:48:46 obachman Exp $ 11 11 *******************************************************************/ 12 12 … … 97 97 ring &src_r, ring &dest_r); 98 98 99 // collects tthe results into an ideal and destroys maideal 99 100 ideal maIdeal_2_Ideal(maideal ideal, ring dest_r); 101 102 ideal fast_map(ideal map_id, ring map_r, ideal image_id, ring image_r); 103 100 104 #endif 101 105 -
Singular/polys0.cc
r754c547 re2b511 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: polys0.cc,v 1.2 0 2002-01-19 14:48:18obachman Exp $ */4 /* $Id: polys0.cc,v 1.21 2002-01-19 15:48:46 obachman Exp $ */ 5 5 6 6 /* … … 21 21 * uses form x*gen(.) if ko != coloumn number of p 22 22 */ 23 void writemon(poly p, int ko, ring r)23 static void writemon(poly p, int ko, ring r) 24 24 { 25 25 BOOLEAN wroteCoef=FALSE,writeGen=FALSE;
Note: See TracChangeset
for help on using the changeset viewer.