for (i = 0; i < 100; ++i) {
iterator = new TreeTraverseIterator(target);
while (iterator.next() != null)
if (TensorUtils.equalsExactly(iterator.current(), pT))
iterator.set(M);
else if (TensorUtils.equalsExactly(iterator.current(), s))
iterator.set(M2);
allM = iterator.result();
}
status = TensorUtils.equalsExactly(allM, AllToM);
stop = System.currentTimeMillis();