From: Thomas M. <tsm...@us...> - 2002-12-11 16:18:46
|
Update of /cvsroot/maxent/maxent/src/java/opennlp/maxent In directory sc8-pr-cvs1:/tmp/cvs-serv5862/java/opennlp/maxent Modified Files: GISModel.java Log Message: Added int getNumOutcomes method Index: GISModel.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/java/opennlp/maxent/GISModel.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** GISModel.java 20 Nov 2002 02:44:12 -0000 1.8 --- GISModel.java 11 Dec 2002 16:18:41 -0000 1.9 *************** *** 201,204 **** --- 201,211 ---- } + /** Returns the number of outcomes for this model. + * @return The number of outcomes. + **/ + public int getNumOutcomes() { + return(numOutcomes); + } + /** |