mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 11:43:47 +01:00
edd1ff4529
A first general restructuration of the doc according to the pattern [tour|tutorial|reference]. In the reference part, objects are documented per topic. In each topic, [definition|c++|python|hdf5] (not yet implemented)
46 lines
2.0 KiB
ReStructuredText
46 lines
2.0 KiB
ReStructuredText
C++11/14 and notations
|
|
========================
|
|
|
|
C++11/C++14
|
|
---------------
|
|
|
|
TRIQS is a C++11 library, and as such, it *requires* a last generation C++ compiler (Cf :ref:`require_cxx_compilers`).
|
|
C++11 compliant compilers (amongst which gcc and clang) are now widely available.
|
|
|
|
Indeed, the development of C++ has been very dynamic recently.
|
|
The language and its usage is changing very profoundly with the introduction
|
|
of several notions (e.g. move semantics, type deduction, lambda, variadic
|
|
templates, etc.).
|
|
|
|
A major consequence of this evolution is that writing libraries
|
|
has become much more accessible, at a *much* lower cost in development time,
|
|
with clearer, shorter and more readable code that is hence maintainable.
|
|
Efficient techniques which were considered before as complex and reserved to professional C++ experts
|
|
are now becoming simple to implement, such as e.g. expression templates.
|
|
|
|
The implementation of most of the TRIQS library (e.g. clef, arrays) would be either impossible or at least
|
|
much more complex and time consuming (with a lot of abstruse boost-like constructions)
|
|
in previous versions of C++.
|
|
|
|
Besides, this evolution is not over (in fact it seems to accelerate !).
|
|
The new coming standard, C++14, expected to be adopted and implemented very soon,
|
|
will bring significant improvements. In particular, the concept support (template constraints)
|
|
will hopefully solve the most problematic issue with metaprogramming techniques, namely, the lack of concept
|
|
check at compile time, resulting in long and obscur error messages from the compiler when *using* the library,
|
|
which can leave the non-C++-expert user quite clueless...
|
|
Hence, TRIQS will move to C++14 as soon as compilers are available.
|
|
|
|
Notation
|
|
----------
|
|
|
|
In the documentation, we make use in particular of the C++14 concept notation for template.
|
|
For example ::
|
|
|
|
template<ImmutableArray A> void f(A const & a);
|
|
|
|
means that f is a template ::
|
|
|
|
template<typename A> void f(A const & a);
|
|
|
|
which is enabled or valid only for types A which models the `ImmutableArray` concept.
|