Cadabra
Computer algebra system for field theory problems
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Dummies.hh
Go to the documentation of this file.
1 /*
2 
3  Cadabra: a field-theory motivated computer algebra system.
4  Copyright (C) 2001-2011 Kasper Peeters <kasper.peeters@aei.mpg.de>
5 
6  This program is free software: you can redistribute it and/or
7  modify it under the terms of the GNU General Public License as
8  published by the Free Software Foundation, either version 3 of the
9  License, or (at your option) any later version.
10 
11  This program is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along 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 
27 class 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
rename_dummies(Ex &, iterator)
virtual result_t apply(iterator &)
Definition: Dummies.hh:27
virtual bool can_apply(iterator)