Changeset 811826 in git for Singular/fglm.cc


Ignore:
Timestamp:
Mar 9, 1999, 1:28:50 PM (25 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
d78e6e2c82ab8bd96284f77386c71eff6908b71a
Parents:
41442f095ba5a5301108857c89ac604ccfdcf0f3
Message:
* maFindPerm: no permutation from Fq parameter to other vars/parameter
  (if they have the same name) -- r->ch new argument to maFindPerm.


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

Legend:

Unmodified
Added
Removed
  • Singular/fglm.cc

    r41442f r811826  
    11// emacs edit mode for this file is -*- C++ -*-
    2 // $Id: fglm.cc,v 1.16 1999-03-08 18:11:39 Singular Exp $
     2// $Id: fglm.cc,v 1.17 1999-03-09 12:28:45 obachman Exp $
    33
    44/****************************************
     
    144144    else
    145145        pperm= NULL;
    146     maFindPerm( sring->names, nvar, sring->parameter, npar, dring->names, nvar, dring->parameter, npar, vperm, pperm );
     146    maFindPerm( sring->names, nvar, sring->parameter, npar,
     147                dring->names, nvar, dring->parameter, npar, vperm, pperm,
     148                dring->ch);
    147149    for ( k= nvar; (k > 0) && (state == FglmOk); k-- )
    148150        if ( vperm[k] <= 0 ) {
     
    181183        // check if dring->qideal is contained in sring->qideal:
    182184        int * dsvperm = (int *)Alloc0( (nvar+1)*sizeof( int ) );
    183         maFindPerm( dring->names, nvar, NULL, 0, sring->names, nvar, NULL, 0, dsvperm, NULL );
    184         nSetMap( rInternalChar(dring), dring->parameter, npar, dring->minpoly );
     185        maFindPerm( dring->names, nvar, NULL, 0, sring->names, nvar, NULL, 0,
     186                    dsvperm, NULL, sring->ch);
     187        nSetMap(rInternalChar(dring), dring->parameter, npar, dring->minpoly);
    185188        ideal dqins = idInit( IDELEMS( dring->qideal ), 1 );
    186189        for ( k= IDELEMS( dring->qideal )-1; k >= 0; k-- )
Note: See TracChangeset for help on using the changeset viewer.