18namespace persistence_matrix {
66 template <
typename Integer_type>
Concept of the field operator classes needed for the class Matrix.
Definition: FieldOperators.h:31
Element get_value(Integer_type e) const
Returns the value of an integer in the field. That is the positive value of the integer modulo the cu...
void multiply_and_add_inplace_front(Element &e, const Element &m, const Element &a) const
Multiplies the first element with the second one and adds the third one, that is (e * m + a) % charac...
unspecified Characteristic
Definition: FieldOperators.h:34
FieldOperators(Characteristic characteristic=0)
Default constructor. If a non-zero characteristic is given, initializes the field with it....
FieldOperators & operator=(FieldOperators other)
Assign operator.
void multiply_inplace(Element &e1, const Element &e2) const
Stores in the first element the multiplication of two given elements in the field,...
unspecified Element
Definition: FieldOperators.h:33
static const Element & get_additive_identity()
Returns the additive identity of the field.
void set_characteristic(const Characteristic &characteristic)
Sets the characteristic of the field. Can eventually be omitted if the characteristic of the class is...
void add_inplace(Element &e1, const Element &e2) const
Stores in the first element the sum of two given elements in the field, that is (e1 + e2) % character...
Element get_inverse(const Element &e) const
Returns the inverse of the given element in the field.
const Characteristic & get_characteristic() const
Returns the current characteristic.
void multiply_and_add_inplace_back(const Element &e, const Element &m, Element &a) const
Multiplies the first element with the second one and adds the third one, that is (e * m + a) % charac...
static const Element & get_multiplicative_identity()
Returns the multiplicative identity of the field.
friend void swap(FieldOperators &f1, FieldOperators &f2)
Swap operator.
Gudhi namespace.
Definition: SimplicialComplexForAlpha.h:14