/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* */ /* This file is part of the program and library */ /* PaPILO --- Parallel Presolve for Integer and Linear Optimization */ /* */ /* Copyright (C) 2020-2022 Konrad-Zuse-Zentrum */ /* fuer Informationstechnik Berlin */ /* */ /* This program is free software: you can redistribute it and/or modify */ /* it under the terms of the GNU Lesser General Public License as published */ /* by the Free Software Foundation, either version 3 of the License, or */ /* (at your option) any later version. */ /* */ /* This program is distributed in the hope that it will be useful, */ /* but WITHOUT ANY WARRANTY; without even the implied warranty of */ /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */ /* GNU Lesser General Public License for more details. */ /* */ /* You should have received a copy of the GNU Lesser General Public License */ /* along with this program. If not, see . */ /* */ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #ifndef _PAPILO_MISC_TBB_HPP_ #define _PAPILO_MISC_TBB_HPP_ /* if those macros are not defined and tbb includes windows.h * then many macros are defined that can interfere with standard C++ code */ #ifndef NOMINMAX #define NOMINMAX #define PAPILO_DEFINED_NOMINMAX #endif #ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN #define PAPILO_DEFINED_WIN32_LEAN_AND_MEAN #endif #ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN #define PAPILO_DEFINED_WIN32_LEAN_AND_MEAN #endif #ifndef NOGDI #define NOGDI #define PAPILO_DEFINED_NOGDI #endif #ifdef _MSC_VER #pragma push_macro( "__TBB_NO_IMPLICIT_LINKAGE" ) #define __TBB_NO_IMPLICIT_LINKAGE 1 #endif #include "tbb/blocked_range.h" #include "tbb/combinable.h" #include "tbb/concurrent_hash_map.h" #include "tbb/concurrent_vector.h" #include "tbb/parallel_for.h" #include "tbb/parallel_invoke.h" #include "tbb/partitioner.h" #include "tbb/task_arena.h" #include "tbb/tick_count.h" #ifdef _MSC_VER #pragma pop_macro( "__TBB_NO_IMPLICIT_LINKAGE" ) #endif #ifdef PAPILO_DEFINED_NOGDI #undef NOGDI #undef PAPILO_DEFINED_NOGDI #endif #ifdef PAPILO_DEFINED_NOMINMAX #undef NOMINMAX #undef PAPILO_DEFINED_NOMINMAX #endif #ifdef PAPILO_DEFINED_WIN32_LEAN_AND_MEAN #undef WIN32_LEAN_AND_MEAN #undef PAPILO_DEFINED_WIN32_LEAN_AND_MEAN #endif #endif