X-Git-Url: http://git.euphorik.ch/?p=master-thesis.git;a=blobdiff_plain;f=Parasitemia%2FParasitemiaCore%2FTypes.fs;h=8f526f9891c61b412546ea34003d57a3c242a597;hp=c1a635d9b659b2ce24dac06ad2ab35d95d109562;hb=2d712781def419c9acc98368f7102b19b064f16d;hpb=aeb0583fa94d4c8cef1f8b53559ecac76bc1a191 diff --git a/Parasitemia/ParasitemiaCore/Types.fs b/Parasitemia/ParasitemiaCore/Types.fs index c1a635d..8f526f9 100644 --- a/Parasitemia/ParasitemiaCore/Types.fs +++ b/Parasitemia/ParasitemiaCore/Types.fs @@ -36,14 +36,14 @@ type Ellipse (cx : float32, cy : float32, a : float32, b : float32, alpha : floa this.CutAnHorizontalLine 0.f || this.CutAnHorizontalLine height member this.Scale (factor : float32) : Ellipse = - Ellipse(this.Cx, this.Cy, this.A * factor, this.B * factor, alpha) + Ellipse (this.Cx, this.Cy, this.A * factor, this.B * factor, alpha) // Approximation of Ramanujan. member this.Perimeter = PI * (3.f * (this.A + this.B) - sqrt ((3.f * this.A + this.B) * (this.A + 3.f * this.B))) override this.ToString () = - sprintf "(cx: %f, cy: %f, a: %f, b: %f, alpha: %f)" this.Cx this.Cy this.A this.B this.Alpha + sprintf "{Ellipse: cx = %f, cy = %f, a = %f, b = %f, alpha = %f}" this.Cx this.Cy this.A this.B this.Alpha type CellClass = HealthyRBC | InfectedRBC | Peculiar @@ -71,16 +71,16 @@ type MaybeBuilder () = member this.TryFinally (body, compensation) = try - this.ReturnFrom(body()) + this.ReturnFrom (body ()) finally - compensation() + compensation () member this.Using (disposable : 'a when 'a :> IDisposable, body) = let body' = fun () -> body disposable - this.TryFinally(body', fun () -> + this.TryFinally (body', fun () -> match disposable with | null -> () - | disp -> disp.Dispose()) + | disp -> disp.Dispose ()) member this.Zero () = None @@ -88,7 +88,7 @@ type MaybeBuilder () = member this.Return x = Some x -let maybe = MaybeBuilder() +let maybe = MaybeBuilder () type Result<'a> = | Success of 'a @@ -102,4 +102,4 @@ type ResultBuilder () = member this.ReturnFrom (x) = x -let result = ResultBuilder() \ No newline at end of file +let result = ResultBuilder () \ No newline at end of file