亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? configure.in

?? http://gaul.sourceforge.net/ 這里大部分人討論的是在Matlab里實現GA的toolbox.以上為一個GA的C語言的軟件包.如果你想利用GA做優化算法,非常有用.而且有
?? IN
?? 第 1 頁 / 共 3 頁
字號:
dnl ***************************************************************dnl gaul-devel/configure.indnl ***************************************************************dnldnl GAUL - Genetic Algorithm Utility Library.dnl Copyright ?2001-2005, Stewart Adcock <stewart@linux-domain.com>dnl All rights reserved.dnldnl The latest version of this program should be available at:dnl http://gaul.sourceforge.net/dnldnl This program is free software; you can redistribute it and/or modifydnl it under the terms of the GNU General Public License as published bydnl the Free Software Foundation; either version 2 of the License, ordnl (at your option) any later version.  Alternatively, if your projectdnl is incompatible with the GPL, I will probably agree to requestsdnl for permission to use the terms of any other license.dnldnl This program is distributed in the hope that it will be useful, butdnl WITHOUT ANY WARRANTY WHATSOEVER.dnldnl A full copy of the GNU General Public License should be in the filednl "COPYING" provided with this distribution; if not, see:dnl http://www.gnu.org/dnldnl ***************************************************************dnldnl To do:	Consider use of AC_TRY_CFLAGS().dnl		use -axN with icc of P4,Mobile P4dnl		use -Wp64 -Wcheck with icc on Itaniumdnldnl ***************************************************************## We require autoconf 2.57 or above#AC_PREREQ(2.57)## init autoconf#AC_INIT(gaul-devel, 0.1849, gaul@linux-domain.com)# Specify a configuration fileAM_CONFIG_HEADER(config.h util/gaul/gaul_config.h)AC_CANONICAL_SYSTEMPACKAGE="gaul-devel"GA_MAJOR_VERSION=0GA_MINOR_VERSION=1849GA_PATCH_VERSION=0GA_VERSION=${GA_MAJOR_VERSION}.${GA_MINOR_VERSION}-${GA_PATCH_VERSION}## libtool versioning# libtool on some systems can't handle a minor version of# >255, so we can't use this:#LT_RELEASE=${GA_MAJOR_VERSION}.${GA_MINOR_VERSION}#GA_LT_MINOR_VERSION=49LT_RELEASE=${GA_MAJOR_VERSION}.${GA_LT_MINOR_VERSION}LT_CURRENT=0LT_REVISION=${GA_PATCH_VERSION}AC_SUBST(LT_RELEASE)AC_SUBST(LT_CURRENT)AC_SUBST(LT_REVISION)## Set some defines required to their default values.# FIXME: should allow configuration-time modification for many of these.#AC_DEFINE_UNQUOTED(GA_MAJOR_VERSION, ${GA_MAJOR_VERSION}, [Major version number.])AC_DEFINE_UNQUOTED(GA_MINOR_VERSION, ${GA_MINOR_VERSION}, [Minor version number.])AC_DEFINE_UNQUOTED(GA_LT_MINOR_VERSION, ${GA_LT_MINOR_VERSION}, [Minor version number for libtool.])AC_DEFINE_UNQUOTED(GA_PATCH_VERSION, ${GA_PATCH_VERSION}, [Patch level.])AC_DEFINE_UNQUOTED(GA_UNAME_STRING, "`uname -a`", [Record compilation platform information.])AC_DEFINE_UNQUOTED(GA_BUILD_DATE_STRING, "`date +%d/%m/%y`", [Record date of compilation.])AC_DEFINE_UNQUOTED(GA_VERSION_STRING, "${GA_VERSION}", [Version string.])# Initialise Automake.AM_INIT_AUTOMAKE($PACKAGE, $GA_VERSION, gaul@linux-domain.com)# Checks for programs.AC_PROG_CCAC_PROG_INSTALL# Initialize libtool.AC_LIBTOOL_WIN32_DLLAC_PROG_LIBTOOL# Initialize maintainer mode#AM_MAINTAINER_MODE## figure debugging default, prior to $ac_help setup###AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)#if test `expr $MINOR_VERSION \% 2` = 1 ; then#	debug_default=yes#else#	debug_default=partial#fi#AC_DIVERT_POP()#dnl Debugging default.debug_default=no## declare --enable-* args and collect ac_help strings#AC_ARG_ENABLE(g,       [  --enable-g=[yes/no]             compile with symbolic debug information. [default=yes]],,       enable_g=yes)AC_ARG_ENABLE(ccoptim,       [  --enable-ccoptim=[yes/no]             compile with guessed compiler optimisation flags. [default=yes]],,       enable_ccoptim=yes)AC_ARG_ENABLE(debug,       [  --enable-debug=[no/minimum/yes] turn on debugging. [default=$debug_default]],,       enable_debug=$debug_default)AC_ARG_ENABLE(memory_debug,       [  --enable-memory-debug=[yes/no]  turn on memory access debugging. [default=no]],,       enable_memory_debug=no)AC_ARG_ENABLE(ansi,       [  --enable-ansi=[yes/no]          turn on strict ansi. [default=no]],,       enable_ansi=no)AC_ARG_ENABLE(missing_prototypes,       [  --enable-missing-prototypes=[yes/no] turn on missing prototype checks. [default=no]],,       enable_missing_prototypes=no)AC_ARG_ENABLE(pthread,       [  --enable-pthread=[yes/no]       turn on multi-thread support using pthread. [default=yes]],,       enable_pthread=yes)AC_ARG_ENABLE(openmp,       [  --enable-openmp=[yes/no]        turn on multi-thread support using OpenMP. [default=no]],,       enable_openmp=no)AC_ARG_ENABLE(parallel,       [  --enable-parallel=[yes/no]      turn on auto-parallelisation for Intel's icc compiler. [default=no]],,       enable_parallel=no)AC_ARG_ENABLE(mpi,       [  --enable-mpi=[yes/no]           turn on MPI support. [default=no]],,       enable_mpi=no)AC_ARG_ENABLE(slang,       [  --enable-slang=[yes/no]         use S-Lang for scripting. [default=yes]],,       enable_slang=yes)AC_ARG_ENABLE(prof,       [  --enable-profile=[yes/no]       turn on profiling. [default=no]],,       enable_prof=no)AC_ARG_ENABLE(efence,       [  --enable-efence=[yes/no]        use Electric Fence for memory debugging. [default=no]],,       enable_efence=no)AC_ARG_ENABLE(padding,       [  --enable-padding=[yes/no]       use memory padding for overflow detection. [default=no]],,       enable_padding=no)AC_ARG_ENABLE(memory_chunks,       [  --enable-memory-chunks=[yes/no] use memory chunk allocation routines. [default=yes]],,       enable_memory_chunks=yes)AC_ARG_ENABLE(num_procs,       [  --enable-num-procs=[INT]        default number of processes to spawn in MP code. [default=8]],,       enable_num_procs=8)AC_ARG_ENABLE(num_threads,       [  --enable-num-threads=[INT]      default number of threads to create in threaded code. [default=4]],,       enable_num_threads=4)AC_ARG_ENABLE(w32_subset,       [  --enable-w32-subset=[yes/no]    compile a subset of GAUL for windows. [default=no]],,       enable_w32_subset=no)AC_MSG_CHECKING(for default number of processes to spawn in MP code)AC_DEFINE_UNQUOTED(GA_DEFAULT_NUM_PROCESSES, ${enable_num_procs}, [Default number of processes.])AC_MSG_RESULT(${enable_num_procs})AC_MSG_CHECKING(for default number of threads to create in threaded code)AC_DEFINE_UNQUOTED(GA_DEFAULT_NUM_THREADS, ${enable_num_threads}, [Default number of threads.])AC_MSG_RESULT(${enable_num_threads})## Check for pthreads#AC_MSG_CHECKING(whether to link to pthread library)if test "x$enable_pthread" = "xyes"; then  AC_MSG_RESULT(yes)  WILL_USE_PTHREADS="yes"  HAVE_PTHREADS=1  LIBS="$LIBS -lpthread"  AC_CHECK_LIB(pthread, pthread_create,    [LIBS="$LIBS -lpthread"],    [AC_MSG_ERROR(GAUL requires the pthread library for full functionality.  Install it or configure with '--enable-pthread=no' for reduced version.)])  result=1else  AC_MSG_RESULT(no)  WILL_USE_PTHREADS="no"  result=0  HAVE_PTHREADS=0fiAC_DEFINE_UNQUOTED(HAVE_PTHREADS, ${result}, [Whether libpthread is installed.])## Check for OpenMP#AC_MSG_CHECKING(whether to use OpenMP)if test "x$enable_openmp" = "xyes"; then  AC_MSG_RESULT(yes)  WILL_USE_OPENMP="yes"  USE_OPENMP=1  result=1else  AC_MSG_RESULT(no)  WILL_USE_OPENMP="no"  result=0  USE_OPENMP=0fiAC_DEFINE_UNQUOTED(USE_OPENMP, ${result}, [Whether OpenMP should be used.])# A sanity check.if test "x$WILL_USE_PTHREADS" = "xyes" && test "x$WILL_USE_OPENMP" = "xyes"; then AC_MSG_ERROR(Can not simultaneously use OpenMP and pthreads for thread-level parallelisation.)fi# A sanity check.if test "x$enable_parallel" = "xyes"; thenAC_MSG_CHECKING(whether to autoparallelise code) if test "x$CC" = "xicc"; then   AC_MSG_RESULT(yes) else   AC_MSG_ERROR(--enable-parallel=yes can only be used with Intel's icc compiler.)  fifi## Setup MPI compilation#old_LIBS=$LIBSold_CFLAGS=$CFLAGSAC_MSG_CHECKING(whether to use MPI)if test "x$enable_mpi" != "xyes"; then  AC_MSG_RESULT(no)  enable_mpi=no  MPIFLAGS=""  MPILIBS=""  WILL_USE_MPI="no"  HAVE_MPI=0  result=0else  AC_MSG_RESULT(yes)  result=1## Check for MPI version.#  if test "x$MPIFLAGS" != "x" || test "x$MPILIBS" != "x"; then    # User defined the additional LIBS and CFLAGS stuff :-).    # "-lm" used in AC_CHECK_LIB as dummy library.    LIBS="$old_LIBS $MPILIBS"    CFLAGS="$old_CFLAGS $MPIFLAGS"    AC_CHECK_LIB(m, MPI_Init,,      [AC_MSG_ERROR(Unable to compile with specified MPI implementation.  Check MPIFLAGS and MPILIBS environment variables, or configure with '--enable-mpi=no' to disable MPI use.)])  else	  # User didn't define the additional LIBS and CFLAGS stuff, so we must try to guess it :-(#    AC_MSG_WARN([You are advised to specify requirements of your MPI implementation via the MPIFLAGS and MPILIBS environment variables.])    # Try LAM    AC_MSG_CHECKING(for LAM-MPI)    MPIFLAGS="-D_REENTRANT"    MPILIBS="-llammpio -llamf77mpi -lmpi -llam -lutil -lpthread"    LIBS="$old_LIBS $MPILIBS"    CFLAGS="$old_CFLAGS $MPIFLAGS"    AC_CHECK_LIB(mpi, MPI_Init,, [result=0])    if test result = 0; then      AC_MSG_RESULT(no)      # Try MPICH      AC_MSG_CHECKING(for MPICH)      result=1      MPIFLAGS="-DUSE_STDARG -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STDARG_H=1 -DUSE_STDARG=1 -DMALLOC_RET_VOID=1"      MPILIBS="-lmpich"      LIBS="$old_LIBS $MPILIBS"      CFLAGS="$old_CFLAGS $MPIFLAGS"          AC_CHECK_LIB(mpich, MPI_Init,, [result=0])      if test result = 0; then        AC_MSG_RESULT(no)      else        AC_MSG_RESULT(yes)      fi    else      AC_MSG_RESULT(yes)    fi  fi  if test ${result} = 0; then    WILL_USE_MPI="no"    HAVE_MPI=0    AC_MSG_ERROR(Unable to locate an installed MPI implementation.  Manually set the MPIFLAGS and MPILIBS environment variables, or configure with '--enable-mpi=no' to disable MPI use.)  else    WILL_USE_MPI="yes"    HAVE_MPI=1  fifiAC_DEFINE_UNQUOTED( HAVE_MPI, ${result}, [Whether to use MPI for parallel code.])# Reset CFLAGS and LIBS variables.LIBS=$old_LIBSCFLAGS=$old_CFLAGSAC_MSG_CHECKING(whether to disable memory chunk allocation)if test "x$enable_memory_chunks" = "xyes"; then  AC_MSG_RESULT(no)  MEMORY_CHUNKS_MIMIC=0else  AC_MSG_RESULT(yes)  MEMORY_CHUNKS_MIMIC=1  AC_DEFINE( MEMORY_CHUNKS_MIMIC, 1, [Define to disable memory chunk allocation routines.])fiAC_MSG_CHECKING(whether to enable memory access debugging)if test "x$enable_memory_debug" = "xyes"; then  AC_MSG_RESULT(yes - full profiling)  result1=1  result2=0  MEMORY_ALLOC_DEBUG=1  MEMORY_ALLOC_SAFE=0else  AC_MSG_RESULT(no - safe wrappers only)  result1=0  result2=1  MEMORY_ALLOC_DEBUG=0  MEMORY_ALLOC_SAFE=1fiAC_DEFINE_UNQUOTED( MEMORY_ALLOC_DEBUG, ${result1}, [Whether to use debugging memory allocation routines.])AC_DEFINE_UNQUOTED( MEMORY_ALLOC_SAFE, ${result2}, [Whether to use safe memory allocation routines.])AC_MSG_CHECKING(whether to enable dumping of statistics)if test "x$enable_stats" = "xyes"; then  AC_MSG_RESULT(yes)  result=1else  AC_MSG_RESULT(no)  result=0fiAC_DEFINE_UNQUOTED(GA_WRITE_STATS, ${result}, [Whether to dump certian statistics.])AC_MSG_CHECKING(whether to enable general GAUL debugging)if test "x$enable_debug" = "xyes"; then  AC_MSG_RESULT(yes)  debug=2else  if test "x$enable_debug" = "xno"; then    AC_MSG_RESULT(no)    debug=0  else    AC_MSG_RESULT(partial)    debug=1  fifiAC_DEFINE_UNQUOTED( DEBUG, ${debug}, [Overall debugging level.])AC_DEFINE_UNQUOTED( GA_DEBUG, ${debug}, [Core GAUL debugging level.])## Whether to pad memory to detect overflows#AC_MSG_CHECKING(whether to pad memory to detect overflows)if test "x$enable_padding" = "xyes"; then  AC_MSG_RESULT(yes)  result=1else  AC_MSG_RESULT(no)  result=0fiAC_DEFINE_UNQUOTED( MEMORY_PADDING, ${result}, [Whether to pad memory.] )## Whether we need to cripple GAUL so that it works with windows.# This is always the case if MingW is being used.#AC_MSG_CHECKING(whether to cripple GAUL for windows)case $target in  *-*-mingw*) enable_w32_subset="yes" ;;esacif test "x$enable_w32_subset" = "xyes"; then  AC_MSG_RESULT(yes)  AC_MSG_WARN([GAUL is crippled when compiled for windows.  Please consider upgrading to a proper operating system.])  result=1  W32_CRIPPLED=1else  AC_MSG_RESULT(no)  result=0  W32_CRIPPLED=0fiAC_DEFINE_UNQUOTED(W32_CRIPPLED, ${result}, [Whether to cripple GAUL so it works on windows.])## Check for S-Lang.#AC_MSG_CHECKING(whether to link S-Lang scripting engine)if test "x$enable_slang" = "xyes"; then  AC_MSG_RESULT(yes)  WILL_USE_SLANG="yes"  HAVE_SLANG=1  LIBS="$LIBS -lslang -lm"  INCLUDES="$INCLUDES -I/usr/include/slang/"	# FIXME: Need to detect slang.h location properly.  AC_CHECK_LIB(slang, SLang_init_slang,    [LIBS="$LIBS -lslang"],    [AC_MSG_ERROR(GAUL requires the S-Lang library for full functionality.  see http://space.mit.edu/pub/davis/slang/  Or configure with '--enable-slang=no' for reduced version.)])  result=1else  AC_MSG_RESULT(no)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩在线播放三区四区| 成人免费高清视频在线观看| 亚洲精品视频一区| 中文字幕精品—区二区四季| 国产亚洲婷婷免费| 国产精品欧美一级免费| 国产精品国产三级国产aⅴ中文| 欧美一区二区三区白人| 欧美日韩精品一区二区三区四区| 亚洲美女视频在线观看| 伊人一区二区三区| 亚洲一区二区精品视频| 日韩成人av影视| 午夜一区二区三区视频| 日本欧美久久久久免费播放网| 精品少妇一区二区三区在线视频| 精品一区二区av| 国产精品1024久久| 一本大道av伊人久久综合| 欧美亚日韩国产aⅴ精品中极品| 日本亚洲欧美天堂免费| 精品一区精品二区高清| 国产成人av一区二区三区在线| 亚洲综合成人网| 亚洲妇熟xx妇色黄| 激情五月婷婷综合网| eeuss鲁片一区二区三区| 在线观看日韩电影| 日韩欧美综合一区| 成人欧美一区二区三区| 日韩一区精品字幕| 国产精品白丝av| 91在线视频18| 欧美一卡2卡三卡4卡5免费| 日本一区二区综合亚洲| 亚洲国产成人91porn| 国产精品一色哟哟哟| 日本精品一区二区三区高清| 日韩精品中午字幕| 亚洲在线中文字幕| 国产91精品久久久久久久网曝门| 久久99久久99| 色综合久久久久| 久久精品人人爽人人爽| 日韩和的一区二区| 色婷婷一区二区三区四区| 久久九九99视频| 美国欧美日韩国产在线播放| 在线观看视频一区| 国产精品久久午夜夜伦鲁鲁| 捆绑调教美女网站视频一区| 欧洲中文字幕精品| 国产精品久久久一本精品| 看片网站欧美日韩| 欧美绝品在线观看成人午夜影视| 欧美丝袜自拍制服另类| 最新欧美精品一区二区三区| 久久国产生活片100| 欧美精品久久久久久久久老牛影院| 欧美性受xxxx黑人xyx性爽| 国产精品白丝在线| 国产激情精品久久久第一区二区| 亚洲va中文字幕| 91欧美一区二区| 国产精品不卡在线| 国产成人一区二区精品非洲| 精品福利一区二区三区| 免费视频一区二区| 欧美精品日日鲁夜夜添| 综合激情网...| 欧美三级午夜理伦三级中视频| 99视频精品全部免费在线| 国产欧美日韩精品a在线观看| 日韩免费高清电影| 精品一区二区影视| 欧美大肚乱孕交hd孕妇| 午夜欧美视频在线观看 | 国产亚洲美州欧州综合国| 一个色在线综合| 欧美日韩中文字幕一区二区| 亚洲成人免费电影| 欧美久久久久免费| 日韩av中文字幕一区二区| 日韩欧美国产一区二区在线播放 | 欧美成人精品高清在线播放| 日本aⅴ精品一区二区三区| 欧美一区二区三区视频在线观看| 精品国产一区二区精华| 九色porny丨国产精品| 久久九九国产精品| 99久久精品国产精品久久| 国产精品美女久久久久久2018 | 91精品欧美久久久久久动漫| 一区二区三区欧美久久| 欧美一区二区三区视频在线观看| 国产精品每日更新| 欧美性生活影院| 蜜桃传媒麻豆第一区在线观看| 91在线视频网址| 亚洲狠狠爱一区二区三区| 欧美一区二区三区男人的天堂 | 欧美在线观看视频一区二区三区| 欧美一区二区成人6969| 欧美自拍偷拍午夜视频| 性欧美疯狂xxxxbbbb| 久久精品网站免费观看| 91香蕉视频黄| 蜜桃久久久久久| 一区在线观看免费| 日韩视频一区二区三区| 色婷婷av一区二区三区gif | 一本高清dvd不卡在线观看| 午夜精品久久久久久久久久久| 成人激情动漫在线观看| 日韩国产精品久久久| 国产精品乱码久久久久久| 欧美精品高清视频| 99久久免费国产| 欧美a级一区二区| 亚洲黄色片在线观看| 久久天堂av综合合色蜜桃网| 欧美三级在线视频| 91首页免费视频| 国产黄色精品视频| 久久国产剧场电影| 日韩高清在线不卡| 一区二区三区日本| 国产精品久久久久久妇女6080| 成人激情免费电影网址| 韩日欧美一区二区三区| 五月婷婷久久综合| 一区二区三区在线观看欧美| 中文字幕精品一区二区三区精品 | 99久久久国产精品| 国产尤物一区二区| 日韩精品91亚洲二区在线观看| 一本大道综合伊人精品热热| 国产a视频精品免费观看| 九九**精品视频免费播放| 亚洲一区二区三区不卡国产欧美| 欧美一a一片一级一片| 91小视频在线| 一本到不卡免费一区二区| 欧美日韩三级一区| 色综合视频在线观看| 91丝袜国产在线播放| 91日韩精品一区| 一本色道久久综合狠狠躁的推荐| 夜夜嗨av一区二区三区网页| 国产三级三级三级精品8ⅰ区| 成人精品小蝌蚪| 国产福利视频一区二区三区| 国产一二三精品| 国产精品888| 国产91露脸合集magnet| thepron国产精品| 色综合久久中文字幕综合网| 91黄色免费看| 69p69国产精品| 欧美变态口味重另类| 久久久美女艺术照精彩视频福利播放| 成人综合婷婷国产精品久久免费| 国产精品电影院| 亚洲在线观看免费| 日韩av一级片| 国产在线精品不卡| 国产成人免费9x9x人网站视频| 一区二区三区产品免费精品久久75| 欧美日本乱大交xxxxx| 欧美一区二区视频观看视频| 欧美一区二区福利视频| 国产午夜亚洲精品羞羞网站| 国产精品看片你懂得| 亚洲一区中文日韩| 日本三级韩国三级欧美三级| 国产乱码精品1区2区3区| 91视频com| 日韩一区二区三区视频| 国产视频一区不卡| 久久电影网电视剧免费观看| 国产精品综合在线视频| 在线免费精品视频| 精品国产乱码久久久久久影片| 欧美伊人久久久久久久久影院| 国产河南妇女毛片精品久久久| 亚洲国产你懂的| 日本成人在线看| 95精品视频在线| 日韩精品一区在线观看| 亚洲色图清纯唯美| 另类小说一区二区三区| 色婷婷久久综合| 国产亚洲女人久久久久毛片| 首页欧美精品中文字幕| 粉嫩13p一区二区三区| 欧美一区二区三区啪啪| 亚洲精品国久久99热| 国产91精品一区二区麻豆网站| 国产精品一区一区三区| 制服视频三区第一页精品|