Cadabra
Computer algebra system for field theory problems
Commuting.hh
Go to the documentation of this file.
1 
2 #pragma once
3 
5 
6 namespace cadabra {
7 
8  class Commuting : virtual public CommutingBehaviour {
9  public:
10  virtual std::string name() const;
11  virtual int sign() const { return 1; }
12  };
13 
14 }
Definition: Commuting.hh:8
Functions to handle the exchange properties of two or more symbols in a product.
Definition: Algorithm.cc:1030
virtual int sign() const
Definition: Commuting.hh:11
Definition: CommutingBehaviour.hh:8
virtual std::string name() const
Definition: Commuting.cc:6