ifalgorithm.java,v

来自「包含了模式识别中常用的一些分类器设计算法」· JAVA,V 代码 · 共 134 行

JAVA,V
134
字号
head	1.3;access;symbols;locks; strict;comment	@# @;1.3date	2005.05.24.13.48.50;	author rirwin;	state Exp;branches;next	1.2;1.2date	2005.03.11.05.06.26;	author patil;	state Exp;branches;next	1.1;1.1date	2004.12.28.00.04.32;	author patil;	state Exp;branches;next	;desc@@1.3log@Added Javadoc comments.@text@/* * @@(#) IFAlgorithm.java  6.0 03/10/05 * * Copyright IES,  All Rights Reserved. *  * This software is the proprietary information of IES   * Use of this software for educational and academic purpose  * is permitted. *  * last edited: Ryan Irwin * *//** * This interface is designed to be the base for all algorithms * @@version 6.00 */public interface IFAlgorithm {    /**     * Sets DataPoints given DataPoints type variable. Will be overwritten.     *     * @@param data_a DataPoints to be set     */    boolean setDataPoints(DataPoints data_a);    /**     * Initializes member data and prepares for execution of first step.     * This method "resets" the algorithm. Will be overwritten.     *     * @@return  true     */    boolean initialize();    /**     * Directs algorithm to next step. Will be overwritten.     *     * @@return true     */    boolean nextStep();    /**     * Directs algorithm to previous step. Will be overwritten.     *     * @@return true     */    boolean prevStep();    /**     * Sets the output panel. Will be overwritten.     *     * @@param out_panel_a OutputPanel to be set     * @@return true     */    boolean setOutputPanel( OutputPanel out_panel_a);    /**     * Sets the ProcessBox. Will be overwritten.     *     * @@param pro_box_a ProcessBox to be set     * @@return true     */    boolean setProcessBox( ProcessBox pro_box_a);}@1.2log@comments changed to Java Documentation Style. though there weren't many1@text@d10 2d20 5d27 6d34 6d41 6d48 7d56 7@1.1log@Initial revision@text@d2 1a2 1 * @@(#) IFAlgorithm.java  1.10 02/09/03d4 1a4 1 * Copyright ***,  All Rights Reserved.d6 3a8 2 * This software is the proprietary information of ********   * Use is subject to license terms.d14 1a14 1 * @@version 1.00@

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?