support.hh cassert gecode/support/config.hpp gecode/support/auto-link.hpp gecode/support/macros.hpp gecode/support/exception.hpp gecode/support/cast.hpp gecode/support/thread.hpp gecode/support/heap.hpp gecode/support/marked-pointer.hpp gecode/support/int-type.hpp gecode/support/bitset-base.hpp gecode/support/bitset.hpp gecode/support/bitset-offset.hpp gecode/support/block-allocator.hpp gecode/support/dynamic-array.hpp gecode/support/dynamic-queue.hpp gecode/support/dynamic-stack.hpp gecode/support/random.hpp gecode/support/sort.hpp gecode/support/static-stack.hpp gecode/support/thread/none.hpp gecode/support/thread/thread.hpp gecode/support/timer.hpp gecode/support/hw-rnd.hpp /usr/include/gecode/kernel.hh GECODE_MSC_VIRTUAL GECODE_SUPPORT_EXPORT GECODE_VTABLE_EXPORT GECODE_LIBRARY_NAME "Support" /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2007 * *Lastmodified: *$Date:2013-07-1502:49:56+0200(Mon,15Jul2013)$by$Author:tack$ *$Revision:13879$ * *ThisfileispartofGecode,thegenericconstraint *developmentenvironment: *http://www.gecode.org * *Permissionisherebygranted,freeofcharge,toanypersonobtaining *acopyofthissoftwareandassociateddocumentationfiles(the *"Software"),todealintheSoftwarewithoutrestriction,including *withoutlimitationtherightstouse,copy,modify,merge,publish, *distribute,sublicense,and/orsellcopiesoftheSoftware,andto *permitpersonstowhomtheSoftwareisfurnishedtodoso,subjectto *thefollowingconditions: * *Theabovecopyrightnoticeandthispermissionnoticeshallbe *includedinallcopiesorsubstantialportionsoftheSoftware. * *THESOFTWAREISPROVIDED"ASIS",WITHOUTWARRANTYOFANYKIND, *EXPRESSORIMPLIED,INCLUDINGBUTNOTLIMITEDTOTHEWARRANTIESOF *MERCHANTABILITY,FITNESSFORAPARTICULARPURPOSEAND *NONINFRINGEMENT.INNOEVENTSHALLTHEAUTHORSORCOPYRIGHTHOLDERSBE *LIABLEFORANYCLAIM,DAMAGESOROTHERLIABILITY,WHETHERINANACTION *OFCONTRACT,TORTOROTHERWISE,ARISINGFROM,OUTOFORINCONNECTION *WITHTHESOFTWAREORTHEUSEOROTHERDEALINGSINTHESOFTWARE. * */ #ifndef__GECODE_SUPPORT_HH__ #define__GECODE_SUPPORT_HH__ #include<cassert> #include<gecode/support/config.hpp> /* *Linkingandcompilerworkarounds * */ #if!defined(GECODE_STATIC_LIBS)&&\ (defined(__CYGWIN__)||defined(__MINGW32__)||defined(_MSC_VER)) #defineGECODE_MSC_VIRTUALvirtual #ifdefGECODE_BUILD_SUPPORT #defineGECODE_SUPPORT_EXPORT__declspec(dllexport) #else #defineGECODE_SUPPORT_EXPORT__declspec(dllimport) #endif #defineGECODE_VTABLE_EXPORT #else #defineGECODE_MSC_VIRTUAL #ifdefGECODE_GCC_HAS_CLASS_VISIBILITY #defineGECODE_SUPPORT_EXPORT__attribute__((visibility("default"))) #defineGECODE_VTABLE_EXPORT__attribute__((visibility("default"))) #else #defineGECODE_SUPPORT_EXPORT #defineGECODE_VTABLE_EXPORT #endif #endif //Configureauto-linking #ifndefGECODE_BUILD_SUPPORT #defineGECODE_LIBRARY_NAME"Support" #include<gecode/support/auto-link.hpp> #endif //Configurethreads #ifdefGECODE_THREADS_WINDOWS #defineGECODE_HAS_THREADS #endif #ifdefGECODE_THREADS_PTHREADS #defineGECODE_HAS_THREADS #endif /* *Basicsupportneededeverywhere * */ #include<gecode/support/macros.hpp> #include<gecode/support/exception.hpp> #include<gecode/support/cast.hpp> #include<gecode/support/thread.hpp> #include<gecode/support/heap.hpp> #include<gecode/support/marked-pointer.hpp> #include<gecode/support/int-type.hpp> /* *Commondatastructuresandalgorithms * */ #include<gecode/support/bitset-base.hpp> #include<gecode/support/bitset.hpp> #include<gecode/support/bitset-offset.hpp> #include<gecode/support/block-allocator.hpp> #include<gecode/support/dynamic-array.hpp> #include<gecode/support/dynamic-queue.hpp> #include<gecode/support/dynamic-stack.hpp> #include<gecode/support/random.hpp> #include<gecode/support/sort.hpp> #include<gecode/support/static-stack.hpp> /* *Operatingsystemsupport * */ #ifdefGECODE_THREADS_WINDOWS #include<gecode/support/thread/windows.hpp> #endif #ifdefGECODE_THREADS_PTHREADS #include<gecode/support/thread/pthreads.hpp> #endif #ifndefGECODE_HAS_THREADS #include<gecode/support/thread/none.hpp> #endif #include<gecode/support/thread/thread.hpp> #include<gecode/support/timer.hpp> #include<gecode/support/hw-rnd.hpp> #endif //STATISTICS:support-any