Cadabra
Computer algebra system for field theory problems
chain_rule.hh
Go to the documentation of this file.
1 
2 #include "Algorithm.hh"
3 
4 namespace cadabra {
5 
6  class chain_rule : public Algorithm {
7  public:
8  chain_rule(const Kernel&, Ex&);
9 
10  virtual bool can_apply(iterator) override;
11  virtual result_t apply(iterator&) override;
12  };
13 
14  }
cadabra::chain_rule::apply
virtual result_t apply(iterator &) override
Algorithm.hh
cadabra::Kernel
Definition: Kernel.hh:15
cadabra::chain_rule::can_apply
virtual bool can_apply(iterator) override
cadabra::chain_rule::chain_rule
chain_rule(const Kernel &, Ex &)
cadabra::chain_rule
Definition: chain_rule.hh:6
cadabra::Algorithm::iterator
Ex::iterator iterator
Definition: Algorithm.hh:70
cadabra::Algorithm
Definition: Algorithm.hh:59
cadabra
Functions to handle the exchange properties of two or more symbols in a product.
Definition: Adjform.cc:83
cadabra::Ex
Definition: Storage.hh:140
cadabra::Ex::result_t
result_t
Keeping track of what algorithms have done to this expression.
Definition: Storage.hh:159