Cadabra
Computer algebra system for field theory problems
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
DifferentialForm.hh
Go to the documentation of this file.
1 
2 #pragma once
3 
4 #include "Props.hh"
8 
9 namespace cadabra {
10 
12  public:
13  virtual std::string name() const override;
14  virtual bool parse(const Kernel&, keyval_t&) override;
15 
16  virtual Ex degree(const Properties&, Ex::iterator) const override;
17 
18  private:
20  };
21 
22 }
Basic storage class for symbolic mathemematical expressions.
Definition: Storage.hh:130
virtual bool parse(const Kernel &, keyval_t &) override
Definition: DifferentialForm.cc:11
virtual std::string name() const override
Definition: DifferentialForm.cc:6
Definition: ImplicitIndex.hh:8
Arguments to properties get parsed into a keyval_t structure.
Definition: Props.hh:48
Definition: DifferentialForm.hh:11
Ex degree_
Definition: DifferentialForm.hh:19
Definition: IndexInherit.hh:8
Definition: Kernel.hh:15
Definition: DifferentialFormBase.hh:10
virtual Ex degree(const Properties &, Ex::iterator) const override
Definition: DifferentialForm.cc:21
Class holding a collection of properties attached to expressions.
Definition: Props.hh:203