/* This software was developed by Bruce Hendrickson and Robert Leland   *
 * at Sandia National Laboratories under US Department of Energy        *
 * contract DE-AC04-76DP00789 and is copyrighted by Sandia Corporation. */

#include	<stdio.h>
#include	"structs.h"
#include	"defs.h"
#include	"params.h"


/* Partition vertices into sets in one of several simplistic ways. */
void      simple_part(graph, nvtxs, sets, nsets, simple_type, goal)
struct vtx_data **graph;	/* data structure for graph */
int       nvtxs;		/* total number of vtxs in graph */
short    *sets;			/* sets vertices get assigned to */
int       nsets;		/* number of sets at each division */
int       simple_type;		/* type of decomposition */
double   *goal;			/* desired set sizes */
{
    extern int DEBUG_TRACE;	/* trace the execution of the code */
    double    cutoff;		/* ending weight for a partition */
    double    ratio;		/* weight/goal */
    double    best_ratio;	/* lowest ratio of weight/goal */
    int       using_vwgts;	/* are vertex weights active? */
    int      *order;		/* random ordering of vertices */
    int       weight;		/* sum of vertex weights in a partition */
    int       wgts[MAXSETS];	/* weight assigned to given set so far */
    short     set;		/* set vertex is assigned to */
    int       i, j;		/* loop counters */
    double   *smalloc();
    int       sfree();
    void      randomize();

    using_vwgts = (graph != NULL);

    /* Scattered initial decomposition. */
    if (simple_type == 1) {
	if (DEBUG_TRACE > 0) {
	    printf("Generating scattered partition, nvtxs = %d\n", nvtxs);
	}
	for (j=0; j<nsets; j++) wgts[j] = 0;
	for (i = 1; i <= nvtxs; i++) {
	    best_ratio = 2;
	    for (j=0; j<nsets; j++) {
	        ratio = wgts[j] / goal[j];
	        if (ratio < best_ratio) {
		    best_ratio = ratio;
		    set = (short) j;
		}
	    }
	    if (using_vwgts) {
	        wgts[set] += graph[i]->vwgt;
	    }
	    else {
	        wgts[set]++;
	    }
	    sets[i] = set;
	}
    }

    /* Random initial decomposition. */
    if (simple_type == 2) {
	if (DEBUG_TRACE > 0) {
	    printf("Generating random partition, nvtxs = %d\n", nvtxs);
	}
	/* Construct random order in which to step through graph. */
	order = (int *) smalloc((unsigned) (nvtxs + 1) * sizeof(int));
	for (i = 1; i <= nvtxs; i++)
	    order[i] = i;
	randomize(order, nvtxs);

	weight = 0;
	cutoff = goal[0];
	set = 0;
	for (i = 1; i <= nvtxs; i++) {
	    sets[order[i]] = set;
	    if (using_vwgts)
		weight += graph[order[i]]->vwgt;
	    else
		weight++;
	    if (weight >= cutoff)
		cutoff += goal[++set];
	}
	sfree((char *) order);
    }

    /* Linearly ordered initial decomposition. */
    if (simple_type == 3) {
	if (DEBUG_TRACE > 0) {
	    printf("Generating linear partition, nvtxs = %d\n", nvtxs);
	}
	weight = 0;
	cutoff = goal[0];
	set = 0;
	for (i = 1; i <= nvtxs; i++) {
	    sets[i] = set;
	    if (using_vwgts)
		weight += graph[i]->vwgt;
	    else
		weight++;
	    if (weight >= cutoff)
		cutoff += goal[++set];
	}
    }
}


syntax highlighted by Code2HTML, v. 0.9.1