diff options
author | Justin Bedo <cu@cua0.org> | 2023-01-26 15:03:50 +1100 |
---|---|---|
committer | Justin Bedo <cu@cua0.org> | 2023-01-27 18:11:42 +1100 |
commit | 80a8e3ea0c78799c76ea833b3404f892c5f08431 (patch) | |
tree | 676815e1768dd49f09d2f512b51b80a5072de4c7 /bin | |
parent | 21574418cd05589db626a65879b7afc081a77da2 (diff) |
bump ppl
Diffstat (limited to 'bin')
-rw-r--r-- | bin/cluster.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/cluster.hs b/bin/cluster.hs index 4c182a1..a003227 100644 --- a/bin/cluster.hs +++ b/bin/cluster.hs @@ -139,7 +139,7 @@ run opts = do g = mkStdGen $ seed opts parsed <- compact $ map (map dbl . tail . words) lines hSetBuffering stdout NoBuffering - ((ps, cl), _) <- S.fold_ (\l r -> if mml l < mml r then l else r) (([[]],[]), -1/0) id . takeWithProgress (nsamples opts) $ mh g (mhfrac opts) 0.5 (model $ getCompact parsed) + ((ps, cl), _) <- S.fold_ (\l r -> if mml l < mml r then l else r) (([[]],[]), -1/0) id . takeWithProgress (nsamples opts) $ mh g (mhfrac opts) (model $ getCompact parsed) writeFile (propsPath opts) . unlines $ map (intercalate "," . map show) ps writeFile (clusterPath opts) . unlines $ map show cl where |