diff --git a/brains/uttt.pth b/brains/uttt.pth index 5b26132..1c29941 100644 Binary files a/brains/uttt.pth and b/brains/uttt.pth differ diff --git a/vacuumDecay.py b/vacuumDecay.py index 7e594af..87bb78a 100644 --- a/vacuumDecay.py +++ b/vacuumDecay.py @@ -467,9 +467,9 @@ class Trainer(Runtime): term = self.linearPlay(model, calcDepth=depth, exacity=exacity) if refining: print('[*] Refining Timeline') - self.fanOut(term, depth=depth+1) - self.fanOut(term.parent, depth=depth+1) - self.fanOut(term.parent.parent, depth=depth+1) + self.fanOut(term, depth=depth+2) + self.fanOut(term.parent, depth=depth+2) + self.fanOut(term.parent.parent, depth=depth+2) return term def fanOut(self, head, depth=4):