Changeset 4508ce5 in git for Singular/fglm.cc


Ignore:
Timestamp:
Dec 15, 2000, 7:49:36 PM (23 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
a5f564c88c2600acb20b8afdd6dd84d9d3f715df
Parents:
d3bf0986c4b1a7bac5ffc43b873646317a0d91de
Message:
*hannes: nMap removed nSetMap returns now the routine


git-svn-id: file:///usr/local/Singular/svn/trunk@4920 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/fglm.cc

    rd3bf098 r4508ce5  
    11// emacs edit mode for this file is -*- C++ -*-
    2 // $Id: fglm.cc,v 1.23 2000-12-06 11:03:09 Singular Exp $
     2// $Id: fglm.cc,v 1.24 2000-12-15 18:49:28 Singular Exp $
    33
    44/****************************************
     
    172172        // check if sring->qideal is contained in dring->qideal:
    173173        rSetHdl( dringHdl );
    174         //nSetMap( rInternalChar(sring), sring->parameter, npar, sring->minpoly );
    175         nSetMap( sring );
     174        nMapFunc nMap=nSetMap( sring );
    176175        ideal sqind = idInit( IDELEMS( sring->qideal ), 1 );
    177176        for ( k= IDELEMS( sring->qideal )-1; k >= 0; k-- )
    178             (sqind->m)[k]= pPermPoly( (sring->qideal->m)[k], vperm, sring);
     177          (sqind->m)[k]= pPermPoly( (sring->qideal->m)[k], vperm, sring, nMap);
    179178        ideal sqindred = kNF( dring->qideal, NULL, sqind );
    180179        if ( ! idIs0( sqindred ) ) {
     
    190189        maFindPerm( dring->names, nvar, NULL, 0, sring->names, nvar, NULL, 0,
    191190                    dsvperm, NULL, sring->ch);
    192         //nSetMap(rInternalChar(dring), dring->parameter, npar, dring->minpoly);
    193         nSetMap(dring);
     191        nMap=nSetMap(dring);
    194192        ideal dqins = idInit( IDELEMS( dring->qideal ), 1 );
    195193        for ( k= IDELEMS( dring->qideal )-1; k >= 0; k-- )
    196             (dqins->m)[k]= pPermPoly( (dring->qideal->m)[k], dsvperm, sring);
     194          (dqins->m)[k]=pPermPoly( (dring->qideal->m)[k], dsvperm, sring, nMap);
    197195        ideal dqinsred = kNF( sring->qideal, NULL, dqins );
    198196        if ( ! idIs0( dqinsred ) ) {
Note: See TracChangeset for help on using the changeset viewer.