LaundrySorcery

Log | Files | Refs

commit 829a403b01ca3e3409b4fd5950f388ca15dbab32
parent 23c298b9fd749b0fb137f1cb69533f0751c97d55
Author: Dominik Schmidt <das1993@hotmail.com>
Date:   Sat, 30 Jun 2018 13:45:19 +0000

Filter out runs longer than 5 hours from the cluster list.

This should filter out the delayed starts

Diffstat:
src/laundryclustery.d | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/laundryclustery.d b/src/laundryclustery.d @@ -151,6 +151,7 @@ int main(string[] args){ .byRecord!(uint, uint)("%s %s") .map!(a=>a[1]-a[0]) .filter!(a=>a>10*60) + .filter!(a=>a<5*5*60) .array; auto res=points.autokmeans();