#*****************************************************************************
#  FILE     : README
#  PURPOSE  : Readme File for the SNNS Kernel V2.1
#  NOTES    :
#  AUTHOR   : Niels Mache
#  DATE     : 22.07.1992
#  VERSION  : 1.3  7/22/92
#*****************************************************************************


This Directory contains the following files:

makefile.sun    :       Makefile for SUN C-Compilers
makefile.dec    :       Makefile for DEC C-Compilers
makefile.gcc    :       Makefile for GNU C-Compilers
makefile.bcc    :       Makefile for the Borland C++ V3.0 Compiler
                        (running under MS-DOS)

bignet.c        :       Program that creates feedforward-networks
calc_err.c      :       Program for calculating the accurancy of activation
                        functions that uses the table-lookup technique
func_tbl.c      :       Source file, contains user defined function table
init_f.c        :       Source file, contains user defined network
                        initialisation functions
kernel.c        :       Source file, contains the kernel
kr_funcs.c      :       Source file, contains internal interface functions of
                        the kernel
kr_io.c         :       Source file, contains the file I/O interface functions
kr_mem.c        :       Source file, contains the memory management functions
                        of the kernel
kr_rand.c       :       Compatibility source file for MS-DOS
kr_ui.c         :       Source file, contains the user interface functions
learn_f.c       :       Source file, contains user defined network learning
                        functions
make_tbl.c      :       Program for calculating lookup tables for activation
                        functions
netlearn.c      :       Program for training networks
netperf.c       :       SNNS benchmark test program
snnsbat.c       :       Program for training networks in the background
strdup.c        :       Compatibility source file for ULTRIX-32 and MS-DOS
tbl_func.c      :       Source file, contains the activation functions using
                        table-lookup technique
trans_f.c       :       Source file, contains user defined network transfer
                        functions
update_f.c      :       Source file, contains user defined network update
                        functions
matrix.c        :       Source file, contains matrix operation functions



ext_typ.h       :       Header file, contains data types for external kernels
func_mac.h      :       Header file, contains macros for transfer functions
glob_typ.h      :       Header file, contains global data types and constants
                        for external programs
kernel.h        :       Header file, contains prototypes of kernel.c
krui_typ.h      :       Header file, contains ANSII prototypes of kr_ui.c
kr_const.h      :       Header file, contains kernel constants
kr_def.h        :       Header file, contains kernel default values
kr_funcs.h      :       Header file, contains prototypes of kr_funcs.c
kr_io.h         :       Header file, contains prototypes of kr_io.c
kr_mac.h        :       Header file, contains kernel macros
kr_mem.h        :       Header file, contains prototypes of kr_mem.c
kr_typ.h        :       Header file, contains kernel data types and constants
kr_ui.h         :       Header file, contains K&R prototypes of kr_ui.c
random.h        :       Header file, contains prototypes of the randomize
                        functions (missing in ULTRIX-32)
version.h       :       Header file, contains the version numbers of the kernel

matrix.h        :       Header file, contains matrix function prototypes
sigmoid.tbl     :       Sourcefile, contains the approximation tables for the
                        sigmoid activation function that uses a table-lookup
                        technique for reaching better performance without
                        loosing accurancy
