source: git/kernel/weight.h @ 6b9532

spielwiese
Last change on this file since 6b9532 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: 955 bytes
Line 
1#ifndef WEIGHT_H
2#define WEIGHT_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/*
7* ABSTRACT
8*/
9/* $Id: weight.h,v 1.1.1.1 2003-10-06 12:15:57 Singular Exp $ */
10
11#include "structs.h"
12
13extern short * ecartWeights;
14extern pFDegProc pFDegOld;
15extern pLDegProc pLDegOld;
16
17void kEcartWeights(polyset s, int sl, short *eweight);
18BOOLEAN kWeight(leftv res,leftv id);
19BOOLEAN kQHWeight(leftv res,leftv v);
20long maxdegreeWecart(poly p,int *l, ring r = currRing);
21long totaldegreeWecart(poly p, ring r = currRing);
22long totaldegreeWecart_IV(poly p, ring r, const short *w);
23
24short * iv2array(intvec * iv);
25
26// internal:
27extern double wNsqr;
28extern "C" double (*wFunctional)(int *degw, int *lpol, int npol,
29       double *rel, double wx);
30extern "C" double wFunctionalBuch(int *degw, int *lpol, int npol,
31       double *rel, double wx);
32void wCall(polyset s, int sl, int *x);
33
34#endif
35
Note: See TracBrowser for help on using the repository browser.