3

仍在使用 F# 中的 度量单位)

我在制作采用“类型化”浮点数的“通用”函数时遇到问题。

以下模型类旨在根据因素“c”密切关注位置的累积误差。编译器不喜欢我在类型​​的主体中说 0.<'a> (“度量单位文字中的意外类型参数”)。

///Corrects cumulative error in position based on s and c
type Corrector(s_init:float<'a>) =
    let deltaS ds c = sin (ds / c) //incremental error function

    //mutable values
    let mutable nominal_s = s_init
    let mutable error_s = 0.<'a>  //<-- COMPILER NO LIKE

    ///Set new start pos and reset error to zero
    member sc.Reset(s) = 
        nominal_s <- s
        error_s <- 0.<'a>  //<-- COMPILER NO LIKE

    ///Pass in new pos and c to corrector, returns corrected s and current error    
    member sc.Next(s:float<'a>, c:float<'a>) = 
        let ds = s - nominal_s //distance since last request
        nominal_s <- s   //update nominal s
        error_s <- error_s + (deltaS ds c) //calculate cumulative error
        (nominal_s + error_s, error_s) //pass back tuple

我相信,另一个相关问题仍然与“通用”功能有关。

在下面的代码中,我要做的是创建一个函数,该函数将采用任何类型的浮点数的#seq 并将其应用于仅接受“香草”浮点数的函数。第三行给出了“值限制”错误,我看不到任何出路。(删除 # 可以解决问题,但我想避免为列表、序列、数组等编写相同的东西。)

[<Measure>] type km //define a unit of measure
let someFloatFn x = x + 1.2 //this is a function which takes 'vanilla' floats
let MapSeqToNonUnitFunction (x:#seq<float<'a>>) = Seq.map (float >> someFloatFn) x
let testList = [ 1 .. 4 ] |> List.map float |> List.map ((*) 1.0<km>)
MapSeqToNonUnitFunction testList
4

2 回答 2

1

您可以将第一个“编译器不喜欢”更改为

let mutable error_s : float<'a> = 0.0<_>

编译器似乎喜欢这样。

至于第二个问题,我没有看到和你一样的错误,而且这个

[<Measure>] type km 
//define a unit of measure
let someFloatFn x = x + 1.2 //this is a function which takes 'vanilla' floats
let MapSeqToNonUnitFunction (x:seq<float<_>>) = Seq.map (float >> someFloatFn) x
let testList = [ 1 .. 4 ] |> List.map float |> List.map ((*) 1.0<km>)
let testList2 = testList :> seq<_>
let result = MapSeqToNonUnitFunction testList2
printfn "%A" result

为我编译(虽然向上转换到 seq<_> 有点烦人,我不确定是否有一种简单的方法可以摆脱它)。

另外,我认为惯例是将单位参数命名为 'u, 'v, ... 而不是 'a, 'b, ...

于 2009-01-20T20:41:01.360 回答
0

计量单位不能用作类型参数。这是因为编译器在编译期间会擦除它们。这个问题非常相似: F# Units of measure - 'lifting' values to float<something>

于 2009-01-20T11:33:33.977 回答