aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAlexandre Jesus <adbjesus@gmail.com>2016-09-16 01:16:28 +0100
committerAlexandre Jesus <adbjesus@gmail.com>2016-09-16 01:16:28 +0100
commit8865d83090d9820380af95bfdc121b42e60ac62f (patch)
tree68db8fc792d8af45ac4b022c6b63a61f1791f695 /include
parent80b7a8116d821aeae489086a403a6cdfd64d801a (diff)
downloadlibuknapsack-8865d83090d9820380af95bfdc121b42e60ac62f.tar.gz
libuknapsack-8865d83090d9820380af95bfdc121b42e60ac62f.zip
Retab to spaces
Diffstat (limited to 'include')
-rw-r--r--include/structs.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/structs.h b/include/structs.h
index 3b5c550..035af45 100644
--- a/include/structs.h
+++ b/include/structs.h
@@ -4,21 +4,21 @@
#include <time.h>
struct item {
- double p;
- double w;
+ double p;
+ double w;
};
struct data {
- long int N;
- struct item * items;
- double allp;
- double allw;
+ long int N;
+ struct item * items;
+ double allp;
+ double allw;
};
struct front_item {
- struct item i;
- struct front_item * next;
- struct front_item * prev;
+ struct item i;
+ struct front_item * next;
+ struct front_item * prev;
clock_t time;
};
#endif