Hannes Hauswedell
Hannes Hauswedell
Is there some way to differentiate between comments and (doxygen-like) documentation? Typically code comments are ```cpp // foo /* foo */ ``` While doxygen and almost everything else uses the...
And I have another one. Simply declaring this flat_map already fails: ```cpp robin_hood::unordered_flat_map foo; ``` Godbolt link: https://godbolt.org/z/Ezca6K1xn
One can create `String` which does not make sense, because short cant be packed. Doing this not only increases overhead, but does not work, i.e. the tests fail in some...
especially for MemoryMapping: https://www.kernel.org/doc/Documentation/vm/hugetlbpage.txt http://lxr.free-electrons.com/source/tools/testing/selftests/vm/map_hugetlb.c (needs changes by administrator) http://man7.org/linux/man-pages/man2/mmap.2.html https://www.freebsd.org/cgi/man.cgi?sektion=2&query=mmap
Function multi-versioning is the shit: https://lwn.net/Articles/691932/ I am trying to use it in Lambda, and I think we should consider activating it for the library so that apps always build...
:sob: https://buildd.debian.org/status/package.php?p=seqan2&suite=experimental - [x] test_align_parallel_data_structures [ppc64el] - [x] test_demo_tutorial_file_io_overview_solution3 [ppc64el, arm64, s390x, powerpc, ppc64] - [x] test_demo_tutorial_sam_and_bam_io_example7 [ppc64el, arm64, s390x, powerpc, ppc64] - [x] test_translation [alpha] - [x] test_index_bifm [alpha]...
Currently:, `/usr/share/cmake/seqan-config.cmake` This is apparently not searched by cmake :disappointed: The manual states that these dirs are searched: ``` /(lib/|lib|share)/cmake/*/ (U) /(lib/|lib|share)/*/ (U) /(lib/|lib|share)/*/(cmake|CMake)/ (U) ``` So the following would...
... that covers debugging basics and gives some hints that might be especially useful fro debugging templatized code, like using the `__PRETTY_FUNCTION__` macro et cetera.
In many cases one wants to reference some feature of the STL. It would be nice if `@link std::basic_ios::exceptions @endlink` , i.e. all links that begin with `std::` to automatically...
I am trying to build an FM-Index over a 13GB fasta file. After one hour of processing with an average cpu-load of only 52% on one core the indexer used...