From 1d92908c9cedbac0e2af838c3053e70c36efe0b5 Mon Sep 17 00:00:00 2001 From: TimSiebert1 <128799979+TimSiebert1@users.noreply.github.com> Date: Sun, 24 Nov 2024 21:48:52 +0100 Subject: [PATCH] Delete build/ADOL-C/include/adolc/internal/adolc_settings.h --- .../include/adolc/internal/adolc_settings.h | 46 ------------------- 1 file changed, 46 deletions(-) delete mode 100644 build/ADOL-C/include/adolc/internal/adolc_settings.h diff --git a/build/ADOL-C/include/adolc/internal/adolc_settings.h b/build/ADOL-C/include/adolc/internal/adolc_settings.h deleted file mode 100644 index c7c6fa58..00000000 --- a/build/ADOL-C/include/adolc/internal/adolc_settings.h +++ /dev/null @@ -1,46 +0,0 @@ -/*---------------------------------------------------------------------------- - ADOL-C -- Automatic Differentiation by Overloading in C++ - File: adolc_settings.h - Revision: $Id$ - Contents: ADOL-C Settings: - These parameters might affect the performance of the ADOL-C - system; and are set by the configure script during the build. - Do not edit this file. - - Copyright (c) Kshitij Kulshreshtha, Jean Utke - - This file is part of ADOL-C. This software is provided as open source. - Any use, reproduction, or distribution of the software constitutes - recipient's acceptance of the terms of the accompanying license file. - -----------------------------------------------------------------------------*/ - -#if !defined(ADOLC_ADOLC_SETTINGS_H) -#define ADOLC_ADOLC_SETTINGS_H 1 - -#include -/*--------------------------------------------------------------------------*/ -/* ADOL-C data types */ - -// clang-format off -typedef uint32_t locint; /* ensure locint is unsigned */ -typedef double revreal; - -/*--------------------------------------------------------------------------*/ -/* Enable/disable advanced branching */ -#undef ADOLC_ADVANCED_BRANCHING - -/*--------------------------------------------------------------------------*/ -/* Use reference counting for tapeless numbers */ -#undef USE_ADTL_REFCOUNTING - -/*--------------------------------------------------------------------------*/ -/* Sparse drivers have been compiled */ -#undef SPARSE_DRIVERS - -/*--------------------------------------------------------------------------*/ -/* Use Boost Library Pool allocator */ -#undef USE_BOOST_POOL - -// clang-format on -#endif