parQHV
Compute HyperVolumes using threads
 All Data Structures Files Functions Variables Macros
arrayList.h File Reference

This header implements an arrayList for integers. More...

#include <stdlib.h>
#include <limits.h>
#include "macros.h"
Include dependency graph for arrayList.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  arrayList
 

Typedefs

typedef struct arrayListarrayList
 

Variables

static int k
 
n
 

Detailed Description

This header implements an arrayList for integers.

Author
Luis Russo <lsr-ThinkPad-X201>
Date
Wed Feb 29 17:06:11 2012

Definition in file arrayList.h.

Variable Documentation

int k
Initial value:
{
if(S->n == (S->bound/S->f))
{
S->f /= 2;
if(S->f < 1) S->f = 1;
S->A = (int*) realloc(S->A, (S->bound/S->f)*sizeof(int));
}
S->A[S->n] = k

Definition at line 114 of file arrayList.h.