On Tuesday, November 18, 2014 12:44:27 PM UTC-5, Bodo Kaiser wrote: > > To cut a long story short to apply the simplex algorithm we need to > transform all conditions into a "canonical form" (e.g. convert greater then > to less then). > If I now would like to write a julia script which does solve linear > programs for me I need to "read" the equation and change it. > Do I need to write some sort of string based equation parser or is there > some package which would do this for me? >
See https://github.com/JuliaOpt/JuMP.jl This should let you write an LP in any form that you want, it will interface the solvers for you (converting it as necessary).
