Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

23,048

Downloads of v 30.8.17:

5,986

Last Update:

28 Sep 2022

Package Maintainer(s):

Software Author(s):

  • George Woltman

Tags:

prime prime95 mersenne stress stress-test burn-in gimps

Great Internet Mersenne Prime Search (GIMPS)

  • 1
  • 2
  • 3

30.8.17 | Updated: 28 Sep 2022

Downloads:

23,048

Downloads of v 30.8.17:

5,986

Maintainer(s):

Software Author(s):

  • George Woltman

Great Internet Mersenne Prime Search (GIMPS) 30.8.17

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Great Internet Mersenne Prime Search (GIMPS), run the following command from the command line or from PowerShell:

>

To upgrade Great Internet Mersenne Prime Search (GIMPS), run the following command from the command line or from PowerShell:

>

To uninstall Great Internet Mersenne Prime Search (GIMPS), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade prime95 -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade prime95 -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install prime95
  win_chocolatey:
    name: prime95
    version: '30.8.17'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'prime95' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '30.8.17'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller prime95
{
    Name     = "prime95"
    Version  = "30.8.17"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'prime95':
  ensure   => '30.8.17',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 28 Sep 2022.

Description

The Great Internet Mersenne Prime Search (GIMPS) is a collaborative project of volunteers
using the Prime95 client to participate in a distributed computing effort to find Mersenne Prime numbers.

The Prime95 client can also be used as a stress testing tool. The Prime95 client includes a "torture test" that places
a heavy computational load on a system. Continuous computations are run and checked against tolerances while they are
executing with the final results being compared to the known correct answers.

screenshot

Package Parameters

The following package parameter can be set:

  • /AddToDesktop - this puts a shortcut on your desktop to Prime95.

This parameter can be passed to the installer with the use of --params.
For example: --params '"/AddToDesktop"'.

To have choco remember parameters on upgrade, be sure to set choco feature enable -n=useRememberedArgumentsForUpgrades.

Notes

  • If support for 32-bit Windows XP is required use the legacy version Prime95 29.8.6.

    choco install prime95 --version 29.8.6
    choco pin pin add -n=prime95 --version 29.8.6
    
  • This package is automatically updated using the Chocolatey Automatic Package Update Model (AU).
    If you find it is out of date by more than a day or two, please contact the maintainer(s) and let them know the package is no longer updating correctly.


legal\LICENSE.txt
                  Software End User License Agreement ("EULA")

• This EULA applies to all versions of GIMPS Prime95  and  MPrime  software  and
source code ("Software").
• Software is free to download and use indefinitely on any computer(s)  you  own
or for which you have permission and authority  to  install  and  run  Software.
Software is not export-restricted.
• To use the Software you agree to be bound by  this  EULA  and  the  Terms  and
Conditions of Use.
• GIMPS reserves  the  right  to  change  this  EULA  without  notice  and  with
reasonable retroactive effect. Last updated 15 October 2008.
• GIMPS not responsible for any damages or losses arising from use of  Software.
SOFTWARE AND INFORMATION IS PROVIDED  "AS IS"  WITHOUT  WARRANTY  OF  ANY  KIND,
EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.


                            Terms and Conditions of Use ("TCU")

• GIMPS participation is free of charge and open to the public  internationally.
• Web Site. The GIMPS "Web Site"  is  understood  to  include  all  Mersenne.org
Internet web site domains,  web  content  and  services,  PrimeNet  APIs,  data,
downloads, etc., regardless of means of access.
• Non-Participants. Viewing the  Web  Site  does  not  necessarily  make  you  a
Participant; non-Participants are not bound by this TCU.
• Participation Constitutes Agreement.  "Participant" is  understood  to  be  an
individual person, or a single individual person designated  as  the  authorized
representative of any group, team, organization or legal entity, who personally,
or whose computer(s), accesses and/or communicates with the Web Site to perform,
or cause to perform, mathematical calculations that are, or typically,
systematically organized by GIMPS. This includes, but is not restricted to, use
of Prime95, MPrime, GLucas, or similar software, automatically over the Internet
or using the Web Site (manual testing forms, reports, APIs, etc.), to  get  data
or  work  assignments  or  to  upload  results  or  other  data.   Participation
constitutes agreement with the TCU by  that  individual  and  any  group,  team,
organization or legal entity the Participant represents.
• Participant Identifiers. Participant's user ID, password and email address are
the primary  unique  identifiers  used  by  GIMPS  to  communicate  and  confirm
Participant's identity. Secondary identifiers may include unique computer
identifiers known as a "GUID". The "Anonymous" or "ANONYMOUS" user ID  is  owned
by GIMPS, but may be used by Participants who  do  not  wish  to  be  publically
identified.
• Award Rules. Participant agrees to the Research Discovery Award Rules.
• Award Refusal. Participant may at their option  decline  any  award.  Research
Discovery Award Rules apply even if an award is unclaimed or optionally declined
by the Participant.
• Data Ownership and Privacy. GIMPS owns all collected data, and may publish  or
make available certain limited subset(s) of  that  data  for  public  reference,
excluding personally identifiable data according to the Privacy Policy. Examples
of published data are stats, standings,  charts  and  other  derived  charts  or
tables.
• Disclaimer. GIMPS is not responsible for any losses due to  Web  Site  errors,
electronic transmission errors, omissions or unauthorized  disclosures,  failure
of any software to correctly find and timely report a new prime number,  or  any
other  research  discovery,  or  for  someone  "poaching"  or  "stealing"   your
assignment (performing work on it without it being assigned to  them  by  GIMPS)
and subsequently making a discovery.
• Terms and Conditions of Use Changes. GIMPS reserves the right to  change  this
TCU without notice. Last updated 15 October 2008.
• Jurisdiction. Jurisdiction of law shall be the State  of  California  and  the
United States of America. Participant agrees to settle all  disputes  through  a
good faith effort directly with GIMPS officers  and  directors,  or  as  a  last
resort, by third-party binding arbitration through  a  certified  arbitrator  of
GIMPS' choosing.


                    Research Discovery Award Rules ("Rules")
                             1) General Award Rules

