var fDesc=new Array(); fDesc[0] = "Pajek, PajekXXL and Pajek3XL are program packages for analysis and visualization of very large networks (networks containing up to ten billions of vertices, there is no limit - except the memory size - on the number of lines). Pajek has been available since 1996. The program, documentation and supporting material can be downloaded and used for free for noncommercial use from its web page: http://mrvar.fdv.uni-lj.si/pajek/ In Pajek analysis and visualization of large networks are performed using six data types (objects): network (graph); partition (nominal or ordinal properties of vertices); vector (numerical properties of vertices); cluster (subset of vertices); permutation (reordering of vertices, ordinal properties); and hierarchy (general tree structure on vertices). The main goals in the design of Pajek are: to support abstraction by (recursive) decomposition of a large network into several smaller networks that can be treated further using more sophisticated methods; to provide the user with some powerful visualization tools; to implement a selection of efficient (subquadratic) algorithms for analysis of large networks. According to main goals, Pajek contains several basic operations on its objects. Pajek is not 'a one click program', some users call it 'the network calculator'. That means that for obtaining some result several basic operations must be executed in a sequence. In fact possibility to combine different basic operations gives Pajek a special power. In addition to standard Pajek there exist also special versions PajekXXL and Pajek3XL. PajekXXL and Pajek3XL are a special editions of program Pajek which memory consumptions are much lower. PajekXXL has upper limit two billions and Pajek3XL ten billions of vertices. For the same sparse network they need at least 2?3 times less physical memory than Pajek. Operations that are memory intensive are therefore much faster. They are usually used for huge networks that do not fit to available computer memory."; 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 = ''; } }