var fDesc=new Array();
fDesc[0] = "Gorgeous Karnaugh Standard is a tool for students being trained in digital electronics design, embedded automation or microcontroller programming.
Main Features:
- Draws 2 - 16 variable Karnaugh Maps;
- Builds logical functions from analytical form or from truth table;
- Generates random function systems;
- Converts boolean formula to C/C (also applied for C#, Objective-C, Java, JavaScript, PHP, Perl), Pascal, Lua, Ruby, and Python code;
- K-Map to Truth Table tracking allows you to track K-Maps cells in truth table and see it highlighted;
- Helps to simplify boolean expressions using automatic max coverage lookup feature;
- Export for Espresso heuristic minimizer;
- Generates HTML reports for boolean function system, including initial K-Maps and minimization results;
- Generates logic gate diagrams based on minimization results using built-in Gorgeous Schematic tool.";
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 = '';
}
}