source: git/kernel/pcv.h @ 788529d

spielwiese
Last change on this file since 788529d was 35aab3, checked in by Hans Schönemann <hannes@…>, 21 years ago
This commit was generated by cvs2svn to compensate for changes in r6879, which included commits to RCS files with non-trunk default branches. git-svn-id: file:///usr/local/Singular/svn/trunk@6880 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.1.1.1 2003-10-06 12:16:01 Singular 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.