1414 * See the License for the specific language governing permissions and
1515 * limitations under the License.
1616 */
17- package org .aika ;
17+ package org .aika . neuron . activation ;
1818
1919
20- import org .aika .neuron .activation .Activation ;
20+ import org .aika .Document ;
21+ import org .aika .Utils ;
2122import org .aika .neuron .activation .Activation .StateChange ;
2223import org .aika .neuron .activation .Activation .SynapseActivation ;
2324import org .aika .neuron .INeuron ;
24- import org .aika .neuron .activation .Candidate ;
25- import org .aika .neuron .activation .Conflicts ;
2625import org .slf4j .Logger ;
2726import org .slf4j .LoggerFactory ;
2827
29- import static org .aika .SearchNode .Decision .SELECTED ;
30- import static org .aika .SearchNode .Decision .EXCLUDED ;
31- import static org .aika .SearchNode .Decision .UNKNOWN ;
28+ import static org .aika .neuron . activation . SearchNode .Decision .SELECTED ;
29+ import static org .aika .neuron . activation . SearchNode .Decision .EXCLUDED ;
30+ import static org .aika .neuron . activation . SearchNode .Decision .UNKNOWN ;
3231import static org .aika .neuron .activation .Activation .ACTIVATION_ID_COMP ;
3332import static org .aika .neuron .activation .Activation .Mode .NEW ;
3433
@@ -58,11 +57,11 @@ public class SearchNode implements Comparable<SearchNode> {
5857
5958 public int id ;
6059
61- public SearchNode excludedParent ;
62- public SearchNode selectedParent ;
60+ SearchNode excludedParent ;
61+ SearchNode selectedParent ;
6362
64- public long visited ;
65- Candidate candidate ;
63+ long visited ;
64+ public Candidate candidate ;
6665 int level ;
6766
6867 DebugState debugState ;
@@ -88,7 +87,7 @@ public enum DebugState {
8887 }
8988
9089 Weight weightDelta = Weight .ZERO ;
91- Weight accumulatedWeight = Weight .ZERO ;
90+ public Weight accumulatedWeight = Weight .ZERO ;
9291
9392 public Map <Activation , StateChange > modifiedActs = new TreeMap <>(ACTIVATION_ID_COMP );
9493
0 commit comments