14 lines
182 B
C
14 lines
182 B
C
#pragma once
|
|
|
|
#include "task_base_config.h"
|
|
|
|
#include <inttypes.h>
|
|
|
|
typedef struct {
|
|
task_base_config base;
|
|
float seed;
|
|
float abs_min;
|
|
float abs_max;
|
|
} rand_config;
|
|
|