More depth on fanOut

This commit is contained in:
Dominik Moritz Roth 2022-04-15 16:36:10 +02:00
parent 1ad4e1c9d0
commit ffd678a742
2 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@ -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):