X-Git-Url: https://hackdaworld.org/gitweb/?p=physik%2Fnlsop.git;a=blobdiff_plain;f=nlsop.h;h=a846d083428483d7ba1056c692de0387b1b2f6c7;hp=528c1c436bb68efa0b48e93c70391577572bc86f;hb=40dfea76e1d7217b798999a5ffdca318ee951b81;hpb=c2cf344605eb715f5b6524b1a05317ff319f7dd7 diff --git a/nlsop.h b/nlsop.h index 528c1c4..a846d08 100644 --- a/nlsop.h +++ b/nlsop.h @@ -5,12 +5,21 @@ * */ +#ifndef NLSOP_H +#define NLSOP_H + typedef unsigned int u32; +typedef struct __info +{ + int cc,steps,range; + double a_el,b_el,a_cd,b_cd,a_ap,b_ap; +} info; + #define AMORPH 1 -#define A_EL 1 -#define B_EL 0 +#define A_EL 1. +#define B_EL .0 #define X 50 #define Y 50 @@ -20,8 +29,8 @@ typedef unsigned int u32; #define RANGE 3 #define REFRESH 20 -#define A_CD 1 -#define B_CD 0 +#define A_CD 1. +#define B_CD .0 #define CC 0 @@ -29,3 +38,7 @@ typedef unsigned int u32; #define B_AP .2 #define MAX_CHARS 64 +#define MAX_TXT 32 +#define MAX_ARGV 27 + +#endif /* NLSOP_H */