Frobby  0.9.0
TermConsumer.cpp
Go to the documentation of this file.
1 /* Frobby: Software for monomial ideal computations.
2  Copyright (C) 2007 Bjarke Hammersholt Roune (www.broune.com)
3 
4  This program is free software; you can redistribute it and/or modify
5  it under the terms of the GNU General Public License as published by
6  the Free Software Foundation; either version 2 of the License, or
7  (at your option) any later version.
8 
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  GNU General Public License for more details.
13 
14  You should have received a copy of the GNU General Public License
15  along with this program. If not, see http://www.gnu.org/licenses/.
16 */
17 #include "stdinc.h"
18 #include "TermConsumer.h"
19 
20 #include "Term.h"
21 #include "Ideal.h"
22 
24 }
25 
26 void TermConsumer::consumeRing(const VarNames& names) {
27 }
28 
30 }
31 
33 }
34 
35 void TermConsumer::consume(const Ideal& ideal) {
37  Term tmp(ideal.getVarCount());
38  for (size_t term = 0; term < ideal.getGeneratorCount(); ++term) {
39  tmp = ideal[term];
40  consume(tmp);
41  }
42  doneConsuming();
43 }
TermConsumer::beginConsumingList
virtual void beginConsumingList()
Tell the consumer that the ideals that are consumed until the next call to doneConsumingList are to b...
Definition: TermConsumer.cpp:29
stdinc.h
TermConsumer::doneConsumingList
virtual void doneConsumingList()
Must be called once after each time beginConsumingList has been called.
Definition: TermConsumer.cpp:32
Term.h
TermConsumer::beginConsuming
virtual void beginConsuming()=0
Tell the consumer to begin consuming an ideal.
Ideal::getGeneratorCount
size_t getGeneratorCount() const
Definition: Ideal.h:57
Ideal.h
Term
Term represents a product of variables which does not include a coefficient.
Definition: Term.h:49
Ideal::getVarCount
size_t getVarCount() const
Definition: Ideal.h:56
TermConsumer::consumeRing
virtual void consumeRing(const VarNames &names)
Tell the consumer which ring is being used.
Definition: TermConsumer.cpp:26
TermConsumer::doneConsuming
virtual void doneConsuming()=0
Must be called once after each time beginConsuming has been called.
TermConsumer::~TermConsumer
virtual ~TermConsumer()
Definition: TermConsumer.cpp:23
Ideal
Represents a monomial ideal with int exponents.
Definition: Ideal.h:27
TermConsumer::consume
virtual void consume(const Term &term)=0
Consume a term.
VarNames
Defines the variables of a polynomial ring and facilities IO involving them.
Definition: VarNames.h:40
TermConsumer.h