kernel.hh cstddef cstdlib cstring cassert gecode/support.hh gecode/support/auto-link.hpp gecode/kernel/exception.hpp gecode/kernel/memory-config.hpp gecode/kernel/memory-manager.hpp gecode/kernel/macros.hpp gecode/kernel/archive.hpp gecode/kernel/global-afc.hpp gecode/kernel/core.hpp gecode/kernel/modevent.hpp gecode/kernel/range-list.hpp gecode/kernel/region.hpp gecode/kernel/var.hpp gecode/kernel/view.hpp gecode/kernel/array.hpp gecode/kernel/shared-array.hpp gecode/kernel/rnd.hpp gecode/kernel/propagator.hpp gecode/kernel/advisor.hpp gecode/kernel/afc.hpp gecode/kernel/branch-traits.hpp gecode/kernel/activity.hpp gecode/kernel/branch-var.hpp gecode/kernel/branch-tiebreak.hpp gecode/kernel/branch-val.hpp gecode/kernel/brancher-merit.hpp gecode/kernel/brancher-view-sel.hpp gecode/kernel/brancher-view.hpp gecode/kernel/brancher-val-sel.hpp gecode/kernel/brancher-val-commit.hpp gecode/kernel/brancher-val-sel-commit.hpp gecode/kernel/brancher-view-val.hpp gecode/kernel/var-imp.hpp gecode/kernel/allocators.hpp /usr/include/gecode/flatzinc.hh /usr/include/gecode/float.hh /usr/include/gecode/gist/node.hh /usr/include/gecode/gist/spacenode.hh /usr/include/gecode/gist/stopbrancher.hh /usr/include/gecode/gist/treecanvas.hh /usr/include/gecode/gist/visualnode.hh /usr/include/gecode/gist.hh /usr/include/gecode/int.hh /usr/include/gecode/iter.hh /usr/include/gecode/kernel/wait.hh /usr/include/gecode/minimodel.hh /usr/include/gecode/search.hh /usr/include/gecode/set.hh Gecode GECODE_KERNEL_EXPORT GECODE_LIBRARY_NAME "Kernel" /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Contributingauthors: *GuidoTack<tack@gecode.org> * *Copyright: *ChristianSchulte,2004 *GuidoTack,2004 * *Lastmodified: *$Date:2013-07-2314:31:03+0200(Tue,23Jul2013)$by$Author:schulte$ *$Revision:13939$ * *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_KERNEL_HH__ #define__GECODE_KERNEL_HH__ #include<cstddef> #include<cstdlib> #include<cstring> #include<cassert> #include<gecode/support.hh> /* *Configurelinking * */ #if!defined(GECODE_STATIC_LIBS)&&\ (defined(__CYGWIN__)||defined(__MINGW32__)||defined(_MSC_VER)) #ifdefGECODE_BUILD_KERNEL #defineGECODE_KERNEL_EXPORT__declspec(dllexport) #else #defineGECODE_KERNEL_EXPORT__declspec(dllimport) #endif #else #ifdefGECODE_GCC_HAS_CLASS_VISIBILITY #defineGECODE_KERNEL_EXPORT__attribute__((visibility("default"))) #else #defineGECODE_KERNEL_EXPORT #endif #endif //Configureauto-linking #ifndefGECODE_BUILD_KERNEL #defineGECODE_LIBRARY_NAME"Kernel" #include<gecode/support/auto-link.hpp> #endif /* *Generalexceptionsandkernelexceptions * */ #include<gecode/kernel/exception.hpp> /* *Basickernelservices * */ #include<gecode/kernel/memory-config.hpp> #include<gecode/kernel/memory-manager.hpp> /* *Macrosforcheckingfailure * */ #include<gecode/kernel/macros.hpp> /* *Gecodekernel * */ #include<gecode/kernel/archive.hpp> #include<gecode/kernel/global-afc.hpp> #include<gecode/kernel/core.hpp> #include<gecode/kernel/modevent.hpp> #include<gecode/kernel/range-list.hpp> /* *Regionmemorymanagement * */ #include<gecode/kernel/region.hpp> /* *Variablesandtestingforsharedvariables * */ #include<gecode/kernel/var.hpp> /* *Views * */ #include<gecode/kernel/view.hpp> /* *Arrays * */ #include<gecode/kernel/array.hpp> #include<gecode/kernel/shared-array.hpp> /* *Randomnumbergenerator(forbranching) * */ #include<gecode/kernel/rnd.hpp> /* *Commonpropagatorandbranchingpatterns * */ namespaceGecode{ GECODE_KERNEL_EXPORTvoid branch(Homehome,void(*f)(Space&home)); } #include<gecode/kernel/propagator.hpp> #include<gecode/kernel/advisor.hpp> #include<gecode/kernel/afc.hpp> #include<gecode/kernel/branch-traits.hpp> #include<gecode/kernel/activity.hpp> #include<gecode/kernel/branch-var.hpp> #include<gecode/kernel/branch-tiebreak.hpp> #include<gecode/kernel/branch-val.hpp> #include<gecode/kernel/brancher-merit.hpp> #include<gecode/kernel/brancher-view-sel.hpp> #include<gecode/kernel/brancher-view.hpp> #include<gecode/kernel/brancher-val-sel.hpp> #include<gecode/kernel/brancher-val-commit.hpp> #include<gecode/kernel/brancher-val-sel-commit.hpp> #include<gecode/kernel/brancher-view-val.hpp> /* *Automaticallygeneratedvariableimplementations * */ #include<gecode/kernel/var-imp.hpp> /* *Allocatorsupport * */ #include<gecode/kernel/allocators.hpp> #endif //STATISTICS:kernel-other