source: git/libpolys/polys/weight.h @ 85bcd6

spielwiese
Last change on this file since 85bcd6 was 6ce030f, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
removal of the $Id$ svn tag from everywhere NOTE: the git SHA1 may be used instead (only on special places) NOTE: the libraries Singular/LIB/*.lib still contain the marker due to our current use of svn
  • Property mode set to 100644
File size: 948 bytes
RevLine 
[35aab3]1#ifndef WEIGHT_H
2#define WEIGHT_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/*
7* ABSTRACT
8*/
9
[f550e86]10#include <polys/monomials/ring.h>
[35aab3]11
[494884]12extern short * ecartWeights;
[f550e86]13//extern pFDegProc pFDegOld;
14//extern pLDegProc pLDegOld;
[35aab3]15
[494884]16void kEcartWeights(poly* s, int sl, short *eweight, const ring R);
[f550e86]17//BOOLEAN kWeight(leftv res,leftv id);
18//BOOLEAN kQHWeight(leftv res,leftv v);
19long maxdegreeWecart(poly p,int *l, ring r);
20long totaldegreeWecart(poly p, ring r);
[35aab3]21long totaldegreeWecart_IV(poly p, ring r, const short *w);
22
[494884]23short * iv2array(intvec * iv, const ring R);
[35aab3]24
25// internal:
26extern "C" double (*wFunctional)(int *degw, int *lpol, int npol,
[6aacb6]27       double *rel, double wx, double wNsqr);
[35aab3]28extern "C" double wFunctionalBuch(int *degw, int *lpol, int npol,
[6aacb6]29       double *rel, double wx, double wNsqr);
[494884]30void wCall(poly* s, int sl, int *x, double wNsqr, const ring R);
[35aab3]31
32#endif
33
Note: See TracBrowser for help on using the repository browser.