• Participants.  "Participant"  is  understood  as  defined  in  the  Terms  and
Conditions of Use ("TCU").
• Award Eligibility.  All GIMPS  Participants  are  automatically  eligible  for
Research Discovery Awards.  GIMPS-interested parties,  including  its  officers,
directors, their immediate family members  or  directly-contracted  agents,  are
ineligible for any award.
• Awardees. "Awardee" is understood to be the Participant, or the  group,  team,
organization or legal entity the  Participant  represents,  and  whose  computer
achieves a research discovery for which an award exists and all Rules in  effect
at the time of the discovery comply.
• Award  Payee.   Awards  are  payable  to  a  single  Awardee,  except  if  the
Awardee designates a single charity to receive all or part  of  the  award,  for
which GIMPS will make reasonable effort but does not guarantee  to  accommodate.
Awardee is responsible for all applicable taxes and fees.
• Awardee  Information.   Certain  information  about  the  Awardee,  and  where
designated information about a selected  charity,  may  be  collected  by  GIMPS
where lawfully required.
• Discovery Evidence.  As proof of discovery, Participant  agrees  to  email  to
GIMPS at [email protected] certain  data  files  generated  by  any  software
program used to make the discovery, along with their name, post mailing address,
phone number, and GIMPS user ID if not anonymous.  If proof is not satisfactory,
it will be treated as an unclaimed award.
• Discovery  Non-Disclosure  Period.   Participants  and  Awardees  agree  to  a
reasonable immediate period of non-disclosure  communications  silence,  not  to
exceed 90 days, about any discovery, alleged or verified, until GIMPS  announces
the discovery to the academia and press.  Non-compliance  may  result  in  award
disqualification.
• Evidence of Authority.  A Participant who does not own a computer on  which  a
research discovery is found must produce written evidence  satisfactory  to  the
GIMPS   board   of   directors  of  their  status  as  a  designated  authorized
representative with authority over that computer and to  bind  the  TCU,  before
they, or whom they represent, can  be  considered  an  Awardee.  If proof is not
satisfactory, it will be treated as an unclaimed prize.
• Award Notification.  Participant is responsible for maintaining and monitoring
the email address registered in their  GIMPS  user  ID  account.  GIMPS  is  not
responsible for ensuring email notification delivery or receipt by Participants.
Anonymous Participants will not be notified.  It is not necessary to receive  an
email notification from GIMPS to qualify for a Research Discovery Award.
• Award Claims and Release Waivers. Participant and Awardee  is/are  responsible
for claiming any applicable Research Discovery Award, and  agree  to  execute  a
GIMPS award claim and release waiver  and/or  release  waiver,  as  appropriate,
satisfactory to the GIMPS board of directors.
• Unclaimed, Expired, Disqualified and Refused Awards.  Unclaimed awards  expire
one year from  the  date  of  the  qualifying  discovery.  Expired,  refused  or
disqualified awards will be donated by GIMPS to a 501(c)(3) charity or  retained
by GIMPS to fund awards or cover its expenses.
• Other Disqualifications. GIMPS reserves the right to deny award payment if the
Awardee is determined by the GIMPS board  of  directors  to  be  personally,  or
affiliated with,  or  organized  under,  a  charter  or  entity,  practicing  or
promoting interests counter to humanitarian good or public  benefit.  GIMPS  may
require Awardee to execute an affidavit of eligibility according to these Rules.
• Assignment of Specific Interest.  Whereas GIMPS has  undertaken  an  organized
and systematic attempt to earn the $150,000 (USD) Electronic Frontier Foundation
("EFF") Cooperative Computing Award, all Participants and Awardees agree to  the
Rules and release their entire interest in the EFF award to GIMPS (see  Research
Discovery Awards).
• Final Authority. Decisions of the GIMPS board of directors in applying the TCU
and Rules, and in granting awards, are final.
• Rule Changes. These Rules, as in effect at the date and time of  a  discovery,
shall apply. GIMPS reserves the right to change these Rules without notice. Last
updated 06 January 2019.

                          2) Research Discovery Awards

