tclique user interface
Definition in file tclique.h.
#include "tclique/tclique_def.h"
Go to the source code of this file.
Macros | |
#define | TCLIQUE_Bool unsigned int |
#define | TRUE 1 |
#define | FALSE 0 |
#define | TCLIQUE_NEWSOL(x) |
#define | TCLIQUE_GETNNODES(x) int x (TCLIQUE_GRAPH* tcliquegraph) |
#define | TCLIQUE_GETWEIGHTS(x) const TCLIQUE_WEIGHT* x (TCLIQUE_GRAPH* tcliquegraph) |
#define | TCLIQUE_ISEDGE(x) TCLIQUE_Bool x (TCLIQUE_GRAPH* tcliquegraph, int node1, int node2) |
#define | TCLIQUE_SELECTADJNODES(x) int x (TCLIQUE_GRAPH* tcliquegraph, int node, int* nodes, int nnodes, int* adjnodes) |
Typedefs | |
typedef int | TCLIQUE_WEIGHT |
typedef struct TCLIQUE_Graph | TCLIQUE_GRAPH |
typedef struct TCLIQUE_Data | TCLIQUE_DATA |
typedef enum TCLIQUE_Status | TCLIQUE_STATUS |
Enumerations | |
enum | TCLIQUE_Status { TCLIQUE_ERROR = 0, TCLIQUE_NODELIMIT = 1, TCLIQUE_USERABORT = 2, TCLIQUE_OPTIMAL = 3 } |
Functions | |
TCLIQUE_GETNNODES (tcliqueGetNNodes) | |
TCLIQUE_GETWEIGHTS (tcliqueGetWeights) | |
TCLIQUE_ISEDGE (tcliqueIsEdge) | |
TCLIQUE_SELECTADJNODES (tcliqueSelectAdjnodes) | |
TCLIQUE_Bool | tcliqueCreate (TCLIQUE_GRAPH **tcliquegraph) |
void | tcliqueFree (TCLIQUE_GRAPH **tcliquegraph) |
TCLIQUE_Bool | tcliqueAddNode (TCLIQUE_GRAPH *tcliquegraph, int node, TCLIQUE_WEIGHT weight) |
void | tcliqueChangeWeight (TCLIQUE_GRAPH *tcliquegraph, int node, TCLIQUE_WEIGHT weight) |
TCLIQUE_Bool | tcliqueAddEdge (TCLIQUE_GRAPH *tcliquegraph, int node1, int node2) |
TCLIQUE_Bool | tcliqueFlush (TCLIQUE_GRAPH *tcliquegraph) |
TCLIQUE_Bool | tcliqueLoadFile (TCLIQUE_GRAPH **tcliquegraph, const char *filename, double scaleval, char *probname, int sizeofprobname) |
TCLIQUE_Bool | tcliqueSaveFile (TCLIQUE_GRAPH *tcliquegraph, const char *filename, double scaleval, const char *probname) |
int | tcliqueGetNEdges (TCLIQUE_GRAPH *tcliquegraph) |
int * | tcliqueGetDegrees (TCLIQUE_GRAPH *tcliquegraph) |
int * | tcliqueGetAdjnodes (TCLIQUE_GRAPH *tcliquegraph) |
int * | tcliqueGetFirstAdjedge (TCLIQUE_GRAPH *tcliquegraph, int node) |
int * | tcliqueGetLastAdjedge (TCLIQUE_GRAPH *tcliquegraph, int node) |
void | tcliquePrintGraph (TCLIQUE_GRAPH *tcliquegraph) |
void | tcliqueMaxClique (TCLIQUE_GETNNODES((*getnnodes)), TCLIQUE_GETWEIGHTS((*getweights)), TCLIQUE_ISEDGE((*isedge)), TCLIQUE_SELECTADJNODES((*selectadjnodes)), TCLIQUE_GRAPH *tcliquegraph, TCLIQUE_NEWSOL((*newsol)), TCLIQUE_DATA *tcliquedata, int *maxcliquenodes, int *nmaxcliquenodes, TCLIQUE_WEIGHT *maxcliqueweight, TCLIQUE_WEIGHT maxfirstnodeweight, TCLIQUE_WEIGHT minweight, int maxntreenodes, int backtrackfreq, int maxnzeroextensions, int fixednode, int *ntreenodes, TCLIQUE_STATUS *status) |
#define TCLIQUE_Bool unsigned int |
type used for boolean values
Definition at line 44 of file tclique.h.
Referenced by branch(), compSubcliques(), newSolution(), tcliqueColoring(), and tcliqueMaxClique().
#define TCLIQUE_NEWSOL | ( | x | ) |
user callback method which is called whenever a feasible clique was found input:
#define TCLIQUE_GETNNODES | ( | x | ) | int x (TCLIQUE_GRAPH* tcliquegraph) |
user callback method to get number of nodes in the graph input:
#define TCLIQUE_GETWEIGHTS | ( | x | ) | const TCLIQUE_WEIGHT* x (TCLIQUE_GRAPH* tcliquegraph) |
user callback method to get weights of nodes in the graph input:
#define TCLIQUE_ISEDGE | ( | x | ) | TCLIQUE_Bool x (TCLIQUE_GRAPH* tcliquegraph, int node1, int node2) |
user callback method to return whether the edge (node1, node2) is in the graph input:
#define TCLIQUE_SELECTADJNODES | ( | x | ) | int x (TCLIQUE_GRAPH* tcliquegraph, int node, int* nodes, int nnodes, int* adjnodes) |
user callback method to select all nodes from a given set of nodes which are adjacent to a given node input:
typedef int TCLIQUE_WEIGHT |
typedef struct TCLIQUE_Graph TCLIQUE_GRAPH |
typedef struct TCLIQUE_Data TCLIQUE_DATA |
typedef enum TCLIQUE_Status TCLIQUE_STATUS |
enum TCLIQUE_Status |
TCLIQUE_GETNNODES | ( | tcliqueGetNNodes | ) |
gets number of nodes in the graph
Definition at line 66 of file tclique_graph.c.
TCLIQUE_GETWEIGHTS | ( | tcliqueGetWeights | ) |
gets weight of nodes in the graph
Definition at line 74 of file tclique_graph.c.
TCLIQUE_ISEDGE | ( | tcliqueIsEdge | ) |
returns, whether the edge (node1, node2) is in the graph
Definition at line 82 of file tclique_graph.c.
References FALSE, nnodes, tcliqueGetFirstAdjedge(), tcliqueGetLastAdjedge(), and TRUE.
TCLIQUE_SELECTADJNODES | ( | tcliqueSelectAdjnodes | ) |
selects all nodes from a given set of nodes which are adjacent to a given node and returns the number of selected nodes
Definition at line 125 of file tclique_graph.c.
References nnodes, tcliqueGetFirstAdjedge(), and tcliqueGetLastAdjedge().
TCLIQUE_Bool tcliqueCreate | ( | TCLIQUE_GRAPH ** | tcliquegraph | ) |
creates graph data structure
tcliquegraph | pointer to store graph data structure |
Definition at line 175 of file tclique_graph.c.
References ALLOC_FALSE, BMSallocMemory, and TRUE.
Referenced by createTcliqueGraph(), initTCliquegraph(), and tcliqueLoadFile().
void tcliqueFree | ( | TCLIQUE_GRAPH ** | tcliquegraph | ) |
frees graph data structure
tcliquegraph | pointer to graph data structure |
Definition at line 201 of file tclique_graph.c.
References BMSfreeMemory, BMSfreeMemoryArray, and BMSfreeMemoryArrayNull.
Referenced by doSeachEcAggr().
TCLIQUE_Bool tcliqueAddNode | ( | TCLIQUE_GRAPH * | tcliquegraph, |
int | node, | ||
TCLIQUE_WEIGHT | weight | ||
) |
adds nodes up to the given node number to graph data structure (intermediate nodes have weight 0)
tcliquegraph | graph data structure |
node | node number to add |
weight | weight of node to add |
Definition at line 330 of file tclique_graph.c.
References FALSE, MAX, tcliqueEnsureSizeNodes(), and TRUE.
Referenced by createTcliqueGraph(), and initTCliquegraph().
void tcliqueChangeWeight | ( | TCLIQUE_GRAPH * | tcliquegraph, |
int | node, | ||
TCLIQUE_WEIGHT | weight | ||
) |
changes weight of node in graph data structure
tcliquegraph | graph data structure |
node | node to set new weight |
weight | new weight of node (allready scaled) |
Definition at line 352 of file tclique_graph.c.
Referenced by searchEcAggrWithCliques(), and updateWeightsTCliquegraph().
TCLIQUE_Bool tcliqueAddEdge | ( | TCLIQUE_GRAPH * | tcliquegraph, |
int | node1, | ||
int | node2 | ||
) |
adds edge (node1, node2) to graph data structure (node1 and node2 have to be contained in graph data structure)
New edges are cached, s.t. the graph data structures are not correct until a call to tcliqueFlush(); you have to make sure, that no double edges are inserted.
tcliquegraph | graph data structure |
node1 | start node of edge to add |
node2 | end node of edge to add |
Definition at line 370 of file tclique_graph.c.
References ALLOC_FALSE, BMSallocMemoryArray, BMSclearMemoryArray, FALSE, nnodes, tcliqueEnsureSizeCachedEdges(), and TRUE.
Referenced by createTcliqueGraph(), and initTCliquegraph().
TCLIQUE_Bool tcliqueFlush | ( | TCLIQUE_GRAPH * | tcliquegraph | ) |
inserts all cached edges into the data structures
tcliquegraph | graph data structure |
Definition at line 407 of file tclique_graph.c.
References BMSfreeMemoryArray, FALSE, nnodes, tcliqueEnsureSizeEdges(), and TRUE.
Referenced by createTcliqueGraph(), and initTCliquegraph().
TCLIQUE_Bool tcliqueLoadFile | ( | TCLIQUE_GRAPH ** | tcliquegraph, |
const char * | filename, | ||
double | scaleval, | ||
char * | probname, | ||
int | sizeofprobname | ||
) |
loads graph data structure from file
tcliquegraph | pointer to store graph data structure |
filename | name of file with graph data |
scaleval | value to scale weights (only integral part of scaled weights is considered) |
probname | buffer to store the name of the problem |
sizeofprobname | size of buffer to store the name of the problem |
Definition at line 542 of file tclique_graph.c.
References BMSallocMemoryArray, BMScopyMemoryArray, BMSfreeMemoryArray, FALSE, infoMessage, tcliqueCreate(), and TRUE.
TCLIQUE_Bool tcliqueSaveFile | ( | TCLIQUE_GRAPH * | tcliquegraph, |
const char * | filename, | ||
double | scaleval, | ||
const char * | probname | ||
) |
saves graph data structure to file
tcliquegraph | graph data structure |
filename | name of file to create |
scaleval | value to unscale weights with |
probname | name of the problem |
Definition at line 727 of file tclique_graph.c.
References FALSE, infoMessage, and TRUE.
int tcliqueGetNEdges | ( | TCLIQUE_GRAPH * | tcliquegraph | ) |
gets number of edges in the graph
tcliquegraph | pointer to graph data structure |
Definition at line 771 of file tclique_graph.c.
Referenced by tcliqueGetFirstAdjedge(), tcliqueGetLastAdjedge(), and tcliquePrintGraph().
int* tcliqueGetDegrees | ( | TCLIQUE_GRAPH * | tcliquegraph | ) |
gets degree of nodes in graph
tcliquegraph | pointer to graph data structure |
Definition at line 781 of file tclique_graph.c.
Referenced by tcliqueGetLastAdjedge(), and tcliquePrintGraph().
int* tcliqueGetAdjnodes | ( | TCLIQUE_GRAPH * | tcliquegraph | ) |
gets adjacent nodes of edges in graph
tcliquegraph | pointer to graph data structure |
Definition at line 792 of file tclique_graph.c.
Referenced by tcliqueGetFirstAdjedge(), and tcliqueGetLastAdjedge().
int* tcliqueGetFirstAdjedge | ( | TCLIQUE_GRAPH * | tcliquegraph, |
int | node | ||
) |
gets pointer to first adjacent edge of given node in graph
tcliquegraph | pointer to graph data structure |
node | given node |
Definition at line 803 of file tclique_graph.c.
References nnodes, tcliqueGetAdjnodes(), and tcliqueGetNEdges().
Referenced by TCLIQUE_ISEDGE(), TCLIQUE_SELECTADJNODES(), and tcliquePrintGraph().
int* tcliqueGetLastAdjedge | ( | TCLIQUE_GRAPH * | tcliquegraph, |
int | node | ||
) |
gets pointer to last adjacent edge of given node in graph
tcliquegraph | pointer to graph data structure |
node | given node |
Definition at line 827 of file tclique_graph.c.
References nnodes, tcliqueGetAdjnodes(), tcliqueGetDegrees(), and tcliqueGetNEdges().
Referenced by TCLIQUE_ISEDGE(), TCLIQUE_SELECTADJNODES(), and tcliquePrintGraph().
void tcliquePrintGraph | ( | TCLIQUE_GRAPH * | tcliquegraph | ) |
prints graph data structure
tcliquegraph | pointer to graph data structure |
Definition at line 859 of file tclique_graph.c.
References infoMessage, tcliqueGetDegrees(), tcliqueGetFirstAdjedge(), tcliqueGetLastAdjedge(), and tcliqueGetNEdges().
void tcliqueMaxClique | ( | TCLIQUE_GETNNODES((*getnnodes)) | , |
TCLIQUE_GETWEIGHTS((*getweights)) | , | ||
TCLIQUE_ISEDGE((*isedge)) | , | ||
TCLIQUE_SELECTADJNODES((*selectadjnodes)) | , | ||
TCLIQUE_GRAPH * | tcliquegraph, | ||
TCLIQUE_NEWSOL((*newsol)) | , | ||
TCLIQUE_DATA * | tcliquedata, | ||
int * | maxcliquenodes, | ||
int * | nmaxcliquenodes, | ||
TCLIQUE_WEIGHT * | maxcliqueweight, | ||
TCLIQUE_WEIGHT | maxfirstnodeweight, | ||
TCLIQUE_WEIGHT | minweight, | ||
int | maxntreenodes, | ||
int | backtrackfreq, | ||
int | maxnzeroextensions, | ||
int | fixednode, | ||
int * | ntreenodes, | ||
TCLIQUE_STATUS * | status | ||
) |
finds maximum weight clique
tcliquegraph | pointer to graph data structure that is passed to graph callbacks |
tcliquedata | user data to pass to new solution callback function |
maxcliquenodes | pointer to store nodes of the maximum weight clique |
nmaxcliquenodes | pointer to store number of nodes in the maximum weight clique |
maxcliqueweight | pointer to store weight of the maximum weight clique |
maxfirstnodeweight | maximum weight of branching nodes in level 0; 0 if not used for cliques with at least one fractional node) |
minweight | lower bound for weight of generated cliques |
maxntreenodes | maximal number of nodes of b&b tree |
backtrackfreq | frequency to backtrack to first level of tree (0: no premature backtracking) |
maxnzeroextensions | maximal number of zero-valued variables extending the clique |
fixednode | node that is forced to be in the clique, or -1; must have positive weight |
ntreenodes | pointer to store the number of used tree nodes (or NULL) |
status | pointer to store the status of the solving call |
Definition at line 1000 of file tclique_branch.c.
References ALLOC_ABORT, BMSallocMemoryArray, BMScreateChunkMemory, BMSdestroyChunkMemory, BMSfreeMemoryArray, branch(), CHUNK_SIZE, CLIQUEHASH_INITSIZE, createCliquehash(), debugMessage, freeCliquehash(), nnodes, TCLIQUE_Bool, TCLIQUE_OPTIMAL, and TCLIQUE_USERABORT.
Referenced by computeMinDistance(), findCumulativeConss(), searchEcAggrWithCliques(), sepaBoundInequalitiesFromGraph(), and separateCuts().