/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Christian Schulte * * Contributing authors: * Guido Tack * * Copyright: * Christian Schulte, 2004 * Guido Tack, 2004 * * This file is part of Gecode, the generic constraint * development environment: * http://www.gecode.org * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * */ #ifndef GECODE_KERNEL_HH #define GECODE_KERNEL_HH #include #include #include #include #include #include #include /* * Configure linking * */ #if !defined(GECODE_STATIC_LIBS) && \ (defined(__CYGWIN__) || defined(__MINGW32__) || defined(_MSC_VER)) #ifdef GECODE_BUILD_KERNEL #define GECODE_KERNEL_EXPORT __declspec( dllexport ) #else #define GECODE_KERNEL_EXPORT __declspec( dllimport ) #endif #else #ifdef GECODE_GCC_HAS_CLASS_VISIBILITY #define GECODE_KERNEL_EXPORT __attribute__ ((visibility("default"))) #else #define GECODE_KERNEL_EXPORT #endif #endif // Configure auto-linking #ifndef GECODE_BUILD_KERNEL #define GECODE_LIBRARY_NAME "Kernel" #include #endif /** * \namespace Gecode * \brief %Gecode toplevel namespace * * The Gecode namespace contains nested namespaces for * the various submodules (for example Int for the * definition of integer propagator classes). Functionality * that is used for interfacing (search engines, variables, * and so on) or belongs to the %Gecode %Kernel is contained * directly in the Gecode namespace. * */ namespace Gecode { /// Kernel configuration parameters namespace Kernel { namespace Config { /// Rescale factor for action and afc values const double rescale = 1e-50; /// Rescale action and afc values when larger than this const double rescale_limit = DBL_MAX * rescale; /// Initial value for alpha in CHB const double chb_alpha_init = 0.4; /// Limit for decreasing alpha in CHB const double chb_alpha_limit = 0.06; /// Alpha decrement in CHB const double chb_alpha_decrement = 1e-6; /// Initial value for Q-score in CHB const double chb_qscore_init = 0.05; }} } /* * General exceptions and kernel exceptions * */ #include /* * Basic kernel services and memory management * */ #include #include #include #include /* * Macros for checking failure * */ #include /* * Gecode kernel * */ #include #include #include #include #include #include /* * Variables and testing for shared variables * */ #include /* * Views * */ #include /* * Arrays and other data * */ #include #include #include #include /* * Common propagator patterns * */ #include #include #include #include /* * Abstractions for branching * */ namespace Gecode { /** * \defgroup TaskModelBranch Generic branching support * * Support for randomization and tie-breaking that are independent * of a particular variable domain. * * \ingroup TaskModel */ /** * \defgroup TaskModelBranchExec Branch with a function * * This does not really branch (it just offers a single alternative) but * executes a single function during branching. A typical * application is to post more constraints after another brancher * has finished. * * \ingroup TaskModelBranch */ //@{ /// Call the function \a f (with the current space as argument) for branching GECODE_KERNEL_EXPORT void branch(Home home, std::function f); //@} } #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include /* * Automatically generated variable implementations * */ #include /* * Trace support * */ #include #include #include #include #include namespace Gecode { /** * \brief Create tracer * \ingroup TaskTrace */ GECODE_KERNEL_EXPORT void trace(Home home, TraceFilter tf, int te = (TE_PROPAGATE | TE_COMMIT | TE_POST), Tracer& t = StdTracer::def); /** * \brief Create tracer * \ingroup TaskTrace */ void trace(Home home, int te = (TE_PROPAGATE | TE_COMMIT | TE_POST), Tracer& t = StdTracer::def); } #include /* * Allocator support * */ #include #endif // STATISTICS: kernel-other