Cadabra
Computer algebra system for field theory problems
Loading...
Searching...
No Matches
Dummies.hh
Go to the documentation of this file.
1/*
2
3Cadabra: a field-theory motivated computer algebra system.
4Copyright (C) 2001-2011 Kasper Peeters <kasper.peeters@aei.mpg.de>
5
6This program is free software: you can redistribute it and/or
7 modify it under the terms of the GNU General Public License as
8published by the Free Software Foundation, either version 3 of the
9License, or (at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program. If not, see <http://www.gnu.org/licenses/>.
18
19*/
20
21#ifndef dummies_hh_
22#define dummies_hh_
23
24#include "algorithm.hh"
25#include "props.hh"
26
27class rename_dummies : public algorithm {
28 public:
29 rename_dummies(Ex&, iterator);
30
31 virtual bool can_apply(iterator);
32 virtual result_t apply(iterator&);
33 };
34
35
36#endif
Definition Dummies.hh:27
virtual result_t apply(iterator &)
Definition rename_dummies.cc:31
virtual bool can_apply(iterator)
Definition rename_dummies.cc:13
rename_dummies(Ex &, iterator)