Changeset 16ad44 in git


Ignore:
Timestamp:
Jun 6, 2005, 1:26:46 PM (19 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
8ed5fdf45ed2bee95d7a8ba4ef2502de095e2509
Parents:
17cfb429564eb85bdd5263c383355ca2a239639d
Message:
*hannes/lossen: grwalk: documentation, attribute isSB


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

Legend:

Unmodified
Added
Removed
  • Singular/LIB/all.lib

    r17cfb4 r16ad44  
    1 // $Id: all.lib,v 1.45 2005-05-11 16:10:23 Singular Exp $
     1// $Id: all.lib,v 1.46 2005-06-06 11:26:46 Singular Exp $
    22///////////////////////////////////////////////////////////////////////////////
    3 version="$Id: all.lib,v 1.45 2005-05-11 16:10:23 Singular Exp $";
     3version="$Id: all.lib,v 1.46 2005-06-06 11:26:46 Singular Exp $";
    44category = "General purpose";
    55info="
     
    2121  algebra_lib:     Compute with Algbras and Algebra Maps
    2222  elim_lib:        Elimination, Saturation and Blowing up
    23   grwalk_lib:      Groebner walk and Fraktal Walk
     23  grwalk_lib:      Groebner Walk Conversion Algorithms
    2424  homolog_lib:     Procedures for Homological Algebra
    2525  intprog_lib:     Integer Programming with Groebner Basis Methods
  • Singular/LIB/grwalk.lib

    r17cfb4 r16ad44  
    11///////////////////////////////////////////////////////////////
    2 // $Id: grwalk.lib,v 1.2 2005-05-11 12:13:26 Singular Exp $   //
     2// $Id: grwalk.lib,v 1.3 2005-06-06 11:26:46 Singular Exp $   //
    33///////////////////////////////////////////////////////////////
    44
    5 version="$Id: grwalk.lib,v 1.2 2005-05-11 12:13:26 Singular Exp $";
    6 category="cc";
     5version="$Id: grwalk.lib,v 1.3 2005-06-06 11:26:46 Singular Exp $";
     6category="Commutative Algebra";
    77
    88info="
    9 LIBRARY: grwalk.lib: Groebner and Fractal walk
    10 AUTHOR: I. Sulandra
     9LIBRARY: grwalk.lib   Groebner Walk Conversion Algorithms
     10AUTHOR: I Made Sulandra
    1111
    1212PROCEDURES:
    13  gwalk(ideal[,intvec]);   standard basis of ideal via groebnerwalk alg
    14  pwalk(ideal[,intvec]);   standard basis of ideal via perturbation walk alg
    1513 fwalk(ideal[,intvec]);   standard basis of ideal via fractalwalk alg
    1614 twalk(ideal[,intvec]);   standard basis of ideal via Tran's alg
    1715 awalk1(ideal[,intvec]);   standard basis of ideal via the first alt. alg
    1816 awalk2(ideal[,intvec]);   standard basis of ideal via the second alt. alg
     17 pwalk(ideal[,intvec]);   standard basis of ideal via perturbation walk alg
     18 gwalk(ideal[,intvec]);   standard basis of ideal via groebnerwalk alg
    1919";
    2020
     
    253253   keepring basering;
    254254   ideal result = fetch(old_ring, G);
     255   attrib(result,"isSB",1);
    255256   return (result);
    256257}
     
    342343   keepring basering;
    343344   ideal result = fetch(old_ring, G);
     345   attrib(result,"isSB",1);
    344346   return (result);
    345347}
     
    378380   keepring basering;
    379381   ideal result = fetch(old_ring, G);
     382   attrib(result,"isSB",1);
    380383   return (result);
    381384}
     
    423426   keepring basering;
    424427   ideal result = fetch(old_ring, G);
     428   attrib(result,"isSB",1);
    425429   return (result);
    426430}
     
    479483  keepring basering;
    480484  ideal result = fetch(old_ring, G);
     485  attrib(result,"isSB",1);
    481486  return (result);
    482487}
     
    523528   //kill Go;
    524529
    525    keepring basering;
    526    ideal result = fetch(old_ring, G);
    527    return (result);
     530  keepring basering;
     531  ideal result = fetch(old_ring, G);
     532  attrib(result,"isSB",1);
     533  return (result);
    528534}
    529535example
Note: See TracChangeset for help on using the changeset viewer.