Update of /cvsroot/pure-data/externals/ann/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16709
Modified Files: ann_mlp.c ann_td.c Log Message: moved splash-screen from _new() to _setup() (so it only shows up once, when the external/library is loaded)
Index: ann_mlp.c =================================================================== RCS file: /cvsroot/pure-data/externals/ann/src/ann_mlp.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ann_mlp.c 20 May 2005 20:53:00 -0000 1.6 --- ann_mlp.c 22 May 2005 19:56:58 -0000 1.7 *************** *** 509,519 **** }
- post(""); - post("ann_mlp: neural nets for PD"); - post("version: "VERSION""); - post("compiled: "__DATE__); - post("author: Davide Morelli"); - post("contact: info@davidemorelli.it www.davidemorelli.it"); - return (void *)x; } --- 509,512 ---- *************** *** 528,531 **** --- 521,530 ----
void ann_mlp_setup(void) { + post(""); + post("ann_mlp: multilayer perceptron for PD"); + post("version: "VERSION""); + post("compiled: "__DATE__); + post("author: Davide Morelli"); + post("contact: info@davidemorelli.it www.davidemorelli.it");
ann_mlp_class = class_new(gensym("ann_mlp"),
Index: ann_td.c =================================================================== RCS file: /cvsroot/pure-data/externals/ann/src/ann_td.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ann_td.c 20 May 2005 20:53:00 -0000 1.6 --- ann_td.c 22 May 2005 19:56:58 -0000 1.7 *************** *** 604,614 **** }
- post(""); - post("ann_td: time delay neural nets for PD"); - post("version: "VERSION""); - post("compiled: "__DATE__); - post("author: Davide Morelli"); - post("contact: info@davidemorelli.it www.davidemorelli.it"); - return (void *)x; } --- 604,607 ---- *************** *** 624,627 **** --- 617,626 ----
void ann_td_setup(void) { + post(""); + post("ann_td: time delay neural nets for PD"); + post("version: "VERSION""); + post("compiled: "__DATE__); + post("author: Davide Morelli"); + post("contact: info@davidemorelli.it www.davidemorelli.it");
ann_td_class = class_new(gensym("ann_td"),