Changeset 88b2dd in git


Ignore:
Timestamp:
Jun 20, 2006, 4:37:45 PM (17 years ago)
Author:
Motsak Oleksandr <motsak@…>
Branches:
(u'spielwiese', '91fdef05f09f54b8d58d92a472e9c4a43aa4656f')
Children:
0266acf035e867ba3e767b7d865bb68b4ab24eca
Parents:
808a9f36d059cef6d1e3c3a667ee4d5a37a5a4eb
Message:
*motsak: bug fixed (lists are sometimes globa and sometimes local!?!)


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

Legend:

Unmodified
Added
Removed
  • Singular/LIB/perron.lib

    r808a9f3 r88b2dd  
    11///////////////////////////////////////////////////////////////////////////////
    2 version="$Id: perron.lib,v 1.3 2006-05-05 14:37:36 motsak Exp $";
     2version="$Id: perron.lib,v 1.4 2006-06-20 14:37:45 motsak Exp $";
    33category="Noncommutative";
    44info="
     
    9696   
    9797  def CurrentField = ringlist( NCRING )[1];
     98 
     99//  CurrentField;
    98100   
    99101  // We are going to construct a commutative ring in N variables F(i),
     
    103105   
    104106  list RingList = ringlist( TEMPRING );
    105   RingList[1] = CurrentField;
     107 
     108  setring NCRING;
     109 
     110 
     111  if( !defined(RingList) )
     112  {
     113    list RingList = imap( TEMPRING, RingList );   
     114  }
     115 
     116
     117  RingList[1] = CurrentField;   
     118 
     119//  RingList;
    106120   
    107121  // New Commutative Ring with correct field!
Note: See TracChangeset for help on using the changeset viewer.