English 中文(简体)
f#总和 一列Int32 抛出的重新测量操作列表导致溢出
原标题:f# sum a List of Int32 throws Arithmetic operation resulted in an overflow
  • 时间:2012-05-24 10:16:16
  •  标签:
  • .net
  • f#

我试图从0到2 000 000之间 得到所有质数的总和

这是我的代码:

let getPrimesUpTo (x : System.Int32) =
    let upperBound = Convert.ToInt32(Math.Sqrt(Convert.ToDouble(x)))

    let allNumbers = ref [1..x] in    
    for div = 2 to upperBound do allNumbers := List.filter (fun num -> (num % div <> 0 || div >= num)) !allNumbers    
    allNumbers

let sop = 
    let nums = !(getPrimesUpTo 2000000)
    List.sum nums

当我运行它时,我得到: "亚特穆罕默德行动导致溢出"

如果我不做清单。 和我会得到 质数列表

最佳回答

List. sum 使用被检查的溢出运算符。 您可以通过源跟踪此操作符

List.sum calls Seq.sum
Seq.sum calls Checked.(+)

checked. (+) 在溢出时丢出一个错误。 侧边注意 : 这就是为什么 List. Fold (+) List. sum 更快的原因 。

要解决这个问题, 您需要修改您的代码, 以使用 64 位元( 它应该足够大), 我还整理了双与 int 之间的转换

let getPrimesUpTo (x : int64) =
    let upperBound = x |> float |>sqrt |> int64

    let allNumbers = ref [1L..x]    
    for div in 2L..upperBound do allNumbers := List.filter (fun num -> (num % div <> 0L || div >= num)) !allNumbers    
    allNumbers

let sop = 
    let nums = !(getPrimesUpTo 2000000L)
    List.sum nums

计算质数的方法非常低效。 我写了一些相当好的代码来计算F#中的大量质数 - 这里请看https://stackoverflow.com/a/8371684/124259>>https://stackoverflow.com/a/8371684/124259

问题回答

估计 List.sum 将尝试将数值与 Int32 值相提并论..., 估计最高为2,000,000的质数总和大于 Int32.maxValue 。 我怀疑 Int64 是可以接受的 - 所以尝试将 Convert. toInt32 改为 Code>Convert.Toint64





相关问题
Manually implementing high performance algorithms in .NET

As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...

Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How do I compare two decimals to 10 decimal places?

I m using decimal type (.net), and I want to see if two numbers are equal. But I only want to be accurate to 10 decimal places. For example take these three numbers. I want them all to be equal. 0....

Exception practices when creating a SynchronizationContext?

I m creating an STA version of the SynchronizationContext for use in Windows Workflow 4.0. I m wondering what to do about exceptions when Post-ing callbacks. The SynchronizationContext can be used ...

Show running instance in single instance application

I am building an application with C#. I managed to turn this into a single instance application by checking if the same process is already running. Process[] pname = Process.GetProcessesByName("...

How to combine DataTrigger and EventTrigger?

NOTE I have asked the related question (with an accepted answer): How to combine DataTrigger and Trigger? I think I need to combine an EventTrigger and a DataTrigger to achieve what I m after: when ...