var fDesc=new Array();
fDesc[0] = "SolveXL is an add-in for Microsoft Excel® which uses evolutionary algorithms to solve complex optimization problems. The application is written in C and exploits a COM interface to interact with Microsoft Excel®.
Main Features:
- Single and multiple-objective optimization techniques.
- Support for integration with simulation packages.
- Suspend, resume and browse optimization interactively.
- Multiple-objective results browser.
- Batch runs.
- User defined constraints and penalty multipliers.
- Automatic saving of population.
- Backups of intermediate population.
- Graphical UI.
- Visualization of results and progress.
- Automation using VBA code.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}