Cadabra
Computer algebra system for field theory problems
EpsilonTensor.hh
Go to the documentation of this file.
1 
2 #pragma once
3 
5 
6 namespace cadabra {
7 
9 
10  class EpsilonTensor : public AntiSymmetric, virtual public property {
11  public:
12  virtual ~EpsilonTensor() {};
13  virtual std::string name() const override;
14  virtual bool parse(Kernel&, keyval_t&) override;
15 
17  };
18 
19  }
Definition: AntiSymmetric.hh:10
Definition: EpsilonTensor.hh:10
virtual std::string name() const override
Definition: EpsilonTensor.cc:6
Ex krdelta
Definition: EpsilonTensor.hh:16
virtual bool parse(Kernel &, keyval_t &) override
Definition: EpsilonTensor.cc:11
Ex metric
Definition: EpsilonTensor.hh:16
virtual ~EpsilonTensor()
Definition: EpsilonTensor.hh:12
Basic storage class for symbolic mathemematical expressions.
Definition: Storage.hh:142
Definition: Kernel.hh:15
Arguments to properties get parsed into a keyval_t structure.
Definition: Props.hh:68
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