aboutsummaryrefslogtreecommitdiff
path: root/src/map.c
diff options
context:
space:
mode:
authorMarvin Borner2023-05-27 09:44:14 +0200
committerMarvin Borner2023-05-27 09:44:14 +0200
commit337ec809393b709b36ca7b64d77489ae4bc1af1c (patch)
tree4e6eb71eaa8e81c4b08b8d23938e1609ff5d91a6 /src/map.c
parentac039e6fcbdec3dc6c8e28013e1b3a20068c84ee (diff)
More scheduling and probabilisticity
Diffstat (limited to 'src/map.c')
-rw-r--r--src/map.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/map.c b/src/map.c
index d0793a2..1862c9c 100644
--- a/src/map.c
+++ b/src/map.c
@@ -62,7 +62,9 @@ struct pqueue *map_to_pqueue(pqueue_cmp_pri_f cmppri, pqueue_get_pri_f getpri,
void *iter_val;
while (hashmap_iter(all_terms, &iter, &iter_val)) {
struct term *term = *(struct term **)iter_val;
- pqueue_insert(queue, term);
+ if (term->type == APP) {
+ pqueue_insert(queue, term);
+ }
}
return queue;