Skip to content

Commit 6e5a0de

Browse files
authored
Merge branch 'devel' into AddUnits
2 parents 1ee17c6 + e610727 commit 6e5a0de

47 files changed

Lines changed: 4944 additions & 532 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ endif()
3333
# Required compiler features
3434
add_compile_options(-D_REENTRANT)
3535

36+
# Add an explicit path to the install library directory (esp. useful
37+
# for Python bindings)
38+
set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
39+
3640
# Bake in library paths (esp. useful for HPC sites with modules)
3741
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
3842

@@ -49,7 +53,7 @@ endif()
4953
option(ENABLE_NBODY "Enable EXP n-body" ON)
5054
option(ENABLE_PYEXP "Enable the Python bindings" ON)
5155
option(ENABLE_PYEXP_ONLY "Python bindings and support libraries only" OFF)
52-
option(ENABLE_UTILS "Enable build of the EXP standalone utilities" OFF)
56+
option(ENABLE_UTILS "Enable build of the EXP standalone utilities" ON)
5357
option(ENABLE_PNG "Enable PNG graphics support" FALSE)
5458
option(ENABLE_CUDA "Enable CUDA" FALSE)
5559
option(ENABLE_SLURM "Enable SLURM checkpointing support" FALSE)

expui/BasisFactory.H

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -187,13 +187,13 @@ namespace BasisClasses
187187
{ return coefret; }
188188

189189
//! Accumulate new coefficients from full phase space
190-
virtual void accumulate(double mass,
191-
double x, double y, double z,
192-
double u, double v, double w) = 0;
190+
virtual void accumulate(double x, double y, double z,
191+
double u, double v, double w,
192+
double mass, unsigned long int indx) = 0;
193193

194194
//! Accumulate new coefficients from coordinates only
195195
virtual void accumulate(double x, double y, double z,
196-
double mass) = 0;
196+
double mass, unsigned long int indx) = 0;
197197

198198
//! Get mass on grid
199199
double getMass(void) { return totalMass; }

0 commit comments

Comments
 (0)