increase fishnet maxPlies (closes #10199, #3961)

deepcrayonfish^2
Niklas Fiekas 2021-12-11 16:44:16 +01:00
parent 4ee19711c9
commit f1c3aff3f0
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ final class Analyser(
system: akka.actor.ActorSystem
) {
val maxPlies = 200
val maxPlies = 300
private val workQueue =
new lila.hub.AsyncActorSequencer(maxSize = 256, timeout = 5 seconds, "fishnetAnalyser")

View File

@ -795,7 +795,7 @@ export default class AnalyseCtrl {
if (!this.showComputer()) this.tree.removeComputerVariations();
this.data.analysis = data.analysis;
if (data.analysis)
data.analysis.partial = !!treeOps.findInMainline(data.tree, n => !n.eval && !!n.children.length && n.ply <= 200);
data.analysis.partial = !!treeOps.findInMainline(data.tree, n => !n.eval && !!n.children.length && n.ply <= 300);
if (data.division) this.data.game.division = data.division;
if (this.retro) this.retro.onMergeAnalysisData();
if (this.study) this.study.serverEval.onMergeAnalysisData();