⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inout.h

📁 是从一个国外的蚁群算法网站上下载的源程序,是用蚁群算法解TSP问题的源程序!感谢开放源程序
💻 H
字号:
/*       AAAA    CCCC   OOOO   TTTTTT   SSSSS  PPPPP      AA  AA  CC     OO  OO    TT    SS      PP  PP      AAAAAA  CC     OO  OO    TT     SSSS   PPPPP      AA  AA  CC     OO  OO    TT        SS  PP      AA  AA   CCCC   OOOO     TT    SSSSS   PP################################################################    ACO algorithms for the TSP    ################################################################      Version: 1.0      File:    InOut.h      Author:  Thomas Stuetzle      Purpose: mainly input / output / statistic routines      Check:   README and gpl.txt      Copyright (C) 2002  Thomas Stuetzle*//***************************************************************************    Program's name: acotsp    Ant Colony Optimization algorithms (AS, ACS, EAS, RAS, MMAS, BWAS) for the     symmetric TSP     Copyright (C) 2004  Thomas Stuetzle    This program is free software; you can redistribute it and/or modify    it under the terms of the GNU General Public License as published by    the Free Software Foundation; either version 2 of the License, or    (at your option) any later version.    This program is distributed in the hope that it will be useful,    but WITHOUT ANY WARRANTY; without even the implied warranty of    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    GNU General Public License for more details.    You should have received a copy of the GNU General Public License    along with this program; if not, write to the Free Software    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA    email: stuetzle no@spam informatik.tu-darmstadt.de    mail address: Universitaet Darmstadt                  Fachbereich Informatik                  Hochschulstr. 10                  D-64283 Darmstadt		  Germany***************************************************************************/#define PROG_ID_STR      "\nACO algorithms for the TSP, v1.0\n"#define CALL_SYNTAX_STR  "call syntax:  acotsp <param-list>\n"#define LINE_BUF_LEN     100struct point * read_etsp(const char *tsp_file_name);struct point * read_etsp(const char *tsp_file_name);extern long int *best_in_try;extern long int *best_found_at;extern double   *time_best_found;extern double   *time_total_run;   extern long int n_try;        /* number of try */extern long int n_tours;      /* number of constructed tours */extern long int iteration;    /* iteration counter */extern long int restart_iteration;    /* iteration counter */extern double   restart_time; /* remember when restart was done if any */extern long int max_tries;    /* maximum number of independent tries */extern long int max_tours;    /* maximum number of tour constructions in one try */extern double   lambda;       /* Parameter to determine branching factor */extern double   branch_fac;   /* If branching factor < branch_fac => update trails */extern double   max_time;     /* maximal allowed run time of a try  */extern double   time_used;    /* time used until some given event */extern double   time_passed;  /* time passed until some moment*/extern long int optimal;      /* optimal solution value or bound to find */extern double mean_ants;      /* average tour length */extern double stddev_ants;    /* stddev of tour lengths */extern double branching_factor; /* average node branching factor when searching */extern double found_branching;  /* branching factor when best solution is found */extern long int found_best;         /* iteration in which best solution is found */extern long int restart_found_best; /* iteration in which restart-best solution is found */extern FILE *report, *comp_report, *stat_report;extern char name_buf[LINE_BUF_LEN];extern int  opt;void write_report( void );void print_default_parameters();void set_default_parameters();void init_try( long int ntry );void output_solution( void );void exit_try( long int ntry );void exit_program( void );void init_program( long int argc, char *argv[] );void printDist(void);void printHeur(void);void printTrail(void);void printTotal(void);void printProbabilities(void);void printTour( long int *t );void printTourFile( long int *t );void checkTour( long int *t );void population_statistics ( void );double node_branching(double l);void write_params ( void );

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -