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  }
Definition: Derivative.hh:26
Basic storage class for symbolic mathemematical expressions.
Definition: Storage.hh:142
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
Definition: PartialDerivative.hh:9
virtual tab_t get_tab(const Properties &, Ex &, Ex::iterator, unsigned int) const
Definition: PartialDerivative.cc:13
virtual ~PartialDerivative()
Definition: PartialDerivative.hh:11
virtual std::string name() const
Definition: PartialDerivative.cc:48
virtual unsigned int size(const Properties &, Ex &, Ex::iterator) const
Definition: PartialDerivative.cc:7
Class holding a collection of properties attached to expressions.
Definition: Props.hh:234
Base class for all properties, handling argument parsing and defining the interface.
Definition: Props.hh:127
Functions to handle the exchange properties of two or more symbols in a product.
Definition: Adjform.cc:83