The R Project SVN R-packages

Rev

Rev 155 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 155 Rev 1128
Line 18... Line 18...
18
* This function takes a bisection and constructs a minimum weight vertex 
18
* This function takes a bisection and constructs a minimum weight vertex 
19
* separator out of it. It uses the node-based separator refinement for it.
19
* separator out of it. It uses the node-based separator refinement for it.
20
**************************************************************************/
20
**************************************************************************/
21
void ConstructSeparator(CtrlType *ctrl, GraphType *graph, float ubfactor)
21
void ConstructSeparator(CtrlType *ctrl, GraphType *graph, float ubfactor)
22
{
22
{
23
  int i, j, k, nvtxs, nbnd;
23
  int i, j/* , k */, nvtxs, nbnd;
24
  idxtype *xadj, *where, *bndind;
24
  idxtype *xadj, *where, *bndind;
25
 
25
 
26
  nvtxs = graph->nvtxs;
26
  nvtxs = graph->nvtxs;
27
  xadj = graph->xadj;
27
  xadj = graph->xadj;
28
  nbnd = graph->nbnd;
28
  nbnd = graph->nbnd;