Changeset 2eb3db in git


Ignore:
Timestamp:
Jan 30, 2003, 10:41:04 PM (21 years ago)
Author:
Viktor Levandovskyy <levandov@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
cd22d1a27db3332385586c32609b3ccce07f4c94
Parents:
f93c1c0e645bbb7a98fd80559cdcfe7e08465c20
Message:
noncom syz, nres, mres


git-svn-id: file:///usr/local/Singular/svn/trunk@6451 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Singular/gring.cc

    rf93c1c0 r2eb3db  
    77 *  Author:  levandov (Viktor Levandovsky)
    88 *  Created: 8/00 - 11/00
    9  *  Version: $Id: gring.cc,v 1.22 2003-01-29 19:13:36 levandov Exp $
     9 *  Version: $Id: gring.cc,v 1.23 2003-01-30 21:41:01 levandov Exp $
    1010 *******************************************************************/
    1111#include "mod2.h"
     
    624624  if (((a<cMTsize)&&(b<cMTsize))&&(MATELEM(cMT,a,b)!=NULL))
    625625  {
    626     out = prCopyR_NoSort(MATELEM(cMT,a,b),r->nc->basering, r);
     626    out = nc_p_CopyGet(MATELEM(cMT,a,b),r);
    627627    //   out=p_Copy(MATELEM(cMT,a,b),r);
    628628    return (out);
  • Singular/ideals.cc

    rf93c1c0 r2eb3db  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ideals.cc,v 1.130 2002-05-29 09:38:49 mschulze Exp $ */
     4/* $Id: ideals.cc,v 1.131 2003-01-30 21:41:02 levandov Exp $ */
    55/*
    66* ABSTRACT - all basic methods to manipulate ideals
     
    14641464  && (!TEST_OPT_NOTREGULARITY)
    14651465  && (setRegularity)
    1466   && (h==isHomog))
     1466  && (h==isHomog)
     1467  && (!rIsPluralRing(currRing))
     1468  )
    14671469  {
    14681470    ring dp_C_ring = rCurrRingAssure_dp_C();
  • Singular/syz.cc

    rf93c1c0 r2eb3db  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: syz.cc,v 1.41 2001-10-09 16:36:25 Singular Exp $ */
     4/* $Id: syz.cc,v 1.42 2003-01-30 21:41:04 levandov Exp $ */
    55
    66/*
     
    198198          syz->m[k] = pMult(syz->m[k],pCopy(Unit1));
    199199          syz->m[k] = pSub(syz->m[k],
    200             pMult(pCopy(actWith),Unit2));
     200            pMult(Unit2,pCopy(actWith)));
    201201          if (syz->m[k]==NULL)
    202202          {
     
    390390*   no limitation in length if maxlength==0
    391391* input:arg
    392 *       minim: TRUE means mres cmd, FALSE res cmd.
    393 *       if *len!=0: modul weights: weights[0]
     392*       minim: TRUE means mres cmd, FALSE nres cmd.
     393*       if *len!=0: module weights: weights[0]
    394394*          (and weights is defined:weights[0..len-1]
    395395*
    396396* output:resolvente r[0..length-1],
    397 *        modul weights: weights[0..length-1]
     397*        module weights: weights[0..length-1]
    398398*/
    399399resolvente syResolvente(ideal arg, int maxlength, int * length,
Note: See TracChangeset for help on using the changeset viewer.