[PD-cvs] externals/ann/src ann_mlp.c, 1.10, 1.11 makefile.msvc, 1.7, 1.8

dmorelli morellid at users.sourceforge.net
Sat Oct 22 13:29:37 CEST 2005


Update of /cvsroot/pure-data/externals/ann/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23026

Modified Files:
	ann_mlp.c makefile.msvc 
Log Message:
fixed unsigned/signed errors (msvc specific?)

Index: ann_mlp.c
===================================================================
RCS file: /cvsroot/pure-data/externals/ann/src/ann_mlp.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** ann_mlp.c	24 Jul 2005 10:16:46 -0000	1.10
--- ann_mlp.c	22 Oct 2005 11:29:35 -0000	1.11
***************
*** 49,53 ****
  static void ann_mlp_allocate_storage(t_ann_mlp *x)
  {
!   int i;
  
    if(!x->ann)
--- 49,53 ----
  static void ann_mlp_allocate_storage(t_ann_mlp *x)
  {
!   unsigned int i;
  
    if(!x->ann)
***************
*** 300,306 ****
  // run the ann using floats in list passed to the inlet as input values
  // and send result to outlet as list of float
! static void ann_mlp_run_the_net(t_ann_mlp *x, t_symbol *sl, int argc, t_atom *argv)
  {
! 	int i=0;	
  	fann_type *calc_out;
  
--- 300,306 ----
  // run the ann using floats in list passed to the inlet as input values
  // and send result to outlet as list of float
! static void ann_mlp_run_the_net(t_ann_mlp *x, t_symbol *sl, unsigned int argc, t_atom *argv)
  {
! 	unsigned int i=0;	
  	fann_type *calc_out;
  

Index: makefile.msvc
===================================================================
RCS file: /cvsroot/pure-data/externals/ann/src/makefile.msvc,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** makefile.msvc	23 May 2005 14:15:14 -0000	1.7
--- makefile.msvc	22 Oct 2005 11:29:35 -0000	1.8
***************
*** 7,13 ****
  # customize here !
  VC="C:\Programmi\Microsoft Visual Studio .NET\Vc7" 
! PDPATH="C:\Documents and Settings\Davide\Documenti\personali\pd-0.38-3.msw\pd"
! FANNSRC="C:\Documents and Settings\Davide\Documenti\personali\PD\fann-1.2.0\fann-1.2.0\src\include"
! FANNLIB="C:\Documents and Settings\Davide\Documenti\personali\PD\fann-1.2.0\fann-1.2.0\MSVC++\Release"
  
  
--- 7,13 ----
  # customize here !
  VC="C:\Programmi\Microsoft Visual Studio .NET\Vc7" 
! PDPATH="H:\PureData\pd-0.38-3.msw\pd"
! FANNSRC="H:\PureData\FANN\fann-1.2.0\fann-1.2.0\src\include"
! FANNLIB="H:\PureData\FANN\fann-1.2.0\fann-1.2.0\MSVC++\Release"
  
  





More information about the Pd-cvs mailing list