File: BigattiBaseCase.h

package info (click to toggle)
frobby 0.9.0-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 11,452 kB
  • ctags: 4,203
  • sloc: cpp: 29,249; sh: 1,121; makefile: 272; ansic: 102
file content (136 lines) | stat: -rwxr-xr-x 4,537 bytes parent folder | download | duplicates (4)
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
130
131
132
133
134
135
136
/* Frobby: Software for monomial ideal computations.
   Copyright (C) 2009 University of Aarhus
   Contact Bjarke Hammersholt Roune for license information (www.broune.com)

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see http://www.gnu.org/licenses/.
*/
#ifndef BIGATTI_BASE_CASE_GUARD
#define BIGATTI_BASE_CASE_GUARD

class BigattiState;
class TermTranslator;

#include "Term.h"
#include "Ideal.h"
#include "HashPolynomial.h"
#include "UniHashPolynomial.h"
#include <vector>

/** This class handles the base cases for the Hilbert-Poincare series
 by Bigatti et.al.
*/
class BigattiBaseCase {
 public:
  /** Initialize this object to handle the computation of
      Hilbert-Poincare series numerator polynomials in a polynomial
      ring with varCount variables. */
  BigattiBaseCase(const TermTranslator& translator);

  /** Returns ture if state is a base case slice while also
   considering genericity. This generalizes the functionality of
   baseCase(). */
  bool genericBaseCase(const BigattiState& state);

  /** Returns true if state is a base case slice without considering
   genericity. */
  bool baseCase(const BigattiState& state);

  /** Add +term or -term to the output polynomial when plus is true or
   false respectively. */
  void output(bool plus, const Term& term);

  /** Feed the output Hilbert-Poincare numerator polynomial computed
   so far to the consumer. This is done in canonical order if
   inCanonicalOrder is true. */
  void feedOutputTo(CoefBigTermConsumer& consumer, bool inCanonicalOrder);

  /** Starts to print debug output on what happens if value is
   true. */
  void setPrintDebug(bool value);

  /** Use the fine grading if value is false, otherwise grade each
   variable by the same variable t. */
  void setComputeUnivariate(bool value);

  /** Returns the total number of base cases this object has seen. */
  size_t getTotalBaseCasesEver() const;

  /** Returns the total number of terms this object has output. This
   can be substantially more than the number of terms in the output
   polynomial, since the sum of two terms can be just one term or even
   zero. */
  size_t getTotalTermsOutputEver() const;

  /** Returns the number of terms in the output polynomial right
   now. */
  size_t getTotalTermsInOutput() const;

 private:
  /** Computes the Hilbert-Poincare series of state and returns true
   if state is a particularly simple and easily detected case. */
  bool simpleBaseCase(const BigattiState& state);

  bool univariateAllFaces(const BigattiState& state);

  /** The ideal in state must be weakly generic. Then the
   Hilbert-Poincare series is computed by enumerating the facet of the
   Scarf complex.

   @param allFaces If true then every subset of monomial ideals is a
    facet of the Scarf complex. This allows for faster computation if
    true but yields incorrect results if not.
  */
  void enumerateScarfComplex(const BigattiState& state, bool allFaces);

  vector<size_t> _maxCount;
  Term _lcm;
  mpz_class _tmp;

  /** The part of the finely graded Hilbert-Poincare numerator
   polynomial computed so far. */
  HashPolynomial _outputMultivariate;

  /** The part of the coarsely graded Hilbert-Poincare numerator
   polynomial computed so far. */
  UniHashPolynomial _outputUnivariate;

  /** Used in enumerateScarfComplex and necessary to have here to
   define _states. */
  struct State {
    Term term;
    Ideal::const_iterator pos;
    bool plus;
  };

  /** Used in enumerateScarfCompex. Is not a local variable to avoid
   the cost of re-allocation at every call. */
  vector<State> _states;

  /** Use the fine grading if false, otherwise grade each variable by
   the same variable t. */
  bool _computeUnivariate;

  /** Used to translate the output from ints. */
  const TermTranslator& _translator;

  /** For statistics. Can overflow. */
  size_t _totalBaseCasesEver;

  /** For statistics. Can overflow. */
  size_t _totalTermsOutputEver;

  bool _printDebug;
};

#endif