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

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

?? stl_config.h

?? TSP問題的一個類庫 有源代碼和stl
?? H
?? 第 1 頁 / 共 2 頁
字號:
/*
 *
 * Copyright (c) 1994
 * Hewlett-Packard Company
 *
 * Permission to use, copy, modify, distribute and sell this software
 * and its documentation for any purpose is hereby granted without fee,
 * provided that the above copyright notice appear in all copies and
 * that both that copyright notice and this permission notice appear
 * in supporting documentation.  Hewlett-Packard Company makes no
 * representations about the suitability of this software for any
 * purpose.  It is provided "as is" without express or implied warranty.
 *
 * Copyright (c) 1997
 * Silicon Graphics
 *
 * Permission to use, copy, modify, distribute and sell this software
 * and its documentation for any purpose is hereby granted without fee,
 * provided that the above copyright notice appear in all copies and
 * that both that copyright notice and this permission notice appear
 * in supporting documentation.  Silicon Graphics makes no
 * representations about the suitability of this software for any
 * purpose.  It is provided "as is" without express or implied warranty.
 *
 */

#ifndef __STL_CONFIG_H
# define __STL_CONFIG_H

// Flags:
// * __STL_NO_BOOL: defined if the compiler doesn't have bool as a builtin
//   type.
// * __STL_HAS_WCHAR_T: defined if the compier has wchar_t as a builtin type.
// * __STL_NO_DRAND48: defined if the compiler doesn't have the drand48 
//   function.
// * __STL_STATIC_TEMPLATE_MEMBER_BUG: defined if the compiler can't handle
//   static members of template classes.
// * __STL_STATIC_CONST_INIT_BUG: defined if the compiler can't handle a
//   constant-initializer in the declaration of a static const data member
//   of integer type.  (See section 9.4.2, paragraph 4, of the C++ standard.)
// * __STL_CLASS_PARTIAL_SPECIALIZATION: defined if the compiler supports
//   partial specialization of template classes.
// * __STL_PARTIAL_SPECIALIZATION_SYNTAX: defined if the compiler 
//   supports partial specialization syntax for full specialization of
//   class templates.  (Even if it doesn't actually support partial 
//   specialization itself.)
// * __STL_FUNCTION_TMPL_PARTIAL_ORDER: defined if the compiler supports
//   partial ordering of function templates.  (a.k.a partial specialization
//   of function templates.)
// * __STL_MEMBER_TEMPLATES: defined if the compiler supports template
//   member functions of classes.
// * __STL_MEMBER_TEMPLATE_CLASSES: defined if the compiler supports 
//   nested classes that are member templates of other classes.
// * __STL_EXPLICIT_FUNCTION_TMPL_ARGS: defined if the compiler 
//   supports calling a function template by providing its template
//   arguments explicitly.
// * __STL_LIMITED_DEFAULT_TEMPLATES: defined if the compiler is unable
//   to handle default template parameters that depend on previous template
//   parameters.
// * __STL_NON_TYPE_TMPL_PARAM_BUG: defined if the compiler has trouble with
//   function template argument deduction for non-type template parameters.
// * __SGI_STL_NO_ARROW_OPERATOR: defined if the compiler is unable
//   to support the -> operator for iterators.
// * __STL_DEFAULT_CONSTRUCTOR_BUG: defined if T() does not work properly
//   when T is a builtin type.
// * __STL_USE_EXCEPTIONS: defined if the compiler (in the current compilation
//   mode) supports exceptions.
// * __STL_USE_NAMESPACES: defined if the compiler has the necessary
//   support for namespaces.
// * __STL_NO_EXCEPTION_HEADER: defined if the compiler does not have a
//   standard-conforming header <exception>.
// * __STL_NO_BAD_ALLOC: defined if the compiler does not have a <new>
//   header, or if <new> does not contain a bad_alloc class.  If a bad_alloc
//   class exists, it is assumed to be in namespace std.
// * __STL_SGI_THREADS: defined if this is being compiled for an SGI IRIX
//   system in multithreaded mode, using native SGI threads instead of 
//   pthreads.
// * __STL_WIN32THREADS: defined if this is being compiled on a WIN32
//   compiler in multithreaded mode.
// * __STL_PTHREADS: defined if we should use portable pthreads
//   synchronization.
// * __STL_UITHREADS: defined if we should use UI / solaris / UnixWare threads
//   synchronization.  UIthreads are similar to pthreads, but are based 
//   on an earlier version of the Posix threads standard.
// * __STL_LONG_LONG if the compiler has long long and unsigned long long
//   types.  (They're not in the C++ standard, but they are expected to be 
//   included in the forthcoming C9X standard.)
// * __STL_THREADS is defined if thread safety is needed.
// * __STL_VOLATILE is deifined to be "volatile" if threads are being
//   used, and the empty string otherwise.


