Skip to content

Commit

Permalink
Update ParaView version and fix uninitialized variable in NeuriteElem…
Browse files Browse the repository at this point in the history
…ent class
  • Loading branch information
UmarAbubacar committed Jan 11, 2024
1 parent 8e2ba04 commit a4c62b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions cmake/external/ParaView.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ if(APPLE AND "${DETECTED_ARCH}" STREQUAL "i386")
# The build was fixed with a reupload and carries the additional tag cm233.
SET(PARAVIEW_TAR_FILE paraview_v5.10.0_cm323_${DETECTED_OS_VERS}_default.tar.gz)
elseif(APPLE AND "${DETECTED_ARCH}" STREQUAL "arm64")
SET(PARAVIEW_TAR_FILE paraview_v5.10.0_osx-13.4-arm64_default.tar.gz)
SET(PARAVIEW_TAR_FILE paraview_v5.10.0_${DETECTED_OS_VERS}_default.tar.gz)
else()
SET(PARAVIEW_TAR_FILE paraview_v5.9.0_${DETECTED_OS_VERS}_default.tar.gz)
endif()
set(PARAVIEW_SHA_KEY osx-13.4-arm64-ParaView)
set(PARAVIEW_SHA_KEY ${DETECTED_OS_VERS}-ParaView)
set(PARAVIEW_SHA ${${PARAVIEW_SHA_KEY}})

message(STATUS "Using ParaView tarball : ${PARAVIEW_TAR_FILE}")
Expand All @@ -23,4 +23,4 @@ download_verify_extract(
http://cern.ch/biodynamo-lfs/third-party/${PARAVIEW_TAR_FILE}
${PARAVIEW_SOURCE_DIR}
${PARAVIEW_SHA}
)
)
2 changes: 1 addition & 1 deletion src/neuroscience/neurite_element.h
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ class NeuriteElement : public Agent, public NeuronOrNeurite {
Real3 position_ = {{0.0, 0.0, 0.0}};

/// This is the type of the mother neuron
real_t mother_cell_type_ = 0;
real_t mother_cell_type_ ;

/// The uid of the mother neuron
AgentUid mother_uid_;
Expand Down

0 comments on commit a4c62b4

Please sign in to comment.