亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
eeuss鲁片一区二区三区 | 国产精品欧美极品| 久久精品久久综合| 91麻豆精品国产自产在线| 日韩电影一区二区三区| 欧美一级黄色片| 国产精品一区不卡| 亚洲一区二区在线播放相泽| 欧美精品 国产精品| 激情综合五月婷婷| 亚洲免费观看在线观看| 6080日韩午夜伦伦午夜伦| 在线91免费看| 欧美成人女星排名| 91美女片黄在线观看91美女| 蜜桃精品视频在线| 一区二区三区日韩欧美精品| 久久免费电影网| 欧洲av在线精品| 国产电影一区二区三区| 日韩成人一级片| 国产精品一级黄| 欧美在线看片a免费观看| 91麻豆精品国产91久久久久久久久| 日韩欧美的一区| 欧美一区二区三区四区高清| 99久久er热在这里只有精品66| 久久精品国产免费| 99re视频精品| 精品少妇一区二区三区视频免付费| 国产亚洲美州欧州综合国| 7799精品视频| 中文字幕日本乱码精品影院| 国产欧美一二三区| 久久九九久久九九| 亚洲大型综合色站| 亚洲欧美色图小说| 蜜臀99久久精品久久久久久软件| 顶级嫩模精品视频在线看| 美国十次综合导航| 96av麻豆蜜桃一区二区| 欧美精品18+| 亚洲三级在线播放| 亚洲一区二区不卡免费| 国产麻豆成人传媒免费观看| 激情综合色综合久久| 欧美影片第一页| 欧美高清性hdvideosex| 国产精品久久久久久一区二区三区 | 国产精品888| 精品视频一区二区三区免费| 欧洲一区二区三区在线| 中文字幕不卡在线播放| 国产精品美女视频| 韩国女主播成人在线| 国产成人精品亚洲日本在线桃色| 欧美性视频一区二区三区| 日本一区二区久久| 国精产品一区一区三区mba桃花 | 亚洲一区二区三区四区的| 国产精品亚洲人在线观看| 日韩一区二区三区电影| 亚洲国产欧美另类丝袜| 精彩视频一区二区| 欧美一级搡bbbb搡bbbb| 亚洲一区二区三区免费视频| jizzjizzjizz欧美| 日韩一区欧美一区| 99精品视频一区二区三区| 久久久国产一区二区三区四区小说| 久久99最新地址| ww亚洲ww在线观看国产| 《视频一区视频二区| 99精品久久久久久| 中文字幕日本不卡| 色综合久久88色综合天天免费| 欧洲视频一区二区| 一二三区精品视频| 欧美日韩精品欧美日韩精品一 | 国产综合色在线| 国产日韩欧美亚洲| 国产精品99久久久久久久vr| 国产女人18毛片水真多成人如厕| 国产精品自在欧美一区| 国产精品超碰97尤物18| 91视频一区二区三区| 亚洲午夜久久久久中文字幕久| 91福利小视频| 国产精品日产欧美久久久久| 91在线国产福利| 亚洲综合区在线| 日韩视频在线一区二区| 国产精品一区二区无线| 综合激情成人伊人| 欧美色综合网站| 精品一二三四区| 国产精品麻豆视频| 91精品婷婷国产综合久久性色| 国产一区视频导航| 亚洲一区视频在线观看视频| 欧美一级视频精品观看| av在线综合网| 丝袜美腿亚洲色图| 欧洲国内综合视频| 国产永久精品大片wwwapp| 国产精品短视频| 3d动漫精品啪啪1区2区免费 | 成人免费小视频| 欧美日韩亚洲国产综合| 国产精品亚洲第一区在线暖暖韩国| 亚洲欧洲av另类| 欧美成人精精品一区二区频| 一本到三区不卡视频| 九色综合狠狠综合久久| 亚洲男人的天堂在线aⅴ视频| 欧美一级午夜免费电影| 91啪在线观看| 国内成+人亚洲+欧美+综合在线| 亚洲精品免费播放| 91在线你懂得| 久久97超碰国产精品超碰| 亚洲综合无码一区二区| 亚洲国产精品成人综合| 日韩欧美你懂的| 欧美日韩一区三区四区| 成人高清免费观看| 最新不卡av在线| 久久久噜噜噜久噜久久综合| 欧美日韩一区中文字幕| 99r精品视频| 成人性生交大合| 亚洲综合区在线| 国产精品国产自产拍在线| 久久免费美女视频| 欧美一级黄色录像| 欧美精品久久99久久在免费线| 国产精品一品视频| 国模冰冰炮一区二区| 美女脱光内衣内裤视频久久网站 | av亚洲精华国产精华| 国产精品中文字幕日韩精品| 日韩制服丝袜av| 亚洲成人午夜影院| 亚洲最大成人综合| 18欧美亚洲精品| 欧美国产在线观看| 国产欧美视频在线观看| 久久久久久久久久久电影| 精品三级在线看| 精品卡一卡二卡三卡四在线| 日韩一区二区电影| 日韩免费观看高清完整版| 日韩欧美国产高清| 精品国产亚洲一区二区三区在线观看| 国产高清精品在线| 国产精品一区二区x88av| 国产精品66部| jvid福利写真一区二区三区| 91一区二区在线观看| 欧洲一区二区三区在线| 欧美日韩精品专区| 日韩你懂的在线观看| 久久久噜噜噜久久人人看 | 在线看国产日韩| 欧美日韩一区二区三区视频| 4438成人网| 久久久不卡影院| 亚洲欧美另类图片小说| 亚洲一区二区在线视频| 蜜桃视频在线观看一区二区| 国产在线国偷精品产拍免费yy| 国产xxx精品视频大全| 9i看片成人免费高清| 欧美影院一区二区三区| 欧美一区二区视频在线观看2020 | 成人激情动漫在线观看| 91福利视频久久久久| 91精选在线观看| 国产欧美中文在线| 亚洲精品videosex极品| 免费av成人在线| 亚洲国产综合色| 美女一区二区三区在线观看| 国产大陆a不卡| 色88888久久久久久影院按摩| 欧美一卡2卡3卡4卡| 中文字幕在线播放不卡一区| 亚洲成人一区在线| 高清免费成人av| 91麻豆精品国产无毒不卡在线观看| 26uuu另类欧美| 亚洲国产精品尤物yw在线观看| 国产原创一区二区| 欧美日韩一级二级| 中文字幕不卡在线观看| 蜜桃av一区二区在线观看| 色综合久久久久综合| 亚洲精品一区二区三区福利| 亚洲大尺度视频在线观看| 国产成人精品一区二|