// User-settable macros that control compilation:
// * __STL_USE_SGI_ALLOCATORS: if defined, then the STL will use older
//   SGI-style allocators, instead of standard-conforming allocators,
//   even if the compiler supports all of the language features needed
//   for standard-conforming allocators.
// * __STL_NO_NAMESPACES: if defined, don't put the library in namespace
//   std, even if the compiler supports namespaces.
// * __STL_NO_RELOPS_NAMESPACE: if defined, don't put the relational
//   operator templates (>, <=. >=, !=) in namespace std::rel_ops, even
//   if the compiler supports namespaces and partial ordering of
//   function templates.
// * __STL_ASSERTIONS: if defined, then enable runtime checking through the
//   __stl_assert macro.
// * _PTHREADS: if defined, use Posix threads for multithreading support.
// * _UITHREADS:if defined, use SCO/Solaris/UI threads for multithreading 
//   support
// * _NOTHREADS: if defined, don't use any multithreading support.  
// * __STL_USE_NEW_IOSTREAMS: if defined, then the STL will use new,
//   standard-conforming iostreams (e.g. the <iosfwd> header).  If not
//   defined, the STL will use old cfront-style iostreams (e.g. the
//   <iostream.h> header).

// Other macros defined by this file:

// * bool, true, and false, if __STL_NO_BOOL is defined.
// * typename, as a null macro if it's not already a keyword.
// * explicit, as a null macro if it's not already a keyword.
// * namespace-related macros (__STD, __STL_BEGIN_NAMESPACE, etc.)
// * exception-related macros (__STL_TRY, __STL_UNWIND, etc.)
// * __stl_assert, either as a test or as a null macro, depending on
//   whether or not __STL_ASSERTIONS is defined.

# if defined(_PTHREADS) && !defined(_NOTHREADS)
#     define __STL_PTHREADS
# endif

# if defined(_UITHREADS) && !defined(_PTHREADS) && !defined(_NOTHREADS)
#     define __STL_UITHREADS
# endif

