forked from sassoftware/cvrpsep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcutbase.h
33 lines (27 loc) · 1.23 KB
/
cutbase.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
32
/* 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_CUTBASE
#define _H_CUTBASE
void CUTBASE_CompXSumInSet(ReachPtr SupportPtr,
int NoOfCustomers,
char *InNodeSet,
int *NodeList, int NodeListSize,
double **XMatrix,
double *XSumInSet);
void CUTBASE_CompVehiclesForSet(int NoOfCustomers,
char *NodeInSet,
int *NodeList,
int NodeListSize,
const double *Demand,
double CAP,
int *MinV);
void CUTBASE_CompCapViolation(ReachPtr SupportPtr,
int NoOfCustomers,
char *NodeInSet,
int *NodeList, int NodeListSize,
const double *Demand, double CAP,
double **XMatrix,
double *Violation);
#endif