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