# if defined(__sgi) && !defined(__GNUC__)
#   include <standards.h>
#   if !defined(_BOOL)
#     define __STL_NO_BOOL
#   endif
#   if defined(_MIPS_SIM) && _MIPS_SIM == _ABIO32
#     define __STL_STATIC_CONST_INIT_BUG
#   endif
#   if defined(_WCHAR_T_IS_KEYWORD)
#     define __STL_HAS_WCHAR_T 
#   endif
#   if !defined(_TYPENAME_IS_KEYWORD)
#     define __STL_NEED_TYPENAME
#   endif
#   ifdef _PARTIAL_SPECIALIZATION_OF_CLASS_TEMPLATES
#     define __STL_CLASS_PARTIAL_SPECIALIZATION
#   endif
#   if (_COMPILER_VERSION >= 730) && defined(_MIPS_SIM) && _MIPS_SIM != _ABIO32
#     define __STL_FUNCTION_TMPL_PARTIAL_ORDER
#   endif
#   ifdef _MEMBER_TEMPLATES
#     define __STL_MEMBER_TEMPLATES
#     define __STL_MEMBER_TEMPLATE_CLASSES
#   endif
#   if defined(_MEMBER_TEMPLATE_KEYWORD)
#     define __STL_MEMBER_TEMPLATE_KEYWORD
#   endif
#   if defined(_STANDARD_C_PLUS_PLUS)
#     define __STL_EXPLICIT_FUNCTION_TMPL_ARGS
#   endif
#   if (_COMPILER_VERSION >= 730) && defined(_MIPS_SIM) && _MIPS_SIM != _ABIO32
#     define __STL_MEMBER_TEMPLATE_KEYWORD
#   endif
#   if defined(_MIPS_SIM) && _MIPS_SIM == _ABIO32
#     define __STL_DEFAULT_CONSTRUCTOR_BUG
#   endif
#   if !defined(_EXPLICIT_IS_KEYWORD)
#     define __STL_NEED_EXPLICIT
#   endif
#   ifdef __EXCEPTIONS
#     define __STL_USE_EXCEPTIONS
#   endif
#   if (_COMPILER_VERSION >= 721) && defined(_NAMESPACES)
#     define __STL_HAS_NAMESPACES
#   endif 
#   if (_COMPILER_VERSION < 721)
#     define __STL_NO_EXCEPTION_HEADER
#   endif
#   if _COMPILER_VERSION < 730 || !defined(_STANDARD_C_PLUS_PLUS) || \
      !defined(_NAMESPACES)
#     define __STL_NO_BAD_ALLOC
#   endif
#   if !defined(_NOTHREADS) && !defined(__STL_PTHREADS)
#     define __STL_SGI_THREADS
#   endif
#   if defined(_LONGLONG) && defined(_SGIAPI) && _SGIAPI
#     define __STL_LONG_LONG
#   endif
#   if _COMPILER_VERSION >= 730 && defined(_STANDARD_C_PLUS_PLUS)
#     define __STL_USE_NEW_IOSTREAMS
#   endif
#   if _COMPILER_VERSION >= 730 && defined(_STANDARD_C_PLUS_PLUS)
#     define __STL_CAN_THROW_RANGE_ERRORS
#   endif
#   if _COMPILER_VERSION >= 730 && defined(_STANDARD_C_PLUS_PLUS)
#     define __SGI_STL_USE_AUTO_PTR_CONVERSIONS
#   endif
# endif


/*
 * Jochen Schlick '1999  - added new #defines (__STL)_UITHREADS (for 
 *                         providing SCO / Solaris / UI thread support)
 *                       - added the necessary defines for the SCO UDK 7 
 *                         compiler (and its template friend behavior)
 *                       - all UDK7 specific STL changes are based on the 
 *                         macro __USLC__ being defined
 */
// SCO UDK 7 compiler (UnixWare 7x, OSR 5, UnixWare 2x)
# if defined(__USLC__)
#     define __STL_HAS_WCHAR_T 
#     define __STL_CLASS_PARTIAL_SPECIALIZATION
#     define __STL_PARTIAL_SPECIALIZATION_SYNTAX
#     define __STL_FUNCTION_TMPL_PARTIAL_ORDER
#     define __STL_MEMBER_TEMPLATES
#     define __STL_MEMBER_TEMPLATE_CLASSES
#     define __STL_USE_EXCEPTIONS
#     define __STL_HAS_NAMESPACES
#     define __STL_USE_NAMESPACES
#     define __STL_LONG_LONG
#     if defined(_REENTRANT)
#           define _UITHREADS     /* if      UnixWare < 7.0.1 */
#           define __STL_UITHREADS
//   use the following defines instead of the UI threads defines when
//   you want to use POSIX threads
//#         define _PTHREADS      /* only if UnixWare >=7.0.1 */
//#         define __STL_PTHREADS
#     endif
# endif