Mersenne Prime Award of USD $3,000.00

Awarded to a GIMPS Participant for each  new  Mersenne  prime  discovered  after
August 23, 2008 and having fewer than 100,000,000  (decimal)  digits.  Rules  in
addition to the General Award Rules:

  • The award is presently $3,000. GIMPS may, at its sole discretion and without
  notice, change the award amount or retroactively increase certain  previously-
  awarded Research Discovery Awards up to the a maximum amount of $5000.
  • Verification may take several weeks. No money  will  be  awarded  until  the
  discovery is independently verified, and the award money  is  available  after
  GIMPS annual operating expenses.
  • In the unlikely event that an identical qualifying prime  is  discovered  at
  about the same time by two or more Participants, then the winner will  be  the
  first to either send their result to the GIMPS PrimeNet  server  or  to  email
  their results to GIMPS.

100 Million Digit Prime Award of USD $50,000.00

Awarded to a GIMPS Participant for the first prime discovered having  at  least
100,000,000 (decimal) digits. Rules in addition to the General Award Rules:

  • GIMPS has undertaken  an  organized  and  systematic  attempt  to  earn  the
  $150,000 (USD) Electronic Frontier Foundation  ("EFF")  Cooperative  Computing
  Award such that each Participant assigns all interest in this  award  entirely
  to GIMPS. Note that this Award may at current participation rates  require  an
  estimated 12-15 years of calculations before a qualifying discovery is  made.
  • No money will be awarded unless and until  a  GIMPS  Participant's  computer
  discovers  a  100,000,000  digit  prime, it  is  independently  verified,  EFF
  validates GIMPS' claim according to their rules, and pays GIMPS the award.
  • Verification may take several weeks and publication in a  suitable  academic
  refereed journal as required by  EFF  rules  will  likely  take  several  more
  months.
  • GIMPS will redistribute the EFF award money into thirds as follows:
        ○ $50,000 will be awarded to the discoverer Awardee of the 100,000,000
        digit prime.
        ○ $50,000 will be awarded to a 501(c)(3) mathematics-related charity
        selected by GIMPS.
        ○ $50,000 will be retained by GIMPS to cover expenses and/or fund future
        or past awards.
  • In the unlikely event that more than one qualifying prime is  discovered  at
  about the same time, then the winner will be the first to  either  send  their
  result to the GIMPS PrimeNet server or to email their results to GIMPS.


                                 Privacy Policy

