forked from sushruta/shape-context-matching
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlap.h
28 lines (19 loc) · 742 Bytes
/
lap.h
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
/************************************************************************
*
* lap.h
version 1.0 - 21 june 1996
author Roy Jonker, MagicLogic Optimization Inc.
header file for LAP
*
**************************************************************************/
/*************** CONSTANTS *******************/
#define BIG 100000
/*************** TYPES *******************/
typedef int row;
typedef int col;
typedef double cost;
/*************** FUNCTIONS *******************/
extern double lap(int dim, double **assigncost,
int *rowsol, int *colsol, double *u, double *v);
extern void checklap(int dim, double **assigncost,
int *rowsol, int *colsol, double *u, double *v);