20 lines
499 B
C
20 lines
499 B
C
|
#ifndef __MUNKRES_H
|
||
|
#define __MUNKRES_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/* Macro Definition ----------------------------------------------------------------------------- */
|
||
|
#define MUNKRES_NO_ERROR 0
|
||
|
#define MUNKRES_EXCESSIVE_MATRIX 1
|
||
|
|
||
|
/* Function Declaration ------------------------------------------------------------------------- */
|
||
|
extern int MUNKRES_get_assignment(int *assignment, float* cost, int m, int n);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // for __MUNKRES_H
|