Cadabra
Computer algebra system for field theory problems
Loading...
Searching...
No Matches
KroneckerDelta.hh
Go to the documentation of this file.
1
2#pragma once
3
5
6namespace cadabra {
7
8 class KroneckerDelta : public TableauBase, virtual public property {
9 public:
10 virtual ~KroneckerDelta() {};
11 virtual std::string name() const;
12
13 virtual unsigned int size(const Properties&, Ex&, Ex::iterator) const;
14 virtual tab_t get_tab(const Properties &, Ex&, Ex::iterator, unsigned int) const;
15 };
16
17 }
Basic storage class for symbolic mathemematical expressions.
Definition Storage.hh:142
Definition KroneckerDelta.hh:8
virtual std::string name() const
Definition KroneckerDelta.cc:7
virtual unsigned int size(const Properties &, Ex &, Ex::iterator) const
Definition KroneckerDelta.cc:12
virtual tab_t get_tab(const Properties &, Ex &, Ex::iterator, unsigned int) const
Definition KroneckerDelta.cc:17
virtual ~KroneckerDelta()
Definition KroneckerDelta.hh:10
Class holding a collection of properties attached to expressions.
Definition Props.hh:237
Definition TableauBase.hh:9
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