Changeset 3fff1f5 in git


Ignore:
Timestamp:
Aug 6, 2014, 5:29:26 PM (10 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
f5bce2e759c27d4d638afa665b55e0b57ab09b37fdda3080782f2c9a37a021d187c189e43b7668c1
Parents:
1becceace5fa1d9bbbf815b5ac22752118958578
Message:
fixed: some missing types in proc declarations
Location:
Singular/LIB
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/grobcov.lib

    r1beccea r3fff1f5  
    10451045
    10461046// eliminates the ith element from a list or an intvec
    1047 proc elimfromlist(l, int i)
     1047proc elimfromlist(def l, int i)
    10481048{
    10491049  if(typeof(l)=="list"){list L;}
  • Singular/LIB/ncfactor.lib

    r1beccea r3fff1f5  
    24492449}
    24502450
    2451 static proc checkForHomogInhomogInterchangabilityNthWeyl(list factors, posLeft, posRight)
     2451static proc checkForHomogInhomogInterchangabilityNthWeyl(list factors, int posLeft, int posRight)
    24522452"
    24532453INPUT:  A list consisting of factors of a certain polynomial in the nth Weyl
     
    64416441//the two arguments, which are also given by the user.
    64426442
    6443 proc facSubWeyl(poly h, X, D)
     6443proc facSubWeyl(poly h, poly X, poly D)
    64446444"USAGE:  facSubWeyl(h,x,y); h, X, D polynomials
    64456445RETURN: list
     
    74107410}//fromWeylToShiftPoly
    74117411
    7412 static proc fromNthWeylToNthShiftPoly(poly h, sAlgebra)
     7412static proc fromNthWeylToNthShiftPoly(poly h, def sAlgebra)
    74137413"
    74147414USAGE: Given a polynomial in the nth Weyl algebra, this method returns it -- if possible --
  • Singular/LIB/ring.lib

    r1beccea r3fff1f5  
    922922
    923923
    924 proc isQuotientRing( rng )
     924proc isQuotientRing(def rng )
    925925"USAGE: isQuotientRing ( rng );
    926926RETURN:  1 if rng is a quotient ring, 0 otherwise.
     
    977977}
    978978
    979 proc hasFieldCoefficient( rng )
     979proc hasFieldCoefficient(def rng )
    980980"USAGE: hasFieldCoefficient ( rng );
    981981RETURN:  1 if the coeffcients form a field, 0 otherwise.
     
    996996}
    997997
    998 proc hasGlobalOrdering (rng)
     998proc hasGlobalOrdering (def rng)
    999999"USAGE: hasGlobalOrdering ( rng );
    10001000RETURN:  1 if rng has a global monomial ordering, 0 otherwise.
     
    10131013}
    10141014
    1015 proc hasCommutativeVars (rng)
     1015proc hasCommutativeVars (def rng)
    10161016"USAGE: hasCommutativeVars ( rng );
    10171017RETURN:  1 if rng is a commutative polynomial ring, 0 otherwise.
     
    10291029}
    10301030
    1031 proc hasNumericCoeffs(rng)
     1031proc hasNumericCoeffs(def rng)
    10321032"USAGE: hasNumericCoeffs ( rng );
    10331033RETURN:  1 if rng has inexact coeffcients, 0 otherwise.
     
    10391039}
    10401040
    1041 proc isSubModule(I,J)
     1041proc isSubModule(def I,def J)
    10421042"USAGE: isSubModule(I,J): I, J: ideal or module
    10431043RETURN: 1 if module(I) is in module(J), 0 otherwise
Note: See TracChangeset for help on using the changeset viewer.