Changeset 1e1406 in git


Ignore:
Timestamp:
Jun 20, 2007, 11:41:43 AM (17 years ago)
Author:
Oliver Wienand <wienand@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
Children:
32a34c2c9d85583ded359fed6263be54aa0d446d
Parents:
07e8ae3b1877436cb95506c90d799438d558c703
Message:
ipshell.cc:
* define ring of whole numbers via
  ring (integers), (x,y,z), dp;


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

Legend:

Unmodified
Added
Removed
  • Singular/ipshell.cc

    r07e8ae r1e1406  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ipshell.cc,v 1.159 2007-06-19 09:13:25 Singular Exp $ */
     4/* $Id: ipshell.cc,v 1.160 2007-06-20 09:41:43 wienand Exp $ */
    55/*
    66* ABSTRACT:
     
    44124412    }
    44134413  }
     4414#ifdef HAVE_RINGZ
     4415  else if ((pn->name != NULL)
     4416  && (strcmp(pn->name,"integers")==0))
     4417  {
     4418    ch = 0;
     4419    ringtype = 4;
     4420    WarnS("integers not yet fully tested");
     4421  }
     4422#endif
    44144423#ifdef HAVE_RINGMODN
    44154424  else if ((pn->name != NULL)
     
    44304439    ringtype = 2;
    44314440    ringflaga = module;
     4441    WarnS("Z/n not yet fully tested");
    44324442  }
    44334443#endif
     
    44584468      ringtype = 1; // Use Z/2^ch
    44594469      ringflaga = exp;
    4460       Print("Beta: using Z/2^%d", ch);
    4461       PrintLn();
     4470      WarnS("Z/2^n not yet fully tested");
    44624471    }
    44634472    else
Note: See TracChangeset for help on using the changeset viewer.