Cadabra
Computer algebra system for field theory problems
Integral.hh
Go to the documentation of this file.
1 #pragma once
2 
3 #include "Props.hh"
4 
5 namespace cadabra {
6 
7  // Turns a symbol into an integration function, which takes two arguments,
8  // the integrand and the coordinate over which to integrate, optionally
9  // with a range.
10 
11  class Integral : public property {
12  public:
13  virtual ~Integral() {};
14 
15  virtual std::string name() const;
16  virtual bool parse(Kernel&, keyval_t& keyvals) override;
17  virtual void display(std::ostream&) const;
18  };
19 
20 }
Definition: Integral.hh:11
virtual bool parse(Kernel &, keyval_t &keyvals) override
virtual void display(std::ostream &) const
virtual ~Integral()
Definition: Integral.hh:13
virtual std::string name() const
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