Cadabra
Computer algebra system for field theory problems
tab_dimension.hh
Go to the documentation of this file.
1 
2 #include "Algorithm.hh"
3 #include "YoungTab.hh"
4 #include "properties/Tableau.hh"
6 
7 namespace cadabra {
8 
9 class tabdimension : public Algorithm {
10  public:
11  tabdimension(const Kernel&, Ex&);
12 
13  virtual bool can_apply(iterator);
14  virtual result_t apply(iterator&);
15 
16  const Tableau *tab;
18  int dimension;
19 };
20 
21 
22 
23 }
Base class for all algorithms, containing generic routines and in particular the logic for index clas...
Definition: Algorithm.hh:58
int dimension
Definition: tab_dimension.hh:18
Basic storage class for symbolic mathemematical expressions.
Definition: Storage.hh:139
Definition: Tableau.hh:8
const FilledTableau * ftab
Definition: tab_dimension.hh:17
const Tableau * tab
Definition: tab_dimension.hh:16
virtual result_t apply(iterator &)
Definition: tab_dimension.cc:34
virtual bool can_apply(iterator)
Definition: tab_dimension.cc:12
Definition: tab_dimension.hh:9
Definition: FilledTableau.hh:7
Ex::iterator iterator
Definition: Algorithm.hh:69
Functions to handle the exchange properties of two or more symbols in a product.
Definition: Algorithm.cc:1626
tabdimension(const Kernel &, Ex &)
Definition: tab_dimension.cc:7
Definition: Kernel.hh:14
result_t
Keeping track of what algorithms have done to this expression.
Definition: Storage.hh:158