summaryrefslogblamecommitdiffstats
path: root/src/main/nem_ull.c
blob: 2bf29a6d33d34c7bb38c420f6560e1aadcf2c126 (plain) (tree)
1
2
3
4
5
6
7
8
9






                                  

                        
 




                                                    
 

                     
                      
                 
 

                                                           
 
                 
 

                
 
           
 
#include <stdio.h>
#include <time.h>
#include "common.h"
#include "structs.h"
#include "nem_ull.h"

int main(int argc, char * argv[]){
  struct data * d;
  struct front_item * b;

  if(argc!=2){
    printf("Wrong number of arguments!\n");
    printf("Example usage: %s data_file\n",argv[0]);
    return 0;
  }

  d = input(argv[1]);
  
  clock_t t = clock();
  b = nem_ull(d);

  t = clock() - t;
  printf("%f,%d\n",((float)t)/CLOCKS_PER_SEC,len_front(b));

  print_front(b);

  free_front(b);
  free_data(d);

  return 0;
}