Files
mfem/config/get_hypre_version.cpp
T

49 lines
1.4 KiB
C++

// Copyright (c) 2010-2024, Lawrence Livermore National Security, LLC. Produced
// at the Lawrence Livermore National Laboratory. All Rights reserved. See files
// LICENSE and NOTICE for details. LLNL-CODE-806117.
//
// This file is part of the MFEM library. For more information and source code
// availability visit https://mfem.org.
//
// MFEM is free software; you can redistribute it and/or modify it under the
// terms of the BSD-3 license. We welcome feedback and contributions, see file
// CONTRIBUTING.md for details.
#include "HYPRE_config.h"
#include <cstdio>
#ifdef HYPRE_RELEASE_VERSION
#define HYPRE_VERSION_STRING HYPRE_RELEASE_VERSION
#elif defined(HYPRE_PACKAGE_VERSION)
#define HYPRE_VERSION_STRING HYPRE_PACKAGE_VERSION
#endif
// Macros to expand a macro as a string
#define STR_EXPAND(s) #s
#define STR(s) STR_EXPAND(s)
// Convert the HYPRE_RELEASE_VERSION macro (string) to integer.
// Examples: "2.10.0b" --> 21000, "2.11.2" --> 21102
int main()
{
#ifdef HYPRE_VERSION_STRING
const char *ptr = STR(HYPRE_VERSION_STRING);
if (*ptr == '"') { ptr++; }
int version = 0;
for (int i = 0; i < 3; i++, ptr++)
{
int pv = 0;
for (char d; d = *ptr, '0' <= d && d <= '9'; ptr++)
{
pv = 10*pv + (d - '0');
if (pv >= 100) { return 1; }
}
version = 100*version + pv;
}
printf("%i\n", version);
return 0;
#else
return 2;
#endif
}