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