#include <stdio.h>
#include <sys/time.h>
#include <getopt.h>
#include <stdlib.h>
#include "report.h"
Functions | |
void | generateTable (int chunk) |
Generate a table of memory of the given chunk size. | |
int | main (int argc, char **argv) |
Run program with chunkSize as command line argument. | |
Variables | |
static struct timeval | before |
Time before process starts. | |
static struct timeval | after |
Time after process completes. | |
int | n |
value for number of elements in a trial suite. | |
int | lowN |
Low value for number of elements in trial suite. | |
int | highN |
High value for number of elements in trial suite. |
void generateTable | ( | int | chunk | ) |
Generate a table of memory of the given chunk size.
chunk | size of each allocated object. |
int main | ( | int | argc, | |
char ** | argv | |||
) |
Run program with chunkSize as command line argument.
struct timeval after [static] |
Time after process completes.
struct timeval before [static] |
Time before process starts.
int highN |
High value for number of elements in trial suite.
int lowN |
Low value for number of elements in trial suite.
int n |
value for number of elements in a trial suite.
Algorithm Development Kit 1.0