├── AUTHORS ├── .gitignore ├── htmldocs ├── styles │ ├── help.png │ ├── printer.png │ ├── magnifier.png │ ├── page_white_code.png │ ├── page_white_copy.png │ └── shThemeDefault.css ├── scripts │ ├── clipboard.swf │ └── shBrushLua.js └── default.css ├── papers ├── Rima-ORSNZ-paper-2010.pdf ├── Rima-ORSNZ-presentation-2010.pdf └── Rima-INFORMS-presentation-2010.pdf ├── docs ├── footer.html ├── header.html ├── features.txt ├── differentiation.txt ├── contents.txt ├── cases.txt ├── nonlinear.txt ├── index.txt ├── arrays.txt ├── simple_lp.txt ├── sums.txt ├── expressions.txt ├── structures.txt ├── blending.txt ├── functions.txt ├── references.txt ├── install.txt └── knapsack.txt ├── expressions ├── simple_math_ops.txt ├── index.txt ├── mul.txt ├── add.txt └── sum.txt ├── config.ld ├── INSTALL ├── lua ├── rima-test-solvers.lua ├── rima │ ├── types.lua │ ├── solvers.lua │ ├── lib │ │ ├── proxy.lua │ │ ├── trace.lua │ │ └── object.lua │ ├── types │ │ └── undefined_t.lua │ ├── solvers │ │ ├── cbc.lua │ │ ├── clp.lua │ │ ├── lpsolve.lua │ │ ├── linear.lua │ │ └── ipopt.lua │ ├── operators │ │ ├── minmax.lua │ │ ├── mod.lua │ │ ├── call.lua │ │ ├── pow.lua │ │ ├── case.lua │ │ ├── math.lua │ │ ├── add_mul.lua │ │ ├── sum.lua │ │ └── product.lua │ ├── operations.lua │ ├── operator.lua │ ├── compiler.lua │ ├── closure.lua │ ├── sets.lua │ ├── mp │ │ ├── constraint.lua │ │ └── linearise.lua │ ├── func.lua │ ├── sets │ │ ├── element.lua │ │ └── list.lua │ ├── expression.lua │ ├── lib.lua │ └── core.lua ├── tests │ ├── rima │ │ ├── lib.lua │ │ ├── lib │ │ │ ├── proxy.lua │ │ │ └── object.lua │ │ ├── operators │ │ │ ├── mul.lua │ │ │ ├── math.lua │ │ │ ├── product.lua │ │ │ ├── mod.lua │ │ │ ├── add.lua │ │ │ ├── pow.lua │ │ │ ├── case.lua │ │ │ ├── minmax.lua │ │ │ └── call.lua │ │ ├── sets │ │ │ ├── ref.lua │ │ │ └── element.lua │ │ ├── mp │ │ │ └── constraint.lua │ │ ├── core.lua │ │ ├── differentiation.lua │ │ ├── address.lua │ │ ├── expression.lua │ │ ├── types │ │ │ └── undefined_t.lua │ │ ├── index.lua │ │ └── mp.lua │ └── test │ │ └── series.lua ├── examples │ ├── nonlinear.lua │ ├── simple.lua │ ├── minimax.lua │ └── sudoku.lua ├── rima-test.lua ├── test │ ├── directory.lua │ ├── strict.lua │ └── series.lua └── rima.lua ├── update-copyright.sh ├── CHANGELOG ├── LICENSE ├── c └── rima_solver_tools.h ├── ROADMAP.md ├── rima-0.03-1.rockspec ├── README.md └── makefile /AUTHORS: -------------------------------------------------------------------------------- 1 | Leyland, Geoff B. -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | *.so 4 | srcdocs 5 | 6 | -------------------------------------------------------------------------------- /htmldocs/styles/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffleyland/rima/HEAD/htmldocs/styles/help.png -------------------------------------------------------------------------------- /htmldocs/styles/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffleyland/rima/HEAD/htmldocs/styles/printer.png -------------------------------------------------------------------------------- /htmldocs/scripts/clipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffleyland/rima/HEAD/htmldocs/scripts/clipboard.swf -------------------------------------------------------------------------------- /htmldocs/styles/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffleyland/rima/HEAD/htmldocs/styles/magnifier.png -------------------------------------------------------------------------------- /papers/Rima-ORSNZ-paper-2010.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffleyland/rima/HEAD/papers/Rima-ORSNZ-paper-2010.pdf -------------------------------------------------------------------------------- /htmldocs/styles/page_white_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffleyland/rima/HEAD/htmldocs/styles/page_white_code.png -------------------------------------------------------------------------------- /htmldocs/styles/page_white_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffleyland/rima/HEAD/htmldocs/styles/page_white_copy.png -------------------------------------------------------------------------------- /papers/Rima-ORSNZ-presentation-2010.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffleyland/rima/HEAD/papers/Rima-ORSNZ-presentation-2010.pdf -------------------------------------------------------------------------------- /papers/Rima-INFORMS-presentation-2010.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffleyland/rima/HEAD/papers/Rima-INFORMS-presentation-2010.pdf -------------------------------------------------------------------------------- /docs/footer.html: -------------------------------------------------------------------------------- 1 |
5 |