source: git/Singular/kstd1.h @ 97a7b44

spielwiese
Last change on this file since 97a7b44 was 02e9a1, checked in by Wilfred Pohl <pohl@…>, 25 years ago
quasihomogen for std with hilbert series git-svn-id: file:///usr/local/Singular/svn/trunk@2756 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 2.3 KB
Line 
1#ifndef KSTD1_H
2#define KSTD1_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/* $Id: kstd1.h,v 1.8 1998-12-15 10:06:45 pohl Exp $ */
7/*
8* ABSTRACT
9*/
10#include "structs.h"
11
12/*2
13*input: F: a set (array) of polys with <= Fmax entries (0..Fmax-1)
14*       *S: a set (array) of polys with *Smax initialized entries (0..*Smax-1)
15*output:*S: the standard base: a set (array) with <= *Smax+1 entries (0..*Smax)
16*/
17ideal mora (ideal F, ideal Q,intvec *w,intvec *hilb,kStrategy strat);
18
19poly kNF1(ideal F, ideal Q, poly q, kStrategy strat, int lazyReduce);
20ideal kNF1 (ideal F,ideal Q,ideal q, kStrategy strat, int lazyReduce);
21
22poly kNF (ideal F, ideal Q, poly p,int syzComp=0, int lazyReduce=0);
23ideal kNF(ideal F, ideal Q, ideal p,int syzComp=0, int lazyReduce=0);
24
25ideal kStd(ideal F, ideal Q, tHomog h, intvec ** mw,intvec *hilb=NULL,
26          int syzComp=0,int newIdeal=0, intvec *vw=NULL);
27#ifdef STDTRACE
28lists TraceStd(leftv,int , ideal F, ideal Q, tHomog h, intvec ** w,intvec *hilb=NULL,
29          int syzComp=0,int newIdeal=0);
30#endif
31
32/* the following global data are defined in kutil.cc */
33//extern int syzComp;
34  /*stop building pairs after that component --> ideals.cc, syz.cc */
35extern int LazyPass,LazyDegree,mu,Kstd1_deg;
36#define Kstd1_mu mu
37  /*parameters for Lazy or global stops --> ipshell.cc, grammar.y*/
38extern BITSET kOptions;
39  /*the known test options (a constant)*/
40extern BITSET validOpts;
41
42void initMora(ideal F,kStrategy strat);
43
44ideal kInterRed (ideal F, ideal Q=NULL);
45int   kModDeg(poly p);
46int   kHomModDeg(poly p);
47
48ideal stdred(ideal F, ideal Q, tHomog h,intvec ** w);
49
50lists min_std(ideal F, ideal Q, tHomog h,intvec ** w, intvec *hilb=NULL,
51              int syzComp=0,int reduced=0);
52
53
54extern pFDegProc pOldFDeg;
55extern intvec * kModW;
56
57/* options:
580 prot
591 redSB
602 Gebauer/Moeller
613 notSugar
624 interrupt
635 sugarCrit
646 teach
657 cancel unit
668 morePairs
679 return SB (syz,quotient,intersect)
6810 fastHC
6911-19 sort in L/T
7020 redBest
7121 keep local variable with keepring of a loacal ring
7222 staircaseBound: in NF create a HC x1^degBound+1
7323 multBound
7424 degBound
7525 no redTail(p)/redTail(s)
7626 integer strategy
7727 stop at HC (finiteDeterminacyTest)
7828 minimizes directly during the mres command
7929 kStd + 1 new element
8030 noRedSyz
8131 weight
82*/
83
84#endif
85
Note: See TracBrowser for help on using the repository browser.