blob: b6d516c6dc5cef6c0cd602e154e7a9e893f000d6 (
plain)
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
|
#ifndef _ZoO_CLI_PARAMETERS_H_
#define _ZoO_CLI_PARAMETERS_H_
#include "parameters_types.h"
const char * ZoO_parameters_get_session_name
(
const struct ZoO_parameters param [const restrict static 1]
);
ZoO_index ZoO_parameters_get_markov_order
(
const struct ZoO_parameters param [const restrict static 1]
);
const char * ZoO_parameters_get_storage_filename
(
const struct ZoO_parameters param [const restrict static 1]
);
enum ZoO_invocation_objective ZoO_parameters_initialize
(
struct ZoO_parameters param [const restrict static 1],
int const argc,
const char * argv [const static argc]
);
#endif
|