== Tol == ||'''Date released'''||'''Status'''||'''Name''' ||'''Description''' ||'''Download''' || || unreleased ||[http://packages.tol-project.org/win32/development_tol_release_win.txt Development]||Tol.2.0.1||[wiki:"TargetsV201" Targets] ||[http://packages.tol-project.org/win32/tolbase-v2.0.1-setup.exe Win32 Installer] [http://packages.tol-project.org/win32/development/StdLib.zip StdLib.zip] || || '''2009-10-23''' ||'''[http://packages.tol-project.org/win32/bridge_tol_release_win.txt Bridge]''' ||'''Tol.1.1.7 bridge to 2.1.0'''|| '''[wiki:"WhatIsNewV117Bridge" What is new]''' || '''[http://packages.tol-project.org/win32/tolbase-v1.1.7-bridge.setup.exe Win32 Installer]''' || || '''2009-02-25''' ||'''[http://packages.tol-project.org/win32/official_tol_release_win.txt Official]''' ||'''Tol.1.1.7'''|| '''[wiki:"WhatIsNewV117" What is new]''' || '''[http://packages.tol-project.org/win32/tolbase-v1.1.7-setup.exe Win32 Installer]''' [http://packages.tol-project.org/win32/official/StdLib.zip StdLib.zip] || || 2007-11-13 ||[http://packages.tol-project.org/win32/oldstable_tol_release_win.txt Old stable]||Tol.1.1.6||[wiki:"WhatIsNewV116" What was new]||[http://packages.tol-project.org/win32/tolbase-1.1.6-setup.exe Win32 Installer] || || 2007-02-22 ||Unmantained||Tol.1.1.5||[wiki:"WhatIsNewV115" What was new]||[http://packages.tol-project.org/win32/tolbase-1.1.5-setup.exe Win32 Installer] || || 2006-11-11 ||Unmantained||Tol.1.1.4||[wiki:"WhatIsNewV114" What was new]||[http://packages.tol-project.org/win32/tolbase-1.1.4-setup.exe Win32 Installer] || || 2005-02-16 ||Unmantained||Tol.1.1.3||[wiki:"WhatIsNewV113" What was new]||[http://packages.tol-project.org/win32/tolbase-1.1.3.exe Win32 Installer] || || 2003-03-05 ||Unmantained||Tol.1.1.2||[wiki:"WhatIsNewV112" What was new]||[http://packages.tol-project.org/win32/tolbase-1.1.2.exe Win32 Installer] || || 2001-04-07 ||Unmantained||Tol.1.1.1||[wiki:"WhatIsNewV111" What was new]||[http://packages.tol-project.org/win32/tolbase-1.1.1.exe Win32 Installer] || == External downloads required == In order to use some TOL functions and subsystems it's also needed to install another open source packages or libraries, that are listed in TolAcknowledgements. Linux systems have should have their own package manager (RPM, DEB, etc) for almost all these components. In other case user must install them following owner instructions. For Windows 32 bits systems all them are prebuilt in a transparent way for ussers and are distributed with TOL Binary Setup linked above. All them but R, are linked by TOL and calling is made internally by C or C++ interface. TOL calls R (>=2.6.0) by command line, so it must be installed in your system directly from [http://www.r-project.org/ the official R site]. Note that R console executable must be in user path environment variable. Afterwords installing R user must install these R packages: 1. [http://cran.r-project.org/web/packages/quadprog/index.html quadprog] : Functions to solve Quadratic Programming Problems. 1. [http://www-fis.iarc.fr/coda/ coda] : Output analysis and diagnostics for MCMC. 1. [http://cran.r-project.org/web/packages/Rglpk/Rglpk.pdf Rglpk] : solving large-scale linear programming (LP), mixed integer linear programming (MILP) and other related problems. All them are available as CRAN standard package and can be installed from R-Gui application using menu Package / Install package. You also can run this commands from an R console: {{{ install.packages("quadprog") install.packages("coda") install.packages("Rglpk") }}} In Debian based LINUX the simplest way is following these steps {{{ sudo apt-get install r-base sudo apt-get install r-cran-quadprog sudo apt-get install r-cran-coda sudo apt-get install r-cran-rglpk }}}