blob: dda08f3698fc6f765831cb54807f4999370509ac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de>
// SPDX-License-Identifier: MIT
#include <math.h>
#include <time.h>
#include <stdlib.h>
#include <schedule.h>
#include <lib/pqueue.h>
#include <parse.h>
#include <map.h>
static struct pqueue *queue;
static pqueue_pri_t get_pri(void *a)
{
struct term *term = a;
return (parse_get_max_depth() - term->depth + 1) * term->refs;
}
static int cmp_pri(pqueue_pri_t next, pqueue_pri_t curr)
{
return next < curr;
}
static void set_pos(void *a, size_t position)
{
(void)a;
(void)position;
}
// skewed random number generator
// prefers smaller numbers
static size_t choose_position(void)
{
size_t size = pqueue_size(queue);
return size - (size_t)sqrt(((size_t)rand() % (size_t)pow(size, 2)));
}
void schedule(void)
{
while (pqueue_size(queue) > 0) {
size_t position = choose_position();
struct term *term = pqueue_pop_at(queue, position);
// TODO: reduce term
}
}
void schedule_init(void)
{
srand(time(0));
queue = map_to_pqueue(cmp_pri, get_pri, set_pos);
}
void schedule_destroy(void)
{
pqueue_free(queue);
}
|