Popularity
1.4
Growing
Activity
0.0
Stable
0
2
0
Monthly Downloads: 2
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Latest version: v0.1.0.0
involutive-semigroups alternatives and similar packages
Based on the "Algebra" category.
Alternatively, view involutive-semigroups alternatives based on common mentions on social networks and blogs.
-
cl3
Haskell Library implementing standard functions for the Algebra of Physical Space Cl(3,0) -
semilattices
join and meet semilattices, lower and upper bounds. -
partial-semigroup
A partial binary associative operator (appendMaybe :: a → a → Maybe a) -
sparse-tensor
typesafe implementation of tensor algebra in Haskell -
tropical-geometry
Haskell Library for Tropical Geometry -
groups-generic
Derive Group instances using generics (Haskell library) -
interval-algebra
A Haskell implementation of Allen's interval algebra -
multi-instance
Multiple typeclass instances, selected by explicit application of a phantom type parameter -
cl3-hmatrix-interface
An interface to/from the Cl3 and HMatrix libraries -
cl3-linear-interface
An interface to/from the Cl3 and Linear libraries -
linear-tests
tests for Matrix.Linear Haskell library. Includes Arbitrary instances and property tests
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
Do you think we are missing an alternative of involutive-semigroups or a related project?
Popular Comparisons
README
A semigroup S
is said to be with involution if it comes equipped with an
"inverse-like" operation rev
. Specifically, the following must hold for all x
y : S
:
rev (rev x) = x
rev (x <> y) = rev y <> rev x.
reverse
is the prototypical example. Any group inverse automatically satisfies
these laws.