forked from sassoftware/cvrpsep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcapsep.h
31 lines (25 loc) · 1.1 KB
/
capsep.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
/* SAS modified this file. */
/* (C) Copyright 2003 Jens Lysgaard. All rights reserved. */
/* OSI Certified Open Source Software */
/* This software is licensed under the Common Public License Version 1.0 */
#ifndef _H_CAPSEP
#define _H_CAPSEP
#include "basegrph.h"
void CAPSEP_GetOneVehicleCapCuts(CnstrMgrPointer CutsCMP,
ReachPtr *RPtr,
int *NoOfCuts);
void CAPSEP_SeparateCapCuts(int NoOfCustomers,
const double *Demand,
double CAP,
int NoOfEdges,
const int *EdgeTail,
const int *EdgeHead,
const double *EdgeX,
CnstrMgrPointer CMPExistingCuts,
int MaxNoOfCuts,
double EpsForIntegrality,
double EpsViolation,
char *IntegerAndFeasible,
double *MaxViolation,
CnstrMgrPointer CutsCMP);
#endif