File: HashPolynomial.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 (68 lines) | stat: -rwxr-xr-x 2,004 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
/* 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 HASH_POLYNOMIAL_GUARD
#define HASH_POLYNOMIAL_GUARD

#include "Term.h"
#include "HashMap.h"

class CoefBigTermConsumer;
class TermTranslator;

/** This template specialization makes the hash code of a term
 available to the implementation of HashMap.
*/
template<>
class FrobbyHash<Term> {
 public:
  size_t operator()(const Term& t) const {
    return t.getHashCode();
  }
};

/** A sparse multivariate polynomial represented by a hash table
 mapping terms to coefficients. This allows to avoid duplicate terms
 without a large overhead.
*/
class HashPolynomial {
 public:
  HashPolynomial(size_t varCount = 0);

  void clearAndSetVarCount(size_t varCount);

  /** Add coef*term to the polynomial. */
  void add(const mpz_class& coef, const Term& term);

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

  void feedTo(const TermTranslator& translator,
              CoefBigTermConsumer& consumer,
              bool inCanonicalOrder) const;

  size_t getTermCount() const;

 private:
  size_t _varCount;

  typedef HashMap<Term, mpz_class> TermMap;
  TermMap _terms;
};

#endif