This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,20 @@
using System;
namespace Mono.Math.Prime.Generator
{
// Token: 0x0200000B RID: 11
public class NextPrimeFinder : SequentialSearchPrimeGeneratorBase
{
// Token: 0x0600006D RID: 109 RVA: 0x00004AD4 File Offset: 0x00002CD4
protected override BigInteger GenerateSearchBase(int bits, object Context)
{
if (Context == null)
{
throw new ArgumentNullException("Context");
}
BigInteger bigInteger = new BigInteger((BigInteger)Context);
bigInteger.SetBit(0U);
return bigInteger;
}
}
}