Skip to content

Commit

Permalink
Fix code formatting with dotnet format command
Browse files Browse the repository at this point in the history
  • Loading branch information
afxres committed Dec 24, 2023
1 parent 6f901e4 commit 4bc6755
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions code/Binary/External/BinaryModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,7 @@

internal static class BinaryModule
{
private static readonly ImmutableArray<int> Primes =
[
3, 7, 11, 17, 23, 29, 37, 47, 59, 71, 89, 107, 131, 163, 197, 239, 293, 353, 431, 521, 631, 761, 919,
1103, 1327, 1597, 1931, 2333, 2801, 3371, 4049, 4861, 5839, 7013, 8419, 10103, 12143, 14591,
17519, 21023, 25229, 30293, 36353, 43627, 52361, 62851, 75431, 90523, 108631, 130363, 156437,
187751, 225307, 270371, 324449, 389357, 467237, 560689, 672827, 807403, 968897, 1162687, 1395263,
1674319, 2009191, 2411033, 2893249, 3471899, 4166287, 4999559, 5999471, 7199369,
];
private static readonly ImmutableArray<int> Primes = [3, 7, 11, 17, 23, 29, 37, 47, 59, 71, 89, 107, 131, 163, 197, 239, 293, 353, 431, 521, 631, 761, 919, 1103, 1327, 1597, 1931, 2333, 2801, 3371, 4049, 4861, 5839, 7013, 8419, 10103, 12143, 14591, 17519, 21023, 25229, 30293, 36353, 43627, 52361, 62851, 75431, 90523, 108631, 130363, 156437, 187751, 225307, 270371, 324449, 389357, 467237, 560689, 672827, 807403, 968897, 1162687, 1395263, 1674319, 2009191, 2411033, 2893249, 3471899, 4166287, 4999559, 5999471, 7199369];

[MethodImpl(MethodImplOptions.AggressiveInlining)]
private static uint Join(uint head, uint last) => head * 33 + last;
Expand Down

0 comments on commit 4bc6755

Please sign in to comment.