Exemple #1
0
 public Tree FINDTreeWithOutThreadConsiderationWithMoreeficiency(AddToTree.Tree Base, AddToTree.Tree Holder)
 {
     DummyFind = null;
     Formulas.UknownIntegralSolver UIS = new Formulas.UknownIntegralSolver();
     UIS.Hide();
     DummyFind = this.FINDTreeWithOutThreadConsiderationActionWithMoreeficiency(Base, Holder, ref UIS);
     return(DummyFind);
 }
Exemple #2
0
 private Tree FINDTreeWithOutThreadConsiderationActionWithMoreeficiency(AddToTree.Tree Base, AddToTree.Tree Holder, ref Formulas.UknownIntegralSolver UIS)
 {
     if (Base == null)
     {
         return(DummyFind);
     }
     this.FINDTreeWithOutThreadConsiderationActionWithMoreeficiency(Base.LeftSideAccess, Holder, ref UIS);
     this.FINDTreeWithOutThreadConsiderationActionWithMoreeficiency(Base.RightSideAccess, Holder, ref UIS);
     if (Formulas.EqualToObject.IsEqualWithOutThreadConsiderationByDivision(Base, Holder, ref UIS))
     {
         DummyFind = Base;
     }
     return(DummyFind);
 }