Cadabra
Computer algebra system for field theory problems
TableauInherit.hh
Go to the documentation of this file.
1 
2 #pragma once
3 
4 #include "Props.hh"
6 
7 namespace cadabra {
8 
9  class TableauInherit : virtual public TableauBase, virtual public property {
10  public:
11  virtual std::string name() const
12  {
13  return std::string("TableauInherit");
14  };
15 
16  virtual unsigned int size(const Properties&, Ex&, Ex::iterator) const;
17  virtual tab_t get_tab(const Properties&, Ex&, Ex::iterator, unsigned int) const;
18 
19  };
20 
21  }
cadabra::TableauInherit::size
virtual unsigned int size(const Properties &, Ex &, Ex::iterator) const
Definition: TableauInherit.cc:10
cadabra::TableauInherit
Definition: TableauInherit.hh:9
TableauBase.hh
cadabra::property
Base class for all properties, handling argument parsing and defining the interface.
Definition: Props.hh:126
cadabra::TableauBase
Definition: TableauBase.hh:9
yngtab::filled_tableau< unsigned int >
cadabra::Ex
Basic storage class for symbolic mathemematical expressions.
Definition: Storage.hh:140
cadabra
Functions to handle the exchange properties of two or more symbols in a product.
Definition: Adjform.cc:80
Props.hh
cadabra::TableauInherit::get_tab
virtual tab_t get_tab(const Properties &, Ex &, Ex::iterator, unsigned int) const
Definition: TableauInherit.cc:33
cadabra::Properties
Class holding a collection of properties attached to expressions.
Definition: Props.hh:233
cadabra::TableauInherit::name
virtual std::string name() const
Definition: TableauInherit.hh:11