-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsolve.h
More file actions
26 lines (22 loc) · 683 Bytes
/
solve.h
File metadata and controls
26 lines (22 loc) · 683 Bytes
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
/* This is a Cfunctions (version 0.24) generated header file.
Cfunctions is a free program for extracting headers from C files.
Get Cfunctions from `http://www.hayamasa.demon.co.uk/cfunctions'. */
/* This file was generated with:
`cfunctions -i solve.c' */
#ifndef CFH_SOLVE_H
#define CFH_SOLVE_H
/* From `solve.c': */
typedef struct cycleequation cycleequation;
struct cycleequation {
cycleequation *next;
int *var;
const int *min;
int xcoefficient;
int ycoefficient;
}
;
void automap_add_cycle (cycleequation *cycle );
void automap_delete_cycles (void);
void automap_cycle_elimination (void);
void automap_cycles_fill_values (void);
#endif /* CFH_SOLVE_H */