Skip to content

Commit 6e21827

Browse files
author
Wolfgang Kastaun
committed
Minor changes: Fixed issue #20, updated README
1 parent 6405280 commit 6e21827

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed
180 KB
Binary file not shown.

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Windows and AIX are not supported.
1111
* A C++11 capable compiler (tested with gcc and clang).
1212
* Meson build system.
1313
* Boost library.
14-
* GNU Scientific Library.
14+
* GNU Scientific Library version >= 2.0
1515
* HDF5 library (Only C-bindings required, not the C++ API).
1616
* Doxygen (only for documentation)
1717
* Sphinx with Breathe extension (only for documentation)
@@ -94,11 +94,16 @@ together with the library. The Python extension module is called
9494

9595
## Einstein Toolkit Support
9696

97-
RePrimAnd does provide an (experimental) thorn that builds the library within
97+
RePrimAnd does provide a thorn that builds the library within
9898
an EinsteinToolkit (ET) environment, using the ExternalLibraries mechanism. The
9999
thorn can be found in the folder `ET_interface/thorns/RePrimAnd/`. The thorn
100-
depends on the HDF5, GSL, and BOOST ExternalLibraries thorns. In addition,
101-
the meson build system needs to be installed on the build host.
100+
depends on the HDF5, GSL, and BOOST ExternalLibraries thorns. Building it via
101+
the ET build system does not require meseon. Note this only builds the library,
102+
but not the tests and Python bindings.
103+
104+
The thorn is also part of the official ET framework. The version in the master
105+
brach will typically by ahead of the ET version, but is not guaranteed to be
106+
stable or compatible.
102107

103108
Currently there is are no thorns that provide an ET-style interface for using
104109
this library, although this might change in future versions. ET Thorns can of

library/BasicStuff/include/unitconv.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class units {
9292
}
9393

9494
///Compute units with G=c=1 and given density unit
95-
static constexpr units geom_udensity(double udensity,
95+
static units geom_udensity(double udensity,
9696
double g_si=G_SI)
9797
{
9898
return geom_ulength( c_SI / std::sqrt(g_si * udensity));

0 commit comments

Comments
 (0)