n8xm
n8xm
If I run the following code: ```python from sophus import SE3 import numpy as np import math angle = math.pi/4; T1 = SE3.rotX(angle) T1_numpy = T1.matrix(); T2_numpy = np.array([[1, 0,...
Documentation is about Sundials 6, but in the sidebar it still says "Sundials 5". This PR fixes that.
Extended the `.gitignore` with some common files that should be ignored: 1. ctags file 2. [JSON compilation database](https://clang.llvm.org/docs/JSONCompilationDatabase.html) 3. `runlog` file 1) and 2) are often generated during C++ development...
On [Line 308 of Nyx.cpp](https://github.com/AMReX-Astro/Nyx/blob/05ccb5950c4fc9979dec253b89319ae5ae58bac8/Source/Driver/Nyx.cpp#L308), the value of `do_hydro` is used in the following if statement : ``` if (DefaultGeometry().isAnyPeriodic() || (!do_dm_particles && !do_hydro)) ``` However, this if statement comes...
Now we can autocomplete the citekey when using `pubs url`, just like we can with other commands.
Currently, the `Amr-density` regression test [assumes the chk00300_for_rt checkpoint file exists](https://github.com/AMReX-Astro/Nyx/blob/a91f4b05bcc262e4a280b6e8f075d3c69f659aae/Util/regression_testing/Nyx-tests.ini#L258). But there is currently no such checkpoint file under the [Exec/Amr-density directory](https://github.com/AMReX-Astro/Nyx/tree/development/Exec/AMR-density). The test will fail as a result.
Fix #96.
When I attempt to compile the `LyA` project with Reeber enabled on the Nyx development branch, GCC gives me the following error: ``` ../../Util/reeber/src/reeber.cpp:433:98: error: no matching function for call...
Documentation for #101
Add ability to pass `reeber.negate` and `reeber.halo_component_threshold` via input file. (Despite appearing in the documentation and in several input files, prior to this commit these values are not read by...