File: app_tropicalbruteforce.cpp

package info (click to toggle)
gfan 0.5%2Bdfsg-5
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 8,296 kB
  • ctags: 5,612
  • sloc: cpp: 39,675; makefile: 453; sh: 1
file content (129 lines) | stat: -rw-r--r-- 3,312 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#include "parser.h"
#include "printer.h"
#include "polynomial.h"
#include "division.h"
#include "buchberger.h"
#include "wallideal.h"
#include "lp.h"
#include "reversesearch.h"
#include "polyhedralfan.h"
#include "breadthfirstsearch.h"
#include "termorder.h"
#include "ep_standard.h"
#include "ep_xfig.h"
#include "gfanapplication.h"
#include "timer.h"
#include "dimension.h"
#include "tropical.h"
#include "tropical2.h"
#include "log.h"

class TropicalBruteForceApplication : public GFanApplication
{
  //SimpleOption OptionTPlane;
public:
  const char *helpText()
  {
    return "This program takes a marked reduced Groebner basis for a homogeneous ideal and computes the tropical "
      "variety of the ideal as a subfan of the Groebner fan. "
      "The program is slow but works for any homogeneous ideal. If "
      "you know that your ideal is prime over the complex numbers or you "
      "simply know that its tropical variety is pure and connected in "
      "codimension one then use gfan_tropicalstartingcone and "
      "gfan_tropicaltraverse instead.\n";
  }
  TropicalBruteForceApplication()
  {
    registerOptions();
  }

  const char *name()//:
  //    OptionTPlane("--tplane","This option intersect the resulting
  {
    return "_tropicalbruteforce";
  }

  int main()
  {
    FileParser p(Stdin);

    PolynomialRing r=p.parsePolynomialRing();
    PolynomialSet G=p.parsePolynomialSet(r);

    if(!isMarkingConsistent(G))
      {
	fprintf(Stderr,"Input polynomial set is not marked consistently.\n");
	assert(0);
      }
    if(!isMarkedGroebnerBasis(G))
      {
	fprintf(Stderr,"Input polynomial set is not a marked Groebner basis.\n");
	assert(0);
      }

    autoReduce(&G, LexicographicTermOrder());

    int homog=dimensionOfHomogeneitySpace(G);
    int n=r.getNumberOfVariables();
    IntegerVector f=IntegerVector(n-homog+1);
    IntegerVector fTrop=IntegerVector(n-homog+1);

    //    ReverseLexicographicTermOrder A;
    LexicographicTermOrder A;
    ReverseSearch rs(A);
    EnumerationTargetCollector C;
    rs.setEnumerationTarget(&C);
    rs.enumerate(G);
    PolynomialSetList glist=C.getList();

    PolyhedralFan result(n);

    for(PolynomialSetList::const_iterator j=glist.begin();j!=glist.end();j++)
      {
	PolynomialSet g=*j;
	PolyhedralCone c=groebnerCone(g,true);
	PolyhedralFan F(n);
	F.insert(c);
	for(int i=0;i<n-homog+1;i++)
	  {
	    F.removeAllLowerDimensional();
	    PolyhedralFan F2(n);
	    while(!F.isEmpty())
	      {
		PolyhedralCone K=F.highestDimensionalCone();
		F.remove(K);

		IntegerVector w=K.getRelativeInteriorPoint();
		WeightTermOrder myOrder(w);
		if(g.checkMarkings(myOrder))
		  {
		    f[n-homog-i]++;
		    F2.insert(K);
		    if(!containsMonomial(initialFormsAssumeMarked(g,w)))
		      {
			result.insert(K);
			fTrop[n-homog-i]++;
		      }
		  }
	      }
	    F=F2.facetComplex();
	  }
      }

    AsciiPrinter P(Stdout);
    result.printWithIndices(&P, FPF_default);
    //    result.printWithIndices(&P, false, 0, false);

    AsciiPrinter Q(Stderr);
    log1 Q.printString("F-vector of Groebner fan:\n");
    log1 Q.printVector(f);
    log1 Q.printString("\nF-vector of tropical variety:\n");
    log1 Q.printVector(fTrop);
    log1 Q.printNewLine();

    return 0;
  }
};

static TropicalBruteForceApplication theApplication;