@kv  0.0.4
Library for graph problems in C and Python
optimization.h
1 
18 #if !defined(AT_CORE_H_INSIDE)
19 #error "Only <at/core.h> can be included directly."
20 #endif
21 #ifndef AT_OPTIMIZATION_H
22 #define AT_OPTIMIZATION_H
23 #include <at/core.h>
24 AT_BEGIN_DECLS
25 /*=============================================================================
26  PUBLIC API
27  ============================================================================*/
28 
29 typedef enum{
30  AT_MAXIMIZATION=0,
31  AT_MINIMIZATION=1
32 }AtOptimization;
33 
34 typedef enum{
35  AT_FIFO=0,
36  AT_LIFO=1
37 }AtPolicy;
38 AT_END_DECLS
39 #endif