diff options
Diffstat (limited to 'set_linked_lists.c')
-rw-r--r-- | set_linked_lists.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/set_linked_lists.c b/set_linked_lists.c index e865b95..004e55a 100644 --- a/set_linked_lists.c +++ b/set_linked_lists.c @@ -9,6 +9,8 @@ #include <stdlib.h> #include <stdio.h> +#include <assert.h> + #include "sets.h" /* Question théorique pertinente : @@ -92,6 +94,7 @@ set copy_set(const set s) { for (iter = s->first->next; iter != NULL; iter = iter->next) { element e = malloc(sizeof(struct set_elt)); + assert(e != NULL); e->value = iter->value; prev->next = e; prev = e; @@ -236,7 +239,10 @@ bool sets_equal(const set a, const set b) { int elt_of_set(const set s) { if (s->first != NULL) return s->first->value; - return -1; // should raise exception... hope this will be handled properly + + fprintf(stderr, "No element in empty set...\n"); + dump_set(s); + assert(false); } int elt_of_set_heur(const set s, int h) { |