https://github.com/TakehideSoh/SAF
Tip revision: 3b45819df15225431050eeb48c1a31ffdd580af7 authored by Daniel Le Berre on 22 June 2023, 20:02:19 UTC
Typo in README
Typo in README
Tip revision: 3b45819
version.cpp
/*------------------------------------------------------------------------*/
// To simplify the build process without 'make', you can disable the
// generation of 'build.hpp' through '../scripts/make-build-header.sh' by
// defining '-DNBUILD'. Then we try to guess part of the configuration.
#ifndef NBUILD
#if __GNUC__ > 4
#if __has_include(<build.hpp>)
#include <build.hpp>
#endif // __has_include
#else
#include <build.hpp>
#endif // __GNUC > 4
#endif // NBUILD
/*------------------------------------------------------------------------*/
// We prefer short 3 character version numbers made of digits and lower case
// letters only, which gives 36^3 = 46656 different versions. The following
// macro is used for the non-standard build process and only set from
// the file '../VERSION' with '../scripts/update-version.sh'. The standard
// build process relies on 'VERSION' to be defined in 'build.hpp'.
#ifdef NBUILD
#ifndef VERSION
# define VERSION "sc2021"
#endif // VERSION
#endif // NBUILD
/*------------------------------------------------------------------------*/
// The copyright of the code is here.
static const char * COPYRIGHT =
"Copyright (c) 2016-2021 A. Biere, M. Fleury, N. Froleyks"
;
/*------------------------------------------------------------------------*/
// Again if we do not have 'NBUILD' or if something during configuration is
// broken we still want to be able to compile the solver. In this case we
// then try our best to figure out 'COMPILER' and 'DATE', but for
// 'IDENTIFIER' and 'FLAGS' we can only use the '0' string, which marks
// those as unknown.
#ifndef COMPILER
# ifdef __clang__
# ifdef __VERSION__
# define COMPILER "clang++-" __VERSION__
# else
# define COMPILER "clang++"
# endif
# elif defined (__GNUC__)
# ifdef __VERSION__
# define COMPILER "g++-" __VERSION__
# else
# define COMPILER "g++"
# endif
# else
# define COMPILER 0
# endif
#endif
// GIT SHA2 identifier.
//
#ifndef IDENTIFIER
# define IDENTIFIER 0
#endif
// Compilation flags.
//
#ifndef FLAGS
# define FLAGS 0
#endif
// Build Time and operating system.
//
#ifndef DATE
# define DATE __DATE__ " " __TIME__
#endif
/*------------------------------------------------------------------------*/
#include "version.hpp"
namespace CaDiCaL {
const char * version () { return VERSION; }
const char * copyright () { return COPYRIGHT; }
const char * signature () { return "cadical-" VERSION; }
const char * identifier () { return IDENTIFIER; }
const char * compiler () { return COMPILER; }
const char * date () { return DATE; }
const char * flags () { return FLAGS; }
}
