Cleaning the code of simplex method
authorAlex Leontiev <alozz1991@gmail.com>
Wed, 10 Jul 2013 17:11:52 +0000 (20:11 +0300)
committerAlex Leontiev <alozz1991@gmail.com>
Wed, 10 Jul 2013 17:11:52 +0000 (20:11 +0300)
commita95650111f813d99f82f672b3caaee7f9fa3df04
tree5e8cdeb8151a161003b07ad08f686db5f4c9618a
parenta4a5e98cc06a9217d0ac6950ab0f11d465d04f2a
Cleaning the code of simplex method

In particular, the following things are done:
*) Consistent tabulation of 4 spaces is ensured
*) New function dprintf() is introduced, so now printing of the debug
information can be turned on/off via the ALEX_DEBUG macro
*) Removed solveLP_aux namespace
*) All auxiliary functions are declared as static
*) The return codes of solveLP() are encapsulated in enum.
modules/optim/doc/linear_programming.rst [new file with mode: 0644]
modules/optim/doc/optim.rst [new file with mode: 0644]
modules/optim/include/opencv2/optim.hpp
modules/optim/src/lpsolver.cpp
modules/optim/test/test_lpsolver.cpp