Cadabra
Computer algebra system for field theory problems
PartialDerivative.hh
Go to the documentation of this file.
1 
2 #pragma once
3 
5 #include "properties/Spinor.hh"
6 
7 namespace cadabra {
8 
9  class PartialDerivative : public Derivative, public Inherit<Spinor>, virtual public property {
10  public :
11  virtual ~PartialDerivative() {};
12  virtual std::string name() const;
13 
14  virtual unsigned int size(const Properties&, Ex&, Ex::iterator) const;
15  virtual tab_t get_tab(const Properties&, Ex&, Ex::iterator, unsigned int) const;
16  };
17 
18  }
Spinor.hh
cadabra::PartialDerivative::~PartialDerivative
virtual ~PartialDerivative()
Definition: PartialDerivative.hh:11
cadabra::PartialDerivative::size
virtual unsigned int size(const Properties &, Ex &, Ex::iterator) const
Definition: PartialDerivative.cc:7
cadabra::PartialDerivative
Definition: PartialDerivative.hh:9
cadabra::Properties
Definition: Props.hh:234
cadabra::PartialDerivative::name
virtual std::string name() const
Definition: PartialDerivative.cc:48
cadabra::property
FIXME: the above two need to be merged, because parse may need access to the actual pattern tree,...
Definition: Props.hh:127
cadabra::Inherit
If a property X derives from Inherit<Y>, and get<Y> is called on an object which has an X property (b...
Definition: Props.hh:204
yngtab::filled_tableau< unsigned int >
Derivative.hh
cadabra
Functions to handle the exchange properties of two or more symbols in a product.
Definition: Adjform.cc:83
cadabra::Ex
Definition: Storage.hh:141
cadabra::Derivative
Definition: Derivative.hh:15
cadabra::PartialDerivative::get_tab
virtual tab_t get_tab(const Properties &, Ex &, Ex::iterator, unsigned int) const
Definition: PartialDerivative.cc:13