source: git/Singular/kstd1.h @ 31af2e

fieker-DuValspielwiese
Last change on this file since 31af2e 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: 2.1 KB
Line 
1#ifndef KSTD1_H
2#define KSTD1_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/* $Id: kstd1.h,v 1.3 1997-04-09 12:19:52 Singular 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 std(ideal F, ideal Q, tHomog h, intvec ** w,intvec *hilb=NULL,
26          int syzComp=0,int newIdeal=0);
27
28/* the following global data are defined in kutil.cc */
29//extern int syzComp;
30  /*stop building pairs after that component --> ideals.cc, syz.cc */
31extern int LazyPass,LazyDegree,mu,Kstd1_deg;
32#define Kstd1_mu mu
33  /*parameters for Lazy or global stops --> ipshell.cc, grammar.y*/
34extern BITSET kOptions;
35  /*the known test options (a constant)*/
36extern BITSET validOpts;
37
38void initMora(ideal F,kStrategy strat);
39
40ideal kInterRed (ideal F, ideal Q=NULL);
41int   kModDeg(poly p);
42
43ideal stdred(ideal F, ideal Q, tHomog h,intvec ** w);
44
45lists min_std(ideal F, ideal Q, tHomog h,intvec ** w, intvec *hilb=NULL,
46              int syzComp=0,int reduced=0);
47
48
49extern pFDegProc pOldFDeg;
50extern intvec * kModW;
51
52/* options:
530 prot
541 redSB
552 Gebauer/Moeller
563 notSugar
574 interrupt
585 sugarCrit
596 teach
607 cancel unit
618 morePairs
629 return SB (syz,quotient,intersect)
6310 fastHC
6411-19 sort in L/T
6520 redBest
6621 keep local variable with keepring of a loacal ring
6722 staircaseBound: in NF create a HC x1^degBound+1
6823 multBound
6924 degBound
7025 no redTail(p)/redTail(s)
7126 integer strategy
7227 stop at HC (finiteDeterminacyTest)
7328 minimizes directly during the mres command
7429 std + 1 new element
7530 noRedSyz
7631 weight
77*/
78
79#endif
80
Note: See TracBrowser for help on using the repository browser.