Cadabra
Computer algebra system for field theory problems
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Accent.hh
Go to the documentation of this file.
1 
2 #pragma once
3 
6 
7 namespace cadabra {
8 
16 class Accent : public PropertyInherit, public IndexInherit, public NumericalFlat, virtual public property {
17  public:
18  virtual std::string name() const;
19 };
20 
21 
22 }
PropertyInherit is like Inherit<T> for all properties.
Definition: Props.hh:188
Base class for all properties, handling argument parsing and defining the interface.
Definition: Props.hh:107
virtual std::string name() const
Definition: Accent.cc:6
Definition: IndexInherit.hh:8
Property indicating that an operator is numerically flat, so that numerical factors in the argument c...
Definition: NumericalFlat.hh:11
Turns a symbol into an accent.
Definition: Accent.hh:16