Paul A. Patience
Paul A. Patience
* lispy.el (lispy-backward-kill-word): When looking back at ") ", we would take the first if's then branch because the char before is whitespace. However, this branch would call backward-kill-word which...
Previously it would be updated only if a file (or directory) named ~/.Private existed. * counsel.el (counsel--locate-updatedb): Replace spurious reference to ~/.Private with the file-name-directory of counsel-locate-db-path.
@trilinos/tpetra The `CMakeLists.txt` was testing for ``` DEFINED Tpetra_INST_INT_LONG AND Tpetra_INST_INT_UNSIGNED_LONG ``` instead of ``` DEFINED Tpetra_INST_INT_LONG AND Tpetra_INST_INT_LONG ``` which resulted in `-DTpetra_INST_INT_LONG=ON` requiring the explicit `-DTpetra_INST_INT_LONG_LONG=OFF` to prevent...
After adding `set -o pipefail` after the hash-bang line in the runExampleTest.sh script (in order to detect failing library tests — see https://github.com/bbopt/nomad4dev/issues/707), the ExampleAdvancedPSDMads test fails, but seemingly only...
For some reason, the transient-append-suffix adding magit-worktree back to magit-dispatch — after its potential replacement by magit-gitflow-popup — was having no effect. (It does when moved into (after! magit-gitflow), so...
This is a PR aiming to implement #26. This is a draft for now, but generating PDF output is already possible as follows: ``` common-lisp (uiop:with-output-file (stream "mgl-pax.pdf" :if-exists :supersede)...
I have managed to generate quite acceptable PDF output from MGL-PAX documentation by feeding its Markdown output to Pandoc with a Lua filter that I wrote. In particular, the filter...
It is undefined behavior to throw exceptions from functions marked extern "C". Yet, createNomadProblem does just this. Probably it should use new(std::nothrow) instead of plain new when [creating the NomadProblemInfo](https://github.com/bbopt/nomad/blob/4e5b78e76840d902f3fed8b83e4e6a143c3952b0/interfaces/CInterface/NomadStdCInterface.cpp#L96),...
solveNomadProblem's [return type](https://github.com/bbopt/nomad/blob/4cfa402d8a7dcfa8a8b1ad4b98111d88242d8fe4/interfaces/CInterface/NomadStdCInterface.cpp#L279) is bool, but inconsistently [returns 1](https://github.com/bbopt/nomad/blob/4cfa402d8a7dcfa8a8b1ad4b98111d88242d8fe4/interfaces/CInterface/NomadStdCInterface.cpp#L293) on invalid arguments (i.e., boolean true), [returns 0](https://github.com/bbopt/nomad/blob/4cfa402d8a7dcfa8a8b1ad4b98111d88242d8fe4/interfaces/CInterface/NomadStdCInterface.cpp#L419) on presumable success (i.e., boolean false), and finally [returns true](https://github.com/bbopt/nomad/blob/4cfa402d8a7dcfa8a8b1ad4b98111d88242d8fe4/interfaces/CInterface/NomadStdCInterface.cpp#L430) when catching an...
[NomadStdCInterface.h](https://github.com/bbopt/nomad/blob/4e5b78e76840d902f3fed8b83e4e6a143c3952b0/interfaces/CInterface/NomadStdCInterface.h#L16) is missing an include for stdbool.h.