Changeset d3c770 in git


Ignore:
Timestamp:
Jan 11, 2018, 10:36:42 AM (5 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
Children:
1c1f03fead9d869156d0c26eff5c1359f7a60f16
Parents:
197c4e770930f192cf51af2495c3da7139b0b7b5
Message:
chg: NumerAlg::Degree -> DegreePure (conflict modules.lib, numerAlg.lib)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/numerAlg.lib

    r197c4e rd3c770  
    2020 Equal(ideal I, ideal J);  test if I equals to J
    2121
    22  Degree(ideal I, int i);   computes the degree of a pure i-dimensional
     22 DegreePure(ideal I, int i);   computes the degree of a pure i-dimensional
    2323
    2424 NumLocalDim(ideal I, p);  numerical local dimension at a point computed as
     
    3131///////////////////////////////////////////////////////////////////////////////
    3232///////////////////////////////////////////////////////////////////////////////
    33 proc Degree(ideal I,int i)
    34 "USAGE:  Degree(ideal I,int i); I ideal,  i positive integer
     33proc DegreePure(ideal I,int i)
     34"USAGE:  DegreePure(ideal I,int i); I ideal,  i positive integer
    3535RETURN:  the degree of the pure i-dimensional component of the algebraic
    3636          variety defined by I
    37 EXAMPLE: example Degree; shows an example
     37EXAMPLE: example DegreePure; shows an example
    3838"
    3939{
     
    6262   poly f3=(x2+y2+z2-6)*(x-y)*(x-z)*(z-3);
    6363   ideal I=f1,f2,f3;
    64    def W=Degree(I,1);
     64   def W=DegreePure(I,1);
    6565        ==>
    6666           The Degree of Component
    6767           3
    68    def W=Degree(I,2);
     68   def W=DegreePure(I,2);
    6969        ==>
    7070           The Degree of Component
Note: See TracChangeset for help on using the changeset viewer.