资源简介
关于多目标车辆路径优化问题的源代码,C语言,包含文档描述。
代码片段和文件信息
/*
* Copyright (C) DOLPHIN Project-Team INRIA Futurs 2006-2007
* (C) OPAC Team LIFL 2002-2007
*
* (c) Antonio LaTorre 2007
*
* ===================================================================
* Multi-objective Support added by:
* ===================================================================
* Uninversity of Nottingham (UK) ASAP Research Group
* (c) Juan Castro-Gutierrez 2010
* (c) Dario Landa-Silva 2010
*
* Universidad de La Laguna (Spain) DEIOC
* (c) José A. Moreno Pérez 2010
*
* -------------------------------------------------------------------
*
* This software is governed by the CeCILL license under French law and
* abiding by the rules of distribution of free software. You can use
* modify and/ or redistribute the software under the terms of the CeCILL
* license as circulated by CEA CNRS and INRIA at the following URL
* “http://www.cecill.info“.
*
* As a counterpart to the access to the source code and rights to copy
* modify and redistribute granted by the license users are provided only
* with a limited warranty and the software‘s author the holder of the
* economic rights and the successive licensors have only limited liability.
*
* In this respect the user‘s attention is drawn to the risks associated
* with loading using modifying and/or developing or reproducing the
* software by the user in light of its specific status of free software
* that may mean that it is complicated to manipulate and that also
* therefore means that it is reserved for developers and experienced
* professionals having in-depth computer knowledge. Users are therefore
* encouraged to load and test the software‘s suitability as regards their
* requirements in conditions enabling the security of their systems and/or
* data to be ensured and more generally to use and operate it in the
* same conditions as regards security.
* The fact that you are presently reading this means that you have had
* knowledge of the CeCILL license and that you accept its terms.
*
* ParadisEO WebSite : http://paradiseo.gforge.inria.fr
* Contact: paradiseo-help@lists.gforge.inria.fr
*
*/
// Defines /////////////
// Output debug data
#define VERBOSE false
////////////////////////
// Miscellaneous includes and declarations
#include
#include
// eo general include
#include
#include
// the real bounds (not yet in general eo include)
#include “utils/eoRealVectorBounds.h“
// Include here whatever specific files for your representation.
// Basically this should include at least the following:
/** definition of representation:
* class moeoVRP MUST derive from EO for some fitness
*/
#include “moeoVRP.h“
/** definition of initilizqtion:
* class moeoVRPInit MUST derive from eoInit
*/
#include “moeoVRPInit.h“
/** definition of evaluation:
* class moe
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 15923 2018-09-07 10:20 MOVRPTW-Paradiseo-master\CVRP-TW.cpp
目录 0 2018-09-04 17:59 MOVRPTW-Paradiseo-master\doc\
目录 0 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\
文件 677 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\bc_s.png
文件 126 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\closed.png
文件 10556 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\doxygen.css
文件 3942 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\doxygen.png
文件 2458 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\index.html
文件 2582 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\installdox
文件 159 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\nav_f.png
文件 97 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\nav_h.png
文件 118 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\open.png
目录 0 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\search\
文件 273 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\search\close.png
文件 563 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\search\mag_sel.png
文件 461 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\search\nomatches.html
文件 4007 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\search\search.css
文件 19663 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\search\search.js
文件 604 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\search\search_l.png
文件 158 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\search\search_m.png
文件 612 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\search\search_r.png
文件 140 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\tab_a.png
文件 178 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\tab_b.png
文件 192 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\tab_h.png
文件 189 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\tab_s.png
文件 1095 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\html\tabs.css
目录 0 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\latex\
文件 10855 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\latex\doxygen.sty
文件 463 2018-09-07 10:20 MOVRPTW-Paradiseo-master\doc\latex\Makefile
文件 404 2018-09-04 18:26 MOVRPTW-Paradiseo-master\doc\latex\refman.aux
文件 0 2018-09-04 18:26 MOVRPTW-Paradiseo-master\doc\latex\refman.idx
............此处省略19个文件信息
- 上一篇:操作系统课程设计 文件管理系统模拟
- 下一篇:c语言socket实现的http服务器
评论
共有 条评论