forked from sassoftware/cvrpsep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfcisep.h
24 lines (20 loc) · 853 Bytes
/
fcisep.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* 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_FCISEP
#define _H_FCISEP
void FCISEP_SeparateFCIs(int NoOfCustomers,
const double *Demand,
double CAP,
int NoOfEdges,
const int *EdgeTail,
const int *EdgeHead,
const double *EdgeX,
CnstrMgrPointer CMPExistingCuts,
int MaxNoOfTreeNodes,
int MaxNoOfCuts,
double EpsViolation,
double *MaxViolation,
CnstrMgrPointer CutsCMP);
#endif