This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/********************************************* | |
* OPL 12.5 Data | |
* Author: crash | |
* Creation Date: Mar 6, 2013 at 3:38:56 PM | |
*********************************************/ | |
// 17 nodes, first node is depot. | |
// <Name, NodeType {collab|client}, WGS84-Lat, WGS84-Lon, Lam93-X, Lam93-Y, TimeWin-Min, TimeWin-Max> | |
AllNodes = { | |
<"Poitiers" 1,46.589069,0.340576,496421,6613320,360,1200>, // 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/********************************************* | |
* OPL 12.5 Model | |
* Author: crash | |
* Creation Date: Mar 6, 2013 at 3:33:35 PM | |
*********************************************/ | |
using CP; | |
// Nodes | |
tuple node { string name; float lat; float lon; int x; int y; int tmin; int tmax; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/********************************************* | |
* OPL 12.5 Model | |
* Author: crash | |
* Creation Date: Mar 6, 2013 at 3:33:35 PM | |
*********************************************/ | |
using CP; | |
// Nodes | |
tuple node { string name; float lat; float lon; int x; int y; int tmin; int tmax; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/********************************************* | |
* OPL 12.5 Data | |
* Author: crash | |
* Creation Date: Mar 6, 2013 at 3:38:56 PM | |
*********************************************/ | |
// 17 nodes, first node is depot. | |
// <Name, WGS84-Lat, WGS84-Lon, Lam93-X, Lam93-Y, TimeWin-Min, TimeWin-Max> | |
AllNodes = { | |
<"Poitiers" 46.589069,0.340576,496421,6613320,360,35000>, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/********************************************* | |
* OPL 12.5 Data | |
* Author: crash | |
* Creation Date: Mar 6, 2013 at 3:38:56 PM | |
*********************************************/ | |
// 17 clients, WGS84 | |
//Clients = [ | |
//<"Poitiers", 46.589069,0.340576>, | |
//<"La Rochelle", 46.1760-1.145325>, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/********************************************* | |
* OPL 12.5 Model | |
* Author: crash | |
* Creation Date: Mar 6, 2013 at 3:33:35 PM | |
*********************************************/ | |
using CP; | |
// Nodes | |
tuple node { string name; int x; int y; int tmin; int tmax; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/********************************************* | |
* OPL 12.5 Model | |
* Author: crash | |
* Creation Date: Mar 6, 2013 at 3:33:35 PM | |
*********************************************/ | |
using CP; | |
// Nodes | |
tuple node { string name; int x; int y; int tmin; int tmax; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/********************************************* | |
* OPL 12.5 Model | |
* Author: crash | |
* Creation Date: Mar 6, 2013 at 3:33:35 PM | |
*********************************************/ | |
// RGF93 ressemble WGS84 (sphère) | |
// Lambert93 = projection de RGF93 sur plan | |
using CP; |
NewerOlder