Changeset a48e19 in git for kernel/ringgb.cc


Ignore:
Timestamp:
Jun 8, 2006, 8:00:35 PM (17 years ago)
Author:
Oliver Wienand <wienand@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
728a2c96465e8ac52df53f624fc9319cc328b4e0
Parents:
df744fa167cef28d2165072701b7f05ee6d0cd98
Message:
[oliver]

p_Mult_mm__T.cc:
* Typo corrected

ringgb.cc:
* deactivated status output
* deactivated bound on reduction steps
(done to use old reduction routines to test groebner algo)


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

Legend:

Unmodified
Added
Removed
  • kernel/ringgb.cc

    rdf744f ra48e19  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ringgb.cc,v 1.6 2006-02-14 13:45:48 Singular Exp $ */
     4/* $Id: ringgb.cc,v 1.7 2006-06-08 18:00:35 wienand Exp $ */
    55/*
    66* ABSTRACT: ringgb interface
     
    124124  poly m2 = NULL;
    125125  ring2toM_GetLeadTerms(f, g, r, m1, m2, r);
    126   printPolyMsg("spoly: m1=", m1, " | ");
    127   printPolyMsg("m2=", m2, "");
    128   PrintLn();
     126  // printPolyMsg("spoly: m1=", m1, " | ");
     127  // printPolyMsg("m2=", m2, "");
     128  // PrintLn();
    129129  return pSub(pp_Mult_mm(f, m1, r), pp_Mult_mm(g, m2, r));
    130130}
     
    136136  int i = findRing2toMsolver(h, G, r);
    137137  int c = 1;
    138   while (h != NULL && i >= 0 && c < 20) {
    139     Print("%d-step NF - h:", c);
    140     wrp(h);
    141     PrintS(" ");
    142     PrintS("G->m[i]:");
    143     wrp(G->m[i]);
    144     PrintLn();
     138  while (h != NULL && i >= 0) {
     139    // Print("%d-step NF - h:", c);
     140    // wrp(h);
     141    // PrintS(" ");
     142    // PrintS("G->m[i]:");
     143    // wrp(G->m[i]);
     144    // PrintLn();
    145145    h = spolyRing2toM(h, G->m[i], r);
    146     PrintS("=> h=");
    147     wrp(h);
    148     PrintLn();
     146    // PrintS("=> h=");
     147    // wrp(h);
     148    // PrintLn();
    149149    i = findRing2toMsolver(h, G, r);
    150150    c++;
     
    159159  poly g = pCopy(f);
    160160  int c = 0;
    161   while (g != NULL && c < 20) {
     161  while (g != NULL) {
    162162    Print("%d-step RedNF - g=", c);
    163163    wrp(g);
Note: See TracChangeset for help on using the changeset viewer.