An open API service indexing awesome lists of open source software.

https://github.com/athanclark/simplex-basic

A trivial implementation of the simplex algorithm.
https://github.com/athanclark/simplex-basic

Last synced: 7 months ago
JSON representation

A trivial implementation of the simplex algorithm.

Awesome Lists containing this project

README

          

basic-simplex
=============

[![Build Status](https://travis-ci.org/athanclark/simplex-basic.svg?branch=master)](https://travis-ci.org/athanclark/simplex-basic)

A trivial implementation of primal simplex.

## How to run tests

```
cabal install --enable-tests && cabal test
```

## References

- [Finite Mathematics Lesson 4](http://joemath.com/finitemath/ch4/Section4.1-4.2.htm)
- [Example of Simplex Procedure](http://math.uww.edu/~mcfarlat/s-prob.htm)