Thank you for investing your trust. Since 1996, we never  have  and  never  will
sell, distribute or release your email address  or  any  other  information  you
provide  us  for  the  administration  and  operation  of  this  amazing  public
participation research project, except in the  unlikely  requirement  to  comply
with law. Last updated 15 October 2008.
legal\Prime95BinaryRedistributionAuthorisation.pdf
md5: 14AC7D7F71133B7B97CCFEC00290CF2D | sha1: CA898E09E256E038B50991604980E06DC07B8A9D | sha256: F758D764BD96E7E44F72CE252366E7B19FCCEE34F14DD8F146E8798A055D2F85 | sha512: DDA58A20E31E6CA09C9CE885003993C26C1B2EF0B838583EB53DF93698873A1666169044C9624367C66CEF447F4973EA348AF87B0B1B89D6DE0B332E356723F0
legal\VERIFICATION.txt
VERIFICATION

Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

The application has been downloaded from the official distribution and can
be verified by:

1. Go to the binary distribution page

  https://www.mersenne.org/download/

and download the package p95v308b15.win32.zip or p95v308b17.win64.zip using the
links in the relevant section of the page.

Alternatively the packages can be downloaded directly from

  http://www.mersenne.org/ftp_root/gimps/p95v308b15.win32.zip
  http://www.mersenne.org/ftp_root/gimps/p95v308b17.win64.zip

2. The package can be validated by comparing checksums
  - Use powershell function 'Get-Filehash' - Get-Filehash p95v308b15.win32.zip
  - Use chocolatey utility 'checksum.exe' - checksum -t sha256 -f p95v308b15.win32.zip

  File32:         p95v308b15.win32.zip
  ChecksumType32: sha256
  Checksum32:     B44CB82305FBCA3749E525C71E22C065B0CC683C213918FE44B5F383C4F16591

  - Use powershell function 'Get-Filehash' - Get-Filehash p95v308b17.win64.zip
  - Use chocolatey utility 'checksum.exe' - checksum -t sha256 -f p95v308b17.win64.zip

  File64:         p95v308b17.win64.zip
  ChecksumType64: sha256
  Checksum64:     200CE041D0E7F4BE04172BB3211B10831EEC465BE51FF4DE7F1AD93A3C1A5124

Contents of file LICENSE.txt is obtained from https://www.mersenne.org/legal

The license for Prime95 does not provide authorization for redistribution of the application
but George Woltman, Prime95 author and President Mersenne Research Inc., has authorized the
redistribution of Prime95 from the Chocolatey Community Repository.  A copy of this
authorization is included in Prime95BinaryRedistributionAuthorisation.pdf.
tools\chocolateyBeforeModify.ps1
$ErrorActionPreference = 'Stop';

$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

. ("$toolsDir/helpers.ps1")

Close-Prime95

Remove-DesktopShortcut
tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop';

$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

. ("$toolsDir/helpers.ps1")

if ((Get-ProcessorBits 32) -or $env:ChocolateyForceX86 -eq 'true') {
  $archive = Join-Path $toolsDir 'p95v308b15.win32.zip'
} else {
  $archive = Join-Path $toolsDir 'p95v308b17.win64.zip'
}

$packageArgs = @{
  PackageName  = $env:ChocolateyPackageName
  FileFullPath = $archive
  Destination  = $toolsDir
}

Get-ChocolateyUnzip @packageArgs

$pp = Get-PackageParameters

