objfunc.hpp
来自「这是遗传算法的源代码」· HPP 代码 · 共 31 行
HPP
31 行
// -*- c++ -*-
//
// File: objfunc.hpp
//
// Description: Declarations of the functions in objfunc.cpp
// This file needn't be changed.
//
// Author: Fernando Lobo
//
// Date: June/1999
//
// Extended to deal with chi-ary problems by Luis de la Ossa
// GCC 3.4 and 4 series compliance by Kumara Sastry
//
// Date: March/2006
#ifndef _objfunc_hpp
#define _objfunc_hpp
#include "chromosome.hpp"
// Set up the objective function.
void set_objective_function();
// Call to the objective function.
double objfunc( chromosome &x );
double objective_func( int *chrom, int lchrom );
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?