Changeset 6582b8 in git


Ignore:
Timestamp:
Feb 9, 2005, 1:55:38 PM (18 years ago)
Author:
Viktor Levandovskyy <levandov@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a657104b677b4c461d018cbf3204d72d34ad66a9')
Children:
a4f5ce528f6265f42ae27cf6284dedb95f91544e
Parents:
066b0020bd9fd9b3c31513f59b07e261fa366329
Message:
*levandov: add, opposite for qrings finished and fixed


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

Legend:

Unmodified
Added
Removed
  • kernel/ring.cc

    r066b002 r6582b8  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ring.cc,v 1.29 2005-02-08 18:59:36 levandov Exp $ */
     4/* $Id: ring.cc,v 1.30 2005-02-09 12:55:38 levandov Exp $ */
    55
    66/*
     
    36073607  /* treats the case of qring */
    36083608{
    3609   ring save = currRing; 
    3610   ring    r = rCopy0(src,TRUE); /* TRUE for copy the qideal */
     3609  if (src == NULL) return(NULL);
     3610  ring save = currRing;
     3611  rChangeCurrRing(src);
     3612  ring r = rCopy0(src,TRUE); /* TRUE for copy the qideal */
     3613  /*  rChangeCurrRing(r); */
    36113614  // change vars v1..vN -> vN..v1
    36123615  int i;
     
    38263829  }
    38273830  {
    3828   rChangeCurrRing(r); 
     3831  rChangeCurrRing(r);  /* we were not in r */
    38293832  /* basic nc constructions  */
    38303833  r->nc           = (nc_struct *)omAlloc0(sizeof(nc_struct));
Note: See TracChangeset for help on using the changeset viewer.