summaryrefslogblamecommitdiffstats
path: root/include/structs.h
blob: 035af45a9e8d26096d135ef845f6f668ca1c071e (plain) (tree)
1
2
3
4
5
6
7
8

                  


                 
             

           


             



                      


                   


                           
               

      
#ifndef _STRUCTS_H
#define _STRUCTS_H

#include <time.h>

struct item {
  double p;
  double w;
};

struct data {
  long int N;
  struct item * items;
  double allp;
  double allw;
};

struct front_item {
  struct item i;
  struct front_item * next;
  struct front_item * prev;
  clock_t time;
};
#endif