Frobby 0.9.5
DebugStrategy.h
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#ifndef DEBUG_STRATEGY
18#define DEBUG_STRATEGY
19
20#include "SliceStrategy.h"
21
27 public:
31 virtual ~DebugStrategy();
32
33 virtual void run(const Ideal& ideal);
34
36
37 virtual void setUseIndependence(bool use);
38 virtual void setUseSimplification(bool use);
39 virtual bool getUseSimplification() const;
40
41 virtual void freeSlice(auto_ptr<Slice> slice);
42
43 private:
46};
47
48#endif
void nameFactoryRegister(NameFactory< AbstractProduct > &factory)
Registers the string returned by ConcreteProduct::getStaticName() to a function that default-construc...
A wrapper for a SliceStrategy that prints out what is going out for debugging purposes,...
virtual void run(const Ideal &ideal)
Run the Slice algorithm.
virtual ~DebugStrategy()
virtual void freeSlice(auto_ptr< Slice > slice)
It is allowed to delete returned slices directly, but it is better to use freeSlice.
bool processSlice(TaskEngine &tasks, auto_ptr< Slice > slice)
Process the parameter slice.
virtual void setUseIndependence(bool use)
This method should only be called before calling run().
SliceStrategy * _strategy
virtual bool getUseSimplification() const
virtual void setUseSimplification(bool use)
This method should only be called before calling run().
Represents a monomial ideal with int exponents.
Definition Ideal.h:27
This class describes the interface of a strategy object for the Slice Algorithm.
TaskEngine handles a list of tasks that are to be carried out.
Definition TaskEngine.h:40