source: git/Singular/spolys.h @ 400884

spielwiese
Last change on this file since 400884 was 6ae4f5, checked in by Hans Schönemann <hannes@…>, 27 years ago
* hannes: - corrected scanner.l: parsing of strings in blocks: if (1) { write("","}"); } - corrected ipassign.cc: assignment of "dummy" types: DEF, NONE - corrected sleftv::Print(_), initialisation of _ - added conversion int->def - added CopyD(DEF) - in insert(..): object should not be of type NONE (lists.cc:lInsert0) - added int*intvec, int*intmat to iparith.cc git-svn-id: file:///usr/local/Singular/svn/trunk@145 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 712 bytes
Line 
1#ifndef SPOLYS_H
2#define SPOLYS_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/*
7* ABSTRACT: s-polynomials
8*/
9/* $Id: spolys.h,v 1.3 1997-04-09 12:20:11 Singular Exp $ */
10#include "structs.h"
11
12/* reduction */
13extern poly (*spSpolyRed)(poly p1, poly p2,poly spNoether);
14extern void (*spSpolyTail)(poly p1, poly q, poly q2, poly spNoether);
15extern poly (*spSpolyRedNew)(poly p1, poly p2,poly spNoether);
16
17/* s-polynomial */
18extern poly (*spSpolyCreate)(poly p1, poly p2,poly spNoether);
19
20/* short s-polynomial for ordering in Bba and Mora */
21extern poly (*spSpolyShortBba)(poly p1, poly p2);
22
23/* init */
24void spSet(ring r);
25#endif
26
Note: See TracBrowser for help on using the repository browser.