A Simple Algebra Library

A simple library for working with algebraic expressions

License

License

GroupId

GroupId

io.github.pirocks
ArtifactId

ArtifactId

simple-algebra-lib
Last Version

Last Version

0.0.8
Release Date

Release Date

Type

Type

jar
Description

Description

A Simple Algebra Library
A simple library for working with algebraic expressions
Project URL

Project URL

https://github.com/pirocks/simple-algebra-lib
Source Code Management

Source Code Management

https://github.com/pirocks/simple-algebra-lib.git

Download simple-algebra-lib

How to add to project

<!-- https://jarcasting.com/artifacts/io.github.pirocks/simple-algebra-lib/ -->
<dependency>
    <groupId>io.github.pirocks</groupId>
    <artifactId>simple-algebra-lib</artifactId>
    <version>0.0.8</version>
</dependency>
// https://jarcasting.com/artifacts/io.github.pirocks/simple-algebra-lib/
implementation 'io.github.pirocks:simple-algebra-lib:0.0.8'
// https://jarcasting.com/artifacts/io.github.pirocks/simple-algebra-lib/
implementation ("io.github.pirocks:simple-algebra-lib:0.0.8")
'io.github.pirocks:simple-algebra-lib:jar:0.0.8'
<dependency org="io.github.pirocks" name="simple-algebra-lib" rev="0.0.8">
  <artifact name="simple-algebra-lib" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.github.pirocks', module='simple-algebra-lib', version='0.0.8')
)
libraryDependencies += "io.github.pirocks" % "simple-algebra-lib" % "0.0.8"
[io.github.pirocks/simple-algebra-lib "0.0.8"]

Dependencies

compile (2)

Group / Artifact Type Version
org.jetbrains.kotlin : kotlin-stdlib-jdk8 jar 1.3.21
org.jetbrains.kotlin : kotlin-test-junit jar 1.3.21

test (1)

Group / Artifact Type Version
junit : junit jar 4.12

Project Modules

There are no modules declared in this project.

simple-algebra-lib

A simple algebra library. Currently a work in progress. Jars on Maven central should be working/useable.

Current features include:

  • Outputting to mathml/html
  • Outputing to prefix notation
  • Performing fairly simple pattern matching and pattern based rewriting.
    • Basic identities such as commutativity/associativity of addition/multiplication implemented with pattern matching.
  • Equals/hashcode implementation based on structure of expression.
    • In other words a + b equals b + a , but a + b does not equal a * b
<dependency>
  <groupId>io.github.pirocks</groupId>
  <artifactId>simple-algebra-lib</artifactId>
  <version>0.0.6</version>
</dependency>

Versions

Version
0.0.8
0.0.7
0.0.6
0.0.4