Changeset 9e2fdf in git


Ignore:
Timestamp:
Jun 10, 2008, 1:50:07 PM (16 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
1c5eb9934daad78195f2581e6ec371b249e76a26
Parents:
3f78cb0996cbc01825a95eb39c78d6d256a5b9a6
Message:
*hannes: Buch/Example_1_9_29, better error messages


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

Legend:

Unmodified
Added
Removed
  • kernel/ideals.cc

    r3f78cb r9e2fdf  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ideals.cc,v 1.56 2008-06-10 10:17:31 motsak Exp $ */
     4/* $Id: ideals.cc,v 1.57 2008-06-10 11:50:07 Singular Exp $ */
    55/*
    66* ABSTRACT - all basic methods to manipulate ideals
     
    24742474    if ( nc_rComplete(origR, tmpR, false) ) // no quotient ideal!
    24752475    {
    2476       Werror("error in nc_rComplete");
     2476      Werror("no elimination is possible: ordering condition is violated");
    24772477      // cleanup
    24782478      rDelete(tmpR);
  • kernel/ring.cc

    r3f78cb r9e2fdf  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ring.cc,v 1.82 2008-06-10 10:17:32 motsak Exp $ */
     4/* $Id: ring.cc,v 1.83 2008-06-10 11:50:07 Singular Exp $ */
    55
    66/*
     
    45304530  if (nc_CallPlural(C, D, NULL, NULL, dest, bSetupQuotient, false, true, dest)) // also takes care about quotient ideal
    45314531  {
    4532     WarnS("Error transferring non-commutative structure");
     4532    //WarnS("Error transferring non-commutative structure");
     4533    // error message should be in the interpreter interface
    45334534
    45344535    mpDelete(&C, dest);
    45354536    mpDelete(&D, dest);
    45364537
     4538    if (currRing != save)
     4539       rChangeCurrRing(save);
     4540   
    45374541    return TRUE;
    45384542  }
Note: See TracChangeset for help on using the changeset viewer.