Code Documentation 3.1
Social Network Visualizer
|
Defines the Graph class and related algorithms for social network visualization. More...
#include <QObject>
#include <QList>
#include <QQueue>
#include <QUrl>
#include <QHash>
#include <QSet>
#include <QMultiHash>
#include <QMultiMap>
#include <QTextStream>
#include <QThread>
#include <QtCharts/QChartGlobal>
#include <stack>
#include "global.h"
#include "graphvertex.h"
#include "matrix.h"
#include "parser.h"
#include "webcrawler.h"
#include "graphicswidget.h"
Go to the source code of this file.
Data Structures | |
class | Graph |
The Graph class This is the main class for a Graph, used in conjuction with GraphVertex, Parser and Matrix objects. Graph class methods are the interface to various analysis algorithms GraphVertex class holds each vertex data (colors, strings, statistics, etc) Matrix class holds the adjacency matrix of the network. Parser class loads files of networks. More... | |
Typedefs | |
typedef QList< GraphVertex * > | VList |
typedef QHash< QString, int > | H_StrToInt |
typedef QHash< int, int > | H_Int |
typedef QHash< qreal, int > | H_f_i |
typedef QPair< qreal, bool > | pair_f_b |
typedef QPair< int, pair_f_b > | pair_i_fb |
typedef QMultiHash< int, pair_i_fb > | H_edges |
typedef QHash< QString, bool > | H_StrToBool |
typedef QList< int > | L_int |
typedef QList< int > | V_int |
typedef QList< QString > | V_str |
Defines the Graph class and related algorithms for social network visualization.
typedef QHash<qreal, int> H_f_i |
typedef QHash<int, int> H_Int |
typedef QHash<QString, bool> H_StrToBool |
typedef QHash<QString, int> H_StrToInt |
typedef QList<int> L_int |
typedef QPair<qreal, bool> pair_f_b |
typedef QList<int> V_int |
typedef QList<QString> V_str |
typedef QList<GraphVertex*> VList |