DFT-FE 1.1.0-pre
Density Functional Theory With Finite-Elements
Loading...
Searching...
No Matches
TypeConfig.h
Go to the documentation of this file.
1#ifndef dftfeTypeConfig_h
2#define dftfeTypeConfig_h
3#include <cstdint>
4namespace dftfe
5{
6#ifdef DFTFE_WITH_64BIT_INT
7 using uInt = std::uint64_t;
8 using Int = std::int64_t;
9#else
10 using uInt = std::uint32_t;
11 using Int = std::int32_t;
12#endif
13} // namespace dftfe
14#endif
Definition pseudoPotentialToDftfeConverter.cc:34
std::uint32_t uInt
Definition TypeConfig.h:10
std::int32_t Int
Definition TypeConfig.h:11