~dimitris-kalamaras/socnetv/develop

« back to all changes in this revision

Viewing changes to src/mainwindow.cpp

  • Committer: Dimitris Kalamaras
  • Date: 2015-06-05 13:31:47 UTC
  • Revision ID: git-v1:4aea4aaae28c7d090d0e5bd4530e70b42168140a
updated manual for v1.8 and clarified clique census tooltip and what's
this

Show diffs side-by-side

added added

removed removed

Lines of Context:
1421
1421
 
1422
1422
    cliquesAct = new QAction(QIcon(":/images/clique.png"), tr("Clique Census (clique number <= 4) "),this);
1423
1423
    cliquesAct->setShortcut(tr("Ctrl+T"));
1424
 
    cliquesAct->setStatusTip(tr("Counts cliques for each node v and the whole network."));
1425
 
    cliquesAct->setWhatsThis(tr("Clique Census\n\n A triangle or a clique is a complete subgraph of three nodes of G. This method computes the number of triangles each node v belongs to. It is defined as delta(v) = |{{u, w} in E : {v, u} in E and {v, w} in E}|.  \n "));
 
1424
    cliquesAct->setStatusTip(tr("Computes a partial clique census report (for cliques up to 4 vertices)."));
 
1425
    cliquesAct->setWhatsThis(tr("Clique Census\n\n Computes aggregate counts of cliques (up to clique number 4), along with disaggregation by vertex and co-membership information. "));
1426
1426
    connect(cliquesAct, SIGNAL(triggered()), this, SLOT(slotCliqueCensus() )  );
1427
1427
 
1428
1428