diff --git a/ALANNStreams/IO/Reporting.fs b/ALANNStreams/IO/Reporting.fs index 11bd7a2..7eed974 100644 --- a/ALANNStreams/IO/Reporting.fs +++ b/ALANNStreams/IO/Reporting.fs @@ -39,11 +39,11 @@ let displayAnswer (answer : Answer) = match systemState.answerDict.TryGetValue answer' with | (false, _) -> match systemState.answerDict.TryAdd(answer', (answer.Prefix, answer.Term, answer.TV)) with - | true -> printActor printActor printfn "Add failed"; () | (true, ((_, _, tv) as existing)) when tv < answer.TV -> match systemState.answerDict.TryUpdate(answer', (answer.Prefix, answer.Term, answer.TV), existing) with - | true -> printActor printActor printfn "Update failed";() | _ -> ()