Skip to content

Commit 336682a

Browse files
author
Vanessa Arndorfer
committed
remove ConnGrowth change
1 parent 6444797 commit 336682a

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

Simulator/Connections/Neuro/ConnGrowth.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -167,13 +167,6 @@ void ConnGrowth::updateConns(AllVertices &vertices)
167167
/ growthParams_.beta));
168168
deltaR_ = Simulator::getInstance().getEpochDuration() * growthParams_.rho * outgrowth_;
169169
radii_ += deltaR_;
170-
171-
// limit the min radius
172-
for (int i = 0; i < radiiSize_; i++) {
173-
if (radii_[i] < growthParams_.minRadius) {
174-
radii_[i] = growthParams_.minRadius;
175-
}
176-
}
177170
}
178171

179172
/// Update the distance between frontiers of vertices.

0 commit comments

Comments
 (0)