- Apr 04, 2025
-
-
Holger Obermaier authored
-
Holger Obermaier authored
-
Holger Obermaier authored
-
Holger Obermaier authored
-
- Apr 03, 2025
-
-
Holger Obermaier authored
-
- Apr 02, 2025
-
-
Holger Obermaier authored
A swicht-case block forms a single scope. This means that variables that are declared in one case are also available in the subsequent cases. However, if jumping directly to one of the subsequent cases, these variables are uninitialized. This is not allowed in C++
-
- Apr 01, 2025
-
-
Holger Obermaier authored
In C, a string such as “Hello world” is of type char * in C++ it is correctly of type const char *. Such a string can of course only be passed to functions that specify the input parameter as const char *
-
Holger Obermaier authored
C does a implicite type cast from void * to any kind of pointer type. C++ requires explicite type casts
-
Holger Obermaier authored
-
Holger Obermaier authored
-
- Mar 29, 2025
-
-
Holger Obermaier authored
A struct can be partially initialized. The order of the initialized elements in C is arbitrary, as the initialization has no side effects. In C++, the elements must be initialized in the order in which they appear in the struct, because each initialization potentially calls a constructor, which can then rely on the preceding elements being initialized
-
Holger Obermaier authored
-
Holger Obermaier authored
-
Holger Obermaier authored
-
Holger Obermaier authored
-
Holger Obermaier authored
C++ does not offically support the restrict type qualifier. But most compiler offer the alternative __restrict__
-
- Mar 27, 2025
-
-
Holger Obermaier authored
-
Holger Obermaier authored
-
Holger Obermaier authored
Develop source code formatted using uncrustify See merge request !1
-
Holger Obermaier authored
-
Holger Obermaier authored
-
Holger Obermaier authored
-
- Mar 26, 2025
-
-
Holger Obermaier authored
-
- Mar 13, 2025
-
-
Lars Houpt authored
-
Lars Houpt authored
Change order of application of STFI to suppress high frequency jitter in modelled data. NEW: STFI filter applied on raw wavelet then LP-filtered and integrated (if switched on).
-
- Mar 12, 2025
-
-
Arash Rezaei Nevisi authored
-
- Mar 03, 2025
-
-
Arash Rezaei Nevisi authored
-
Arash Rezaei Nevisi authored
-
Arash Rezaei Nevisi authored
-
- Feb 27, 2025
-
-
Arash Rezaei Nevisi authored
-
- Feb 25, 2025
-
-
Lars Houpt authored
-
- Feb 17, 2025
-
-
Lars Houpt authored
-
- Feb 14, 2025
-
-
Holger Obermaier authored
-
- Feb 13, 2025
-
-
Lars Houpt authored
-
- Feb 07, 2025
-
-
Lars Houpt authored
-
Thomas Hertweck authored
-
Thomas Hertweck authored
-
- Feb 06, 2025
-
-
Holger Obermaier authored
Merged from Branch from Begatim Bytyqi <begatim.bytyqi@kit.edu>: Added OpenMP SIMD pragma and avoid type conversion
-
-
Holger Obermaier authored
-