Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 1.33 KB

File metadata and controls

37 lines (24 loc) · 1.33 KB

JULIA_EKR_SIMPLEX_PROBLE_CALCULATOR

This is a julia language copy of a program that I made in python To get the python version go to https://github.com/kimutaiRop/EKR-SIMPLEX-PROBLEM-CALCULATOR

the julia version is also linked to a web server which is available in https://github.com/kimutaiRop/statis which is hosted at https://statis.herokuapp.com/simplex

To run the program you just need to install julia go to https://julialang.org/download/ download version v1.4 and above and install

to run the program clone the program and move to the dir where you cloned the project to run

julia simplex.jl

julia has no good way of displaying matrices as of now so you might need to do some few copy and paste of the output of the output arrays

The project is still under developmment and is also free to expand, everyting is build using functions which breaks the code to smaller easy to manage code

you can clone the project and expand or add new features and push to this repository then ask me to to marge

alt text

the image show solution for the equation bellow

#(x₁ and x₂ being products)

#example equiz (mimimize for the equiz bellow)

#4x₁ + 2x₂ >= 4
#2x₁ + 3x₂ >= 4
#z = 3x₁ + x₂