forked from sassoftware/cvrpsep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hpmstar.h
30 lines (24 loc) · 1.04 KB
/
hpmstar.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
/* 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_HPMSTAR
#define _H_HPMSTAR
#include "cnstrmgr.h"
void HPMSTAR_CreateMinVVector(int DemandSum, int CAP);
void HPMSTAR_DirectX(ReachPtr SupportPtr, /* Original support graph. */
ReachPtr SAdjRPtr, /* Shrunk support graph. */
int NoOfCustomers,
const double *Demand, /* Original demand vector. */
double CAP,
int NoOfSuperNodes,
double *XInSuperNode,
double **XMatrix,
double **SMatrix,
ReachPtr SuperNodesRPtr,
char SelectionRule,
int MaxGeneratedCuts,
char SearchPartialMStars,
CnstrMgrPointer CutsCMP,
double *MaxViolation);
#endif