# ifdef __GNUC__
#   if __GNUC__ == 2 && __GNUC_MINOR__ <= 7
#     define __STL_STATIC_TEMPLATE_MEMBER_BUG
#   endif
#   if __GNUC__ < 2 
#     define __STL_NEED_TYPENAME
#     define __STL_NEED_EXPLICIT
#   endif
#   if __GNUC__ == 2 && __GNUC_MINOR__ >= 8
#     define __STL_CLASS_PARTIAL_SPECIALIZATION
#     define __STL_FUNCTION_TMPL_PARTIAL_ORDER
#     define __STL_EXPLICIT_FUNCTION_TMPL_ARGS
#     define __STL_MEMBER_TEMPLATES
#     define __STL_CAN_THROW_RANGE_ERRORS
      //    g++ 2.8.1 supports member template functions, but not member
      //    template nested classes.
#     if __GNUC_MINOR__ >= 9
#       define __STL_MEMBER_TEMPLATE_CLASSES
#       define __SGI_STL_USE_AUTO_PTR_CONVERSIONS
#     endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91小视频在线| 国产精品人成在线观看免费| 精品国产乱码久久久久久图片| 一区二区三区成人| 色av成人天堂桃色av| 亚洲成av人片一区二区三区| 91精品国产入口在线| 美女视频网站黄色亚洲| 久久久亚洲高清| 99精品在线免费| 日本成人在线看| 亚洲天堂精品在线观看| 欧美精品一二三四| 国产91精品免费| 亚洲一区中文日韩| 国产精品久久久久久久午夜片 | 欧美日韩一区二区在线观看视频| 婷婷久久综合九色综合绿巨人| 日韩欧美一级特黄在线播放| 成人黄色av网站在线| 天天免费综合色| 麻豆91精品视频| 粉嫩av一区二区三区| 色综合久久99| 成人精品鲁一区一区二区| 五月婷婷色综合| 国内精品第一页| 亚洲精品中文在线影院| 国产亚洲成年网址在线观看| 欧美色综合久久| 在线观看91精品国产入口| 成人午夜免费电影| 欧美欧美欧美欧美| 欧美私人免费视频| 日韩一区二区三区精品视频| 欧美三级三级三级爽爽爽| 精品国产一区二区三区av性色| 日本一区二区电影| 久久久99精品久久| 天天影视涩香欲综合网| 国产成人综合在线观看| 加勒比av一区二区| 激情五月婷婷综合网| 色美美综合视频| 国产午夜三级一区二区三| 亚洲电影在线播放| 日韩中文字幕一区二区三区| 亚洲成人av免费| 成人h精品动漫一区二区三区| 51午夜精品国产| 欧美大黄免费观看| 亚洲午夜电影在线| 99久久精品国产一区| 精品国产精品一区二区夜夜嗨| 亚洲男人的天堂av| 爽好多水快深点欧美视频| 99精品桃花视频在线观看| 国产人成亚洲第一网站在线播放| 国产精品成人免费在线| 国产一区二区三区免费播放| 成人综合激情网| 久久综合色综合88| 国产精品欧美极品| 国产精品香蕉一区二区三区| 97成人超碰视| 国产精品久久久久9999吃药| 国产一区二区三区在线观看免费 | 国产精品一区二区男女羞羞无遮挡| 欧美性欧美巨大黑白大战| 亚洲视频在线观看三级| 成人午夜免费视频| 中文字幕一区二区三区蜜月| 亚洲午夜成aⅴ人片| 91久久一区二区| 亚洲一区在线观看视频| 在线观看视频一区| 亚洲成av人片在线观看| 欧美日韩的一区二区| 日韩成人免费电影| 日韩欧美在线不卡| 国产在线播放一区| 欧美韩国日本综合| 97久久精品人人做人人爽| 国产精品久久99| 色噜噜狠狠色综合中国| 亚洲一区二区在线视频| 欧美日韩美女一区二区| 免费xxxx性欧美18vr| 日本韩国一区二区三区视频| 六月丁香婷婷色狠狠久久| av电影在线观看一区| 欧美xxxxxxxx| 亚洲成av人片| 欧美挠脚心视频网站| 免费不卡在线观看| 国产视频一区不卡| zzijzzij亚洲日本少妇熟睡| 亚洲日穴在线视频| 欧美日本一道本在线视频| 麻豆一区二区三| 日本一区二区三区四区| 色美美综合视频| 免费成人你懂的| 久久精品夜夜夜夜久久| 色悠悠久久综合| 蜜臀av亚洲一区中文字幕| 国产精品国产三级国产普通话蜜臀 | 日韩高清不卡在线| 精品国产伦一区二区三区观看方式| 成人晚上爱看视频| 亚洲柠檬福利资源导航| 欧美无砖专区一中文字| 美女一区二区视频| 亚洲精品中文字幕在线观看| 日韩一级片在线观看| 成人午夜激情在线| 偷偷要91色婷婷| 中文字幕av一区二区三区免费看 | 日产精品久久久久久久性色 | 成人一级片在线观看| 亚洲福利视频导航| 国产精品免费av| 91精品婷婷国产综合久久性色| 国产成人久久精品77777最新版本| 亚洲在线视频网站| 国产精品久久久一本精品| 91精品国产91久久久久久最新毛片 | 国产网站一区二区三区| 欧美色图片你懂的| 成人黄色在线看| 国内外成人在线| 青青草国产成人av片免费| 亚洲六月丁香色婷婷综合久久 | 4438x成人网最大色成网站| 成人免费毛片嘿嘿连载视频| 蜜桃视频一区二区三区| 亚洲图片有声小说| 一区二区三区高清在线| 亚洲人妖av一区二区| 久久久久久**毛片大全| 精品久久久久久久一区二区蜜臀| 欧美精品在线观看播放| 欧美影视一区二区三区| 91丨九色丨蝌蚪丨老版| 成人性生交大片免费看中文网站 | 中文字幕av一区二区三区免费看| 欧美一二三四区在线| 91精品国产乱码久久蜜臀| 欧美午夜精品免费| 欧美在线free| 色综合天天综合网天天看片| 亚洲国产日产av| 一区二区三区四区激情| 伊人色综合久久天天人手人婷| 亚洲三级电影全部在线观看高清| 国产精品久久国产精麻豆99网站| 国产偷v国产偷v亚洲高清| 亚洲精品一区二区三区四区高清| 91精品国产一区二区三区香蕉| 欧美日韩不卡在线| 欧美一卡2卡三卡4卡5免费| 正在播放亚洲一区| 日韩视频免费观看高清完整版 | 精品国产伦一区二区三区免费 | 韩日欧美一区二区三区| 国产在线视视频有精品| 国产精一品亚洲二区在线视频| 久久成人久久鬼色| 成人晚上爱看视频| 在线亚洲人成电影网站色www| 欧美性做爰猛烈叫床潮| 欧美精品vⅰdeose4hd| www激情久久| 亚洲桃色在线一区| 丝袜亚洲另类欧美综合| 黄色精品一二区| 91亚洲资源网| 欧美日韩国产天堂| 精品久久久久久久久久久久久久久 | 欧美性猛片aaaaaaa做受| 69av一区二区三区| 伊人开心综合网| 精品亚洲国产成人av制服丝袜| 国产高清成人在线| 欧美在线一二三| 精品久久人人做人人爱| 亚洲欧美中日韩| 日本欧美久久久久免费播放网| 国产在线国偷精品产拍免费yy| 成人av免费在线播放| 欧美高清dvd| 一区视频在线播放| 男人的j进女人的j一区| av欧美精品.com| 精品国精品自拍自在线| 亚洲一区二区五区| 成人午夜精品在线| 精品国产成人在线影院| 亚洲一区二区在线免费看| 成人在线视频一区二区|