Cadabra
Computer algebra system for field theory problems
Loading...
Searching...
No Matches
TableauInherit.hh
Go to the documentation of this file.
1
2#pragma once
3
4#include "Props.hh"
6
7namespace cadabra {
8
13
14 class TableauInherit : virtual public TableauBase, virtual public property {
15 public:
16 virtual std::string name() const
17 {
18 return std::string("TableauInherit");
19 };
20
21 virtual unsigned int size(const Properties&, Ex&, Ex::iterator) const;
22 virtual tab_t get_tab(const Properties&, Ex&, Ex::iterator, unsigned int) const;
23
24 };
25
26 }
Basic storage class for symbolic mathemematical expressions.
Definition: Storage.hh:141
Class holding a collection of properties attached to expressions.
Definition: Props.hh:234
Definition: TableauBase.hh:9
Property which makes a node inherit the TableauBase properties of child nodes.
Definition: TableauInherit.hh:14
virtual std::string name() const
Definition: TableauInherit.hh:16
virtual tab_t get_tab(const Properties &, Ex &, Ex::iterator, unsigned int) const
Definition: TableauInherit.cc:33
virtual unsigned int size(const Properties &, Ex &, Ex::iterator) const
Definition: TableauInherit.cc:10
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