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

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

?? config.txt

?? 密碼大家Shoup寫的數論算法c語言實現
?? TXT
字號:
usage: ./configure [ variable=value ]...This configure script generates the file 'makefile' and the file'../include/NTL/config.h', based upon the values assigned to thevariables on the command line.Note that all of these configuration options can also be set by editing these two (well documented) files by hand.This command is intended only to provide a slightly more convenientand (perhaps more importantly) non-interactive way to do this.This script does not perform any 'magic', like finding out whatthe local C compiler is called, etc.  If the defaults are notcorrect for your platform, you have to set an appropriate variable.########### Here are the most important variables, and their default values.CC=gcc               # The C compilerCXX=g++              # The C++ compilerCFLAGS=-O2           # C complilation flagsCXXFLAGS=$(CFLAGS)   # C++ compilation flags (by default, same as CFLAGS)PREFIX=/usr/local    # Directory in which to install NTL library componentsNTL_STD_CXX=off      # ISO Mode switchNTL_GMP_LIP=off      # Switch to enable the use of GMP as primary                      #   long integer packageNTL_GMP_HACK=off     # Switch to enable the use of GMP as supplemental                     #   long integer packageGMP_PREFIX=none      # Directory in which GMP components have been installed########## Here are more detailed description of these variables.########## Basic compilation variables:CC=gcc# A C or C++ compiler, e. g., gcc, cc, xlc.# There are a few components written in C which may be compiled# under C++, but C compilers tend to generate slightly better code.# The C++ and C compilers (if different) must generate# compatible code.CXX=g++# A C++ compiler, e.g., g++, CC, xlCCFLAGS=-O2# Flags for the C compiler# Some useful flags:#   -O2   --  recommended level of optimization#   -g    --  debugging#   -mv8  --  needed with gcc/g++ to get the full instruction set#             of a SparcStation#   -qarch=ppc  -- needed with xlc/C to get the full instruction set#                  of a PowerPCCXXFLAGS=$(CFLAGS)# Flags for the C++ compiler (usually the same as CFLAGS)# Some useful flags:#   -+  -- needed with xlC to make it treat .c files as C++ files########## Installation path:PREFIX=/usr/local# Set this to the directory in which you want NTL components to be# installed.  When 'make install' is executed, the header# files are copied into $(PREFIX)/include/NTL, the library itself is# copied to $(PREFIX)/lib/libntl.a, and the documentation files# are copied into $(PREFIX)/doc/NTL.# Unless you have root permissions when running 'make install',# you will have to override the default PREFIX value with the# name of your own local directory.# If you want finer-grained control over where the different# library components are installed, set the variables # INCLUDEDIR, LIBDIR, and DOCDIR (see below).########## ISO mode switch:NTL_STD_CXX=off# Set to 'on' if you want to use the "Standard C++" version of NTL.# In this version, all of NTL is "wrapped" inside the namespace NTL,# and are no longer directly accessible---you must either use# explicit qualification, or using directives, or using declarations.# However, note that all names that begin with "NTL_" are macros,# and as such do not belong to any namespace.# Additionally, instead of including the standard headers# <stdlib.h>, <math.h>, and <iostream.h>, the standard headers# <cstdlib>, <cmath>, and <iostream> are included.# These "wrap" some (but not all) names in namespace std.########## GMP variables:NTL_GMP_LIP=off# Set to 'on' if you want to use GMP, the GNU Multi-Precision package,# as the primary long integer package.# This will typically yield significantly faster long integer arithmetic # compared to the traditional long integer package, and will yield somewhat# faster long integer arithmetic compared the traditinal package# supplemented by GMP (i.e., the NTL_GMP_HACK flag).NTL_GMP_HACK=off# Set to 'on' if you want to use GMP, the GNU Multi-Precision package,# as a supplemental long integer package.# This will typically yield significantly faster long integer arithmetic # compared  to the traditional long integer package, while still maintaining# complete backward compataibility with code that uses the traditional# long integer package.# If you set either of the above two flags, note the following.# If you have installed GMP in a standard location, this is# all you have to do.  Otherwise, if GMP is built, but not installed# in a standard place, you have to set either the variable GMP_PREFIX,# or alternatively, the the variables GMP_INC and GMP_LIB as well (see below).GMP_PREFIX=none# If GMP was installed in a standard system directory, e.g., /usr/local,# then do not set this variable.# Otherwise, if you want to use GMP and GMP was installed in# a directory <gmp_prefix>, then set GMP_PREFIX=<gmp_prefix>.# This works if the directory <gmp_prefix>/include contains gmp.h# and <gmp_prefix>/lib contains libgmp.a; otherwise, do not set# this variable, and set the variables GMP_INC and GMP_LIB below.########### Examples:# If you are happy with all the default values:   ./configure# Actually, the initially installed makefile and config.h files# already reflect the default values. # If your C/C++ compilers are called cc/CC:   ./configure CC=cc CXX=CC# If GMP is installed in a standard system directory, and you want to use it:   ./configure NTL_GMP_LIP=on# If GMP was installed in a non-standard directory foo:   ./configure NTL_GMP_LIP=on GMP_PREFIX=foo # If you want to use the options -g and -O for compiling C and C++,# just execute   ./configure "CFLAGS=-g -O"# Note the use of quotes to keep the argument in one piece.# If you want to use GMP as well as ISO mode:   ./configure NTL_GMP_LIP=on NTL_STD_CXX=on########### Here is a complete list of the remaining variables,########### with their default values.  These variables are pretty ########### esoteric, and you will probably never change their########### default values.AR=arARFLAGS=ruvRANLIB=ranlibLDFLAGS=LDFLAGS_CXX=$(LDFLAGS)LDLIBS=-lmLDLIBS_CXX=$(LDLIBS)CPPFLAGS=LIBDIR=$(PREFIX)/libINCLUDEDIR=$(PREFIX)/includeDOCDIR=$(PREFIX)/includeNTL_LONG_LONG_TYPE=long longNTL_CXX_ONLY=offNTL_RANGE_CHECK=offNTL_X86_FIX=offNTL_NO_X86_FIX=offNTL_NO_INIT_TRANS=offWIZARD=onNTL_LONG_LONG=offNTL_AVOID_FLOAT=offNTL_TBL_REM=offNTL_AVOID_BRANCHING=offNTL_FFT_PIPELINE=off########### Here is a more detailed description of these variables.########### Further compilation variables:AR=ar# command to make a libraryARFLAGS=ruv# arguments for ARRANLIB=ranlib# set to echo if you want to disable it completelyLDFLAGS=# arguments for linker for C++ programsLDFLAGS_CXX=$(LDFLAGS)# libraries for linking C programsLDLIBS=-lm# libraries for linking C++ programsLDLIBS_CXX=$(LDLIBS)# libraries for linking C++ programsCPPFLAGS=# arguments for the C preprocessor########### Details of the compilation process:# When a C file foo.c is compiled:   $(CC) -I../include $(CPPFLAGS) $(CFLAGS) -c foo.c# When a C file foo.c is compiled and linked:   $(CC) -I../include $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o foo foo.c $(LDLIBS)# When a C++ file foo.c is compiled:   $(CXX) -I../include $(CPPFLAGS) $(CXXFLAGS) -c foo.c# When a C++ file foo.c is compiled and linked:   $(CXX) -I../include $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS_CXX) \       -o foo foo.c $(LDLIBS_CXX)# When the library ntl.a is built:   $(AR) $(ARFLAGS) ntl.a [ object files ]...   $(RANLIB) ntl.a# If the ranlib command does not exist, everything will still function OK.########### Further installation variables:LIBDIR=$(PREFIX)/libINCLUDEDIR=$(PREFIX)/includeDOCDIR=$(PREFIX)/doc# Where to install NTL.# Execution of 'make install' copies header files into $(INCLUDEDIR)/NTL,# copies the library itself to $(LIBDIR)/libntl.a, and copies the# documentation files into $(DOCDIR)/NTL.########### Basic Configuration Options:NTL_LONG_LONG_TYPE=long long# Name of double-word signed integer type.# This is a non-standard type, and is called 'long long' by many# compilers.  MS C++ calls it '__int64'.NTL_CXX_ONLY=off# It is possible to compile everything using C++ only.# If you want to do this, CC and CXX should both be C++ compilers.# You may also want to set NTL_CXX_ONLY=on, which eliminates some# "C" linkage that is no longer necessary.# However, it should still work without it.# # This flag can be set independently of NTL_STD_CXX.# All functions that may have "C" linkage are never wrapped in# namespace NTL;  instead, their names always start with "_ntl_",# and as such, they should not conflict with other global names.NTL_RANGE_CHECK=off# Setting this to 'on' will generate vector subscript range-check code.# Useful for debugging, but it slows things down of course.NTL_X86_FIX=off# Set to 'on' to force the "x86 floating point fix", # overriding the default behavior.# By default, NTL will apply the "fix" if it looks like it is# necessary, and if knows how to fix it.# The problem addressed here is that x86 processors sometimes# run in a mode where FP registers have more precision than doubles.# This will cause code in quad_float.c some trouble.# NTL can normally correctly detect the problem, and fix it,# so you shouldn't need to worry about this or the next flag.NTL_NO_X86_FIX=off# Set to 'on' to forces no "x86 floating point fix", # overriding the default behavior.NTL_NO_INIT_TRANS=off# When 'off', NTL uses a special code sequence to avoid# copying large objects in return statements.  However, if your# compiler optimizes away the return of a *named* local object,# this is not necessary, and setting this flag to 'on' will result# in *slightly* more compact and efficient code.  Although# the emeriging C++ standard allows compilers to perform# this optimization, I know of none that currently do.# Most will avoid copying *temporary* objects in return statements,# and NTL's default code sequence exploits this fact.########## Performance Options:WIZARD=on# Set to 'off' if you want to bypass the wizard; otherwise, set to 'on'.# The wizard is a script that runs when NTL is built that sets the following# flags to 'optimize' performance on the current platform.NTL_LONG_LONG=off# For platforms that support it, this flag can be set to cause# the low-level multiplication code to use the type "long long",# which on some platforms yields a significant performance gain,# but on others, it can yield no improvement and can even# slow things down.# The variable NTL_LONG_LONG_TYPE can be defined to use a type name# other than "long long".# If you set NTL_LONG_LONG, you might also want to set# the flag NTL_TBL_REM.NTL_AVOID_FLOAT=off# On machines with slow floating point or---more comminly---slow int/float# conversions, this flag can lead to faster code.# If you set NTL_AVOID_FLOAT, you should probably also# set NTL_TBL_REM.# Note that at most one of NTL_LONG_LONG and NTL_AVOID_FLOAT may be set.NTL_TBL_REM=off# With this flag, some divisions are avoided in the# ZZ_pX multiplication routines.  If you use the NTL_AVOID_FLOAT# or NTL_LONG_LONG flags, then you should probably use this one too.NTL_AVOID_BRANCHING=off# With this option, branches are replaced at several# key points with equivalent code using shifts and masks.# Recommended for use with RISC architectures, especially# ones with deep pipelines and high branch penalities.# This flag is becoming less helpful as newer machines# have much smaller branch penalties, but still may be worth a try.NTL_FFT_PIPELINE=off# If using NTL_AVOID_BRANCHING, you might want to try this as well.#This causes the FFT routine to use a software pipeline.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩中文字幕一区| 日韩av一区二区三区| 精品成人在线观看| 欧美精选午夜久久久乱码6080| 在线一区二区三区四区五区| 99re热视频这里只精品| 99精品热视频| 色av综合在线| 欧美日韩激情在线| 日韩精品专区在线| 久久婷婷成人综合色| 久久久久99精品一区| 国产精品伦一区二区三级视频| 亚洲国产精品精华液2区45| 日韩一区中文字幕| 亚洲韩国精品一区| 久久国产精品99久久人人澡| 国产一区 二区| 成人av免费观看| 欧日韩精品视频| 欧美一区二区三区免费| 久久日韩粉嫩一区二区三区| 国产精品久久国产精麻豆99网站| 亚洲欧美日韩在线不卡| 亚洲午夜精品17c| 麻豆一区二区三区| 99精品视频一区| 日韩欧美亚洲一区二区| 国产精品色哟哟| 日韩精品电影一区亚洲| 欧美在线不卡视频| 精品国产乱码久久久久久闺蜜| 国产精品素人一区二区| 三级不卡在线观看| av成人老司机| 欧美成人r级一区二区三区| 亚洲欧洲99久久| 久久国产精品露脸对白| 一本久道中文字幕精品亚洲嫩| 日韩亚洲欧美成人一区| 一区二区三区日本| 国产一区不卡视频| 欧美精品aⅴ在线视频| 亚洲国产精品精华液2区45| 人人超碰91尤物精品国产| 91在线国产福利| 久久久久久99久久久精品网站| 亚洲第四色夜色| 一本大道av一区二区在线播放 | 777久久久精品| 国产日产欧美一区| 久久精品国产99久久6| 在线日韩国产精品| 最新成人av在线| 国产成人综合网| 亚洲精品在线三区| 麻豆成人久久精品二区三区红| 91麻豆视频网站| 亚洲欧洲成人精品av97| 风间由美一区二区av101| 欧美成人一级视频| 美女视频黄久久| 日韩午夜在线影院| 日韩二区三区四区| 欧美日本在线播放| 五月综合激情婷婷六月色窝| 色婷婷av一区| 夜夜爽夜夜爽精品视频| 91麻豆精东视频| 自拍偷自拍亚洲精品播放| 成人午夜av电影| 国产精品久久久久aaaa| 99vv1com这只有精品| 日韩美女视频一区二区在线观看| 久久久久久99精品| 日韩av中文字幕一区二区三区| 99久久久无码国产精品| 国产亚洲污的网站| 粉嫩av一区二区三区粉嫩| 国产欧美日韩麻豆91| 国产乱码一区二区三区| 日本一区二区三区电影| 粉嫩av亚洲一区二区图片| 国产精品女人毛片| 99精品桃花视频在线观看| 亚洲色欲色欲www| 91国模大尺度私拍在线视频| 亚洲无人区一区| 日韩欧美一级二级| 国产福利不卡视频| 中文字幕亚洲欧美在线不卡| 在线看国产一区| 日韩av一级片| 国产欧美日韩精品一区| 色妞www精品视频| 日韩精品电影在线| 2020国产精品| 91免费版pro下载短视频| 亚洲最大成人网4388xx| 欧美电影一区二区| 国产久卡久卡久卡久卡视频精品| 国产精品久久久久久户外露出| 色偷偷成人一区二区三区91| 免费高清不卡av| 国产精品网站在线播放| 欧美日韩一区二区三区四区| 国产在线精品一区二区不卡了| 国产精品久久久久久久久久久免费看 | 国产精品综合视频| 亚洲精品菠萝久久久久久久| 日韩欧美精品在线| 99久久精品免费看| 久久99日本精品| 亚洲特黄一级片| 久久综合色一综合色88| 91久久一区二区| 国产露脸91国语对白| 性做久久久久久免费观看欧美| 久久伊人中文字幕| 欧美日韩免费视频| 99国产精品国产精品毛片| 免费成人在线视频观看| 依依成人精品视频| 国产精品素人一区二区| 精品国产一区a| 91精品麻豆日日躁夜夜躁| av一二三不卡影片| 国内精品在线播放| 喷水一区二区三区| 亚洲狠狠爱一区二区三区| 一区在线观看免费| 久久久精品综合| 精品国产污网站| 3d成人动漫网站| 欧美人体做爰大胆视频| 在线免费av一区| 日本韩国欧美在线| 91蜜桃免费观看视频| 不卡电影一区二区三区| 国产成人av电影在线| 国产一区二区三区视频在线播放| 日本欧美肥老太交大片| 亚洲成人av免费| 亚洲在线成人精品| 亚洲国产精品久久人人爱蜜臀 | 精品少妇一区二区三区免费观看| 欧美日韩一区二区在线观看| 欧美在线视频你懂得| 色激情天天射综合网| 91福利在线播放| 欧美三日本三级三级在线播放| 欧日韩精品视频| 欧美日韩视频在线一区二区 | 亚洲精品一区二区三区影院 | 偷拍一区二区三区| 舔着乳尖日韩一区| 免费观看在线色综合| 久久99精品国产91久久来源| 国产一区二区不卡老阿姨| 国产精品69毛片高清亚洲| 懂色一区二区三区免费观看 | 久久99热国产| 岛国一区二区三区| 91麻豆6部合集magnet| 在线视频一区二区免费| 欧美三级视频在线| 欧美va天堂va视频va在线| 久久日韩精品一区二区五区| 亚洲国产精品激情在线观看| 亚洲三级电影网站| 午夜精品久久一牛影视| 精品一区二区三区免费观看 | 99re这里只有精品6| 欧美日韩在线播放一区| 日韩美女视频一区二区在线观看| 久久久久国产一区二区三区四区| 亚洲欧美综合在线精品| 日韩国产欧美在线播放| 国产成人免费xxxxxxxx| 91亚洲永久精品| 日韩欧美国产1| 中文字幕一区二区日韩精品绯色| 亚洲小说春色综合另类电影| 九九**精品视频免费播放| 91免费版在线| 欧美精品一区二区久久久| 日韩伦理电影网| 久久国产剧场电影| 91福利资源站| 国产欧美日本一区视频| 亚洲v日本v欧美v久久精品| 国产九色sp调教91| 7777精品伊人久久久大香线蕉完整版| 精品国精品自拍自在线| 亚洲一区二区三区不卡国产欧美| 国产馆精品极品| 日韩视频免费观看高清完整版在线观看 | 亚洲成av人**亚洲成av**| 国产盗摄女厕一区二区三区| 欧美另类久久久品|