Scippy

SCIP

Solving Constraint Integer Programs

GML graphical printing

Detailed Description

Functions

void SCIPgmlWriteNode (FILE *file, unsigned int id, const char *label, const char *nodetype, const char *fillcolor, const char *bordercolor)
 
void SCIPgmlWriteNodeWeight (FILE *file, unsigned int id, const char *label, const char *nodetype, const char *fillcolor, const char *bordercolor, SCIP_Real weight)
 
void SCIPgmlWriteEdge (FILE *file, unsigned int source, unsigned int target, const char *label, const char *color)
 
void SCIPgmlWriteArc (FILE *file, unsigned int source, unsigned int target, const char *label, const char *color)
 
void SCIPgmlWriteOpening (FILE *file, SCIP_Bool directed)
 
void SCIPgmlWriteClosing (FILE *file)
 

Function Documentation

void SCIPgmlWriteNode ( FILE *  file,
unsigned int  id,
const char *  label,
const char *  nodetype,
const char *  fillcolor,
const char *  bordercolor 
)

writes a node section to the given graph file

Parameters
filefile to write to
idid of the node
labellabel of the node
nodetypetype of the node, or NULL
fillcolorcolor of the node's interior, or NULL
bordercolorcolor of the node's border, or NULL
void SCIPgmlWriteNodeWeight ( FILE *  file,
unsigned int  id,
const char *  label,
const char *  nodetype,
const char *  fillcolor,
const char *  bordercolor,
SCIP_Real  weight 
)

writes a node section including weight to the given graph file

Parameters
filefile to write to
idid of the node
labellabel of the node
nodetypetype of the node, or NULL
fillcolorcolor of the node's interior, or NULL
bordercolorcolor of the node's border, or NULL
weightweight of node
void SCIPgmlWriteEdge ( FILE *  file,
unsigned int  source,
unsigned int  target,
const char *  label,
const char *  color 
)

writes an edge section to the given graph file

Parameters
filefile to write to
sourcesource node id of the node
targettarget node id of the edge
labellabel of the edge, or NULL
colorcolor of the edge, or NULL
void SCIPgmlWriteArc ( FILE *  file,
unsigned int  source,
unsigned int  target,
const char *  label,
const char *  color 
)

writes an arc section to the given graph file

Parameters
filefile to write to
sourcesource node id of the node
targettarget node id of the edge
labellabel of the edge, or NULL
colorcolor of the edge, or NULL
void SCIPgmlWriteOpening ( FILE *  file,
SCIP_Bool  directed 
)

writes the starting line to a GML graph file, does not open a file

Parameters
filefile to write to
directedis the graph directed
void SCIPgmlWriteClosing ( FILE *  file)

writes the ending lines to a GML graph file, does not close a file

Parameters
filefile to close