Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/core/diffusion/diffusion_grid.cc
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ real_t DiffusionGrid::GetValue(const Real3& position) const {
/// Get the concentration at specified voxel
real_t DiffusionGrid::GetConcentration(const size_t idx) const {
if (idx >= total_num_boxes_) {
Log::Error("DiffusionGrid::ChangeConcentrationBy",
Log::Error("DiffusionGrid::GetConcentration",
"You tried to get the concentration outside the bounds of "
"the diffusion grid!");
return 0;
Expand Down
Loading