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
1f98c8d2
Commit
1f98c8d2
authored
6 years ago
by
Victor Ruelle
Browse files
Options
Downloads
Patches
Plain Diff
Upload New File
parent
a372bf99
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cvrpsep/cutbase.h
+32
-0
32 additions, 0 deletions
cvrpsep/cutbase.h
with
32 additions
and
0 deletions
cvrpsep/cutbase.h
0 → 100644
+
32
−
0
View file @
1f98c8d2
/* (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
,
int
*
Demand
,
int
CAP
,
int
*
MinV
);
void
CUTBASE_CompCapViolation
(
ReachPtr
SupportPtr
,
int
NoOfCustomers
,
char
*
NodeInSet
,
int
*
NodeList
,
int
NodeListSize
,
int
*
Demand
,
int
CAP
,
double
**
XMatrix
,
double
*
Violation
);
#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