Chris Bielow

Results 172 comments of Chris Bielow

Hi Caleb, thanks for reporting! You may be on to something here. Could you please share a spectrum or two where the problem occurs? I will have a closer look....

`INIUpdater` can update both `.ini` as well as `.toppas` files

now, we just need to enumerate all those files and call `INIUpdater` on it..

I also edited some stuff in the list above. Let's make sure we use this list as a template for the next release after 3.2

i added ``` Check the doxygen documentation at https://openms.de/current_doxygen/ Check all new tools are properly linked and do not show up on the ['Related Pages' section](https://openms.de/current_doxygen/html/pages.html) Check installation instructions for...

it seems `operator&` is not available for type `simde__m128i` on that platform. We could substitute all occurrences with ` simde_mm_and_si128(var1, var2);`, but the code will become a lot less readable....

a bit of research revealed that operator overloading is not the way to go in SIMDe (https://github.com/simd-everywhere/simde/issues/37#issuecomment-592985161). Thus, `simde_mm_and_si128(var1, var2)` is our only option.