Changeset 69262fa in git


Ignore:
Timestamp:
Apr 3, 2009, 8:28:53 PM (15 years ago)
Author:
Motsak Oleksandr <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
e76ba8d63dfc5181e518f4faa0a9e408e27f95fe
Parents:
509339932269ee5ca46faa0b1aa9cfd1de39df76
Message:
*motsak: nc_*_bracket-related changes


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

Legend:

Unmodified
Added
Removed
  • kernel/gring.cc

    r509339 r69262fa  
    77 *  Author:  levandov (Viktor Levandovsky)
    88 *  Created: 8/00 - 11/00
    9  *  Version: $Id: gring.cc,v 1.71 2009-02-26 15:55:46 Singular Exp $
     9 *  Version: $Id: gring.cc,v 1.72 2009-04-03 18:28:53 motsak Exp $
    1010 *******************************************************************/
    1111
     
    22342234poly nc_mm_Bracket_nn(poly m1, poly m2);
    22352235
    2236 poly nc_p_Bracket_qq(poly p, poly q)
     2236poly nc_p_Bracket_qq(poly p, const poly q)
    22372237  /* returns [p,q], destroys p */
    22382238{
     2239  assume(p != NULL && q!= NULL);
    22392240
    22402241  if (!rIsPluralRing(currRing)) return(NULL);
  • kernel/gring.h

    r509339 r69262fa  
    44*  Computer Algebra System SINGULAR     *
    55****************************************/
    6 /* $Id: gring.h,v 1.26 2009-01-06 13:59:35 Singular Exp $ */
     6/* $Id: gring.h,v 1.27 2009-04-03 18:28:53 motsak Exp $ */
    77/*
    88* ABSTRACT additional defines etc for --with-plural
     
    8787
    8888
    89 /* brackets: */
    90 poly nc_p_Bracket_qq(poly p, poly q);
     89/* brackets: p will be destroyed... */
     90poly nc_p_Bracket_qq(poly p, const poly q);
    9191
    9292/* twostd: */
Note: See TracChangeset for help on using the changeset viewer.