X-Git-Url: http://git.euphorik.ch/?p=master-thesis.git;a=blobdiff_plain;f=Parasitemia%2FParasitemiaCore%2FConfig.fs;h=e5b853cc488a8fd7d412bbc91df5733eb992e051;hp=e000d657334cdb0c044b2094dd54a32850b23c28;hb=cd9c55f80bcdc4fc6b85eb1b81474aed005e5016;hpb=2e029053d283ce141ce9870336cb9574ea4a203a diff --git a/Parasitemia/ParasitemiaCore/Config.fs b/Parasitemia/ParasitemiaCore/Config.fs index e000d65..e5b853c 100644 --- a/Parasitemia/ParasitemiaCore/Config.fs +++ b/Parasitemia/ParasitemiaCore/Config.fs @@ -139,3 +139,10 @@ type Config (param : Parameters) = member this.Copy () = this.MemberwiseClone () :?> Config + override this.ToString () = + $"{{{nameof Config}: " + + $"{nameof this.LPFStandardDeviationParasite} = {this.LPFStandardDeviationParasite}, " + + $"{nameof this.LPFStandardDeviationRBC} = {this.LPFStandardDeviationRBC}, " + + $"{nameof this.RBCRadiusByResolution} = {this.RBCRadiusByResolution}, " + + $"{nameof this.RBCRadius} = {this.RBCRadius}, " + + $"{nameof this.Parameters} = {this.Parameters}}}"