Skip to content

Commit

Permalink
fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
ReubenBond committed May 29, 2024
1 parent e438cca commit 6996c2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -635,23 +635,7 @@ private static HashSet<GrainId> ComputeAnchoredGrains(List<IGrouping<GrainId, Ve

if (accLocalScore > accRemoteScore)
{




// anchoredGrains.Add(grainEdges.Key);












anchoredGrains.Add(grainEdges.Key);
}
}

Expand Down
4 changes: 2 additions & 2 deletions test/Grains/BenchmarkGrains/Ping/TreeGrain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ namespace BenchmarkGrains.Ping;
public class TreeGrain : Grain, ITreeGrain
{
// 16^4 grains (~65K)
public const int FanOutFactor = 4;
public const int MaxLevel = 3;
public const int FanOutFactor = 16;
public const int MaxLevel = 4;
private readonly List<ITreeGrain> _children;

public TreeGrain()
Expand Down

0 comments on commit 6996c2c

Please sign in to comment.