home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / languages / progs / curses / Source / h / bp < prev    next >
Encoding:
Text File  |  1987-09-27  |  752 b   |  34 lines

  1. /*
  2.  
  3.        This file is part of the PDP software package.
  4.          
  5.        Copyright 1987 by James L. McClelland and David E. Rumelhart.
  6.        
  7.        Please refer to licensing information in the file license.txt,
  8.        which is in the same directory with this source file and is
  9.        included here by reference.
  10. */
  11.  
  12.  
  13. /* file: bp.h
  14.  
  15.     Header file for the bp program.
  16.     
  17.     First version implemented by Elliot Jaffe.
  18.     
  19.     Date of last revision:  8-12-87/JLM.
  20. */
  21.  
  22. #include <math.h>
  23.  
  24. extern char *prompt;
  25. extern  boolean System_defined;
  26. extern int  epoch;
  27. extern float   *netinput;
  28. extern float   *output;
  29. extern float   *delta;
  30. extern float   *target;
  31. extern float    momentum;    /* momentum constant */
  32. extern float    tmax;        /* maximum possible target value */
  33.  
  34.