source: git/modules/pcv/pcv.mod @ f42bbc7

spielwiese
Last change on this file since f42bbc7 was f42bbc7, checked in by Mathias Schulze <mschulze@…>, 25 years ago
*mschulze git-svn-id: file:///usr/local/Singular/svn/trunk@2838 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 786 bytes
Line 
1module="pcv";
2
3version="$Id: pcv.mod,v 1.2 1999-02-11 11:39:29 mschulze Exp $";
4info="
5LIBRARY: pcv.so  CONVERSION BETWEEN POLYS AND COEF VECTORS
6AUTHOR:  Mathias Schulze, email: mschulze@mathematik.uni-kl.de
7
8 MinDeg(p);      min deg of monomials of poly p
9 MaxDeg(p);      max deg of monomials of poly p
10 P2CV(l,d0,d1);  list of coef vectors from deg d0 to d1 of polys in list l
11 CV2P(l,d0,d1);  list of polys with coef vectors from deg d0 to d1 in list l
12 Dim(d0,d1);     number of monomials from deg d0 to d1
13 Basis(d0,d1);   list of monomials from deg d0 to d1
14";
15
16cxxsource = pcv/pcv.cc
17
18proc MinDeg(poly) = pcvMinDeg;
19proc MaxDeg(poly) = pcvMaxDeg;
20proc P2CV(list,int,int) = pcvP2CV;
21proc CV2P(list,int,int) = pcvCV2P;
22proc Dim(int,int) = pcvDim;
23proc Basis(int,int) = pcvBasis;
Note: See TracBrowser for help on using the repository browser.