Liam Keegan

Results 13 issues of Liam Keegan

resolves this compiler warning with clang 10: ``` ../inc/Temporary/StlAllocator.h:95:23: error: definition of implicit copy constructor for 'StlAllocator' is deprecated because it has a user-declared copy assignment operator [-Werror,-Wdeprecated-copy] StlAllocator& operator=(const...

WIP ---- Please read the [guidelines for Bioconda recipes](https://bioconda.github.io/contributor/guidelines.html) before opening a pull request (PR). * If this PR adds or updates a recipe, use "Add" or "Update" appropriately as...

#1785 would add support for [sbml infix](http://model.caltech.edu/software/libsbml/5.18.0/docs/formatted/cpp-api/_l3_parser_8cpp.html#a58e584e7c21801b34d79fed7a7c05ac8) printing and parsing implementation status of optional features (see [SBML_parseL3FormulaWithSettings](http://model.caltech.edu/software/libsbml/5.18.0/docs/formatted/cpp-api/_l3_parser_8cpp.html#a77c72a78afff728a6c569790338f2085): - [ ] log interpretation option (thanks @rikardn): - currently "log" = `log10`...

### issue The parser assumes that a double has a `'.'` as the decimal separator: https://github.com/symengine/symengine/blob/f7e253fdde1064584ea30728dd6430fc74d596d5/symengine/parser/parser.ih#L100 and if it finds one, it uses `strtod` to convert the string into a...

For convenience when running on github actions CI I created [setup-mesa-dist-win](https://github.com/ssciwr/setup-mesa-dist-win), an action which downloads and runs the `systemwidedeploy.cmd` installation script. To use it just add this line to your...

- use `std::from_chars` instead of `strtod` to parse doubles if available (c++17 required) - otherwise falls back to previous `strtod` implementation - `std::from_chars` is locale independent and faster than `strtod`...

- add `FlexbarAtomic` - a simple wrapper around `std::atomic` which adds a copy constructor - to replace `tbb::atomic` member variables in classes with default copy constructors - replace removed `tbb::atomic`...

- reveal_overlay - reveal_header - reveal_backimage - reveal_footer These options are documented here: https://rise.readthedocs.io/en/latest/customize.html#decorating-all-slides Styling and ids of these elements follow RISE: https://github.com/damianavila/RISE/blob/master/classic/rise/static/main.js#L446-L470 Also update the reveal config options using...

Currently if one cookie-cutter project uses another via add_subdirectory they will both try to define the same targets, e.g. docs or python

good first issue

This is just a convenience wrapper around using different profilers - making a PR in case you also find it useful - Allows `@profile` decorator to be added to functions...