Cadabra
Computer algebra system for field theory problems
Tableau.hh
Go to the documentation of this file.
1 
2 #pragma once
3 
4 #include "Props.hh"
5 
6 namespace cadabra {
7 
8  class Tableau : public property {
9  public:
10  virtual ~Tableau() {};
11  virtual std::string name() const override;
12  virtual bool parse(Kernel&, keyval_t& keyvals) override;
13 
14  int dimension;
15  };
16 
17 }
Definition: Tableau.hh:8
Arguments to properties get parsed into a keyval_t structure.
Definition: Props.hh:48
virtual bool parse(Kernel &, keyval_t &keyvals) override
Definition: Tableau.cc:11
Base class for all properties, handling argument parsing and defining the interface.
Definition: Props.hh:107
Functions to handle the exchange properties of two or more symbols in a product.
Definition: Algorithm.cc:1030
virtual ~Tableau()
Definition: Tableau.hh:10
Definition: Kernel.hh:14
int dimension
Definition: Tableau.hh:14
virtual std::string name() const override
Definition: Tableau.cc:6