source: git/Singular/pcv.h @ ce9c2d

fieker-DuValspielwiese
Last change on this file since ce9c2d was ab1f18, checked in by Mathias Schulze <mschulze@…>, 25 years ago
*mschulze git-svn-id: file:///usr/local/Singular/svn/trunk@2777 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 865 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/* $Id: pcv.h,v 1.10 1998-12-21 10:54:59 mschulze Exp $ */
5/*
6* ABSTRACT: conversion between polys and coef vectors
7*/
8
9#ifndef PCV_H
10#define PCV_H
11
12int pcvDeg(poly p);
13int pcvMinDeg(poly p);
14int pcvMaxDeg(poly p);
15BOOLEAN pcvMinDeg(leftv res,leftv h);
16BOOLEAN pcvMaxDeg(leftv res,leftv h);
17void pcvInit(int d);
18void pcvClean();
19poly pcvP2CV(poly p,int d0,int d1);
20poly pcvCV2P(poly cv,int d0,int d1);
21lists pcvP2CV(lists pl,int d0,int d1);
22lists pcvCV2P(lists cvl,int d0,int d1);
23BOOLEAN pcvP2CV(leftv res,leftv h);
24BOOLEAN pcvCV2P(leftv res,leftv h);
25int pcvDim(int d0,int d1);
26BOOLEAN pcvDim(leftv res,leftv h);
27int pcvBasis(lists b,int i,poly m,int d,int n);
28lists pcvBasis(int d0,int d1);
29BOOLEAN pcvBasis(leftv res,leftv h);
30
31#endif
Note: See TracBrowser for help on using the repository browser.