squiggle.c/examples/01_one_sample/example.c

52 lines
944 B
C
Raw Normal View History

2023-06-26 17:44:41 +00:00
#include "../../squiggle.h"
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
// Estimate functions
float sample_0(uint32_t* seed)
{
return 0;
}
float sample_1(uint32_t* seed)
{
return 1;
}
float sample_few(uint32_t* seed)
{
return sample_to(1, 3, seed);
2023-06-26 17:44:41 +00:00
}
float sample_many(uint32_t* seed)
{
return sample_to(2, 10, seed);
2023-06-26 17:44:41 +00:00
}
int main(){
// set randomness seed
uint32_t* seed = malloc(sizeof(uint32_t));
*seed = 1000; // xorshift can't start with 0
float p_a = 0.8;
float p_b = 0.5;
float p_c = p_a * p_b;
int n_dists = 4;
float weights[] = { 1 - p_c, p_c / 2, p_c / 4, p_c / 4 };
float (*samplers[])(uint32_t*) = { sample_0, sample_1, sample_few, sample_many };
float result_one = sample_mixture(samplers, weights, n_dists, seed);
2023-06-26 17:44:41 +00:00
printf("result_one: %f\n", result_one);
2023-07-23 08:09:34 +00:00
free(seed);
2023-06-26 17:44:41 +00:00
}
/*
Aggregation mechanisms:
- Quantiles (requires a sort)
- Sum
- Average
- Std
*/