source: git/Singular/pcv.h @ 0e64fdd

spielwiese
Last change on this file since 0e64fdd was 0e64fdd, checked in by Mathias Schulze <mschulze@…>, 25 years ago
*** empty log message *** git-svn-id: file:///usr/local/Singular/svn/trunk@3126 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.1 KB
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/* $Id: pcv.h,v 1.13 1999-06-11 17:13:33 mschulze Exp $ */
5/*
6* ABSTRACT: conversion between polys and coef vectors
7*/
8
9#ifndef PCV_H
10#define PCV_H
11
12lists pcvLAddL(lists l1,lists l2);
13lists pcvPMulL(poly p,lists l1);
14BOOLEAN pcvLAddL(leftv res,leftv h);
15BOOLEAN pcvPMulL(leftv res,leftv h);
16int pcvDeg(poly p);
17int pcvMinDeg(poly p);
18int pcvMinDeg(matrix m);
19BOOLEAN pcvMinDeg(leftv res,leftv h);
20void pcvInit(int d);
21void pcvClean();
22int pcvM2N(poly m);
23poly pcvN2M(int n);
24poly pcvP2CV(poly p,int d0,int d1);
25poly pcvCV2P(poly cv,int d0,int d1);
26lists pcvP2CV(lists pl,int d0,int d1);
27ideal pcvP2CV(ideal p,int d0,int d1);
28lists pcvCV2P(lists cvl,int d0,int d1);
29ideal pcvCV2P(ideal cv,int d0,int d1);
30BOOLEAN pcvP2CV(leftv res,leftv h);
31BOOLEAN pcvCV2P(leftv res,leftv h);
32int pcvDim(int d0,int d1);
33BOOLEAN pcvDim(leftv res,leftv h);
34int pcvBasis(lists b,int i,poly m,int d,int n);
35lists pcvBasis(int d0,int d1);
36BOOLEAN pcvBasis(leftv res,leftv h);
37
38#endif
Note: See TracBrowser for help on using the repository browser.