-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspecialtsp.h
31 lines (24 loc) · 1.08 KB
/
specialtsp.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
28
29
30
31
#ifndef SPECIALTSP_H
#define SPECIALTSP_H
/* no prototype: try to make sure it's inlined at compile time */
/* int lb(int ncount,int picked,int **weights,int *degree,
struct adj_struct *adj_list,int *otherEnd);
*/
#include "structs.h"
int ap_bbtsp ( int ncount, int *tour, int **weights, int **status,
intpair_t * neighbors, int *stack,
int *outcycle, int *degree, int *otherEnd,
smalledge_t * edges );
int ap_coalestsp ( int ncount, int *tour, int **weights,
intpair_t * neighbors, int *stack,
int *outcycle, int *degree, int *otherEnd,
smalledge_t * edges );
int av_bbtsp ( int ncount, int *tour, int **weights, int **status,
intpair_t * neighbors, int *stack,
int *outcycle, int *degree, int *otherEnd,
smalledge_t * edges );
int av_coalestsp ( int ncount, int *tour, int **weights,
intpair_t * neighbors, int *stack,
int *outcycle, int *degree, int *otherEnd,
smalledge_t * edges );
#endif