source: git/Singular/units.h @ d971225

spielwiese
Last change on this file since d971225 was d971225, checked in by Mathias Schulze <mschulze@…>, 23 years ago
*mschulze: added rednf(<ideal>,<poly>[,<poly>]) git-svn-id: file:///usr/local/Singular/svn/trunk@5164 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 600 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/* $Id: units.h,v 1.2 2001-02-01 15:14:21 mschulze Exp $ */
5/*
6* ABSTRACT: procedures to compute with units
7*/
8
9#ifndef UNITS_H
10#define UNITS_H
11
12BOOLEAN invunit(leftv res,leftv h);
13poly invunit(poly u,int n);
14matrix invunit(matrix U,int n);
15BOOLEAN series(leftv res,leftv h);
16poly series(poly p,poly u,int n);
17ideal series(ideal M,matrix U,int n);
18BOOLEAN rednf(leftv res,leftv h);
19ideal rednf(ideal N,ideal M,matrix U=NULL);
20poly rednf(ideal N,poly p,poly u=NULL);
21
22#endif
Note: See TracBrowser for help on using the repository browser.