Cadabra
Computer algebra system for field theory problems
sym.hh
Go to the documentation of this file.
1 
2 #include "Algorithm.hh"
3 #include <vector>
4 #include "Combinatorics.hh"
5 
6 namespace cadabra {
7 
8  class sym : virtual public Algorithm {
9  public:
10  sym(const Kernel&, Ex&, Ex&, bool sign);
11 
12  virtual bool can_apply(iterator) override;
13  virtual result_t apply(iterator& it) override;
14 
15  protected:
17  bool sign;
18 
19  std::vector<unsigned int> argloc_2_treeloc;
21 
22  result_t doit(iterator&, bool);
23  };
24 
25  }
Base class for all algorithms, containing generic routines and in particular the logic for index clas...
Definition: Algorithm.hh:59
combin::combinations< unsigned int > raw_ints
Definition: sym.hh:20
Basic storage class for symbolic mathemematical expressions.
Definition: Storage.hh:140
std::vector< unsigned int > argloc_2_treeloc
Definition: sym.hh:19
virtual result_t apply(iterator &it) override
Definition: sym.cc:28
result_t doit(iterator &, bool)
Definition: sym.cc:40
Ex::iterator iterator
Definition: Algorithm.hh:70
Functions to handle the exchange properties of two or more symbols in a product.
Definition: Algorithm.cc:1045
Definition: sym.hh:8
virtual bool can_apply(iterator) override
Definition: sym.cc:15
bool sign
Definition: sym.hh:17
Definition: Kernel.hh:14
result_t
Keeping track of what algorithms have done to this expression.
Definition: Storage.hh:159
Ex objects
Definition: sym.hh:16
sym(const Kernel &, Ex &, Ex &, bool sign)
Definition: sym.cc:8