26 from glucat cimport IndexSet, String, Clifford, scalar_t, vector
27 from libcpp.string cimport string
29 cdef extern
from "PyClical.h":
30 string glucat_package_version
32 IndexSet operator&(IndexSet Lhs, IndexSet Rhs)
33 IndexSet operator|(IndexSet Lhs, IndexSet Rhs)
34 IndexSet operator^(IndexSet Lhs, IndexSet Rhs)
39 Clifford operator+(Clifford Lhs, Clifford Rhs)
40 Clifford operator-(Clifford Lhs, Clifford Rhs)
41 Clifford operator*(Clifford Lhs, Clifford Rhs)
42 Clifford operator&(Clifford Lhs, Clifford Rhs)
43 Clifford operator%(Clifford Lhs, Clifford Rhs)
44 Clifford operator^(Clifford Lhs, Clifford Rhs)
45 Clifford operator/(Clifford Lhs, Clifford Rhs)
46 Clifford operator|(Clifford Lhs, Clifford Rhs)
51 const scalar_t epsilon
String clifford_to_str(const Multivector_T &mv)
The "informal" string representation of Multivector_T mv.
String index_set_to_repr(const Index_Set_T &ist)
The “official” string representation of Index_Set_T ist.
String clifford_to_repr(const Multivector_T &mv)
The “official” string representation of Multivector_T mv.
String index_set_to_str(const Index_Set_T &ist)
The "informal" string representation of Index_Set_T ist.