aboutsummaryrefslogtreecommitdiff
path: root/src/map.c
diff options
context:
space:
mode:
authorMarvin Borner2023-06-01 17:33:56 +0200
committerMarvin Borner2023-06-01 17:33:56 +0200
commitc062eaeea09592cbdf7e5d732e992d0cdd8eedc5 (patch)
tree23cdfd41e6a492338c9f902b3a2206a642746530 /src/map.c
parentccd4914d395b5a588868cffaad580c29167e6747 (diff)
More scheduling
Diffstat (limited to 'src/map.c')
-rw-r--r--src/map.c21
1 files changed, 3 insertions, 18 deletions
diff --git a/src/map.c b/src/map.c
index 16518e2..9f6a050 100644
--- a/src/map.c
+++ b/src/map.c
@@ -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;
-}