Skip to content

Commit

Permalink
fix(bench): adjust hyperedges capacity
Browse files Browse the repository at this point in the history
  • Loading branch information
yamafaktory committed Sep 2, 2024
1 parent af86f30 commit 6a68005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bench.zig
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const Bench = struct {
const graph = try HyperZig(
Hyperedge,
Vertex,
).init(allocator, .{ .vertices_capacity = 1_000_000, .hyperedges_capacity = 1_000_000 });
).init(allocator, .{ .vertices_capacity = 1_000_000, .hyperedges_capacity = 1_000 });
const msg = comptime comptimePrint("{s}...\n", .{name});
try stdout.print(msg, .{});
var timer = try Timer.start();
Expand Down

0 comments on commit 6a68005

Please sign in to comment.