diff options
author | Marvin Borner | 2023-06-01 17:33:56 +0200 |
---|---|---|
committer | Marvin Borner | 2023-06-01 17:33:56 +0200 |
commit | c062eaeea09592cbdf7e5d732e992d0cdd8eedc5 (patch) | |
tree | 23cdfd41e6a492338c9f902b3a2206a642746530 /src/map.c | |
parent | ccd4914d395b5a588868cffaad580c29167e6747 (diff) |
More scheduling
Diffstat (limited to 'src/map.c')
-rw-r--r-- | src/map.c | 21 |
1 files changed, 3 insertions, 18 deletions
@@ -6,6 +6,7 @@ #include <lib/hashmap.h> #include <map.h> #include <parse.h> +#include <schedule.h> static struct hashmap *all_terms; @@ -30,6 +31,8 @@ struct term *map_get(struct hashmap *map, hash_t hash) void map_set(struct hashmap *map, struct term *term) { + if (!hashmap_get(map, term->hash)) + schedule_add(term); // also add to schedule hashmap_set(map, &term, term->hash); } @@ -70,21 +73,3 @@ void map_dump(struct hashmap *map) } fprintf(stderr, "---\n\n"); } - -struct pqueue *map_to_pqueue(struct hashmap *map, pqueue_cmp_pri_f cmppri, - pqueue_get_pri_f getpri, pqueue_set_pos_f setpos) -{ - size_t size = hashmap_count(map) + 42; - struct pqueue *queue = pqueue_init(size, cmppri, getpri, setpos); - - size_t iter = 0; - void *iter_val; - while (hashmap_iter(map, &iter, &iter_val)) { - struct term *term = *(struct term **)iter_val; - if (term->type == APP && term->u.app.lhs->type == ABS) { - pqueue_insert(queue, term); - } - } - - return queue; -} |