Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Capacitated Vehicule Routing Problem
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Victor Ruelle
Capacitated Vehicule Routing Problem
Commits
68bf5a99
Commit
68bf5a99
authored
6 years ago
by
Victor Ruelle
Browse files
Options
Downloads
Patches
Plain Diff
Upload New File
parent
6f637678
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cvrpsep/grsearch.h
+63
-0
63 additions, 0 deletions
cvrpsep/grsearch.h
with
63 additions
and
0 deletions
cvrpsep/grsearch.h
0 → 100644
+
63
−
0
View file @
68bf5a99
/* (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_GRSEARCH
#define _H_GRSEARCH
void
GRSEARCH_SetUnitDemand
(
char
UnitDemand
);
void
GRSEARCH_SwapNodesInPos
(
int
*
Node
,
int
*
Pos
,
int
s
,
int
t
);
void
GRSEARCH_GetInfeasExt
(
int
*
Pos
,
int
MinCandidateIdx
,
int
MaxCandidateIdx
,
int
NoOfCustomers
,
int
NodeSum
,
/* Sum of node numbers. */
ReachPtr
RPtr
,
int
RPtrSize
,
int
*
NodeLabel
,
int
Label
,
char
*
CallBack
);
void
GRSEARCH_AddSet
(
ReachPtr
RPtr
,
int
Index
,
int
SetSize
,
int
*
List
,
char
AddFullSumList
);
void
GRSEARCH_CapCuts
(
ReachPtr
SupportPtr
,
int
NoOfCustomers
,
int
*
Demand
,
int
CAP
,
int
*
SuperNodeSize
,
double
*
XInSuperNode
,
double
**
XMatrix
,
int
*
GeneratedSets
,
int
*
GeneratedAntiSets
,
ReachPtr
SetsRPtr
,
/* Identified cuts. */
ReachPtr
AntiSetsRPtr
,
int
MaxTotalGeneratedSets
);
void
GRSEARCH_CheckForExistingSet
(
ReachPtr
RPtr
,
int
RPtrSize
,
int
*
NodeLabel
,
int
Label
,
int
NodeSum
,
/* Sum of node numbers. */
int
NodeSetSize
,
char
*
ListFound
);
void
GRSEARCH_AddDropCapsOnGS
(
ReachPtr
SupportPtr
,
/* On GS */
int
NoOfCustomers
,
int
ShrunkGraphCustNodes
,
int
*
SuperDemand
,
int
CAP
,
int
*
SuperNodeSize
,
double
*
XInSuperNode
,
ReachPtr
SuperNodesRPtr
,
double
**
SMatrix
,
/* Shrunk graph */
double
Eps
,
CnstrMgrPointer
CMPSourceCutList
,
int
*
NoOfGeneratedSets
,
int
MaxTotalGeneratedSets
,
ReachPtr
SetsRPtr
);
/* Identified cuts. */
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment