source: git/Singular/prCopy.h @ bf27e44

fieker-DuValspielwiese
Last change on this file since bf27e44 was 2f436b, checked in by Olaf Bachmann <obachman@…>, 23 years ago
* version 1-3-13: sparsemat improivements git-svn-id: file:///usr/local/Singular/svn/trunk@5003 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 952 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/* $Id: prCopy.h,v 1.2 2000-12-31 15:14:43 obachman Exp $ */
5/*
6* ABSTRACT - declarations of functions for Copy/Move/Delete for Polys
7*/
8
9
10/*************************************************************************
11 *
12 * MoveR, CopyR, DeleteR, HeadR, SortR
13 * Assume: ideal/poly from ring r
14 *         Coeff(r) == Coeff(currRing)
15 * Move, Delete: input object is destroyed and set to NULL
16 *
17 *
18 ************************************************************************/
19poly prMoveR_NoSort(poly &p, ring r);
20poly prMoveR(poly &p, ring r);
21poly prCopyR_NoSort(poly p, ring r);
22poly prCopyR(poly p, ring r);
23poly prHeadR(poly p, ring r);
24
25ideal idrMoveR_NoSort(ideal &id, ring r);
26ideal idrMoveR(ideal &id, ring r);
27ideal idrCopyR_NoSort(ideal id, ring r);
28ideal idrCopyR(ideal id, ring r);
29ideal idrHeadR(ideal id, ring r);
30
31
32
33
Note: See TracBrowser for help on using the repository browser.