Cadabra
Computer algebra system for field theory problems
Trace.hh
Go to the documentation of this file.
1 
2 #pragma once
3 
4 #include "Props.hh"
9 
10 namespace cadabra {
11 
12  class Trace : public Distributable, public IndexInherit, public NumericalFlat, virtual public property {
13  public:
14  Trace();
15  virtual std::string name() const override;
16  virtual std::string unnamed_argument() const override;
17  virtual bool parse(Kernel&, keyval_t&) override;
18  virtual void validate(const Kernel&, const Ex&) const override;
19  virtual void latex(std::ostream&) const override;
20 
22  std::string index_set_name; // refers to Indices::set_name
23  };
24 
25  }
virtual bool parse(Kernel &, keyval_t &) override
Definition: Trace.cc:21
virtual void latex(std::ostream &) const override
Display the property on the stream.
Definition: Trace.cc:36
Ex obj
Definition: Trace.hh:21
Basic storage class for symbolic mathemematical expressions.
Definition: Storage.hh:140
virtual void validate(const Kernel &, const Ex &) const override
Definition: Trace.cc:32
Arguments to properties get parsed into a keyval_t structure.
Definition: Props.hh:61
Trace()
Definition: Trace.cc:7
Base class for all properties, handling argument parsing and defining the interface.
Definition: Props.hh:120
Definition: Distributable.hh:8
virtual std::string unnamed_argument() const override
Definition: Trace.cc:16
Functions to handle the exchange properties of two or more symbols in a product.
Definition: Algorithm.cc:1045
Definition: IndexInherit.hh:8
Property indicating that an operator is numerically flat, so that numerical factors in the argument c...
Definition: NumericalFlat.hh:11
std::string index_set_name
Definition: Trace.hh:22
virtual std::string name() const override
Definition: Trace.cc:11
Definition: Kernel.hh:14
Definition: Trace.hh:12