示例#1
0
        /// <summary>
        /// Main method just instanciates a delta object and calls run.
        /// </summary>
        /// <param name="args">Not used</param>
        static void Main(string[] args)
        {
            Hebb hebb = new Hebb();

            hebb.run();
        }
示例#2
0
文件: Hebb.cs 项目: DoctorBoo/ML
        /// <summary>
        /// Main method just instanciates a delta object and calls run.
        /// </summary>
        /// <param name="args">Not used</param>
        static void Main(string[] args)
        {
            Hebb hebb = new Hebb();
            hebb.run();

        }