if ($pp.AddToDesktop) {
  Create-DesktopShortcut
}
tools\helpers.ps1
$ErrorActionPreference = 'Stop';

$toolsDir    = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$desktopPath = [Environment]::GetFolderPath("Desktop")

$shortcutFilePath     = "$desktopPath\Prime95.lnk"
$targetPath           = "$toolsDir\prime95.exe"
$workingDirectoryPath = $toolsDir

function Close-Prime95 {
  Get-Process prime95 -ea 0 | ForEach-Object { $_.CloseMainWindow() | Out-Null }
  Start-Sleep 1
  Get-Process prime95 -ea 0 | Stop-Process  #in case graceful shutdown did not succeed, try hard kill
}

function Create-DesktopShortcut {
  $shortcutArgs = @{
    ShortcutFilePath     = $shortcutFilePath
    TargetPath           = $targetPath
    WorkingDirectoryPath = $workingDirectoryPath
  }

  Install-ChocolateyShortcut @shortcutArgs
}
function Remove-DesktopShortcut {
  if (Test-Path -Path $shortcutFilePath) {
    Remove-Item -Path $shortcutFilePath -Force | Out-Null
  }
}
tools\p95v308b15.win32.zip
md5: BBEBFA5DC825671F9A3070AD835B86FE | sha1: DAA707626A7CD0AE3B0116DD6B298C6ECEBBA95C | sha256: B44CB82305FBCA3749E525C71E22C065B0CC683C213918FE44B5F383C4F16591 | sha512: C6D19513FAA0F6BD7632686343DC9CD7E343C8F08EAC4A195F95F0EAA880CA77E59533E36B82F42D95F84C7AB953EA55DB722F99C6BBEA12D6FC06FFB238CF67
tools\p95v308b17.win64.zip
md5: 0F89CD1C739B7459CDF1C867A18997C8 | sha1: 1E05E5BB97918078AD98F754CDB2C9529A241D86 | sha256: 200CE041D0E7F4BE04172BB3211B10831EEC465BE51FF4DE7F1AD93A3C1A5124 | sha512: E44EC520D676552D9ABF6B6A72E5D1A4F07EA7BBCFA6DB5F1B3F741F52C28B074F96017D0B525B156CC7C8444231C506B7AFB0BC25D58DCEF963C8E79495CCB0

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Great Internet Mersenne Prime Search (GIMPS) 30.8.15 1305 Saturday, July 2, 2022 Approved
Great Internet Mersenne Prime Search (GIMPS) 30.7.9 2211 Tuesday, November 30, 2021 Approved
Great Internet Mersenne Prime Search (GIMPS) 30.3.6 2858 Monday, January 25, 2021 Approved
Great Internet Mersenne Prime Search (GIMPS) 29.8.6 121 Monday, January 25, 2021 Approved
Great Internet Mersenne Prime Search (GIMPS) 29.4 5161 Tuesday, May 15, 2018 Approved
Great Internet Mersenne Prime Search (GIMPS) 28.10 1184 Sunday, June 18, 2017 Approved
Great Internet Mersenne Prime Search 28.9.0.20160823 897 Tuesday, August 23, 2016 Approved
Great Internet Mersenne Prime Search 28.9 373 Thursday, May 12, 2016 Approved
Great Internet Mersenne Prime Search 28.5 653 Tuesday, June 23, 2015 Approved
Great Internet Mersenne Prime Search 27.7.0.1 927 Sunday, January 26, 2014 Approved
Great Internet Mersenne Prime Search 27.7 582 Friday, November 30, 2012 Approved
Great Internet Mersenne Prime Search 26.6.3 553 Wednesday, October 26, 2011 Approved

This package has no dependencies.

Discussion for the Great Internet Mersenne Prime Search (GIMPS) Package

Ground Rules:

  • This discussion is only about Great Internet Mersenne Prime Search (GIMPS) and the Great Internet Mersenne Prime Search (GIMPS) package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Great Internet Mersenne Prime Search (GIMPS), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus