Update of /cvsroot/jboost/jboost/src/jboost/atree
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv26189/atree
Modified Files:
InstrumentedAlternatingTree.java
Log Message:
Cost sensitive normalboost, fixed compile bug in BooleanAttribute
Index: InstrumentedAlternatingTree.java
===================================================================
RCS file: /cvsroot/jboost/jboost/src/jboost/atree/InstrumentedAlternatingTree.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** InstrumentedAlternatingTree.java 23 Oct 2007 23:52:26 -0000 1.5
--- InstrumentedAlternatingTree.java 24 Jan 2008 22:48:53 -0000 1.6
***************
*** 705,709 ****
private int[] makeIndices(boolean[] exMask) {
int[] examples= null;
! int count= 0;
for (int j= 0; j < exMask.length; j++)
if (exMask[j] == true)
--- 705,709 ----
private int[] makeIndices(boolean[] exMask) {
int[] examples= null;
! int count= 0;
for (int j= 0; j < exMask.length; j++)
if (exMask[j] == true)
|