file
stringlengths
18
26
data
stringlengths
2
1.05M
the_stack_data/28041.c
#include <stdio.h> #include <dirent.h> #include <stdbool.h> #include <string.h> #include <time.h> #define IN_FILE "data.str" #define OUT_FILE "out.opp" typedef struct { FILE *in, *out; } Ctx; static Ctx ctx; #include <stdio.h> #include <stdlib.h> #include <string.h> //abcdefghi static char *pstring="abcdefghisl"; char *perm, *poly; int plen; void perminit(char *s) { plen = strlen(s); perm = (char *)malloc((plen+1)*sizeof(char)); perm[plen]=0; poly = (char *)malloc((plen+1)*sizeof(char)); int p; for(p=0;p<plen;p++) poly[p]=0; } int permtick(void) { int ret=-1; int p=plen-2; while( p >= 0 ) { poly[p]++; if(poly[p]>=(plen-p)) { poly[p]=0; p--; } else { p=-2; } } if(p==-1) ret=0; return(ret); } void buildperm(char *s) { char c; int i; for(i=0;i<plen;i++) perm[i]=s[i]; for(i=0;i<(plen-1);i++) if(poly[i]>0) { c =perm[i]; perm[i] =perm[i+poly[i]]; perm[i+poly[i]]=c; } } void test_local_var(unsigned int num) { char data[40] = {0}; fprintf(ctx.out, "void main() {\n"); for (unsigned int i = 0; i < num; i++) { fgets(data, 40, ctx.in); data[strlen(data)-1] = ' '; fprintf(ctx.out, "int %s = 2;\n", data); } fprintf(ctx.out, "}\n // will this work??"); } void test_struct_elems(unsigned int num) { char data[15] = {0}; fprintf(ctx.out, "struct t1 {\n"); char* types[] = {"int", "long", "short", "char"}; for (unsigned int i = 0; i < num; i++) { fgets(data, 15, ctx.in); data[strlen(data)-1] = ' '; int r = rand() % 4; int u = rand() % 2; if (u) fprintf(ctx.out, "\tunsigned %s %s;\n", types[r], data); else fprintf(ctx.out, "\t%s %s;\n", types[r], data); } fprintf(ctx.out, "};\n // will this work??\n"); fprintf(ctx.out, "void main() { t1 a; }\n"); } void test_exprs(unsigned int num) { char data[40] = {0}; fprintf(ctx.out, "void main() {\n"); for (unsigned int i = 0; i < num; i++) { fgets(data, 40, ctx.in); data[strlen(data)-1] = ' '; fprintf(ctx.out, "int %s = 2;\n", data); fprintf(ctx.out, "%s = (%s + 3) + (%s + (5*2));\n", data, data, data); } fprintf(ctx.out, "}\n // will this work??"); } int main(int argc, const char** argv) { ctx.in = fopen(IN_FILE, "r"); ctx.out = fopen(OUT_FILE, "w"); test_local_var(900000); // test_struct_elems(200000); // test_exprs(300000); // perminit(pstring); // do { // buildperm(pstring); // puts(perm); // } while(permtick()); fclose(ctx.in); fclose(ctx.out); return 0; }
the_stack_data/87803.c
/* * FILE: "myclock.c" * */ #include <time.h> /* * gestisci i dettagli dovuti alle diverse librerie */ #if __GNUC__ && __MSDOS__ #include <limits.h> #include <sys/times.h> #define times(v) ((v)->tms_utime=time(0),(v)->tms_stime=0) #define HZ 1.0 #elif VAXC || __TURBOC__ || __MSDOS__ #include <limits.h> /* * * * da rivedere */ #define times(v) ((v)->tms_utime=clock(),(v)->tms_stime=0) #define HZ (double)CLK_TCK struct tms { time_t tms_utime, tms_stime; }; #else /* * * * Unix environment */ #include <sys/times.h> #ifndef HZ #define HZ 60.0 #endif #define ULONG_MAX (~(0L)) #endif /* * * * VAX || TURBO */ static unsigned long prev_time = 0; static unsigned char first_call = 1; unsigned long my_clock() { /* * locals */ unsigned long pres_time; unsigned long diff_time; struct tms t; if (first_call == 1) { first_call = 0; times(&t); prev_time = (t.tms_utime + t.tms_stime); diff_time = 0; } else { times(&t); pres_time = (t.tms_utime + t.tms_stime); diff_time = pres_time - prev_time; prev_time = pres_time; } /* * else */ return (diff_time * 1000.0 / HZ); } /* * my_clock () */
the_stack_data/32949003.c
/* Copyright 2008, Google Inc. * All rights reserved. * * Code released into the public domain. * * curve25519-donna: Curve25519 elliptic curve, public key function * * http://code.google.com/p/curve25519-donna/ * * Adam Langley <[email protected]> * Parts optimised by floodyberry * Derived from public domain C code by Daniel J. Bernstein <[email protected]> * * More information about curve25519 can be found here * http://cr.yp.to/ecdh.html * * djb's sample implementation of curve25519 is written in a special assembly * language called qhasm and uses the floating point registers. * * This is, almost, a clean room reimplementation from the curve25519 paper. It * uses many of the tricks described therein. Only the crecip function is taken * from the sample implementation. */ #include <string.h> #include <stdint.h> #ifdef HAVE_TI_MODE #include "utils.h" #include "curve25519_donna_c64.h" #include "../scalarmult_curve25519.h" typedef uint8_t u8; typedef uint64_t limb; typedef limb felem[5]; /* Special gcc mode for 128-bit integers */ typedef unsigned uint128_t __attribute__ ((mode(TI))); /* Sum two numbers: output += in */ static inline void fsum(limb *output, const limb *in) { output[0] += in[0]; output[1] += in[1]; output[2] += in[2]; output[3] += in[3]; output[4] += in[4]; } /* Find the difference of two numbers: output = in - output * (note the order of the arguments!) * * Assumes that out[i] < 2**52 * On return, out[i] < 2**55 */ static inline void fdifference_backwards(felem out, const felem in) { /* 152 is 19 << 3 */ static const limb two54m152 = (((limb)1) << 54) - 152; static const limb two54m8 = (((limb)1) << 54) - 8; out[0] = in[0] + two54m152 - out[0]; out[1] = in[1] + two54m8 - out[1]; out[2] = in[2] + two54m8 - out[2]; out[3] = in[3] + two54m8 - out[3]; out[4] = in[4] + two54m8 - out[4]; } /* Multiply a number by a scalar: output = in * scalar */ static inline void fscalar_product(felem output, const felem in, const limb scalar) { uint128_t a; a = ((uint128_t) in[0]) * scalar; output[0] = ((limb)a) & 0x7ffffffffffff; a = ((uint128_t) in[1]) * scalar + ((limb) (a >> 51)); output[1] = ((limb)a) & 0x7ffffffffffff; a = ((uint128_t) in[2]) * scalar + ((limb) (a >> 51)); output[2] = ((limb)a) & 0x7ffffffffffff; a = ((uint128_t) in[3]) * scalar + ((limb) (a >> 51)); output[3] = ((limb)a) & 0x7ffffffffffff; a = ((uint128_t) in[4]) * scalar + ((limb) (a >> 51)); output[4] = ((limb)a) & 0x7ffffffffffff; output[0] += (a >> 51) * 19; } /* Multiply two numbers: output = in2 * in * * output must be distinct to both inputs. The inputs are reduced coefficient * form, the output is not. * * Assumes that in[i] < 2**55 and likewise for in2. * On return, output[i] < 2**52 */ static inline void fmul(felem output, const felem in2, const felem in) { uint128_t t[5]; limb r0,r1,r2,r3,r4,s0,s1,s2,s3,s4,c; r0 = in[0]; r1 = in[1]; r2 = in[2]; r3 = in[3]; r4 = in[4]; s0 = in2[0]; s1 = in2[1]; s2 = in2[2]; s3 = in2[3]; s4 = in2[4]; t[0] = ((uint128_t) r0) * s0; t[1] = ((uint128_t) r0) * s1 + ((uint128_t) r1) * s0; t[2] = ((uint128_t) r0) * s2 + ((uint128_t) r2) * s0 + ((uint128_t) r1) * s1; t[3] = ((uint128_t) r0) * s3 + ((uint128_t) r3) * s0 + ((uint128_t) r1) * s2 + ((uint128_t) r2) * s1; t[4] = ((uint128_t) r0) * s4 + ((uint128_t) r4) * s0 + ((uint128_t) r3) * s1 + ((uint128_t) r1) * s3 + ((uint128_t) r2) * s2; r4 *= 19; r1 *= 19; r2 *= 19; r3 *= 19; t[0] += ((uint128_t) r4) * s1 + ((uint128_t) r1) * s4 + ((uint128_t) r2) * s3 + ((uint128_t) r3) * s2; t[1] += ((uint128_t) r4) * s2 + ((uint128_t) r2) * s4 + ((uint128_t) r3) * s3; t[2] += ((uint128_t) r4) * s3 + ((uint128_t) r3) * s4; t[3] += ((uint128_t) r4) * s4; r0 = (limb)t[0] & 0x7ffffffffffff; c = (limb)(t[0] >> 51); t[1] += c; r1 = (limb)t[1] & 0x7ffffffffffff; c = (limb)(t[1] >> 51); t[2] += c; r2 = (limb)t[2] & 0x7ffffffffffff; c = (limb)(t[2] >> 51); t[3] += c; r3 = (limb)t[3] & 0x7ffffffffffff; c = (limb)(t[3] >> 51); t[4] += c; r4 = (limb)t[4] & 0x7ffffffffffff; c = (limb)(t[4] >> 51); r0 += c * 19; c = r0 >> 51; r0 = r0 & 0x7ffffffffffff; r1 += c; c = r1 >> 51; r1 = r1 & 0x7ffffffffffff; r2 += c; output[0] = r0; output[1] = r1; output[2] = r2; output[3] = r3; output[4] = r4; } static inline void fsquare_times(felem output, const felem in, limb count) { uint128_t t[5]; limb r0,r1,r2,r3,r4,c; limb d0,d1,d2,d4,d419; r0 = in[0]; r1 = in[1]; r2 = in[2]; r3 = in[3]; r4 = in[4]; do { d0 = r0 * 2; d1 = r1 * 2; d2 = r2 * 2 * 19; d419 = r4 * 19; d4 = d419 * 2; t[0] = ((uint128_t) r0) * r0 + ((uint128_t) d4) * r1 + (((uint128_t) d2) * (r3 )); t[1] = ((uint128_t) d0) * r1 + ((uint128_t) d4) * r2 + (((uint128_t) r3) * (r3 * 19)); t[2] = ((uint128_t) d0) * r2 + ((uint128_t) r1) * r1 + (((uint128_t) d4) * (r3 )); t[3] = ((uint128_t) d0) * r3 + ((uint128_t) d1) * r2 + (((uint128_t) r4) * (d419 )); t[4] = ((uint128_t) d0) * r4 + ((uint128_t) d1) * r3 + (((uint128_t) r2) * (r2 )); r0 = (limb)t[0] & 0x7ffffffffffff; c = (limb)(t[0] >> 51); t[1] += c; r1 = (limb)t[1] & 0x7ffffffffffff; c = (limb)(t[1] >> 51); t[2] += c; r2 = (limb)t[2] & 0x7ffffffffffff; c = (limb)(t[2] >> 51); t[3] += c; r3 = (limb)t[3] & 0x7ffffffffffff; c = (limb)(t[3] >> 51); t[4] += c; r4 = (limb)t[4] & 0x7ffffffffffff; c = (limb)(t[4] >> 51); r0 += c * 19; c = r0 >> 51; r0 = r0 & 0x7ffffffffffff; r1 += c; c = r1 >> 51; r1 = r1 & 0x7ffffffffffff; r2 += c; } while(--count); output[0] = r0; output[1] = r1; output[2] = r2; output[3] = r3; output[4] = r4; } #ifdef NATIVE_LITTLE_ENDIAN static inline limb load_limb(const u8 *in) { limb out; memcpy(&out, in, sizeof (limb)); return out; } static inline void store_limb(u8 *out, limb in) { memcpy(out, &in, sizeof (limb)); } #else static inline limb load_limb(const u8 *in) { return ((limb)in[0]) | (((limb)in[1]) << 8) | (((limb)in[2]) << 16) | (((limb)in[3]) << 24) | (((limb)in[4]) << 32) | (((limb)in[5]) << 40) | (((limb)in[6]) << 48) | (((limb)in[7]) << 56); } static inline void store_limb(u8 *out, limb in) { out[0] = in & 0xff; out[1] = (in >> 8) & 0xff; out[2] = (in >> 16) & 0xff; out[3] = (in >> 24) & 0xff; out[4] = (in >> 32) & 0xff; out[5] = (in >> 40) & 0xff; out[6] = (in >> 48) & 0xff; out[7] = (in >> 56) & 0xff; } #endif /* Take a little-endian, 32-byte number and expand it into polynomial form */ static void fexpand(limb *output, const u8 *in) { output[0] = load_limb(in) & 0x7ffffffffffff; output[1] = (load_limb(in+6) >> 3) & 0x7ffffffffffff; output[2] = (load_limb(in+12) >> 6) & 0x7ffffffffffff; output[3] = (load_limb(in+19) >> 1) & 0x7ffffffffffff; output[4] = (load_limb(in+24) >> 12) & 0x7ffffffffffff; } /* Take a fully reduced polynomial form number and contract it into a * little-endian, 32-byte array */ static void fcontract(u8 *output, const felem input) { uint128_t t[5]; t[0] = input[0]; t[1] = input[1]; t[2] = input[2]; t[3] = input[3]; t[4] = input[4]; t[1] += t[0] >> 51; t[0] &= 0x7ffffffffffff; t[2] += t[1] >> 51; t[1] &= 0x7ffffffffffff; t[3] += t[2] >> 51; t[2] &= 0x7ffffffffffff; t[4] += t[3] >> 51; t[3] &= 0x7ffffffffffff; t[0] += 19 * (t[4] >> 51); t[4] &= 0x7ffffffffffff; t[1] += t[0] >> 51; t[0] &= 0x7ffffffffffff; t[2] += t[1] >> 51; t[1] &= 0x7ffffffffffff; t[3] += t[2] >> 51; t[2] &= 0x7ffffffffffff; t[4] += t[3] >> 51; t[3] &= 0x7ffffffffffff; t[0] += 19 * (t[4] >> 51); t[4] &= 0x7ffffffffffff; /* now t is between 0 and 2^255-1, properly carried. */ /* case 1: between 0 and 2^255-20. case 2: between 2^255-19 and 2^255-1. */ t[0] += 19; t[1] += t[0] >> 51; t[0] &= 0x7ffffffffffff; t[2] += t[1] >> 51; t[1] &= 0x7ffffffffffff; t[3] += t[2] >> 51; t[2] &= 0x7ffffffffffff; t[4] += t[3] >> 51; t[3] &= 0x7ffffffffffff; t[0] += 19 * (t[4] >> 51); t[4] &= 0x7ffffffffffff; /* now between 19 and 2^255-1 in both cases, and offset by 19. */ t[0] += 0x8000000000000 - 19; t[1] += 0x8000000000000 - 1; t[2] += 0x8000000000000 - 1; t[3] += 0x8000000000000 - 1; t[4] += 0x8000000000000 - 1; /* now between 2^255 and 2^256-20, and offset by 2^255. */ t[1] += t[0] >> 51; t[0] &= 0x7ffffffffffff; t[2] += t[1] >> 51; t[1] &= 0x7ffffffffffff; t[3] += t[2] >> 51; t[2] &= 0x7ffffffffffff; t[4] += t[3] >> 51; t[3] &= 0x7ffffffffffff; t[4] &= 0x7ffffffffffff; store_limb(output, t[0] | (t[1] << 51)); store_limb(output + 8, (t[1] >> 13) | (t[2] << 38)); store_limb(output + 16, (t[2] >> 26) | (t[3] << 25)); store_limb(output + 24, (t[3] >> 39) | (t[4] << 12)); } /* Input: Q, Q', Q-Q' * Output: 2Q, Q+Q' * * x2 z2: long form * x3 z3: long form * x z: short form, destroyed * xprime zprime: short form, destroyed * qmqp: short form, preserved */ static void fmonty(limb *x2, limb *z2, /* output 2Q */ limb *x3, limb *z3, /* output Q + Q' */ limb *x, limb *z, /* input Q */ limb *xprime, limb *zprime, /* input Q' */ const limb *qmqp /* input Q - Q' */) { limb origx[5], origxprime[5], zzz[5], xx[5], zz[5], xxprime[5], zzprime[5], zzzprime[5]; memcpy(origx, x, 5 * sizeof(limb)); fsum(x, z); fdifference_backwards(z, origx); /* does x - z */ memcpy(origxprime, xprime, sizeof(limb) * 5); fsum(xprime, zprime); fdifference_backwards(zprime, origxprime); fmul(xxprime, xprime, z); fmul(zzprime, x, zprime); memcpy(origxprime, xxprime, sizeof(limb) * 5); fsum(xxprime, zzprime); fdifference_backwards(zzprime, origxprime); fsquare_times(x3, xxprime, 1); fsquare_times(zzzprime, zzprime, 1); fmul(z3, zzzprime, qmqp); fsquare_times(xx, x, 1); fsquare_times(zz, z, 1); fmul(x2, xx, zz); fdifference_backwards(zz, xx); /* does zz = xx - zz */ fscalar_product(zzz, zz, 121665); fsum(zzz, xx); fmul(z2, zz, zzz); } /* ----------------------------------------------------------------------------- Maybe swap the contents of two limb arrays (@a and @b), each @len elements long. Perform the swap iff @swap is non-zero. This function performs the swap without leaking any side-channel information. ----------------------------------------------------------------------------- */ static void swap_conditional(limb a[5], limb b[5], limb iswap) { unsigned i; const limb swap = -iswap; for (i = 0; i < 5; ++i) { const limb x = swap & (a[i] ^ b[i]); a[i] ^= x; b[i] ^= x; } } /* Calculates nQ where Q is the x-coordinate of a point on the curve * * resultx/resultz: the x coordinate of the resulting curve point (short form) * n: a little endian, 32-byte number * q: a point of the curve (short form) */ static void cmult(limb *resultx, limb *resultz, const u8 *n, const limb *q) { limb a[5] = {0}, b[5] = {1}, c[5] = {1}, d[5] = {0}; limb *nqpqx = a, *nqpqz = b, *nqx = c, *nqz = d, *t; limb e[5] = {0}, f[5] = {1}, g[5] = {0}, h[5] = {1}; limb *nqpqx2 = e, *nqpqz2 = f, *nqx2 = g, *nqz2 = h; unsigned i, j; memcpy(nqpqx, q, sizeof(limb) * 5); for (i = 0; i < 32; ++i) { u8 byte = n[31 - i]; for (j = 0; j < 8; ++j) { const limb bit = byte >> 7; swap_conditional(nqx, nqpqx, bit); swap_conditional(nqz, nqpqz, bit); fmonty(nqx2, nqz2, nqpqx2, nqpqz2, nqx, nqz, nqpqx, nqpqz, q); swap_conditional(nqx2, nqpqx2, bit); swap_conditional(nqz2, nqpqz2, bit); t = nqx; nqx = nqx2; nqx2 = t; t = nqz; nqz = nqz2; nqz2 = t; t = nqpqx; nqpqx = nqpqx2; nqpqx2 = t; t = nqpqz; nqpqz = nqpqz2; nqpqz2 = t; byte <<= 1; } } memcpy(resultx, nqx, sizeof(limb) * 5); memcpy(resultz, nqz, sizeof(limb) * 5); } /* ----------------------------------------------------------------------------- Shamelessly copied from djb's code, tightened a little ----------------------------------------------------------------------------- */ static void crecip(felem out, const felem z) { felem a,t0,b,c; /* 2 */ fsquare_times(a, z, 1); /* a = 2 */ /* 8 */ fsquare_times(t0, a, 2); /* 9 */ fmul(b, t0, z); /* b = 9 */ /* 11 */ fmul(a, b, a); /* a = 11 */ /* 22 */ fsquare_times(t0, a, 1); /* 2^5 - 2^0 = 31 */ fmul(b, t0, b); /* 2^10 - 2^5 */ fsquare_times(t0, b, 5); /* 2^10 - 2^0 */ fmul(b, t0, b); /* 2^20 - 2^10 */ fsquare_times(t0, b, 10); /* 2^20 - 2^0 */ fmul(c, t0, b); /* 2^40 - 2^20 */ fsquare_times(t0, c, 20); /* 2^40 - 2^0 */ fmul(t0, t0, c); /* 2^50 - 2^10 */ fsquare_times(t0, t0, 10); /* 2^50 - 2^0 */ fmul(b, t0, b); /* 2^100 - 2^50 */ fsquare_times(t0, b, 50); /* 2^100 - 2^0 */ fmul(c, t0, b); /* 2^200 - 2^100 */ fsquare_times(t0, c, 100); /* 2^200 - 2^0 */ fmul(t0, t0, c); /* 2^250 - 2^50 */ fsquare_times(t0, t0, 50); /* 2^250 - 2^0 */ fmul(t0, t0, b); /* 2^255 - 2^5 */ fsquare_times(t0, t0, 5); /* 2^255 - 21 */ fmul(out, t0, a); } static const unsigned char basepoint[32] = {9}; static int crypto_scalarmult_curve25519_donna_c64(unsigned char *mypublic, const unsigned char *secret, const unsigned char *basepoint) { limb bp[5], x[5], z[5], zmone[5]; uint8_t e[32]; int i; for (i = 0;i < 32;++i) e[i] = secret[i]; e[0] &= 248; e[31] &= 127; e[31] |= 64; fexpand(bp, basepoint); cmult(x, z, e, bp); crecip(zmone, z); fmul(z, x, zmone); fcontract(mypublic, z); return 0; } static int crypto_scalarmult_curve25519_donna_c64_base(unsigned char *q, const unsigned char *n) { return crypto_scalarmult_curve25519_donna_c64(q, n, basepoint); } struct crypto_scalarmult_curve25519_implementation crypto_scalarmult_curve25519_donna_c64_implementation = { SODIUM_C99(.mult = ) crypto_scalarmult_curve25519_donna_c64, SODIUM_C99(.mult_base = ) crypto_scalarmult_curve25519_donna_c64_base }; #endif
the_stack_data/224780.c
//@ ltl invariant negative: ( ([] ( (! ( AP((s0_l1 != 0)) && (! AP((s0_l0 != 0))))) || (<> ( (! AP((s0_l0 != 0))) && (! AP((s0_l1 != 0))))))) || (! ([] (<> AP((1.0 <= _diverge_delta)))))); extern float __VERIFIER_nondet_float(void); extern int __VERIFIER_nondet_int(void); char __VERIFIER_nondet_bool(void) { return __VERIFIER_nondet_int() != 0; } float _diverge_delta, _x__diverge_delta; char s26_evt2, _x_s26_evt2; char s26_evt0, _x_s26_evt0; float s26_x, _x_s26_x; char s25_evt2, _x_s25_evt2; char s25_evt0, _x_s25_evt0; float s25_x, _x_s25_x; char s24_evt2, _x_s24_evt2; char s24_evt0, _x_s24_evt0; float s24_x, _x_s24_x; char s23_evt2, _x_s23_evt2; char s23_evt0, _x_s23_evt0; float s23_x, _x_s23_x; char s22_evt2, _x_s22_evt2; char s22_evt0, _x_s22_evt0; float s22_x, _x_s22_x; char s21_evt2, _x_s21_evt2; char s21_evt0, _x_s21_evt0; float s21_x, _x_s21_x; char s20_evt2, _x_s20_evt2; char s20_evt0, _x_s20_evt0; float s20_x, _x_s20_x; char s8_evt0, _x_s8_evt0; char s7_l0, _x_s7_l0; char s21_l1, _x_s21_l1; char s7_evt2, _x_s7_evt2; float s19_x, _x_s19_x; char s21_l0, _x_s21_l0; char s7_evt1, _x_s7_evt1; char s7_evt0, _x_s7_evt0; char s6_l1, _x_s6_l1; char s6_l0, _x_s6_l0; char s20_l1, _x_s20_l1; char s6_evt2, _x_s6_evt2; float s18_x, _x_s18_x; char s20_l0, _x_s20_l0; char s6_evt1, _x_s6_evt1; char s6_evt0, _x_s6_evt0; char s5_l0, _x_s5_l0; char s19_l1, _x_s19_l1; char s5_evt2, _x_s5_evt2; float s17_x, _x_s17_x; char s19_l0, _x_s19_l0; char s5_evt1, _x_s5_evt1; char s19_evt2, _x_s19_evt2; char s5_evt0, _x_s5_evt0; char s22_evt1, _x_s22_evt1; float s4_x, _x_s4_x; char s3_l1, _x_s3_l1; char s3_l0, _x_s3_l0; char s17_l1, _x_s17_l1; char s3_evt2, _x_s3_evt2; float s15_x, _x_s15_x; char s17_evt2, _x_s17_evt2; char s7_l1, _x_s7_l1; char s19_evt1, _x_s19_evt1; float s1_x, _x_s1_x; char s20_evt1, _x_s20_evt1; float s2_x, _x_s2_x; char s21_evt1, _x_s21_evt1; float s3_x, _x_s3_x; char s4_l1, _x_s4_l1; char bus_l1, _x_bus_l1; float s16_x, _x_s16_x; char bus_evt2, _x_bus_evt2; char s11_evt0, _x_s11_evt0; char s4_l0, _x_s4_l0; char bus_l0, _x_bus_l0; float s10_x, _x_s10_x; char s18_evt2, _x_s18_evt2; char bus_evt1, _x_bus_evt1; char s4_evt0, _x_s4_evt0; float s0_x, _x_s0_x; char s18_evt1, _x_s18_evt1; char s4_evt2, _x_s4_evt2; char s18_l1, _x_s18_l1; char bus_evt0, _x_bus_evt0; char s23_evt1, _x_s23_evt1; float s5_x, _x_s5_x; char s0_evt0, _x_s0_evt0; char s14_evt1, _x_s14_evt1; char s24_evt1, _x_s24_evt1; float s6_x, _x_s6_x; char s1_evt0, _x_s1_evt0; char s15_evt1, _x_s15_evt1; char s25_evt1, _x_s25_evt1; float s7_x, _x_s7_x; char s2_evt0, _x_s2_evt0; char s16_evt1, _x_s16_evt1; char s26_evt1, _x_s26_evt1; float s8_x, _x_s8_x; char s3_evt0, _x_s3_evt0; char s17_evt1, _x_s17_evt1; char s13_evt2, _x_s13_evt2; char s14_evt2, _x_s14_evt2; char s15_evt2, _x_s15_evt2; char s16_evt2, _x_s16_evt2; float s12_x, _x_s12_x; float s11_x, _x_s11_x; float s13_x, _x_s13_x; float s14_x, _x_s14_x; float bus_x, _x_bus_x; char s5_l1, _x_s5_l1; char s9_l1, _x_s9_l1; char s0_l0, _x_s0_l0; char s0_evt2, _x_s0_evt2; char s14_l1, _x_s14_l1; char s1_l0, _x_s1_l0; char s1_evt2, _x_s1_evt2; char s15_l1, _x_s15_l1; char s2_l0, _x_s2_l0; char s2_evt2, _x_s2_evt2; char s16_l1, _x_s16_l1; char s0_l1, _x_s0_l1; char s1_l1, _x_s1_l1; char s2_l1, _x_s2_l1; char s22_l0, _x_s22_l0; char s8_evt1, _x_s8_evt1; char s22_l1, _x_s22_l1; char s8_evt2, _x_s8_evt2; char s8_l0, _x_s8_l0; char s8_l1, _x_s8_l1; float s9_x, _x_s9_x; char s9_evt0, _x_s9_evt0; char s23_l0, _x_s23_l0; char s9_evt1, _x_s9_evt1; char s23_l1, _x_s23_l1; char s9_evt2, _x_s9_evt2; char s9_l0, _x_s9_l0; char s10_evt0, _x_s10_evt0; char s24_l0, _x_s24_l0; char s10_evt1, _x_s10_evt1; char s24_l1, _x_s24_l1; char s10_evt2, _x_s10_evt2; char s10_l0, _x_s10_l0; char s10_l1, _x_s10_l1; char s25_l0, _x_s25_l0; char s11_evt1, _x_s11_evt1; char s25_l1, _x_s25_l1; char s11_evt2, _x_s11_evt2; char s11_l0, _x_s11_l0; char s11_l1, _x_s11_l1; char s12_evt0, _x_s12_evt0; char s26_l0, _x_s26_l0; char s12_evt1, _x_s12_evt1; char s26_l1, _x_s26_l1; char s12_evt2, _x_s12_evt2; char s12_l0, _x_s12_l0; char s12_l1, _x_s12_l1; char s13_evt0, _x_s13_evt0; char s13_evt1, _x_s13_evt1; int bus_cd_id, _x_bus_cd_id; char s13_l0, _x_s13_l0; int bus_j, _x_bus_j; char s13_l1, _x_s13_l1; char s14_evt0, _x_s14_evt0; char s0_evt1, _x_s0_evt1; char s14_l0, _x_s14_l0; char s15_evt0, _x_s15_evt0; char s1_evt1, _x_s1_evt1; char s15_l0, _x_s15_l0; char s16_evt0, _x_s16_evt0; char s2_evt1, _x_s2_evt1; char s16_l0, _x_s16_l0; char s17_evt0, _x_s17_evt0; char s3_evt1, _x_s3_evt1; char s17_l0, _x_s17_l0; char s18_evt0, _x_s18_evt0; char s4_evt1, _x_s4_evt1; float delta, _x_delta; char s18_l0, _x_s18_l0; char s19_evt0, _x_s19_evt0; int main() { _diverge_delta = __VERIFIER_nondet_float(); s26_evt2 = __VERIFIER_nondet_bool(); s26_evt0 = __VERIFIER_nondet_bool(); s26_x = __VERIFIER_nondet_float(); s25_evt2 = __VERIFIER_nondet_bool(); s25_evt0 = __VERIFIER_nondet_bool(); s25_x = __VERIFIER_nondet_float(); s24_evt2 = __VERIFIER_nondet_bool(); s24_evt0 = __VERIFIER_nondet_bool(); s24_x = __VERIFIER_nondet_float(); s23_evt2 = __VERIFIER_nondet_bool(); s23_evt0 = __VERIFIER_nondet_bool(); s23_x = __VERIFIER_nondet_float(); s22_evt2 = __VERIFIER_nondet_bool(); s22_evt0 = __VERIFIER_nondet_bool(); s22_x = __VERIFIER_nondet_float(); s21_evt2 = __VERIFIER_nondet_bool(); s21_evt0 = __VERIFIER_nondet_bool(); s21_x = __VERIFIER_nondet_float(); s20_evt2 = __VERIFIER_nondet_bool(); s20_evt0 = __VERIFIER_nondet_bool(); s20_x = __VERIFIER_nondet_float(); s8_evt0 = __VERIFIER_nondet_bool(); s7_l0 = __VERIFIER_nondet_bool(); s21_l1 = __VERIFIER_nondet_bool(); s7_evt2 = __VERIFIER_nondet_bool(); s19_x = __VERIFIER_nondet_float(); s21_l0 = __VERIFIER_nondet_bool(); s7_evt1 = __VERIFIER_nondet_bool(); s7_evt0 = __VERIFIER_nondet_bool(); s6_l1 = __VERIFIER_nondet_bool(); s6_l0 = __VERIFIER_nondet_bool(); s20_l1 = __VERIFIER_nondet_bool(); s6_evt2 = __VERIFIER_nondet_bool(); s18_x = __VERIFIER_nondet_float(); s20_l0 = __VERIFIER_nondet_bool(); s6_evt1 = __VERIFIER_nondet_bool(); s6_evt0 = __VERIFIER_nondet_bool(); s5_l0 = __VERIFIER_nondet_bool(); s19_l1 = __VERIFIER_nondet_bool(); s5_evt2 = __VERIFIER_nondet_bool(); s17_x = __VERIFIER_nondet_float(); s19_l0 = __VERIFIER_nondet_bool(); s5_evt1 = __VERIFIER_nondet_bool(); s19_evt2 = __VERIFIER_nondet_bool(); s5_evt0 = __VERIFIER_nondet_bool(); s22_evt1 = __VERIFIER_nondet_bool(); s4_x = __VERIFIER_nondet_float(); s3_l1 = __VERIFIER_nondet_bool(); s3_l0 = __VERIFIER_nondet_bool(); s17_l1 = __VERIFIER_nondet_bool(); s3_evt2 = __VERIFIER_nondet_bool(); s15_x = __VERIFIER_nondet_float(); s17_evt2 = __VERIFIER_nondet_bool(); s7_l1 = __VERIFIER_nondet_bool(); s19_evt1 = __VERIFIER_nondet_bool(); s1_x = __VERIFIER_nondet_float(); s20_evt1 = __VERIFIER_nondet_bool(); s2_x = __VERIFIER_nondet_float(); s21_evt1 = __VERIFIER_nondet_bool(); s3_x = __VERIFIER_nondet_float(); s4_l1 = __VERIFIER_nondet_bool(); bus_l1 = __VERIFIER_nondet_bool(); s16_x = __VERIFIER_nondet_float(); bus_evt2 = __VERIFIER_nondet_bool(); s11_evt0 = __VERIFIER_nondet_bool(); s4_l0 = __VERIFIER_nondet_bool(); bus_l0 = __VERIFIER_nondet_bool(); s10_x = __VERIFIER_nondet_float(); s18_evt2 = __VERIFIER_nondet_bool(); bus_evt1 = __VERIFIER_nondet_bool(); s4_evt0 = __VERIFIER_nondet_bool(); s0_x = __VERIFIER_nondet_float(); s18_evt1 = __VERIFIER_nondet_bool(); s4_evt2 = __VERIFIER_nondet_bool(); s18_l1 = __VERIFIER_nondet_bool(); bus_evt0 = __VERIFIER_nondet_bool(); s23_evt1 = __VERIFIER_nondet_bool(); s5_x = __VERIFIER_nondet_float(); s0_evt0 = __VERIFIER_nondet_bool(); s14_evt1 = __VERIFIER_nondet_bool(); s24_evt1 = __VERIFIER_nondet_bool(); s6_x = __VERIFIER_nondet_float(); s1_evt0 = __VERIFIER_nondet_bool(); s15_evt1 = __VERIFIER_nondet_bool(); s25_evt1 = __VERIFIER_nondet_bool(); s7_x = __VERIFIER_nondet_float(); s2_evt0 = __VERIFIER_nondet_bool(); s16_evt1 = __VERIFIER_nondet_bool(); s26_evt1 = __VERIFIER_nondet_bool(); s8_x = __VERIFIER_nondet_float(); s3_evt0 = __VERIFIER_nondet_bool(); s17_evt1 = __VERIFIER_nondet_bool(); s13_evt2 = __VERIFIER_nondet_bool(); s14_evt2 = __VERIFIER_nondet_bool(); s15_evt2 = __VERIFIER_nondet_bool(); s16_evt2 = __VERIFIER_nondet_bool(); s12_x = __VERIFIER_nondet_float(); s11_x = __VERIFIER_nondet_float(); s13_x = __VERIFIER_nondet_float(); s14_x = __VERIFIER_nondet_float(); bus_x = __VERIFIER_nondet_float(); s5_l1 = __VERIFIER_nondet_bool(); s9_l1 = __VERIFIER_nondet_bool(); s0_l0 = __VERIFIER_nondet_bool(); s0_evt2 = __VERIFIER_nondet_bool(); s14_l1 = __VERIFIER_nondet_bool(); s1_l0 = __VERIFIER_nondet_bool(); s1_evt2 = __VERIFIER_nondet_bool(); s15_l1 = __VERIFIER_nondet_bool(); s2_l0 = __VERIFIER_nondet_bool(); s2_evt2 = __VERIFIER_nondet_bool(); s16_l1 = __VERIFIER_nondet_bool(); s0_l1 = __VERIFIER_nondet_bool(); s1_l1 = __VERIFIER_nondet_bool(); s2_l1 = __VERIFIER_nondet_bool(); s22_l0 = __VERIFIER_nondet_bool(); s8_evt1 = __VERIFIER_nondet_bool(); s22_l1 = __VERIFIER_nondet_bool(); s8_evt2 = __VERIFIER_nondet_bool(); s8_l0 = __VERIFIER_nondet_bool(); s8_l1 = __VERIFIER_nondet_bool(); s9_x = __VERIFIER_nondet_float(); s9_evt0 = __VERIFIER_nondet_bool(); s23_l0 = __VERIFIER_nondet_bool(); s9_evt1 = __VERIFIER_nondet_bool(); s23_l1 = __VERIFIER_nondet_bool(); s9_evt2 = __VERIFIER_nondet_bool(); s9_l0 = __VERIFIER_nondet_bool(); s10_evt0 = __VERIFIER_nondet_bool(); s24_l0 = __VERIFIER_nondet_bool(); s10_evt1 = __VERIFIER_nondet_bool(); s24_l1 = __VERIFIER_nondet_bool(); s10_evt2 = __VERIFIER_nondet_bool(); s10_l0 = __VERIFIER_nondet_bool(); s10_l1 = __VERIFIER_nondet_bool(); s25_l0 = __VERIFIER_nondet_bool(); s11_evt1 = __VERIFIER_nondet_bool(); s25_l1 = __VERIFIER_nondet_bool(); s11_evt2 = __VERIFIER_nondet_bool(); s11_l0 = __VERIFIER_nondet_bool(); s11_l1 = __VERIFIER_nondet_bool(); s12_evt0 = __VERIFIER_nondet_bool(); s26_l0 = __VERIFIER_nondet_bool(); s12_evt1 = __VERIFIER_nondet_bool(); s26_l1 = __VERIFIER_nondet_bool(); s12_evt2 = __VERIFIER_nondet_bool(); s12_l0 = __VERIFIER_nondet_bool(); s12_l1 = __VERIFIER_nondet_bool(); s13_evt0 = __VERIFIER_nondet_bool(); s13_evt1 = __VERIFIER_nondet_bool(); bus_cd_id = __VERIFIER_nondet_int(); s13_l0 = __VERIFIER_nondet_bool(); bus_j = __VERIFIER_nondet_int(); s13_l1 = __VERIFIER_nondet_bool(); s14_evt0 = __VERIFIER_nondet_bool(); s0_evt1 = __VERIFIER_nondet_bool(); s14_l0 = __VERIFIER_nondet_bool(); s15_evt0 = __VERIFIER_nondet_bool(); s1_evt1 = __VERIFIER_nondet_bool(); s15_l0 = __VERIFIER_nondet_bool(); s16_evt0 = __VERIFIER_nondet_bool(); s2_evt1 = __VERIFIER_nondet_bool(); s16_l0 = __VERIFIER_nondet_bool(); s17_evt0 = __VERIFIER_nondet_bool(); s3_evt1 = __VERIFIER_nondet_bool(); s17_l0 = __VERIFIER_nondet_bool(); s18_evt0 = __VERIFIER_nondet_bool(); s4_evt1 = __VERIFIER_nondet_bool(); delta = __VERIFIER_nondet_float(); s18_l0 = __VERIFIER_nondet_bool(); s19_evt0 = __VERIFIER_nondet_bool(); int __ok = ((((((((( !(s26_l0 != 0)) && ( !(s26_l1 != 0))) && (s26_x == 0.0)) && ((( !(s26_evt2 != 0)) && ((s26_evt0 != 0) && ( !(s26_evt1 != 0)))) || (((( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0)))) || ((s26_evt2 != 0) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))) || ((( !(s26_evt2 != 0)) && ((s26_evt1 != 0) && ( !(s26_evt0 != 0)))) || ((s26_evt2 != 0) && ((s26_evt1 != 0) && ( !(s26_evt0 != 0)))))))) && ((( !(s26_l0 != 0)) && ( !(s26_l1 != 0))) || (((s26_l1 != 0) && ( !(s26_l0 != 0))) || ((s26_l0 != 0) && ( !(s26_l1 != 0)))))) && ((s26_x <= 404.0) || ( !((s26_l1 != 0) && ( !(s26_l0 != 0)))))) && ((s26_x <= 26.0) || ( !((s26_l0 != 0) && ( !(s26_l1 != 0)))))) && (((((((( !(s25_l0 != 0)) && ( !(s25_l1 != 0))) && (s25_x == 0.0)) && ((( !(s25_evt2 != 0)) && ((s25_evt0 != 0) && ( !(s25_evt1 != 0)))) || (((( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0)))) || ((s25_evt2 != 0) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))) || ((( !(s25_evt2 != 0)) && ((s25_evt1 != 0) && ( !(s25_evt0 != 0)))) || ((s25_evt2 != 0) && ((s25_evt1 != 0) && ( !(s25_evt0 != 0)))))))) && ((( !(s25_l0 != 0)) && ( !(s25_l1 != 0))) || (((s25_l1 != 0) && ( !(s25_l0 != 0))) || ((s25_l0 != 0) && ( !(s25_l1 != 0)))))) && ((s25_x <= 404.0) || ( !((s25_l1 != 0) && ( !(s25_l0 != 0)))))) && ((s25_x <= 26.0) || ( !((s25_l0 != 0) && ( !(s25_l1 != 0)))))) && (((((((( !(s24_l0 != 0)) && ( !(s24_l1 != 0))) && (s24_x == 0.0)) && ((( !(s24_evt2 != 0)) && ((s24_evt0 != 0) && ( !(s24_evt1 != 0)))) || (((( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0)))) || ((s24_evt2 != 0) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))) || ((( !(s24_evt2 != 0)) && ((s24_evt1 != 0) && ( !(s24_evt0 != 0)))) || ((s24_evt2 != 0) && ((s24_evt1 != 0) && ( !(s24_evt0 != 0)))))))) && ((( !(s24_l0 != 0)) && ( !(s24_l1 != 0))) || (((s24_l1 != 0) && ( !(s24_l0 != 0))) || ((s24_l0 != 0) && ( !(s24_l1 != 0)))))) && ((s24_x <= 404.0) || ( !((s24_l1 != 0) && ( !(s24_l0 != 0)))))) && ((s24_x <= 26.0) || ( !((s24_l0 != 0) && ( !(s24_l1 != 0)))))) && (((((((( !(s23_l0 != 0)) && ( !(s23_l1 != 0))) && (s23_x == 0.0)) && ((( !(s23_evt2 != 0)) && ((s23_evt0 != 0) && ( !(s23_evt1 != 0)))) || (((( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0)))) || ((s23_evt2 != 0) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))) || ((( !(s23_evt2 != 0)) && ((s23_evt1 != 0) && ( !(s23_evt0 != 0)))) || ((s23_evt2 != 0) && ((s23_evt1 != 0) && ( !(s23_evt0 != 0)))))))) && ((( !(s23_l0 != 0)) && ( !(s23_l1 != 0))) || (((s23_l1 != 0) && ( !(s23_l0 != 0))) || ((s23_l0 != 0) && ( !(s23_l1 != 0)))))) && ((s23_x <= 404.0) || ( !((s23_l1 != 0) && ( !(s23_l0 != 0)))))) && ((s23_x <= 26.0) || ( !((s23_l0 != 0) && ( !(s23_l1 != 0)))))) && (((((((( !(s22_l0 != 0)) && ( !(s22_l1 != 0))) && (s22_x == 0.0)) && ((( !(s22_evt2 != 0)) && ((s22_evt0 != 0) && ( !(s22_evt1 != 0)))) || (((( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0)))) || ((s22_evt2 != 0) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))) || ((( !(s22_evt2 != 0)) && ((s22_evt1 != 0) && ( !(s22_evt0 != 0)))) || ((s22_evt2 != 0) && ((s22_evt1 != 0) && ( !(s22_evt0 != 0)))))))) && ((( !(s22_l0 != 0)) && ( !(s22_l1 != 0))) || (((s22_l1 != 0) && ( !(s22_l0 != 0))) || ((s22_l0 != 0) && ( !(s22_l1 != 0)))))) && ((s22_x <= 404.0) || ( !((s22_l1 != 0) && ( !(s22_l0 != 0)))))) && ((s22_x <= 26.0) || ( !((s22_l0 != 0) && ( !(s22_l1 != 0)))))) && (((((((( !(s21_l0 != 0)) && ( !(s21_l1 != 0))) && (s21_x == 0.0)) && ((( !(s21_evt2 != 0)) && ((s21_evt0 != 0) && ( !(s21_evt1 != 0)))) || (((( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0)))) || ((s21_evt2 != 0) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))) || ((( !(s21_evt2 != 0)) && ((s21_evt1 != 0) && ( !(s21_evt0 != 0)))) || ((s21_evt2 != 0) && ((s21_evt1 != 0) && ( !(s21_evt0 != 0)))))))) && ((( !(s21_l0 != 0)) && ( !(s21_l1 != 0))) || (((s21_l1 != 0) && ( !(s21_l0 != 0))) || ((s21_l0 != 0) && ( !(s21_l1 != 0)))))) && ((s21_x <= 404.0) || ( !((s21_l1 != 0) && ( !(s21_l0 != 0)))))) && ((s21_x <= 26.0) || ( !((s21_l0 != 0) && ( !(s21_l1 != 0)))))) && (((((((( !(s20_l0 != 0)) && ( !(s20_l1 != 0))) && (s20_x == 0.0)) && ((( !(s20_evt2 != 0)) && ((s20_evt0 != 0) && ( !(s20_evt1 != 0)))) || (((( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0)))) || ((s20_evt2 != 0) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))) || ((( !(s20_evt2 != 0)) && ((s20_evt1 != 0) && ( !(s20_evt0 != 0)))) || ((s20_evt2 != 0) && ((s20_evt1 != 0) && ( !(s20_evt0 != 0)))))))) && ((( !(s20_l0 != 0)) && ( !(s20_l1 != 0))) || (((s20_l1 != 0) && ( !(s20_l0 != 0))) || ((s20_l0 != 0) && ( !(s20_l1 != 0)))))) && ((s20_x <= 404.0) || ( !((s20_l1 != 0) && ( !(s20_l0 != 0)))))) && ((s20_x <= 26.0) || ( !((s20_l0 != 0) && ( !(s20_l1 != 0)))))) && (((((((( !(s19_l0 != 0)) && ( !(s19_l1 != 0))) && (s19_x == 0.0)) && ((( !(s19_evt2 != 0)) && ((s19_evt0 != 0) && ( !(s19_evt1 != 0)))) || (((( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0)))) || ((s19_evt2 != 0) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))) || ((( !(s19_evt2 != 0)) && ((s19_evt1 != 0) && ( !(s19_evt0 != 0)))) || ((s19_evt2 != 0) && ((s19_evt1 != 0) && ( !(s19_evt0 != 0)))))))) && ((( !(s19_l0 != 0)) && ( !(s19_l1 != 0))) || (((s19_l1 != 0) && ( !(s19_l0 != 0))) || ((s19_l0 != 0) && ( !(s19_l1 != 0)))))) && ((s19_x <= 404.0) || ( !((s19_l1 != 0) && ( !(s19_l0 != 0)))))) && ((s19_x <= 26.0) || ( !((s19_l0 != 0) && ( !(s19_l1 != 0)))))) && (((((((( !(s18_l0 != 0)) && ( !(s18_l1 != 0))) && (s18_x == 0.0)) && ((( !(s18_evt2 != 0)) && ((s18_evt0 != 0) && ( !(s18_evt1 != 0)))) || (((( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0)))) || ((s18_evt2 != 0) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))) || ((( !(s18_evt2 != 0)) && ((s18_evt1 != 0) && ( !(s18_evt0 != 0)))) || ((s18_evt2 != 0) && ((s18_evt1 != 0) && ( !(s18_evt0 != 0)))))))) && ((( !(s18_l0 != 0)) && ( !(s18_l1 != 0))) || (((s18_l1 != 0) && ( !(s18_l0 != 0))) || ((s18_l0 != 0) && ( !(s18_l1 != 0)))))) && ((s18_x <= 404.0) || ( !((s18_l1 != 0) && ( !(s18_l0 != 0)))))) && ((s18_x <= 26.0) || ( !((s18_l0 != 0) && ( !(s18_l1 != 0)))))) && (((((((( !(s17_l0 != 0)) && ( !(s17_l1 != 0))) && (s17_x == 0.0)) && ((( !(s17_evt2 != 0)) && ((s17_evt0 != 0) && ( !(s17_evt1 != 0)))) || (((( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0)))) || ((s17_evt2 != 0) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))) || ((( !(s17_evt2 != 0)) && ((s17_evt1 != 0) && ( !(s17_evt0 != 0)))) || ((s17_evt2 != 0) && ((s17_evt1 != 0) && ( !(s17_evt0 != 0)))))))) && ((( !(s17_l0 != 0)) && ( !(s17_l1 != 0))) || (((s17_l1 != 0) && ( !(s17_l0 != 0))) || ((s17_l0 != 0) && ( !(s17_l1 != 0)))))) && ((s17_x <= 404.0) || ( !((s17_l1 != 0) && ( !(s17_l0 != 0)))))) && ((s17_x <= 26.0) || ( !((s17_l0 != 0) && ( !(s17_l1 != 0)))))) && (((((((( !(s16_l0 != 0)) && ( !(s16_l1 != 0))) && (s16_x == 0.0)) && ((( !(s16_evt2 != 0)) && ((s16_evt0 != 0) && ( !(s16_evt1 != 0)))) || (((( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0)))) || ((s16_evt2 != 0) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))) || ((( !(s16_evt2 != 0)) && ((s16_evt1 != 0) && ( !(s16_evt0 != 0)))) || ((s16_evt2 != 0) && ((s16_evt1 != 0) && ( !(s16_evt0 != 0)))))))) && ((( !(s16_l0 != 0)) && ( !(s16_l1 != 0))) || (((s16_l1 != 0) && ( !(s16_l0 != 0))) || ((s16_l0 != 0) && ( !(s16_l1 != 0)))))) && ((s16_x <= 404.0) || ( !((s16_l1 != 0) && ( !(s16_l0 != 0)))))) && ((s16_x <= 26.0) || ( !((s16_l0 != 0) && ( !(s16_l1 != 0)))))) && (((((((( !(s15_l0 != 0)) && ( !(s15_l1 != 0))) && (s15_x == 0.0)) && ((( !(s15_evt2 != 0)) && ((s15_evt0 != 0) && ( !(s15_evt1 != 0)))) || (((( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0)))) || ((s15_evt2 != 0) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))) || ((( !(s15_evt2 != 0)) && ((s15_evt1 != 0) && ( !(s15_evt0 != 0)))) || ((s15_evt2 != 0) && ((s15_evt1 != 0) && ( !(s15_evt0 != 0)))))))) && ((( !(s15_l0 != 0)) && ( !(s15_l1 != 0))) || (((s15_l1 != 0) && ( !(s15_l0 != 0))) || ((s15_l0 != 0) && ( !(s15_l1 != 0)))))) && ((s15_x <= 404.0) || ( !((s15_l1 != 0) && ( !(s15_l0 != 0)))))) && ((s15_x <= 26.0) || ( !((s15_l0 != 0) && ( !(s15_l1 != 0)))))) && (((((((( !(s14_l0 != 0)) && ( !(s14_l1 != 0))) && (s14_x == 0.0)) && ((( !(s14_evt2 != 0)) && ((s14_evt0 != 0) && ( !(s14_evt1 != 0)))) || (((( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0)))) || ((s14_evt2 != 0) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))) || ((( !(s14_evt2 != 0)) && ((s14_evt1 != 0) && ( !(s14_evt0 != 0)))) || ((s14_evt2 != 0) && ((s14_evt1 != 0) && ( !(s14_evt0 != 0)))))))) && ((( !(s14_l0 != 0)) && ( !(s14_l1 != 0))) || (((s14_l1 != 0) && ( !(s14_l0 != 0))) || ((s14_l0 != 0) && ( !(s14_l1 != 0)))))) && ((s14_x <= 404.0) || ( !((s14_l1 != 0) && ( !(s14_l0 != 0)))))) && ((s14_x <= 26.0) || ( !((s14_l0 != 0) && ( !(s14_l1 != 0)))))) && (((((((( !(s13_l0 != 0)) && ( !(s13_l1 != 0))) && (s13_x == 0.0)) && ((( !(s13_evt2 != 0)) && ((s13_evt0 != 0) && ( !(s13_evt1 != 0)))) || (((( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0)))) || ((s13_evt2 != 0) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))) || ((( !(s13_evt2 != 0)) && ((s13_evt1 != 0) && ( !(s13_evt0 != 0)))) || ((s13_evt2 != 0) && ((s13_evt1 != 0) && ( !(s13_evt0 != 0)))))))) && ((( !(s13_l0 != 0)) && ( !(s13_l1 != 0))) || (((s13_l1 != 0) && ( !(s13_l0 != 0))) || ((s13_l0 != 0) && ( !(s13_l1 != 0)))))) && ((s13_x <= 404.0) || ( !((s13_l1 != 0) && ( !(s13_l0 != 0)))))) && ((s13_x <= 26.0) || ( !((s13_l0 != 0) && ( !(s13_l1 != 0)))))) && (((((((( !(s12_l0 != 0)) && ( !(s12_l1 != 0))) && (s12_x == 0.0)) && ((( !(s12_evt2 != 0)) && ((s12_evt0 != 0) && ( !(s12_evt1 != 0)))) || (((( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))) || ((s12_evt2 != 0) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))) || ((( !(s12_evt2 != 0)) && ((s12_evt1 != 0) && ( !(s12_evt0 != 0)))) || ((s12_evt2 != 0) && ((s12_evt1 != 0) && ( !(s12_evt0 != 0)))))))) && ((( !(s12_l0 != 0)) && ( !(s12_l1 != 0))) || (((s12_l1 != 0) && ( !(s12_l0 != 0))) || ((s12_l0 != 0) && ( !(s12_l1 != 0)))))) && ((s12_x <= 404.0) || ( !((s12_l1 != 0) && ( !(s12_l0 != 0)))))) && ((s12_x <= 26.0) || ( !((s12_l0 != 0) && ( !(s12_l1 != 0)))))) && (((((((( !(s11_l0 != 0)) && ( !(s11_l1 != 0))) && (s11_x == 0.0)) && ((( !(s11_evt2 != 0)) && ((s11_evt0 != 0) && ( !(s11_evt1 != 0)))) || (((( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))) || ((s11_evt2 != 0) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))) || ((( !(s11_evt2 != 0)) && ((s11_evt1 != 0) && ( !(s11_evt0 != 0)))) || ((s11_evt2 != 0) && ((s11_evt1 != 0) && ( !(s11_evt0 != 0)))))))) && ((( !(s11_l0 != 0)) && ( !(s11_l1 != 0))) || (((s11_l1 != 0) && ( !(s11_l0 != 0))) || ((s11_l0 != 0) && ( !(s11_l1 != 0)))))) && ((s11_x <= 404.0) || ( !((s11_l1 != 0) && ( !(s11_l0 != 0)))))) && ((s11_x <= 26.0) || ( !((s11_l0 != 0) && ( !(s11_l1 != 0)))))) && (((((((( !(s10_l0 != 0)) && ( !(s10_l1 != 0))) && (s10_x == 0.0)) && ((( !(s10_evt2 != 0)) && ((s10_evt0 != 0) && ( !(s10_evt1 != 0)))) || (((( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))) || ((s10_evt2 != 0) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0))))) || ((( !(s10_evt2 != 0)) && ((s10_evt1 != 0) && ( !(s10_evt0 != 0)))) || ((s10_evt2 != 0) && ((s10_evt1 != 0) && ( !(s10_evt0 != 0)))))))) && ((( !(s10_l0 != 0)) && ( !(s10_l1 != 0))) || (((s10_l1 != 0) && ( !(s10_l0 != 0))) || ((s10_l0 != 0) && ( !(s10_l1 != 0)))))) && ((s10_x <= 404.0) || ( !((s10_l1 != 0) && ( !(s10_l0 != 0)))))) && ((s10_x <= 26.0) || ( !((s10_l0 != 0) && ( !(s10_l1 != 0)))))) && (((((((( !(s9_l0 != 0)) && ( !(s9_l1 != 0))) && (s9_x == 0.0)) && ((( !(s9_evt2 != 0)) && ((s9_evt0 != 0) && ( !(s9_evt1 != 0)))) || (((( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) || ((s9_evt2 != 0) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0))))) || ((( !(s9_evt2 != 0)) && ((s9_evt1 != 0) && ( !(s9_evt0 != 0)))) || ((s9_evt2 != 0) && ((s9_evt1 != 0) && ( !(s9_evt0 != 0)))))))) && ((( !(s9_l0 != 0)) && ( !(s9_l1 != 0))) || (((s9_l1 != 0) && ( !(s9_l0 != 0))) || ((s9_l0 != 0) && ( !(s9_l1 != 0)))))) && ((s9_x <= 404.0) || ( !((s9_l1 != 0) && ( !(s9_l0 != 0)))))) && ((s9_x <= 26.0) || ( !((s9_l0 != 0) && ( !(s9_l1 != 0)))))) && (((((((( !(s8_l0 != 0)) && ( !(s8_l1 != 0))) && (s8_x == 0.0)) && ((( !(s8_evt2 != 0)) && ((s8_evt0 != 0) && ( !(s8_evt1 != 0)))) || (((( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) || ((s8_evt2 != 0) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0))))) || ((( !(s8_evt2 != 0)) && ((s8_evt1 != 0) && ( !(s8_evt0 != 0)))) || ((s8_evt2 != 0) && ((s8_evt1 != 0) && ( !(s8_evt0 != 0)))))))) && ((( !(s8_l0 != 0)) && ( !(s8_l1 != 0))) || (((s8_l1 != 0) && ( !(s8_l0 != 0))) || ((s8_l0 != 0) && ( !(s8_l1 != 0)))))) && ((s8_x <= 404.0) || ( !((s8_l1 != 0) && ( !(s8_l0 != 0)))))) && ((s8_x <= 26.0) || ( !((s8_l0 != 0) && ( !(s8_l1 != 0)))))) && (((((((( !(s7_l0 != 0)) && ( !(s7_l1 != 0))) && (s7_x == 0.0)) && ((( !(s7_evt2 != 0)) && ((s7_evt0 != 0) && ( !(s7_evt1 != 0)))) || (((( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || ((s7_evt2 != 0) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0))))) || ((( !(s7_evt2 != 0)) && ((s7_evt1 != 0) && ( !(s7_evt0 != 0)))) || ((s7_evt2 != 0) && ((s7_evt1 != 0) && ( !(s7_evt0 != 0)))))))) && ((( !(s7_l0 != 0)) && ( !(s7_l1 != 0))) || (((s7_l1 != 0) && ( !(s7_l0 != 0))) || ((s7_l0 != 0) && ( !(s7_l1 != 0)))))) && ((s7_x <= 404.0) || ( !((s7_l1 != 0) && ( !(s7_l0 != 0)))))) && ((s7_x <= 26.0) || ( !((s7_l0 != 0) && ( !(s7_l1 != 0)))))) && (((((((( !(s6_l0 != 0)) && ( !(s6_l1 != 0))) && (s6_x == 0.0)) && ((( !(s6_evt2 != 0)) && ((s6_evt0 != 0) && ( !(s6_evt1 != 0)))) || (((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || ((s6_evt2 != 0) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0))))) || ((( !(s6_evt2 != 0)) && ((s6_evt1 != 0) && ( !(s6_evt0 != 0)))) || ((s6_evt2 != 0) && ((s6_evt1 != 0) && ( !(s6_evt0 != 0)))))))) && ((( !(s6_l0 != 0)) && ( !(s6_l1 != 0))) || (((s6_l1 != 0) && ( !(s6_l0 != 0))) || ((s6_l0 != 0) && ( !(s6_l1 != 0)))))) && ((s6_x <= 404.0) || ( !((s6_l1 != 0) && ( !(s6_l0 != 0)))))) && ((s6_x <= 26.0) || ( !((s6_l0 != 0) && ( !(s6_l1 != 0)))))) && (((((((( !(s5_l0 != 0)) && ( !(s5_l1 != 0))) && (s5_x == 0.0)) && ((( !(s5_evt2 != 0)) && ((s5_evt0 != 0) && ( !(s5_evt1 != 0)))) || (((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || ((s5_evt2 != 0) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0))))) || ((( !(s5_evt2 != 0)) && ((s5_evt1 != 0) && ( !(s5_evt0 != 0)))) || ((s5_evt2 != 0) && ((s5_evt1 != 0) && ( !(s5_evt0 != 0)))))))) && ((( !(s5_l0 != 0)) && ( !(s5_l1 != 0))) || (((s5_l1 != 0) && ( !(s5_l0 != 0))) || ((s5_l0 != 0) && ( !(s5_l1 != 0)))))) && ((s5_x <= 404.0) || ( !((s5_l1 != 0) && ( !(s5_l0 != 0)))))) && ((s5_x <= 26.0) || ( !((s5_l0 != 0) && ( !(s5_l1 != 0)))))) && (((((((( !(s4_l0 != 0)) && ( !(s4_l1 != 0))) && (s4_x == 0.0)) && ((( !(s4_evt2 != 0)) && ((s4_evt0 != 0) && ( !(s4_evt1 != 0)))) || (((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || ((s4_evt2 != 0) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0))))) || ((( !(s4_evt2 != 0)) && ((s4_evt1 != 0) && ( !(s4_evt0 != 0)))) || ((s4_evt2 != 0) && ((s4_evt1 != 0) && ( !(s4_evt0 != 0)))))))) && ((( !(s4_l0 != 0)) && ( !(s4_l1 != 0))) || (((s4_l1 != 0) && ( !(s4_l0 != 0))) || ((s4_l0 != 0) && ( !(s4_l1 != 0)))))) && ((s4_x <= 404.0) || ( !((s4_l1 != 0) && ( !(s4_l0 != 0)))))) && ((s4_x <= 26.0) || ( !((s4_l0 != 0) && ( !(s4_l1 != 0)))))) && (((((((( !(s3_l0 != 0)) && ( !(s3_l1 != 0))) && (s3_x == 0.0)) && ((( !(s3_evt2 != 0)) && ((s3_evt0 != 0) && ( !(s3_evt1 != 0)))) || (((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || ((s3_evt2 != 0) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0))))) || ((( !(s3_evt2 != 0)) && ((s3_evt1 != 0) && ( !(s3_evt0 != 0)))) || ((s3_evt2 != 0) && ((s3_evt1 != 0) && ( !(s3_evt0 != 0)))))))) && ((( !(s3_l0 != 0)) && ( !(s3_l1 != 0))) || (((s3_l1 != 0) && ( !(s3_l0 != 0))) || ((s3_l0 != 0) && ( !(s3_l1 != 0)))))) && ((s3_x <= 404.0) || ( !((s3_l1 != 0) && ( !(s3_l0 != 0)))))) && ((s3_x <= 26.0) || ( !((s3_l0 != 0) && ( !(s3_l1 != 0)))))) && (((((((( !(s2_l0 != 0)) && ( !(s2_l1 != 0))) && (s2_x == 0.0)) && ((( !(s2_evt2 != 0)) && ((s2_evt0 != 0) && ( !(s2_evt1 != 0)))) || (((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || ((s2_evt2 != 0) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0))))) || ((( !(s2_evt2 != 0)) && ((s2_evt1 != 0) && ( !(s2_evt0 != 0)))) || ((s2_evt2 != 0) && ((s2_evt1 != 0) && ( !(s2_evt0 != 0)))))))) && ((( !(s2_l0 != 0)) && ( !(s2_l1 != 0))) || (((s2_l1 != 0) && ( !(s2_l0 != 0))) || ((s2_l0 != 0) && ( !(s2_l1 != 0)))))) && ((s2_x <= 404.0) || ( !((s2_l1 != 0) && ( !(s2_l0 != 0)))))) && ((s2_x <= 26.0) || ( !((s2_l0 != 0) && ( !(s2_l1 != 0)))))) && (((((((( !(s1_l0 != 0)) && ( !(s1_l1 != 0))) && (s1_x == 0.0)) && ((( !(s1_evt2 != 0)) && ((s1_evt0 != 0) && ( !(s1_evt1 != 0)))) || (((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || ((s1_evt2 != 0) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0))))) || ((( !(s1_evt2 != 0)) && ((s1_evt1 != 0) && ( !(s1_evt0 != 0)))) || ((s1_evt2 != 0) && ((s1_evt1 != 0) && ( !(s1_evt0 != 0)))))))) && ((( !(s1_l0 != 0)) && ( !(s1_l1 != 0))) || (((s1_l1 != 0) && ( !(s1_l0 != 0))) || ((s1_l0 != 0) && ( !(s1_l1 != 0)))))) && ((s1_x <= 404.0) || ( !((s1_l1 != 0) && ( !(s1_l0 != 0)))))) && ((s1_x <= 26.0) || ( !((s1_l0 != 0) && ( !(s1_l1 != 0)))))) && (((((((( !(s0_l0 != 0)) && ( !(s0_l1 != 0))) && (s0_x == 0.0)) && ((( !(s0_evt2 != 0)) && ((s0_evt0 != 0) && ( !(s0_evt1 != 0)))) || (((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || ((s0_evt2 != 0) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0))))) || ((( !(s0_evt2 != 0)) && ((s0_evt1 != 0) && ( !(s0_evt0 != 0)))) || ((s0_evt2 != 0) && ((s0_evt1 != 0) && ( !(s0_evt0 != 0)))))))) && ((( !(s0_l0 != 0)) && ( !(s0_l1 != 0))) || (((s0_l1 != 0) && ( !(s0_l0 != 0))) || ((s0_l0 != 0) && ( !(s0_l1 != 0)))))) && ((s0_x <= 404.0) || ( !((s0_l1 != 0) && ( !(s0_l0 != 0)))))) && ((s0_x <= 26.0) || ( !((s0_l0 != 0) && ( !(s0_l1 != 0)))))) && (((((( !(bus_l0 != 0)) && ( !(bus_l1 != 0))) && (((( !(bus_evt2 != 0)) && (( !(bus_evt0 != 0)) && ( !(bus_evt1 != 0)))) || ((((bus_evt2 != 0) && (( !(bus_evt0 != 0)) && ( !(bus_evt1 != 0)))) || (( !(bus_evt2 != 0)) && ((bus_evt1 != 0) && ( !(bus_evt0 != 0))))) || (((bus_evt2 != 0) && ((bus_evt1 != 0) && ( !(bus_evt0 != 0)))) || (( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0))))))) && (((( !(bus_l0 != 0)) && ( !(bus_l1 != 0))) || ((bus_l1 != 0) && ( !(bus_l0 != 0)))) || (((bus_l0 != 0) && ( !(bus_l1 != 0))) || ((bus_l0 != 0) && (bus_l1 != 0)))))) && ((bus_j == 0) && (bus_x == 0.0))) && ((( !(13.0 <= bus_x)) || ( !((bus_l0 != 0) && ( !(bus_l1 != 0))))) && ((delta == 0.0) || ( !((bus_l0 != 0) && (bus_l1 != 0)))))) && (0.0 <= delta))))))))))))))))))))))))))))) && (delta == _diverge_delta)); while (__ok) { _x__diverge_delta = __VERIFIER_nondet_float(); _x_s26_evt2 = __VERIFIER_nondet_bool(); _x_s26_evt0 = __VERIFIER_nondet_bool(); _x_s26_x = __VERIFIER_nondet_float(); _x_s25_evt2 = __VERIFIER_nondet_bool(); _x_s25_evt0 = __VERIFIER_nondet_bool(); _x_s25_x = __VERIFIER_nondet_float(); _x_s24_evt2 = __VERIFIER_nondet_bool(); _x_s24_evt0 = __VERIFIER_nondet_bool(); _x_s24_x = __VERIFIER_nondet_float(); _x_s23_evt2 = __VERIFIER_nondet_bool(); _x_s23_evt0 = __VERIFIER_nondet_bool(); _x_s23_x = __VERIFIER_nondet_float(); _x_s22_evt2 = __VERIFIER_nondet_bool(); _x_s22_evt0 = __VERIFIER_nondet_bool(); _x_s22_x = __VERIFIER_nondet_float(); _x_s21_evt2 = __VERIFIER_nondet_bool(); _x_s21_evt0 = __VERIFIER_nondet_bool(); _x_s21_x = __VERIFIER_nondet_float(); _x_s20_evt2 = __VERIFIER_nondet_bool(); _x_s20_evt0 = __VERIFIER_nondet_bool(); _x_s20_x = __VERIFIER_nondet_float(); _x_s8_evt0 = __VERIFIER_nondet_bool(); _x_s7_l0 = __VERIFIER_nondet_bool(); _x_s21_l1 = __VERIFIER_nondet_bool(); _x_s7_evt2 = __VERIFIER_nondet_bool(); _x_s19_x = __VERIFIER_nondet_float(); _x_s21_l0 = __VERIFIER_nondet_bool(); _x_s7_evt1 = __VERIFIER_nondet_bool(); _x_s7_evt0 = __VERIFIER_nondet_bool(); _x_s6_l1 = __VERIFIER_nondet_bool(); _x_s6_l0 = __VERIFIER_nondet_bool(); _x_s20_l1 = __VERIFIER_nondet_bool(); _x_s6_evt2 = __VERIFIER_nondet_bool(); _x_s18_x = __VERIFIER_nondet_float(); _x_s20_l0 = __VERIFIER_nondet_bool(); _x_s6_evt1 = __VERIFIER_nondet_bool(); _x_s6_evt0 = __VERIFIER_nondet_bool(); _x_s5_l0 = __VERIFIER_nondet_bool(); _x_s19_l1 = __VERIFIER_nondet_bool(); _x_s5_evt2 = __VERIFIER_nondet_bool(); _x_s17_x = __VERIFIER_nondet_float(); _x_s19_l0 = __VERIFIER_nondet_bool(); _x_s5_evt1 = __VERIFIER_nondet_bool(); _x_s19_evt2 = __VERIFIER_nondet_bool(); _x_s5_evt0 = __VERIFIER_nondet_bool(); _x_s22_evt1 = __VERIFIER_nondet_bool(); _x_s4_x = __VERIFIER_nondet_float(); _x_s3_l1 = __VERIFIER_nondet_bool(); _x_s3_l0 = __VERIFIER_nondet_bool(); _x_s17_l1 = __VERIFIER_nondet_bool(); _x_s3_evt2 = __VERIFIER_nondet_bool(); _x_s15_x = __VERIFIER_nondet_float(); _x_s17_evt2 = __VERIFIER_nondet_bool(); _x_s7_l1 = __VERIFIER_nondet_bool(); _x_s19_evt1 = __VERIFIER_nondet_bool(); _x_s1_x = __VERIFIER_nondet_float(); _x_s20_evt1 = __VERIFIER_nondet_bool(); _x_s2_x = __VERIFIER_nondet_float(); _x_s21_evt1 = __VERIFIER_nondet_bool(); _x_s3_x = __VERIFIER_nondet_float(); _x_s4_l1 = __VERIFIER_nondet_bool(); _x_bus_l1 = __VERIFIER_nondet_bool(); _x_s16_x = __VERIFIER_nondet_float(); _x_bus_evt2 = __VERIFIER_nondet_bool(); _x_s11_evt0 = __VERIFIER_nondet_bool(); _x_s4_l0 = __VERIFIER_nondet_bool(); _x_bus_l0 = __VERIFIER_nondet_bool(); _x_s10_x = __VERIFIER_nondet_float(); _x_s18_evt2 = __VERIFIER_nondet_bool(); _x_bus_evt1 = __VERIFIER_nondet_bool(); _x_s4_evt0 = __VERIFIER_nondet_bool(); _x_s0_x = __VERIFIER_nondet_float(); _x_s18_evt1 = __VERIFIER_nondet_bool(); _x_s4_evt2 = __VERIFIER_nondet_bool(); _x_s18_l1 = __VERIFIER_nondet_bool(); _x_bus_evt0 = __VERIFIER_nondet_bool(); _x_s23_evt1 = __VERIFIER_nondet_bool(); _x_s5_x = __VERIFIER_nondet_float(); _x_s0_evt0 = __VERIFIER_nondet_bool(); _x_s14_evt1 = __VERIFIER_nondet_bool(); _x_s24_evt1 = __VERIFIER_nondet_bool(); _x_s6_x = __VERIFIER_nondet_float(); _x_s1_evt0 = __VERIFIER_nondet_bool(); _x_s15_evt1 = __VERIFIER_nondet_bool(); _x_s25_evt1 = __VERIFIER_nondet_bool(); _x_s7_x = __VERIFIER_nondet_float(); _x_s2_evt0 = __VERIFIER_nondet_bool(); _x_s16_evt1 = __VERIFIER_nondet_bool(); _x_s26_evt1 = __VERIFIER_nondet_bool(); _x_s8_x = __VERIFIER_nondet_float(); _x_s3_evt0 = __VERIFIER_nondet_bool(); _x_s17_evt1 = __VERIFIER_nondet_bool(); _x_s13_evt2 = __VERIFIER_nondet_bool(); _x_s14_evt2 = __VERIFIER_nondet_bool(); _x_s15_evt2 = __VERIFIER_nondet_bool(); _x_s16_evt2 = __VERIFIER_nondet_bool(); _x_s12_x = __VERIFIER_nondet_float(); _x_s11_x = __VERIFIER_nondet_float(); _x_s13_x = __VERIFIER_nondet_float(); _x_s14_x = __VERIFIER_nondet_float(); _x_bus_x = __VERIFIER_nondet_float(); _x_s5_l1 = __VERIFIER_nondet_bool(); _x_s9_l1 = __VERIFIER_nondet_bool(); _x_s0_l0 = __VERIFIER_nondet_bool(); _x_s0_evt2 = __VERIFIER_nondet_bool(); _x_s14_l1 = __VERIFIER_nondet_bool(); _x_s1_l0 = __VERIFIER_nondet_bool(); _x_s1_evt2 = __VERIFIER_nondet_bool(); _x_s15_l1 = __VERIFIER_nondet_bool(); _x_s2_l0 = __VERIFIER_nondet_bool(); _x_s2_evt2 = __VERIFIER_nondet_bool(); _x_s16_l1 = __VERIFIER_nondet_bool(); _x_s0_l1 = __VERIFIER_nondet_bool(); _x_s1_l1 = __VERIFIER_nondet_bool(); _x_s2_l1 = __VERIFIER_nondet_bool(); _x_s22_l0 = __VERIFIER_nondet_bool(); _x_s8_evt1 = __VERIFIER_nondet_bool(); _x_s22_l1 = __VERIFIER_nondet_bool(); _x_s8_evt2 = __VERIFIER_nondet_bool(); _x_s8_l0 = __VERIFIER_nondet_bool(); _x_s8_l1 = __VERIFIER_nondet_bool(); _x_s9_x = __VERIFIER_nondet_float(); _x_s9_evt0 = __VERIFIER_nondet_bool(); _x_s23_l0 = __VERIFIER_nondet_bool(); _x_s9_evt1 = __VERIFIER_nondet_bool(); _x_s23_l1 = __VERIFIER_nondet_bool(); _x_s9_evt2 = __VERIFIER_nondet_bool(); _x_s9_l0 = __VERIFIER_nondet_bool(); _x_s10_evt0 = __VERIFIER_nondet_bool(); _x_s24_l0 = __VERIFIER_nondet_bool(); _x_s10_evt1 = __VERIFIER_nondet_bool(); _x_s24_l1 = __VERIFIER_nondet_bool(); _x_s10_evt2 = __VERIFIER_nondet_bool(); _x_s10_l0 = __VERIFIER_nondet_bool(); _x_s10_l1 = __VERIFIER_nondet_bool(); _x_s25_l0 = __VERIFIER_nondet_bool(); _x_s11_evt1 = __VERIFIER_nondet_bool(); _x_s25_l1 = __VERIFIER_nondet_bool(); _x_s11_evt2 = __VERIFIER_nondet_bool(); _x_s11_l0 = __VERIFIER_nondet_bool(); _x_s11_l1 = __VERIFIER_nondet_bool(); _x_s12_evt0 = __VERIFIER_nondet_bool(); _x_s26_l0 = __VERIFIER_nondet_bool(); _x_s12_evt1 = __VERIFIER_nondet_bool(); _x_s26_l1 = __VERIFIER_nondet_bool(); _x_s12_evt2 = __VERIFIER_nondet_bool(); _x_s12_l0 = __VERIFIER_nondet_bool(); _x_s12_l1 = __VERIFIER_nondet_bool(); _x_s13_evt0 = __VERIFIER_nondet_bool(); _x_s13_evt1 = __VERIFIER_nondet_bool(); _x_bus_cd_id = __VERIFIER_nondet_int(); _x_s13_l0 = __VERIFIER_nondet_bool(); _x_bus_j = __VERIFIER_nondet_int(); _x_s13_l1 = __VERIFIER_nondet_bool(); _x_s14_evt0 = __VERIFIER_nondet_bool(); _x_s0_evt1 = __VERIFIER_nondet_bool(); _x_s14_l0 = __VERIFIER_nondet_bool(); _x_s15_evt0 = __VERIFIER_nondet_bool(); _x_s1_evt1 = __VERIFIER_nondet_bool(); _x_s15_l0 = __VERIFIER_nondet_bool(); _x_s16_evt0 = __VERIFIER_nondet_bool(); _x_s2_evt1 = __VERIFIER_nondet_bool(); _x_s16_l0 = __VERIFIER_nondet_bool(); _x_s17_evt0 = __VERIFIER_nondet_bool(); _x_s3_evt1 = __VERIFIER_nondet_bool(); _x_s17_l0 = __VERIFIER_nondet_bool(); _x_s18_evt0 = __VERIFIER_nondet_bool(); _x_s4_evt1 = __VERIFIER_nondet_bool(); _x_delta = __VERIFIER_nondet_float(); _x_s18_l0 = __VERIFIER_nondet_bool(); _x_s19_evt0 = __VERIFIER_nondet_bool(); __ok = ((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( !(_x_s26_evt2 != 0)) && ((_x_s26_evt0 != 0) && ( !(_x_s26_evt1 != 0)))) || (((( !(_x_s26_evt2 != 0)) && (( !(_x_s26_evt0 != 0)) && ( !(_x_s26_evt1 != 0)))) || ((_x_s26_evt2 != 0) && (( !(_x_s26_evt0 != 0)) && ( !(_x_s26_evt1 != 0))))) || ((( !(_x_s26_evt2 != 0)) && ((_x_s26_evt1 != 0) && ( !(_x_s26_evt0 != 0)))) || ((_x_s26_evt2 != 0) && ((_x_s26_evt1 != 0) && ( !(_x_s26_evt0 != 0))))))) && ((( !(_x_s26_l0 != 0)) && ( !(_x_s26_l1 != 0))) || (((_x_s26_l1 != 0) && ( !(_x_s26_l0 != 0))) || ((_x_s26_l0 != 0) && ( !(_x_s26_l1 != 0)))))) && ((_x_s26_x <= 404.0) || ( !((_x_s26_l1 != 0) && ( !(_x_s26_l0 != 0)))))) && ((_x_s26_x <= 26.0) || ( !((_x_s26_l0 != 0) && ( !(_x_s26_l1 != 0)))))) && ((delta <= 0.0) || ((((s26_l0 != 0) == (_x_s26_l0 != 0)) && ((s26_l1 != 0) == (_x_s26_l1 != 0))) && ((delta + (s26_x + (-1.0 * _x_s26_x))) == 0.0)))) && (((((s26_l0 != 0) == (_x_s26_l0 != 0)) && ((s26_l1 != 0) == (_x_s26_l1 != 0))) && ((delta + (s26_x + (-1.0 * _x_s26_x))) == 0.0)) || ( !(( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && ((((_x_s26_l0 != 0) && ( !(_x_s26_l1 != 0))) || ((( !(_x_s26_l0 != 0)) && ( !(_x_s26_l1 != 0))) || ((_x_s26_l1 != 0) && ( !(_x_s26_l0 != 0))))) || ( !((( !(s26_l0 != 0)) && ( !(s26_l1 != 0))) && ((delta == 0.0) && ( !(( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0)))))))))) && (((( !(s26_evt2 != 0)) && ((s26_evt0 != 0) && ( !(s26_evt1 != 0)))) && (_x_s26_x == 0.0)) || ( !((( !(_x_s26_l0 != 0)) && ( !(_x_s26_l1 != 0))) && ((( !(s26_l0 != 0)) && ( !(s26_l1 != 0))) && ((delta == 0.0) && ( !(( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))))))) && ((((s26_evt2 != 0) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0)))) && (_x_s26_x == 0.0)) || ( !(((_x_s26_l1 != 0) && ( !(_x_s26_l0 != 0))) && ((( !(s26_l0 != 0)) && ( !(s26_l1 != 0))) && ((delta == 0.0) && ( !(( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))))))) && (((_x_s26_x == 0.0) && (((s26_evt2 != 0) && ((s26_evt1 != 0) && ( !(s26_evt0 != 0)))) || (( !(s26_evt2 != 0)) && ((s26_evt0 != 0) && ( !(s26_evt1 != 0)))))) || ( !(((_x_s26_l0 != 0) && ( !(_x_s26_l1 != 0))) && ((( !(s26_l0 != 0)) && ( !(s26_l1 != 0))) && ((delta == 0.0) && ( !(( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))))))) && (((( !(_x_s26_l0 != 0)) && ( !(_x_s26_l1 != 0))) || ((_x_s26_l0 != 0) && ( !(_x_s26_l1 != 0)))) || ( !(((s26_l1 != 0) && ( !(s26_l0 != 0))) && ((delta == 0.0) && ( !(( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0)))))))))) && (((404.0 <= s26_x) && ((( !(s26_evt2 != 0)) && ((s26_evt1 != 0) && ( !(s26_evt0 != 0)))) && (_x_s26_x == 0.0))) || ( !((( !(_x_s26_l0 != 0)) && ( !(_x_s26_l1 != 0))) && (((s26_l1 != 0) && ( !(s26_l0 != 0))) && ((delta == 0.0) && ( !(( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))))))) && (((s26_x <= 26.0) && ((( !(s26_evt2 != 0)) && ((s26_evt0 != 0) && ( !(s26_evt1 != 0)))) && (_x_s26_x == 0.0))) || ( !(((_x_s26_l0 != 0) && ( !(_x_s26_l1 != 0))) && (((s26_l1 != 0) && ( !(s26_l0 != 0))) && ((delta == 0.0) && ( !(( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))))))) && ((((_x_s26_l1 != 0) && ( !(_x_s26_l0 != 0))) || ((_x_s26_l0 != 0) && ( !(_x_s26_l1 != 0)))) || ( !(((s26_l0 != 0) && ( !(s26_l1 != 0))) && ((delta == 0.0) && ( !(( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0)))))))))) && (((s26_x <= 26.0) && ((( !(s26_evt2 != 0)) && ((s26_evt0 != 0) && ( !(s26_evt1 != 0)))) && (_x_s26_x == 0.0))) || ( !(((_x_s26_l0 != 0) && ( !(_x_s26_l1 != 0))) && (((s26_l0 != 0) && ( !(s26_l1 != 0))) && ((delta == 0.0) && ( !(( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))))))) && (((s26_x <= 26.0) && (((s26_evt2 != 0) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0)))) && (_x_s26_x == 0.0))) || ( !(((_x_s26_l1 != 0) && ( !(_x_s26_l0 != 0))) && (((s26_l0 != 0) && ( !(s26_l1 != 0))) && ((delta == 0.0) && ( !(( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s25_evt2 != 0)) && ((_x_s25_evt0 != 0) && ( !(_x_s25_evt1 != 0)))) || (((( !(_x_s25_evt2 != 0)) && (( !(_x_s25_evt0 != 0)) && ( !(_x_s25_evt1 != 0)))) || ((_x_s25_evt2 != 0) && (( !(_x_s25_evt0 != 0)) && ( !(_x_s25_evt1 != 0))))) || ((( !(_x_s25_evt2 != 0)) && ((_x_s25_evt1 != 0) && ( !(_x_s25_evt0 != 0)))) || ((_x_s25_evt2 != 0) && ((_x_s25_evt1 != 0) && ( !(_x_s25_evt0 != 0))))))) && ((( !(_x_s25_l0 != 0)) && ( !(_x_s25_l1 != 0))) || (((_x_s25_l1 != 0) && ( !(_x_s25_l0 != 0))) || ((_x_s25_l0 != 0) && ( !(_x_s25_l1 != 0)))))) && ((_x_s25_x <= 404.0) || ( !((_x_s25_l1 != 0) && ( !(_x_s25_l0 != 0)))))) && ((_x_s25_x <= 26.0) || ( !((_x_s25_l0 != 0) && ( !(_x_s25_l1 != 0)))))) && ((delta <= 0.0) || ((((s25_l0 != 0) == (_x_s25_l0 != 0)) && ((s25_l1 != 0) == (_x_s25_l1 != 0))) && ((delta + (s25_x + (-1.0 * _x_s25_x))) == 0.0)))) && (((((s25_l0 != 0) == (_x_s25_l0 != 0)) && ((s25_l1 != 0) == (_x_s25_l1 != 0))) && ((delta + (s25_x + (-1.0 * _x_s25_x))) == 0.0)) || ( !(( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && ((((_x_s25_l0 != 0) && ( !(_x_s25_l1 != 0))) || ((( !(_x_s25_l0 != 0)) && ( !(_x_s25_l1 != 0))) || ((_x_s25_l1 != 0) && ( !(_x_s25_l0 != 0))))) || ( !((( !(s25_l0 != 0)) && ( !(s25_l1 != 0))) && ((delta == 0.0) && ( !(( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0)))))))))) && (((( !(s25_evt2 != 0)) && ((s25_evt0 != 0) && ( !(s25_evt1 != 0)))) && (_x_s25_x == 0.0)) || ( !((( !(_x_s25_l0 != 0)) && ( !(_x_s25_l1 != 0))) && ((( !(s25_l0 != 0)) && ( !(s25_l1 != 0))) && ((delta == 0.0) && ( !(( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))))))) && ((((s25_evt2 != 0) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0)))) && (_x_s25_x == 0.0)) || ( !(((_x_s25_l1 != 0) && ( !(_x_s25_l0 != 0))) && ((( !(s25_l0 != 0)) && ( !(s25_l1 != 0))) && ((delta == 0.0) && ( !(( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))))))) && (((_x_s25_x == 0.0) && (((s25_evt2 != 0) && ((s25_evt1 != 0) && ( !(s25_evt0 != 0)))) || (( !(s25_evt2 != 0)) && ((s25_evt0 != 0) && ( !(s25_evt1 != 0)))))) || ( !(((_x_s25_l0 != 0) && ( !(_x_s25_l1 != 0))) && ((( !(s25_l0 != 0)) && ( !(s25_l1 != 0))) && ((delta == 0.0) && ( !(( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))))))) && (((( !(_x_s25_l0 != 0)) && ( !(_x_s25_l1 != 0))) || ((_x_s25_l0 != 0) && ( !(_x_s25_l1 != 0)))) || ( !(((s25_l1 != 0) && ( !(s25_l0 != 0))) && ((delta == 0.0) && ( !(( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0)))))))))) && (((404.0 <= s25_x) && ((( !(s25_evt2 != 0)) && ((s25_evt1 != 0) && ( !(s25_evt0 != 0)))) && (_x_s25_x == 0.0))) || ( !((( !(_x_s25_l0 != 0)) && ( !(_x_s25_l1 != 0))) && (((s25_l1 != 0) && ( !(s25_l0 != 0))) && ((delta == 0.0) && ( !(( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))))))) && (((s25_x <= 26.0) && ((( !(s25_evt2 != 0)) && ((s25_evt0 != 0) && ( !(s25_evt1 != 0)))) && (_x_s25_x == 0.0))) || ( !(((_x_s25_l0 != 0) && ( !(_x_s25_l1 != 0))) && (((s25_l1 != 0) && ( !(s25_l0 != 0))) && ((delta == 0.0) && ( !(( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))))))) && ((((_x_s25_l1 != 0) && ( !(_x_s25_l0 != 0))) || ((_x_s25_l0 != 0) && ( !(_x_s25_l1 != 0)))) || ( !(((s25_l0 != 0) && ( !(s25_l1 != 0))) && ((delta == 0.0) && ( !(( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0)))))))))) && (((s25_x <= 26.0) && ((( !(s25_evt2 != 0)) && ((s25_evt0 != 0) && ( !(s25_evt1 != 0)))) && (_x_s25_x == 0.0))) || ( !(((_x_s25_l0 != 0) && ( !(_x_s25_l1 != 0))) && (((s25_l0 != 0) && ( !(s25_l1 != 0))) && ((delta == 0.0) && ( !(( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))))))) && (((s25_x <= 26.0) && (((s25_evt2 != 0) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0)))) && (_x_s25_x == 0.0))) || ( !(((_x_s25_l1 != 0) && ( !(_x_s25_l0 != 0))) && (((s25_l0 != 0) && ( !(s25_l1 != 0))) && ((delta == 0.0) && ( !(( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s24_evt2 != 0)) && ((_x_s24_evt0 != 0) && ( !(_x_s24_evt1 != 0)))) || (((( !(_x_s24_evt2 != 0)) && (( !(_x_s24_evt0 != 0)) && ( !(_x_s24_evt1 != 0)))) || ((_x_s24_evt2 != 0) && (( !(_x_s24_evt0 != 0)) && ( !(_x_s24_evt1 != 0))))) || ((( !(_x_s24_evt2 != 0)) && ((_x_s24_evt1 != 0) && ( !(_x_s24_evt0 != 0)))) || ((_x_s24_evt2 != 0) && ((_x_s24_evt1 != 0) && ( !(_x_s24_evt0 != 0))))))) && ((( !(_x_s24_l0 != 0)) && ( !(_x_s24_l1 != 0))) || (((_x_s24_l1 != 0) && ( !(_x_s24_l0 != 0))) || ((_x_s24_l0 != 0) && ( !(_x_s24_l1 != 0)))))) && ((_x_s24_x <= 404.0) || ( !((_x_s24_l1 != 0) && ( !(_x_s24_l0 != 0)))))) && ((_x_s24_x <= 26.0) || ( !((_x_s24_l0 != 0) && ( !(_x_s24_l1 != 0)))))) && ((delta <= 0.0) || ((((s24_l0 != 0) == (_x_s24_l0 != 0)) && ((s24_l1 != 0) == (_x_s24_l1 != 0))) && ((delta + (s24_x + (-1.0 * _x_s24_x))) == 0.0)))) && (((((s24_l0 != 0) == (_x_s24_l0 != 0)) && ((s24_l1 != 0) == (_x_s24_l1 != 0))) && ((delta + (s24_x + (-1.0 * _x_s24_x))) == 0.0)) || ( !(( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && ((((_x_s24_l0 != 0) && ( !(_x_s24_l1 != 0))) || ((( !(_x_s24_l0 != 0)) && ( !(_x_s24_l1 != 0))) || ((_x_s24_l1 != 0) && ( !(_x_s24_l0 != 0))))) || ( !((( !(s24_l0 != 0)) && ( !(s24_l1 != 0))) && ((delta == 0.0) && ( !(( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0)))))))))) && (((( !(s24_evt2 != 0)) && ((s24_evt0 != 0) && ( !(s24_evt1 != 0)))) && (_x_s24_x == 0.0)) || ( !((( !(_x_s24_l0 != 0)) && ( !(_x_s24_l1 != 0))) && ((( !(s24_l0 != 0)) && ( !(s24_l1 != 0))) && ((delta == 0.0) && ( !(( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))))))) && ((((s24_evt2 != 0) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0)))) && (_x_s24_x == 0.0)) || ( !(((_x_s24_l1 != 0) && ( !(_x_s24_l0 != 0))) && ((( !(s24_l0 != 0)) && ( !(s24_l1 != 0))) && ((delta == 0.0) && ( !(( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))))))) && (((_x_s24_x == 0.0) && (((s24_evt2 != 0) && ((s24_evt1 != 0) && ( !(s24_evt0 != 0)))) || (( !(s24_evt2 != 0)) && ((s24_evt0 != 0) && ( !(s24_evt1 != 0)))))) || ( !(((_x_s24_l0 != 0) && ( !(_x_s24_l1 != 0))) && ((( !(s24_l0 != 0)) && ( !(s24_l1 != 0))) && ((delta == 0.0) && ( !(( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))))))) && (((( !(_x_s24_l0 != 0)) && ( !(_x_s24_l1 != 0))) || ((_x_s24_l0 != 0) && ( !(_x_s24_l1 != 0)))) || ( !(((s24_l1 != 0) && ( !(s24_l0 != 0))) && ((delta == 0.0) && ( !(( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0)))))))))) && (((404.0 <= s24_x) && ((( !(s24_evt2 != 0)) && ((s24_evt1 != 0) && ( !(s24_evt0 != 0)))) && (_x_s24_x == 0.0))) || ( !((( !(_x_s24_l0 != 0)) && ( !(_x_s24_l1 != 0))) && (((s24_l1 != 0) && ( !(s24_l0 != 0))) && ((delta == 0.0) && ( !(( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))))))) && (((s24_x <= 26.0) && ((( !(s24_evt2 != 0)) && ((s24_evt0 != 0) && ( !(s24_evt1 != 0)))) && (_x_s24_x == 0.0))) || ( !(((_x_s24_l0 != 0) && ( !(_x_s24_l1 != 0))) && (((s24_l1 != 0) && ( !(s24_l0 != 0))) && ((delta == 0.0) && ( !(( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))))))) && ((((_x_s24_l1 != 0) && ( !(_x_s24_l0 != 0))) || ((_x_s24_l0 != 0) && ( !(_x_s24_l1 != 0)))) || ( !(((s24_l0 != 0) && ( !(s24_l1 != 0))) && ((delta == 0.0) && ( !(( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0)))))))))) && (((s24_x <= 26.0) && ((( !(s24_evt2 != 0)) && ((s24_evt0 != 0) && ( !(s24_evt1 != 0)))) && (_x_s24_x == 0.0))) || ( !(((_x_s24_l0 != 0) && ( !(_x_s24_l1 != 0))) && (((s24_l0 != 0) && ( !(s24_l1 != 0))) && ((delta == 0.0) && ( !(( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))))))) && (((s24_x <= 26.0) && (((s24_evt2 != 0) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0)))) && (_x_s24_x == 0.0))) || ( !(((_x_s24_l1 != 0) && ( !(_x_s24_l0 != 0))) && (((s24_l0 != 0) && ( !(s24_l1 != 0))) && ((delta == 0.0) && ( !(( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s23_evt2 != 0)) && ((_x_s23_evt0 != 0) && ( !(_x_s23_evt1 != 0)))) || (((( !(_x_s23_evt2 != 0)) && (( !(_x_s23_evt0 != 0)) && ( !(_x_s23_evt1 != 0)))) || ((_x_s23_evt2 != 0) && (( !(_x_s23_evt0 != 0)) && ( !(_x_s23_evt1 != 0))))) || ((( !(_x_s23_evt2 != 0)) && ((_x_s23_evt1 != 0) && ( !(_x_s23_evt0 != 0)))) || ((_x_s23_evt2 != 0) && ((_x_s23_evt1 != 0) && ( !(_x_s23_evt0 != 0))))))) && ((( !(_x_s23_l0 != 0)) && ( !(_x_s23_l1 != 0))) || (((_x_s23_l1 != 0) && ( !(_x_s23_l0 != 0))) || ((_x_s23_l0 != 0) && ( !(_x_s23_l1 != 0)))))) && ((_x_s23_x <= 404.0) || ( !((_x_s23_l1 != 0) && ( !(_x_s23_l0 != 0)))))) && ((_x_s23_x <= 26.0) || ( !((_x_s23_l0 != 0) && ( !(_x_s23_l1 != 0)))))) && ((delta <= 0.0) || ((((s23_l0 != 0) == (_x_s23_l0 != 0)) && ((s23_l1 != 0) == (_x_s23_l1 != 0))) && ((delta + (s23_x + (-1.0 * _x_s23_x))) == 0.0)))) && (((((s23_l0 != 0) == (_x_s23_l0 != 0)) && ((s23_l1 != 0) == (_x_s23_l1 != 0))) && ((delta + (s23_x + (-1.0 * _x_s23_x))) == 0.0)) || ( !(( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && ((((_x_s23_l0 != 0) && ( !(_x_s23_l1 != 0))) || ((( !(_x_s23_l0 != 0)) && ( !(_x_s23_l1 != 0))) || ((_x_s23_l1 != 0) && ( !(_x_s23_l0 != 0))))) || ( !((( !(s23_l0 != 0)) && ( !(s23_l1 != 0))) && ((delta == 0.0) && ( !(( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0)))))))))) && (((( !(s23_evt2 != 0)) && ((s23_evt0 != 0) && ( !(s23_evt1 != 0)))) && (_x_s23_x == 0.0)) || ( !((( !(_x_s23_l0 != 0)) && ( !(_x_s23_l1 != 0))) && ((( !(s23_l0 != 0)) && ( !(s23_l1 != 0))) && ((delta == 0.0) && ( !(( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))))))) && ((((s23_evt2 != 0) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0)))) && (_x_s23_x == 0.0)) || ( !(((_x_s23_l1 != 0) && ( !(_x_s23_l0 != 0))) && ((( !(s23_l0 != 0)) && ( !(s23_l1 != 0))) && ((delta == 0.0) && ( !(( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))))))) && (((_x_s23_x == 0.0) && (((s23_evt2 != 0) && ((s23_evt1 != 0) && ( !(s23_evt0 != 0)))) || (( !(s23_evt2 != 0)) && ((s23_evt0 != 0) && ( !(s23_evt1 != 0)))))) || ( !(((_x_s23_l0 != 0) && ( !(_x_s23_l1 != 0))) && ((( !(s23_l0 != 0)) && ( !(s23_l1 != 0))) && ((delta == 0.0) && ( !(( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))))))) && (((( !(_x_s23_l0 != 0)) && ( !(_x_s23_l1 != 0))) || ((_x_s23_l0 != 0) && ( !(_x_s23_l1 != 0)))) || ( !(((s23_l1 != 0) && ( !(s23_l0 != 0))) && ((delta == 0.0) && ( !(( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0)))))))))) && (((404.0 <= s23_x) && ((( !(s23_evt2 != 0)) && ((s23_evt1 != 0) && ( !(s23_evt0 != 0)))) && (_x_s23_x == 0.0))) || ( !((( !(_x_s23_l0 != 0)) && ( !(_x_s23_l1 != 0))) && (((s23_l1 != 0) && ( !(s23_l0 != 0))) && ((delta == 0.0) && ( !(( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))))))) && (((s23_x <= 26.0) && ((( !(s23_evt2 != 0)) && ((s23_evt0 != 0) && ( !(s23_evt1 != 0)))) && (_x_s23_x == 0.0))) || ( !(((_x_s23_l0 != 0) && ( !(_x_s23_l1 != 0))) && (((s23_l1 != 0) && ( !(s23_l0 != 0))) && ((delta == 0.0) && ( !(( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))))))) && ((((_x_s23_l1 != 0) && ( !(_x_s23_l0 != 0))) || ((_x_s23_l0 != 0) && ( !(_x_s23_l1 != 0)))) || ( !(((s23_l0 != 0) && ( !(s23_l1 != 0))) && ((delta == 0.0) && ( !(( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0)))))))))) && (((s23_x <= 26.0) && ((( !(s23_evt2 != 0)) && ((s23_evt0 != 0) && ( !(s23_evt1 != 0)))) && (_x_s23_x == 0.0))) || ( !(((_x_s23_l0 != 0) && ( !(_x_s23_l1 != 0))) && (((s23_l0 != 0) && ( !(s23_l1 != 0))) && ((delta == 0.0) && ( !(( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))))))) && (((s23_x <= 26.0) && (((s23_evt2 != 0) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0)))) && (_x_s23_x == 0.0))) || ( !(((_x_s23_l1 != 0) && ( !(_x_s23_l0 != 0))) && (((s23_l0 != 0) && ( !(s23_l1 != 0))) && ((delta == 0.0) && ( !(( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s22_evt2 != 0)) && ((_x_s22_evt0 != 0) && ( !(_x_s22_evt1 != 0)))) || (((( !(_x_s22_evt2 != 0)) && (( !(_x_s22_evt0 != 0)) && ( !(_x_s22_evt1 != 0)))) || ((_x_s22_evt2 != 0) && (( !(_x_s22_evt0 != 0)) && ( !(_x_s22_evt1 != 0))))) || ((( !(_x_s22_evt2 != 0)) && ((_x_s22_evt1 != 0) && ( !(_x_s22_evt0 != 0)))) || ((_x_s22_evt2 != 0) && ((_x_s22_evt1 != 0) && ( !(_x_s22_evt0 != 0))))))) && ((( !(_x_s22_l0 != 0)) && ( !(_x_s22_l1 != 0))) || (((_x_s22_l1 != 0) && ( !(_x_s22_l0 != 0))) || ((_x_s22_l0 != 0) && ( !(_x_s22_l1 != 0)))))) && ((_x_s22_x <= 404.0) || ( !((_x_s22_l1 != 0) && ( !(_x_s22_l0 != 0)))))) && ((_x_s22_x <= 26.0) || ( !((_x_s22_l0 != 0) && ( !(_x_s22_l1 != 0)))))) && ((delta <= 0.0) || ((((s22_l0 != 0) == (_x_s22_l0 != 0)) && ((s22_l1 != 0) == (_x_s22_l1 != 0))) && ((delta + (s22_x + (-1.0 * _x_s22_x))) == 0.0)))) && (((((s22_l0 != 0) == (_x_s22_l0 != 0)) && ((s22_l1 != 0) == (_x_s22_l1 != 0))) && ((delta + (s22_x + (-1.0 * _x_s22_x))) == 0.0)) || ( !(( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && ((((_x_s22_l0 != 0) && ( !(_x_s22_l1 != 0))) || ((( !(_x_s22_l0 != 0)) && ( !(_x_s22_l1 != 0))) || ((_x_s22_l1 != 0) && ( !(_x_s22_l0 != 0))))) || ( !((( !(s22_l0 != 0)) && ( !(s22_l1 != 0))) && ((delta == 0.0) && ( !(( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0)))))))))) && (((( !(s22_evt2 != 0)) && ((s22_evt0 != 0) && ( !(s22_evt1 != 0)))) && (_x_s22_x == 0.0)) || ( !((( !(_x_s22_l0 != 0)) && ( !(_x_s22_l1 != 0))) && ((( !(s22_l0 != 0)) && ( !(s22_l1 != 0))) && ((delta == 0.0) && ( !(( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))))))) && ((((s22_evt2 != 0) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0)))) && (_x_s22_x == 0.0)) || ( !(((_x_s22_l1 != 0) && ( !(_x_s22_l0 != 0))) && ((( !(s22_l0 != 0)) && ( !(s22_l1 != 0))) && ((delta == 0.0) && ( !(( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))))))) && (((_x_s22_x == 0.0) && (((s22_evt2 != 0) && ((s22_evt1 != 0) && ( !(s22_evt0 != 0)))) || (( !(s22_evt2 != 0)) && ((s22_evt0 != 0) && ( !(s22_evt1 != 0)))))) || ( !(((_x_s22_l0 != 0) && ( !(_x_s22_l1 != 0))) && ((( !(s22_l0 != 0)) && ( !(s22_l1 != 0))) && ((delta == 0.0) && ( !(( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))))))) && (((( !(_x_s22_l0 != 0)) && ( !(_x_s22_l1 != 0))) || ((_x_s22_l0 != 0) && ( !(_x_s22_l1 != 0)))) || ( !(((s22_l1 != 0) && ( !(s22_l0 != 0))) && ((delta == 0.0) && ( !(( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0)))))))))) && (((404.0 <= s22_x) && ((( !(s22_evt2 != 0)) && ((s22_evt1 != 0) && ( !(s22_evt0 != 0)))) && (_x_s22_x == 0.0))) || ( !((( !(_x_s22_l0 != 0)) && ( !(_x_s22_l1 != 0))) && (((s22_l1 != 0) && ( !(s22_l0 != 0))) && ((delta == 0.0) && ( !(( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))))))) && (((s22_x <= 26.0) && ((( !(s22_evt2 != 0)) && ((s22_evt0 != 0) && ( !(s22_evt1 != 0)))) && (_x_s22_x == 0.0))) || ( !(((_x_s22_l0 != 0) && ( !(_x_s22_l1 != 0))) && (((s22_l1 != 0) && ( !(s22_l0 != 0))) && ((delta == 0.0) && ( !(( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))))))) && ((((_x_s22_l1 != 0) && ( !(_x_s22_l0 != 0))) || ((_x_s22_l0 != 0) && ( !(_x_s22_l1 != 0)))) || ( !(((s22_l0 != 0) && ( !(s22_l1 != 0))) && ((delta == 0.0) && ( !(( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0)))))))))) && (((s22_x <= 26.0) && ((( !(s22_evt2 != 0)) && ((s22_evt0 != 0) && ( !(s22_evt1 != 0)))) && (_x_s22_x == 0.0))) || ( !(((_x_s22_l0 != 0) && ( !(_x_s22_l1 != 0))) && (((s22_l0 != 0) && ( !(s22_l1 != 0))) && ((delta == 0.0) && ( !(( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))))))) && (((s22_x <= 26.0) && (((s22_evt2 != 0) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0)))) && (_x_s22_x == 0.0))) || ( !(((_x_s22_l1 != 0) && ( !(_x_s22_l0 != 0))) && (((s22_l0 != 0) && ( !(s22_l1 != 0))) && ((delta == 0.0) && ( !(( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s21_evt2 != 0)) && ((_x_s21_evt0 != 0) && ( !(_x_s21_evt1 != 0)))) || (((( !(_x_s21_evt2 != 0)) && (( !(_x_s21_evt0 != 0)) && ( !(_x_s21_evt1 != 0)))) || ((_x_s21_evt2 != 0) && (( !(_x_s21_evt0 != 0)) && ( !(_x_s21_evt1 != 0))))) || ((( !(_x_s21_evt2 != 0)) && ((_x_s21_evt1 != 0) && ( !(_x_s21_evt0 != 0)))) || ((_x_s21_evt2 != 0) && ((_x_s21_evt1 != 0) && ( !(_x_s21_evt0 != 0))))))) && ((( !(_x_s21_l0 != 0)) && ( !(_x_s21_l1 != 0))) || (((_x_s21_l1 != 0) && ( !(_x_s21_l0 != 0))) || ((_x_s21_l0 != 0) && ( !(_x_s21_l1 != 0)))))) && ((_x_s21_x <= 404.0) || ( !((_x_s21_l1 != 0) && ( !(_x_s21_l0 != 0)))))) && ((_x_s21_x <= 26.0) || ( !((_x_s21_l0 != 0) && ( !(_x_s21_l1 != 0)))))) && ((delta <= 0.0) || ((((s21_l0 != 0) == (_x_s21_l0 != 0)) && ((s21_l1 != 0) == (_x_s21_l1 != 0))) && ((delta + (s21_x + (-1.0 * _x_s21_x))) == 0.0)))) && (((((s21_l0 != 0) == (_x_s21_l0 != 0)) && ((s21_l1 != 0) == (_x_s21_l1 != 0))) && ((delta + (s21_x + (-1.0 * _x_s21_x))) == 0.0)) || ( !(( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && ((((_x_s21_l0 != 0) && ( !(_x_s21_l1 != 0))) || ((( !(_x_s21_l0 != 0)) && ( !(_x_s21_l1 != 0))) || ((_x_s21_l1 != 0) && ( !(_x_s21_l0 != 0))))) || ( !((( !(s21_l0 != 0)) && ( !(s21_l1 != 0))) && ((delta == 0.0) && ( !(( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0)))))))))) && (((( !(s21_evt2 != 0)) && ((s21_evt0 != 0) && ( !(s21_evt1 != 0)))) && (_x_s21_x == 0.0)) || ( !((( !(_x_s21_l0 != 0)) && ( !(_x_s21_l1 != 0))) && ((( !(s21_l0 != 0)) && ( !(s21_l1 != 0))) && ((delta == 0.0) && ( !(( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))))))) && ((((s21_evt2 != 0) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0)))) && (_x_s21_x == 0.0)) || ( !(((_x_s21_l1 != 0) && ( !(_x_s21_l0 != 0))) && ((( !(s21_l0 != 0)) && ( !(s21_l1 != 0))) && ((delta == 0.0) && ( !(( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))))))) && (((_x_s21_x == 0.0) && (((s21_evt2 != 0) && ((s21_evt1 != 0) && ( !(s21_evt0 != 0)))) || (( !(s21_evt2 != 0)) && ((s21_evt0 != 0) && ( !(s21_evt1 != 0)))))) || ( !(((_x_s21_l0 != 0) && ( !(_x_s21_l1 != 0))) && ((( !(s21_l0 != 0)) && ( !(s21_l1 != 0))) && ((delta == 0.0) && ( !(( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))))))) && (((( !(_x_s21_l0 != 0)) && ( !(_x_s21_l1 != 0))) || ((_x_s21_l0 != 0) && ( !(_x_s21_l1 != 0)))) || ( !(((s21_l1 != 0) && ( !(s21_l0 != 0))) && ((delta == 0.0) && ( !(( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0)))))))))) && (((404.0 <= s21_x) && ((( !(s21_evt2 != 0)) && ((s21_evt1 != 0) && ( !(s21_evt0 != 0)))) && (_x_s21_x == 0.0))) || ( !((( !(_x_s21_l0 != 0)) && ( !(_x_s21_l1 != 0))) && (((s21_l1 != 0) && ( !(s21_l0 != 0))) && ((delta == 0.0) && ( !(( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))))))) && (((s21_x <= 26.0) && ((( !(s21_evt2 != 0)) && ((s21_evt0 != 0) && ( !(s21_evt1 != 0)))) && (_x_s21_x == 0.0))) || ( !(((_x_s21_l0 != 0) && ( !(_x_s21_l1 != 0))) && (((s21_l1 != 0) && ( !(s21_l0 != 0))) && ((delta == 0.0) && ( !(( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))))))) && ((((_x_s21_l1 != 0) && ( !(_x_s21_l0 != 0))) || ((_x_s21_l0 != 0) && ( !(_x_s21_l1 != 0)))) || ( !(((s21_l0 != 0) && ( !(s21_l1 != 0))) && ((delta == 0.0) && ( !(( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0)))))))))) && (((s21_x <= 26.0) && ((( !(s21_evt2 != 0)) && ((s21_evt0 != 0) && ( !(s21_evt1 != 0)))) && (_x_s21_x == 0.0))) || ( !(((_x_s21_l0 != 0) && ( !(_x_s21_l1 != 0))) && (((s21_l0 != 0) && ( !(s21_l1 != 0))) && ((delta == 0.0) && ( !(( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))))))) && (((s21_x <= 26.0) && (((s21_evt2 != 0) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0)))) && (_x_s21_x == 0.0))) || ( !(((_x_s21_l1 != 0) && ( !(_x_s21_l0 != 0))) && (((s21_l0 != 0) && ( !(s21_l1 != 0))) && ((delta == 0.0) && ( !(( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s20_evt2 != 0)) && ((_x_s20_evt0 != 0) && ( !(_x_s20_evt1 != 0)))) || (((( !(_x_s20_evt2 != 0)) && (( !(_x_s20_evt0 != 0)) && ( !(_x_s20_evt1 != 0)))) || ((_x_s20_evt2 != 0) && (( !(_x_s20_evt0 != 0)) && ( !(_x_s20_evt1 != 0))))) || ((( !(_x_s20_evt2 != 0)) && ((_x_s20_evt1 != 0) && ( !(_x_s20_evt0 != 0)))) || ((_x_s20_evt2 != 0) && ((_x_s20_evt1 != 0) && ( !(_x_s20_evt0 != 0))))))) && ((( !(_x_s20_l0 != 0)) && ( !(_x_s20_l1 != 0))) || (((_x_s20_l1 != 0) && ( !(_x_s20_l0 != 0))) || ((_x_s20_l0 != 0) && ( !(_x_s20_l1 != 0)))))) && ((_x_s20_x <= 404.0) || ( !((_x_s20_l1 != 0) && ( !(_x_s20_l0 != 0)))))) && ((_x_s20_x <= 26.0) || ( !((_x_s20_l0 != 0) && ( !(_x_s20_l1 != 0)))))) && ((delta <= 0.0) || ((((s20_l0 != 0) == (_x_s20_l0 != 0)) && ((s20_l1 != 0) == (_x_s20_l1 != 0))) && ((delta + (s20_x + (-1.0 * _x_s20_x))) == 0.0)))) && (((((s20_l0 != 0) == (_x_s20_l0 != 0)) && ((s20_l1 != 0) == (_x_s20_l1 != 0))) && ((delta + (s20_x + (-1.0 * _x_s20_x))) == 0.0)) || ( !(( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && ((((_x_s20_l0 != 0) && ( !(_x_s20_l1 != 0))) || ((( !(_x_s20_l0 != 0)) && ( !(_x_s20_l1 != 0))) || ((_x_s20_l1 != 0) && ( !(_x_s20_l0 != 0))))) || ( !((( !(s20_l0 != 0)) && ( !(s20_l1 != 0))) && ((delta == 0.0) && ( !(( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0)))))))))) && (((( !(s20_evt2 != 0)) && ((s20_evt0 != 0) && ( !(s20_evt1 != 0)))) && (_x_s20_x == 0.0)) || ( !((( !(_x_s20_l0 != 0)) && ( !(_x_s20_l1 != 0))) && ((( !(s20_l0 != 0)) && ( !(s20_l1 != 0))) && ((delta == 0.0) && ( !(( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))))))) && ((((s20_evt2 != 0) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0)))) && (_x_s20_x == 0.0)) || ( !(((_x_s20_l1 != 0) && ( !(_x_s20_l0 != 0))) && ((( !(s20_l0 != 0)) && ( !(s20_l1 != 0))) && ((delta == 0.0) && ( !(( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))))))) && (((_x_s20_x == 0.0) && (((s20_evt2 != 0) && ((s20_evt1 != 0) && ( !(s20_evt0 != 0)))) || (( !(s20_evt2 != 0)) && ((s20_evt0 != 0) && ( !(s20_evt1 != 0)))))) || ( !(((_x_s20_l0 != 0) && ( !(_x_s20_l1 != 0))) && ((( !(s20_l0 != 0)) && ( !(s20_l1 != 0))) && ((delta == 0.0) && ( !(( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))))))) && (((( !(_x_s20_l0 != 0)) && ( !(_x_s20_l1 != 0))) || ((_x_s20_l0 != 0) && ( !(_x_s20_l1 != 0)))) || ( !(((s20_l1 != 0) && ( !(s20_l0 != 0))) && ((delta == 0.0) && ( !(( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0)))))))))) && (((404.0 <= s20_x) && ((( !(s20_evt2 != 0)) && ((s20_evt1 != 0) && ( !(s20_evt0 != 0)))) && (_x_s20_x == 0.0))) || ( !((( !(_x_s20_l0 != 0)) && ( !(_x_s20_l1 != 0))) && (((s20_l1 != 0) && ( !(s20_l0 != 0))) && ((delta == 0.0) && ( !(( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))))))) && (((s20_x <= 26.0) && ((( !(s20_evt2 != 0)) && ((s20_evt0 != 0) && ( !(s20_evt1 != 0)))) && (_x_s20_x == 0.0))) || ( !(((_x_s20_l0 != 0) && ( !(_x_s20_l1 != 0))) && (((s20_l1 != 0) && ( !(s20_l0 != 0))) && ((delta == 0.0) && ( !(( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))))))) && ((((_x_s20_l1 != 0) && ( !(_x_s20_l0 != 0))) || ((_x_s20_l0 != 0) && ( !(_x_s20_l1 != 0)))) || ( !(((s20_l0 != 0) && ( !(s20_l1 != 0))) && ((delta == 0.0) && ( !(( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0)))))))))) && (((s20_x <= 26.0) && ((( !(s20_evt2 != 0)) && ((s20_evt0 != 0) && ( !(s20_evt1 != 0)))) && (_x_s20_x == 0.0))) || ( !(((_x_s20_l0 != 0) && ( !(_x_s20_l1 != 0))) && (((s20_l0 != 0) && ( !(s20_l1 != 0))) && ((delta == 0.0) && ( !(( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))))))) && (((s20_x <= 26.0) && (((s20_evt2 != 0) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0)))) && (_x_s20_x == 0.0))) || ( !(((_x_s20_l1 != 0) && ( !(_x_s20_l0 != 0))) && (((s20_l0 != 0) && ( !(s20_l1 != 0))) && ((delta == 0.0) && ( !(( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s19_evt2 != 0)) && ((_x_s19_evt0 != 0) && ( !(_x_s19_evt1 != 0)))) || (((( !(_x_s19_evt2 != 0)) && (( !(_x_s19_evt0 != 0)) && ( !(_x_s19_evt1 != 0)))) || ((_x_s19_evt2 != 0) && (( !(_x_s19_evt0 != 0)) && ( !(_x_s19_evt1 != 0))))) || ((( !(_x_s19_evt2 != 0)) && ((_x_s19_evt1 != 0) && ( !(_x_s19_evt0 != 0)))) || ((_x_s19_evt2 != 0) && ((_x_s19_evt1 != 0) && ( !(_x_s19_evt0 != 0))))))) && ((( !(_x_s19_l0 != 0)) && ( !(_x_s19_l1 != 0))) || (((_x_s19_l1 != 0) && ( !(_x_s19_l0 != 0))) || ((_x_s19_l0 != 0) && ( !(_x_s19_l1 != 0)))))) && ((_x_s19_x <= 404.0) || ( !((_x_s19_l1 != 0) && ( !(_x_s19_l0 != 0)))))) && ((_x_s19_x <= 26.0) || ( !((_x_s19_l0 != 0) && ( !(_x_s19_l1 != 0)))))) && ((delta <= 0.0) || ((((s19_l0 != 0) == (_x_s19_l0 != 0)) && ((s19_l1 != 0) == (_x_s19_l1 != 0))) && ((delta + (s19_x + (-1.0 * _x_s19_x))) == 0.0)))) && (((((s19_l0 != 0) == (_x_s19_l0 != 0)) && ((s19_l1 != 0) == (_x_s19_l1 != 0))) && ((delta + (s19_x + (-1.0 * _x_s19_x))) == 0.0)) || ( !(( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))) && ((((_x_s19_l0 != 0) && ( !(_x_s19_l1 != 0))) || ((( !(_x_s19_l0 != 0)) && ( !(_x_s19_l1 != 0))) || ((_x_s19_l1 != 0) && ( !(_x_s19_l0 != 0))))) || ( !((( !(s19_l0 != 0)) && ( !(s19_l1 != 0))) && ((delta == 0.0) && ( !(( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0)))))))))) && (((( !(s19_evt2 != 0)) && ((s19_evt0 != 0) && ( !(s19_evt1 != 0)))) && (_x_s19_x == 0.0)) || ( !((( !(_x_s19_l0 != 0)) && ( !(_x_s19_l1 != 0))) && ((( !(s19_l0 != 0)) && ( !(s19_l1 != 0))) && ((delta == 0.0) && ( !(( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))))))) && ((((s19_evt2 != 0) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0)))) && (_x_s19_x == 0.0)) || ( !(((_x_s19_l1 != 0) && ( !(_x_s19_l0 != 0))) && ((( !(s19_l0 != 0)) && ( !(s19_l1 != 0))) && ((delta == 0.0) && ( !(( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))))))) && (((_x_s19_x == 0.0) && (((s19_evt2 != 0) && ((s19_evt1 != 0) && ( !(s19_evt0 != 0)))) || (( !(s19_evt2 != 0)) && ((s19_evt0 != 0) && ( !(s19_evt1 != 0)))))) || ( !(((_x_s19_l0 != 0) && ( !(_x_s19_l1 != 0))) && ((( !(s19_l0 != 0)) && ( !(s19_l1 != 0))) && ((delta == 0.0) && ( !(( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))))))) && (((( !(_x_s19_l0 != 0)) && ( !(_x_s19_l1 != 0))) || ((_x_s19_l0 != 0) && ( !(_x_s19_l1 != 0)))) || ( !(((s19_l1 != 0) && ( !(s19_l0 != 0))) && ((delta == 0.0) && ( !(( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0)))))))))) && (((404.0 <= s19_x) && ((( !(s19_evt2 != 0)) && ((s19_evt1 != 0) && ( !(s19_evt0 != 0)))) && (_x_s19_x == 0.0))) || ( !((( !(_x_s19_l0 != 0)) && ( !(_x_s19_l1 != 0))) && (((s19_l1 != 0) && ( !(s19_l0 != 0))) && ((delta == 0.0) && ( !(( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))))))) && (((s19_x <= 26.0) && ((( !(s19_evt2 != 0)) && ((s19_evt0 != 0) && ( !(s19_evt1 != 0)))) && (_x_s19_x == 0.0))) || ( !(((_x_s19_l0 != 0) && ( !(_x_s19_l1 != 0))) && (((s19_l1 != 0) && ( !(s19_l0 != 0))) && ((delta == 0.0) && ( !(( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))))))) && ((((_x_s19_l1 != 0) && ( !(_x_s19_l0 != 0))) || ((_x_s19_l0 != 0) && ( !(_x_s19_l1 != 0)))) || ( !(((s19_l0 != 0) && ( !(s19_l1 != 0))) && ((delta == 0.0) && ( !(( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0)))))))))) && (((s19_x <= 26.0) && ((( !(s19_evt2 != 0)) && ((s19_evt0 != 0) && ( !(s19_evt1 != 0)))) && (_x_s19_x == 0.0))) || ( !(((_x_s19_l0 != 0) && ( !(_x_s19_l1 != 0))) && (((s19_l0 != 0) && ( !(s19_l1 != 0))) && ((delta == 0.0) && ( !(( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))))))) && (((s19_x <= 26.0) && (((s19_evt2 != 0) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0)))) && (_x_s19_x == 0.0))) || ( !(((_x_s19_l1 != 0) && ( !(_x_s19_l0 != 0))) && (((s19_l0 != 0) && ( !(s19_l1 != 0))) && ((delta == 0.0) && ( !(( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s18_evt2 != 0)) && ((_x_s18_evt0 != 0) && ( !(_x_s18_evt1 != 0)))) || (((( !(_x_s18_evt2 != 0)) && (( !(_x_s18_evt0 != 0)) && ( !(_x_s18_evt1 != 0)))) || ((_x_s18_evt2 != 0) && (( !(_x_s18_evt0 != 0)) && ( !(_x_s18_evt1 != 0))))) || ((( !(_x_s18_evt2 != 0)) && ((_x_s18_evt1 != 0) && ( !(_x_s18_evt0 != 0)))) || ((_x_s18_evt2 != 0) && ((_x_s18_evt1 != 0) && ( !(_x_s18_evt0 != 0))))))) && ((( !(_x_s18_l0 != 0)) && ( !(_x_s18_l1 != 0))) || (((_x_s18_l1 != 0) && ( !(_x_s18_l0 != 0))) || ((_x_s18_l0 != 0) && ( !(_x_s18_l1 != 0)))))) && ((_x_s18_x <= 404.0) || ( !((_x_s18_l1 != 0) && ( !(_x_s18_l0 != 0)))))) && ((_x_s18_x <= 26.0) || ( !((_x_s18_l0 != 0) && ( !(_x_s18_l1 != 0)))))) && ((delta <= 0.0) || ((((s18_l0 != 0) == (_x_s18_l0 != 0)) && ((s18_l1 != 0) == (_x_s18_l1 != 0))) && ((delta + (s18_x + (-1.0 * _x_s18_x))) == 0.0)))) && (((((s18_l0 != 0) == (_x_s18_l0 != 0)) && ((s18_l1 != 0) == (_x_s18_l1 != 0))) && ((delta + (s18_x + (-1.0 * _x_s18_x))) == 0.0)) || ( !(( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))) && ((((_x_s18_l0 != 0) && ( !(_x_s18_l1 != 0))) || ((( !(_x_s18_l0 != 0)) && ( !(_x_s18_l1 != 0))) || ((_x_s18_l1 != 0) && ( !(_x_s18_l0 != 0))))) || ( !((( !(s18_l0 != 0)) && ( !(s18_l1 != 0))) && ((delta == 0.0) && ( !(( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0)))))))))) && (((( !(s18_evt2 != 0)) && ((s18_evt0 != 0) && ( !(s18_evt1 != 0)))) && (_x_s18_x == 0.0)) || ( !((( !(_x_s18_l0 != 0)) && ( !(_x_s18_l1 != 0))) && ((( !(s18_l0 != 0)) && ( !(s18_l1 != 0))) && ((delta == 0.0) && ( !(( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))))))) && ((((s18_evt2 != 0) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0)))) && (_x_s18_x == 0.0)) || ( !(((_x_s18_l1 != 0) && ( !(_x_s18_l0 != 0))) && ((( !(s18_l0 != 0)) && ( !(s18_l1 != 0))) && ((delta == 0.0) && ( !(( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))))))) && (((_x_s18_x == 0.0) && (((s18_evt2 != 0) && ((s18_evt1 != 0) && ( !(s18_evt0 != 0)))) || (( !(s18_evt2 != 0)) && ((s18_evt0 != 0) && ( !(s18_evt1 != 0)))))) || ( !(((_x_s18_l0 != 0) && ( !(_x_s18_l1 != 0))) && ((( !(s18_l0 != 0)) && ( !(s18_l1 != 0))) && ((delta == 0.0) && ( !(( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))))))) && (((( !(_x_s18_l0 != 0)) && ( !(_x_s18_l1 != 0))) || ((_x_s18_l0 != 0) && ( !(_x_s18_l1 != 0)))) || ( !(((s18_l1 != 0) && ( !(s18_l0 != 0))) && ((delta == 0.0) && ( !(( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0)))))))))) && (((404.0 <= s18_x) && ((( !(s18_evt2 != 0)) && ((s18_evt1 != 0) && ( !(s18_evt0 != 0)))) && (_x_s18_x == 0.0))) || ( !((( !(_x_s18_l0 != 0)) && ( !(_x_s18_l1 != 0))) && (((s18_l1 != 0) && ( !(s18_l0 != 0))) && ((delta == 0.0) && ( !(( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))))))) && (((s18_x <= 26.0) && ((( !(s18_evt2 != 0)) && ((s18_evt0 != 0) && ( !(s18_evt1 != 0)))) && (_x_s18_x == 0.0))) || ( !(((_x_s18_l0 != 0) && ( !(_x_s18_l1 != 0))) && (((s18_l1 != 0) && ( !(s18_l0 != 0))) && ((delta == 0.0) && ( !(( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))))))) && ((((_x_s18_l1 != 0) && ( !(_x_s18_l0 != 0))) || ((_x_s18_l0 != 0) && ( !(_x_s18_l1 != 0)))) || ( !(((s18_l0 != 0) && ( !(s18_l1 != 0))) && ((delta == 0.0) && ( !(( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0)))))))))) && (((s18_x <= 26.0) && ((( !(s18_evt2 != 0)) && ((s18_evt0 != 0) && ( !(s18_evt1 != 0)))) && (_x_s18_x == 0.0))) || ( !(((_x_s18_l0 != 0) && ( !(_x_s18_l1 != 0))) && (((s18_l0 != 0) && ( !(s18_l1 != 0))) && ((delta == 0.0) && ( !(( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))))))) && (((s18_x <= 26.0) && (((s18_evt2 != 0) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0)))) && (_x_s18_x == 0.0))) || ( !(((_x_s18_l1 != 0) && ( !(_x_s18_l0 != 0))) && (((s18_l0 != 0) && ( !(s18_l1 != 0))) && ((delta == 0.0) && ( !(( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s17_evt2 != 0)) && ((_x_s17_evt0 != 0) && ( !(_x_s17_evt1 != 0)))) || (((( !(_x_s17_evt2 != 0)) && (( !(_x_s17_evt0 != 0)) && ( !(_x_s17_evt1 != 0)))) || ((_x_s17_evt2 != 0) && (( !(_x_s17_evt0 != 0)) && ( !(_x_s17_evt1 != 0))))) || ((( !(_x_s17_evt2 != 0)) && ((_x_s17_evt1 != 0) && ( !(_x_s17_evt0 != 0)))) || ((_x_s17_evt2 != 0) && ((_x_s17_evt1 != 0) && ( !(_x_s17_evt0 != 0))))))) && ((( !(_x_s17_l0 != 0)) && ( !(_x_s17_l1 != 0))) || (((_x_s17_l1 != 0) && ( !(_x_s17_l0 != 0))) || ((_x_s17_l0 != 0) && ( !(_x_s17_l1 != 0)))))) && ((_x_s17_x <= 404.0) || ( !((_x_s17_l1 != 0) && ( !(_x_s17_l0 != 0)))))) && ((_x_s17_x <= 26.0) || ( !((_x_s17_l0 != 0) && ( !(_x_s17_l1 != 0)))))) && ((delta <= 0.0) || ((((s17_l0 != 0) == (_x_s17_l0 != 0)) && ((s17_l1 != 0) == (_x_s17_l1 != 0))) && ((delta + (s17_x + (-1.0 * _x_s17_x))) == 0.0)))) && (((((s17_l0 != 0) == (_x_s17_l0 != 0)) && ((s17_l1 != 0) == (_x_s17_l1 != 0))) && ((delta + (s17_x + (-1.0 * _x_s17_x))) == 0.0)) || ( !(( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))) && ((((_x_s17_l0 != 0) && ( !(_x_s17_l1 != 0))) || ((( !(_x_s17_l0 != 0)) && ( !(_x_s17_l1 != 0))) || ((_x_s17_l1 != 0) && ( !(_x_s17_l0 != 0))))) || ( !((( !(s17_l0 != 0)) && ( !(s17_l1 != 0))) && ((delta == 0.0) && ( !(( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0)))))))))) && (((( !(s17_evt2 != 0)) && ((s17_evt0 != 0) && ( !(s17_evt1 != 0)))) && (_x_s17_x == 0.0)) || ( !((( !(_x_s17_l0 != 0)) && ( !(_x_s17_l1 != 0))) && ((( !(s17_l0 != 0)) && ( !(s17_l1 != 0))) && ((delta == 0.0) && ( !(( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))))))) && ((((s17_evt2 != 0) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0)))) && (_x_s17_x == 0.0)) || ( !(((_x_s17_l1 != 0) && ( !(_x_s17_l0 != 0))) && ((( !(s17_l0 != 0)) && ( !(s17_l1 != 0))) && ((delta == 0.0) && ( !(( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))))))) && (((_x_s17_x == 0.0) && (((s17_evt2 != 0) && ((s17_evt1 != 0) && ( !(s17_evt0 != 0)))) || (( !(s17_evt2 != 0)) && ((s17_evt0 != 0) && ( !(s17_evt1 != 0)))))) || ( !(((_x_s17_l0 != 0) && ( !(_x_s17_l1 != 0))) && ((( !(s17_l0 != 0)) && ( !(s17_l1 != 0))) && ((delta == 0.0) && ( !(( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))))))) && (((( !(_x_s17_l0 != 0)) && ( !(_x_s17_l1 != 0))) || ((_x_s17_l0 != 0) && ( !(_x_s17_l1 != 0)))) || ( !(((s17_l1 != 0) && ( !(s17_l0 != 0))) && ((delta == 0.0) && ( !(( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0)))))))))) && (((404.0 <= s17_x) && ((( !(s17_evt2 != 0)) && ((s17_evt1 != 0) && ( !(s17_evt0 != 0)))) && (_x_s17_x == 0.0))) || ( !((( !(_x_s17_l0 != 0)) && ( !(_x_s17_l1 != 0))) && (((s17_l1 != 0) && ( !(s17_l0 != 0))) && ((delta == 0.0) && ( !(( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))))))) && (((s17_x <= 26.0) && ((( !(s17_evt2 != 0)) && ((s17_evt0 != 0) && ( !(s17_evt1 != 0)))) && (_x_s17_x == 0.0))) || ( !(((_x_s17_l0 != 0) && ( !(_x_s17_l1 != 0))) && (((s17_l1 != 0) && ( !(s17_l0 != 0))) && ((delta == 0.0) && ( !(( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))))))) && ((((_x_s17_l1 != 0) && ( !(_x_s17_l0 != 0))) || ((_x_s17_l0 != 0) && ( !(_x_s17_l1 != 0)))) || ( !(((s17_l0 != 0) && ( !(s17_l1 != 0))) && ((delta == 0.0) && ( !(( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0)))))))))) && (((s17_x <= 26.0) && ((( !(s17_evt2 != 0)) && ((s17_evt0 != 0) && ( !(s17_evt1 != 0)))) && (_x_s17_x == 0.0))) || ( !(((_x_s17_l0 != 0) && ( !(_x_s17_l1 != 0))) && (((s17_l0 != 0) && ( !(s17_l1 != 0))) && ((delta == 0.0) && ( !(( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))))))) && (((s17_x <= 26.0) && (((s17_evt2 != 0) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0)))) && (_x_s17_x == 0.0))) || ( !(((_x_s17_l1 != 0) && ( !(_x_s17_l0 != 0))) && (((s17_l0 != 0) && ( !(s17_l1 != 0))) && ((delta == 0.0) && ( !(( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s16_evt2 != 0)) && ((_x_s16_evt0 != 0) && ( !(_x_s16_evt1 != 0)))) || (((( !(_x_s16_evt2 != 0)) && (( !(_x_s16_evt0 != 0)) && ( !(_x_s16_evt1 != 0)))) || ((_x_s16_evt2 != 0) && (( !(_x_s16_evt0 != 0)) && ( !(_x_s16_evt1 != 0))))) || ((( !(_x_s16_evt2 != 0)) && ((_x_s16_evt1 != 0) && ( !(_x_s16_evt0 != 0)))) || ((_x_s16_evt2 != 0) && ((_x_s16_evt1 != 0) && ( !(_x_s16_evt0 != 0))))))) && ((( !(_x_s16_l0 != 0)) && ( !(_x_s16_l1 != 0))) || (((_x_s16_l1 != 0) && ( !(_x_s16_l0 != 0))) || ((_x_s16_l0 != 0) && ( !(_x_s16_l1 != 0)))))) && ((_x_s16_x <= 404.0) || ( !((_x_s16_l1 != 0) && ( !(_x_s16_l0 != 0)))))) && ((_x_s16_x <= 26.0) || ( !((_x_s16_l0 != 0) && ( !(_x_s16_l1 != 0)))))) && ((delta <= 0.0) || ((((s16_l0 != 0) == (_x_s16_l0 != 0)) && ((s16_l1 != 0) == (_x_s16_l1 != 0))) && ((delta + (s16_x + (-1.0 * _x_s16_x))) == 0.0)))) && (((((s16_l0 != 0) == (_x_s16_l0 != 0)) && ((s16_l1 != 0) == (_x_s16_l1 != 0))) && ((delta + (s16_x + (-1.0 * _x_s16_x))) == 0.0)) || ( !(( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))) && ((((_x_s16_l0 != 0) && ( !(_x_s16_l1 != 0))) || ((( !(_x_s16_l0 != 0)) && ( !(_x_s16_l1 != 0))) || ((_x_s16_l1 != 0) && ( !(_x_s16_l0 != 0))))) || ( !((( !(s16_l0 != 0)) && ( !(s16_l1 != 0))) && ((delta == 0.0) && ( !(( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0)))))))))) && (((( !(s16_evt2 != 0)) && ((s16_evt0 != 0) && ( !(s16_evt1 != 0)))) && (_x_s16_x == 0.0)) || ( !((( !(_x_s16_l0 != 0)) && ( !(_x_s16_l1 != 0))) && ((( !(s16_l0 != 0)) && ( !(s16_l1 != 0))) && ((delta == 0.0) && ( !(( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))))))) && ((((s16_evt2 != 0) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0)))) && (_x_s16_x == 0.0)) || ( !(((_x_s16_l1 != 0) && ( !(_x_s16_l0 != 0))) && ((( !(s16_l0 != 0)) && ( !(s16_l1 != 0))) && ((delta == 0.0) && ( !(( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))))))) && (((_x_s16_x == 0.0) && (((s16_evt2 != 0) && ((s16_evt1 != 0) && ( !(s16_evt0 != 0)))) || (( !(s16_evt2 != 0)) && ((s16_evt0 != 0) && ( !(s16_evt1 != 0)))))) || ( !(((_x_s16_l0 != 0) && ( !(_x_s16_l1 != 0))) && ((( !(s16_l0 != 0)) && ( !(s16_l1 != 0))) && ((delta == 0.0) && ( !(( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))))))) && (((( !(_x_s16_l0 != 0)) && ( !(_x_s16_l1 != 0))) || ((_x_s16_l0 != 0) && ( !(_x_s16_l1 != 0)))) || ( !(((s16_l1 != 0) && ( !(s16_l0 != 0))) && ((delta == 0.0) && ( !(( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0)))))))))) && (((404.0 <= s16_x) && ((( !(s16_evt2 != 0)) && ((s16_evt1 != 0) && ( !(s16_evt0 != 0)))) && (_x_s16_x == 0.0))) || ( !((( !(_x_s16_l0 != 0)) && ( !(_x_s16_l1 != 0))) && (((s16_l1 != 0) && ( !(s16_l0 != 0))) && ((delta == 0.0) && ( !(( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))))))) && (((s16_x <= 26.0) && ((( !(s16_evt2 != 0)) && ((s16_evt0 != 0) && ( !(s16_evt1 != 0)))) && (_x_s16_x == 0.0))) || ( !(((_x_s16_l0 != 0) && ( !(_x_s16_l1 != 0))) && (((s16_l1 != 0) && ( !(s16_l0 != 0))) && ((delta == 0.0) && ( !(( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))))))) && ((((_x_s16_l1 != 0) && ( !(_x_s16_l0 != 0))) || ((_x_s16_l0 != 0) && ( !(_x_s16_l1 != 0)))) || ( !(((s16_l0 != 0) && ( !(s16_l1 != 0))) && ((delta == 0.0) && ( !(( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0)))))))))) && (((s16_x <= 26.0) && ((( !(s16_evt2 != 0)) && ((s16_evt0 != 0) && ( !(s16_evt1 != 0)))) && (_x_s16_x == 0.0))) || ( !(((_x_s16_l0 != 0) && ( !(_x_s16_l1 != 0))) && (((s16_l0 != 0) && ( !(s16_l1 != 0))) && ((delta == 0.0) && ( !(( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))))))) && (((s16_x <= 26.0) && (((s16_evt2 != 0) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0)))) && (_x_s16_x == 0.0))) || ( !(((_x_s16_l1 != 0) && ( !(_x_s16_l0 != 0))) && (((s16_l0 != 0) && ( !(s16_l1 != 0))) && ((delta == 0.0) && ( !(( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s15_evt2 != 0)) && ((_x_s15_evt0 != 0) && ( !(_x_s15_evt1 != 0)))) || (((( !(_x_s15_evt2 != 0)) && (( !(_x_s15_evt0 != 0)) && ( !(_x_s15_evt1 != 0)))) || ((_x_s15_evt2 != 0) && (( !(_x_s15_evt0 != 0)) && ( !(_x_s15_evt1 != 0))))) || ((( !(_x_s15_evt2 != 0)) && ((_x_s15_evt1 != 0) && ( !(_x_s15_evt0 != 0)))) || ((_x_s15_evt2 != 0) && ((_x_s15_evt1 != 0) && ( !(_x_s15_evt0 != 0))))))) && ((( !(_x_s15_l0 != 0)) && ( !(_x_s15_l1 != 0))) || (((_x_s15_l1 != 0) && ( !(_x_s15_l0 != 0))) || ((_x_s15_l0 != 0) && ( !(_x_s15_l1 != 0)))))) && ((_x_s15_x <= 404.0) || ( !((_x_s15_l1 != 0) && ( !(_x_s15_l0 != 0)))))) && ((_x_s15_x <= 26.0) || ( !((_x_s15_l0 != 0) && ( !(_x_s15_l1 != 0)))))) && ((delta <= 0.0) || ((((s15_l0 != 0) == (_x_s15_l0 != 0)) && ((s15_l1 != 0) == (_x_s15_l1 != 0))) && ((delta + (s15_x + (-1.0 * _x_s15_x))) == 0.0)))) && (((((s15_l0 != 0) == (_x_s15_l0 != 0)) && ((s15_l1 != 0) == (_x_s15_l1 != 0))) && ((delta + (s15_x + (-1.0 * _x_s15_x))) == 0.0)) || ( !(( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))) && ((((_x_s15_l0 != 0) && ( !(_x_s15_l1 != 0))) || ((( !(_x_s15_l0 != 0)) && ( !(_x_s15_l1 != 0))) || ((_x_s15_l1 != 0) && ( !(_x_s15_l0 != 0))))) || ( !((( !(s15_l0 != 0)) && ( !(s15_l1 != 0))) && ((delta == 0.0) && ( !(( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0)))))))))) && (((( !(s15_evt2 != 0)) && ((s15_evt0 != 0) && ( !(s15_evt1 != 0)))) && (_x_s15_x == 0.0)) || ( !((( !(_x_s15_l0 != 0)) && ( !(_x_s15_l1 != 0))) && ((( !(s15_l0 != 0)) && ( !(s15_l1 != 0))) && ((delta == 0.0) && ( !(( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))))))) && ((((s15_evt2 != 0) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0)))) && (_x_s15_x == 0.0)) || ( !(((_x_s15_l1 != 0) && ( !(_x_s15_l0 != 0))) && ((( !(s15_l0 != 0)) && ( !(s15_l1 != 0))) && ((delta == 0.0) && ( !(( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))))))) && (((_x_s15_x == 0.0) && (((s15_evt2 != 0) && ((s15_evt1 != 0) && ( !(s15_evt0 != 0)))) || (( !(s15_evt2 != 0)) && ((s15_evt0 != 0) && ( !(s15_evt1 != 0)))))) || ( !(((_x_s15_l0 != 0) && ( !(_x_s15_l1 != 0))) && ((( !(s15_l0 != 0)) && ( !(s15_l1 != 0))) && ((delta == 0.0) && ( !(( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))))))) && (((( !(_x_s15_l0 != 0)) && ( !(_x_s15_l1 != 0))) || ((_x_s15_l0 != 0) && ( !(_x_s15_l1 != 0)))) || ( !(((s15_l1 != 0) && ( !(s15_l0 != 0))) && ((delta == 0.0) && ( !(( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0)))))))))) && (((404.0 <= s15_x) && ((( !(s15_evt2 != 0)) && ((s15_evt1 != 0) && ( !(s15_evt0 != 0)))) && (_x_s15_x == 0.0))) || ( !((( !(_x_s15_l0 != 0)) && ( !(_x_s15_l1 != 0))) && (((s15_l1 != 0) && ( !(s15_l0 != 0))) && ((delta == 0.0) && ( !(( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))))))) && (((s15_x <= 26.0) && ((( !(s15_evt2 != 0)) && ((s15_evt0 != 0) && ( !(s15_evt1 != 0)))) && (_x_s15_x == 0.0))) || ( !(((_x_s15_l0 != 0) && ( !(_x_s15_l1 != 0))) && (((s15_l1 != 0) && ( !(s15_l0 != 0))) && ((delta == 0.0) && ( !(( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))))))) && ((((_x_s15_l1 != 0) && ( !(_x_s15_l0 != 0))) || ((_x_s15_l0 != 0) && ( !(_x_s15_l1 != 0)))) || ( !(((s15_l0 != 0) && ( !(s15_l1 != 0))) && ((delta == 0.0) && ( !(( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0)))))))))) && (((s15_x <= 26.0) && ((( !(s15_evt2 != 0)) && ((s15_evt0 != 0) && ( !(s15_evt1 != 0)))) && (_x_s15_x == 0.0))) || ( !(((_x_s15_l0 != 0) && ( !(_x_s15_l1 != 0))) && (((s15_l0 != 0) && ( !(s15_l1 != 0))) && ((delta == 0.0) && ( !(( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))))))) && (((s15_x <= 26.0) && (((s15_evt2 != 0) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0)))) && (_x_s15_x == 0.0))) || ( !(((_x_s15_l1 != 0) && ( !(_x_s15_l0 != 0))) && (((s15_l0 != 0) && ( !(s15_l1 != 0))) && ((delta == 0.0) && ( !(( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s14_evt2 != 0)) && ((_x_s14_evt0 != 0) && ( !(_x_s14_evt1 != 0)))) || (((( !(_x_s14_evt2 != 0)) && (( !(_x_s14_evt0 != 0)) && ( !(_x_s14_evt1 != 0)))) || ((_x_s14_evt2 != 0) && (( !(_x_s14_evt0 != 0)) && ( !(_x_s14_evt1 != 0))))) || ((( !(_x_s14_evt2 != 0)) && ((_x_s14_evt1 != 0) && ( !(_x_s14_evt0 != 0)))) || ((_x_s14_evt2 != 0) && ((_x_s14_evt1 != 0) && ( !(_x_s14_evt0 != 0))))))) && ((( !(_x_s14_l0 != 0)) && ( !(_x_s14_l1 != 0))) || (((_x_s14_l1 != 0) && ( !(_x_s14_l0 != 0))) || ((_x_s14_l0 != 0) && ( !(_x_s14_l1 != 0)))))) && ((_x_s14_x <= 404.0) || ( !((_x_s14_l1 != 0) && ( !(_x_s14_l0 != 0)))))) && ((_x_s14_x <= 26.0) || ( !((_x_s14_l0 != 0) && ( !(_x_s14_l1 != 0)))))) && ((delta <= 0.0) || ((((s14_l0 != 0) == (_x_s14_l0 != 0)) && ((s14_l1 != 0) == (_x_s14_l1 != 0))) && ((delta + (s14_x + (-1.0 * _x_s14_x))) == 0.0)))) && (((((s14_l0 != 0) == (_x_s14_l0 != 0)) && ((s14_l1 != 0) == (_x_s14_l1 != 0))) && ((delta + (s14_x + (-1.0 * _x_s14_x))) == 0.0)) || ( !(( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))) && ((((_x_s14_l0 != 0) && ( !(_x_s14_l1 != 0))) || ((( !(_x_s14_l0 != 0)) && ( !(_x_s14_l1 != 0))) || ((_x_s14_l1 != 0) && ( !(_x_s14_l0 != 0))))) || ( !((( !(s14_l0 != 0)) && ( !(s14_l1 != 0))) && ((delta == 0.0) && ( !(( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0)))))))))) && (((( !(s14_evt2 != 0)) && ((s14_evt0 != 0) && ( !(s14_evt1 != 0)))) && (_x_s14_x == 0.0)) || ( !((( !(_x_s14_l0 != 0)) && ( !(_x_s14_l1 != 0))) && ((( !(s14_l0 != 0)) && ( !(s14_l1 != 0))) && ((delta == 0.0) && ( !(( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))))))) && ((((s14_evt2 != 0) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0)))) && (_x_s14_x == 0.0)) || ( !(((_x_s14_l1 != 0) && ( !(_x_s14_l0 != 0))) && ((( !(s14_l0 != 0)) && ( !(s14_l1 != 0))) && ((delta == 0.0) && ( !(( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))))))) && (((_x_s14_x == 0.0) && (((s14_evt2 != 0) && ((s14_evt1 != 0) && ( !(s14_evt0 != 0)))) || (( !(s14_evt2 != 0)) && ((s14_evt0 != 0) && ( !(s14_evt1 != 0)))))) || ( !(((_x_s14_l0 != 0) && ( !(_x_s14_l1 != 0))) && ((( !(s14_l0 != 0)) && ( !(s14_l1 != 0))) && ((delta == 0.0) && ( !(( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))))))) && (((( !(_x_s14_l0 != 0)) && ( !(_x_s14_l1 != 0))) || ((_x_s14_l0 != 0) && ( !(_x_s14_l1 != 0)))) || ( !(((s14_l1 != 0) && ( !(s14_l0 != 0))) && ((delta == 0.0) && ( !(( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0)))))))))) && (((404.0 <= s14_x) && ((( !(s14_evt2 != 0)) && ((s14_evt1 != 0) && ( !(s14_evt0 != 0)))) && (_x_s14_x == 0.0))) || ( !((( !(_x_s14_l0 != 0)) && ( !(_x_s14_l1 != 0))) && (((s14_l1 != 0) && ( !(s14_l0 != 0))) && ((delta == 0.0) && ( !(( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))))))) && (((s14_x <= 26.0) && ((( !(s14_evt2 != 0)) && ((s14_evt0 != 0) && ( !(s14_evt1 != 0)))) && (_x_s14_x == 0.0))) || ( !(((_x_s14_l0 != 0) && ( !(_x_s14_l1 != 0))) && (((s14_l1 != 0) && ( !(s14_l0 != 0))) && ((delta == 0.0) && ( !(( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))))))) && ((((_x_s14_l1 != 0) && ( !(_x_s14_l0 != 0))) || ((_x_s14_l0 != 0) && ( !(_x_s14_l1 != 0)))) || ( !(((s14_l0 != 0) && ( !(s14_l1 != 0))) && ((delta == 0.0) && ( !(( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0)))))))))) && (((s14_x <= 26.0) && ((( !(s14_evt2 != 0)) && ((s14_evt0 != 0) && ( !(s14_evt1 != 0)))) && (_x_s14_x == 0.0))) || ( !(((_x_s14_l0 != 0) && ( !(_x_s14_l1 != 0))) && (((s14_l0 != 0) && ( !(s14_l1 != 0))) && ((delta == 0.0) && ( !(( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))))))) && (((s14_x <= 26.0) && (((s14_evt2 != 0) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0)))) && (_x_s14_x == 0.0))) || ( !(((_x_s14_l1 != 0) && ( !(_x_s14_l0 != 0))) && (((s14_l0 != 0) && ( !(s14_l1 != 0))) && ((delta == 0.0) && ( !(( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s13_evt2 != 0)) && ((_x_s13_evt0 != 0) && ( !(_x_s13_evt1 != 0)))) || (((( !(_x_s13_evt2 != 0)) && (( !(_x_s13_evt0 != 0)) && ( !(_x_s13_evt1 != 0)))) || ((_x_s13_evt2 != 0) && (( !(_x_s13_evt0 != 0)) && ( !(_x_s13_evt1 != 0))))) || ((( !(_x_s13_evt2 != 0)) && ((_x_s13_evt1 != 0) && ( !(_x_s13_evt0 != 0)))) || ((_x_s13_evt2 != 0) && ((_x_s13_evt1 != 0) && ( !(_x_s13_evt0 != 0))))))) && ((( !(_x_s13_l0 != 0)) && ( !(_x_s13_l1 != 0))) || (((_x_s13_l1 != 0) && ( !(_x_s13_l0 != 0))) || ((_x_s13_l0 != 0) && ( !(_x_s13_l1 != 0)))))) && ((_x_s13_x <= 404.0) || ( !((_x_s13_l1 != 0) && ( !(_x_s13_l0 != 0)))))) && ((_x_s13_x <= 26.0) || ( !((_x_s13_l0 != 0) && ( !(_x_s13_l1 != 0)))))) && ((delta <= 0.0) || ((((s13_l0 != 0) == (_x_s13_l0 != 0)) && ((s13_l1 != 0) == (_x_s13_l1 != 0))) && ((delta + (s13_x + (-1.0 * _x_s13_x))) == 0.0)))) && (((((s13_l0 != 0) == (_x_s13_l0 != 0)) && ((s13_l1 != 0) == (_x_s13_l1 != 0))) && ((delta + (s13_x + (-1.0 * _x_s13_x))) == 0.0)) || ( !(( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))) && ((((_x_s13_l0 != 0) && ( !(_x_s13_l1 != 0))) || ((( !(_x_s13_l0 != 0)) && ( !(_x_s13_l1 != 0))) || ((_x_s13_l1 != 0) && ( !(_x_s13_l0 != 0))))) || ( !((( !(s13_l0 != 0)) && ( !(s13_l1 != 0))) && ((delta == 0.0) && ( !(( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0)))))))))) && (((( !(s13_evt2 != 0)) && ((s13_evt0 != 0) && ( !(s13_evt1 != 0)))) && (_x_s13_x == 0.0)) || ( !((( !(_x_s13_l0 != 0)) && ( !(_x_s13_l1 != 0))) && ((( !(s13_l0 != 0)) && ( !(s13_l1 != 0))) && ((delta == 0.0) && ( !(( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))))))) && ((((s13_evt2 != 0) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0)))) && (_x_s13_x == 0.0)) || ( !(((_x_s13_l1 != 0) && ( !(_x_s13_l0 != 0))) && ((( !(s13_l0 != 0)) && ( !(s13_l1 != 0))) && ((delta == 0.0) && ( !(( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))))))) && (((_x_s13_x == 0.0) && (((s13_evt2 != 0) && ((s13_evt1 != 0) && ( !(s13_evt0 != 0)))) || (( !(s13_evt2 != 0)) && ((s13_evt0 != 0) && ( !(s13_evt1 != 0)))))) || ( !(((_x_s13_l0 != 0) && ( !(_x_s13_l1 != 0))) && ((( !(s13_l0 != 0)) && ( !(s13_l1 != 0))) && ((delta == 0.0) && ( !(( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))))))) && (((( !(_x_s13_l0 != 0)) && ( !(_x_s13_l1 != 0))) || ((_x_s13_l0 != 0) && ( !(_x_s13_l1 != 0)))) || ( !(((s13_l1 != 0) && ( !(s13_l0 != 0))) && ((delta == 0.0) && ( !(( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0)))))))))) && (((404.0 <= s13_x) && ((( !(s13_evt2 != 0)) && ((s13_evt1 != 0) && ( !(s13_evt0 != 0)))) && (_x_s13_x == 0.0))) || ( !((( !(_x_s13_l0 != 0)) && ( !(_x_s13_l1 != 0))) && (((s13_l1 != 0) && ( !(s13_l0 != 0))) && ((delta == 0.0) && ( !(( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))))))) && (((s13_x <= 26.0) && ((( !(s13_evt2 != 0)) && ((s13_evt0 != 0) && ( !(s13_evt1 != 0)))) && (_x_s13_x == 0.0))) || ( !(((_x_s13_l0 != 0) && ( !(_x_s13_l1 != 0))) && (((s13_l1 != 0) && ( !(s13_l0 != 0))) && ((delta == 0.0) && ( !(( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))))))) && ((((_x_s13_l1 != 0) && ( !(_x_s13_l0 != 0))) || ((_x_s13_l0 != 0) && ( !(_x_s13_l1 != 0)))) || ( !(((s13_l0 != 0) && ( !(s13_l1 != 0))) && ((delta == 0.0) && ( !(( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0)))))))))) && (((s13_x <= 26.0) && ((( !(s13_evt2 != 0)) && ((s13_evt0 != 0) && ( !(s13_evt1 != 0)))) && (_x_s13_x == 0.0))) || ( !(((_x_s13_l0 != 0) && ( !(_x_s13_l1 != 0))) && (((s13_l0 != 0) && ( !(s13_l1 != 0))) && ((delta == 0.0) && ( !(( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))))))) && (((s13_x <= 26.0) && (((s13_evt2 != 0) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0)))) && (_x_s13_x == 0.0))) || ( !(((_x_s13_l1 != 0) && ( !(_x_s13_l0 != 0))) && (((s13_l0 != 0) && ( !(s13_l1 != 0))) && ((delta == 0.0) && ( !(( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s12_evt2 != 0)) && ((_x_s12_evt0 != 0) && ( !(_x_s12_evt1 != 0)))) || (((( !(_x_s12_evt2 != 0)) && (( !(_x_s12_evt0 != 0)) && ( !(_x_s12_evt1 != 0)))) || ((_x_s12_evt2 != 0) && (( !(_x_s12_evt0 != 0)) && ( !(_x_s12_evt1 != 0))))) || ((( !(_x_s12_evt2 != 0)) && ((_x_s12_evt1 != 0) && ( !(_x_s12_evt0 != 0)))) || ((_x_s12_evt2 != 0) && ((_x_s12_evt1 != 0) && ( !(_x_s12_evt0 != 0))))))) && ((( !(_x_s12_l0 != 0)) && ( !(_x_s12_l1 != 0))) || (((_x_s12_l1 != 0) && ( !(_x_s12_l0 != 0))) || ((_x_s12_l0 != 0) && ( !(_x_s12_l1 != 0)))))) && ((_x_s12_x <= 404.0) || ( !((_x_s12_l1 != 0) && ( !(_x_s12_l0 != 0)))))) && ((_x_s12_x <= 26.0) || ( !((_x_s12_l0 != 0) && ( !(_x_s12_l1 != 0)))))) && ((delta <= 0.0) || ((((s12_l0 != 0) == (_x_s12_l0 != 0)) && ((s12_l1 != 0) == (_x_s12_l1 != 0))) && ((delta + (s12_x + (-1.0 * _x_s12_x))) == 0.0)))) && (((((s12_l0 != 0) == (_x_s12_l0 != 0)) && ((s12_l1 != 0) == (_x_s12_l1 != 0))) && ((delta + (s12_x + (-1.0 * _x_s12_x))) == 0.0)) || ( !(( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))))) && ((((_x_s12_l0 != 0) && ( !(_x_s12_l1 != 0))) || ((( !(_x_s12_l0 != 0)) && ( !(_x_s12_l1 != 0))) || ((_x_s12_l1 != 0) && ( !(_x_s12_l0 != 0))))) || ( !((( !(s12_l0 != 0)) && ( !(s12_l1 != 0))) && ((delta == 0.0) && ( !(( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))))))))) && (((( !(s12_evt2 != 0)) && ((s12_evt0 != 0) && ( !(s12_evt1 != 0)))) && (_x_s12_x == 0.0)) || ( !((( !(_x_s12_l0 != 0)) && ( !(_x_s12_l1 != 0))) && ((( !(s12_l0 != 0)) && ( !(s12_l1 != 0))) && ((delta == 0.0) && ( !(( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))))))))) && ((((s12_evt2 != 0) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))) && (_x_s12_x == 0.0)) || ( !(((_x_s12_l1 != 0) && ( !(_x_s12_l0 != 0))) && ((( !(s12_l0 != 0)) && ( !(s12_l1 != 0))) && ((delta == 0.0) && ( !(( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))))))))) && (((_x_s12_x == 0.0) && (((s12_evt2 != 0) && ((s12_evt1 != 0) && ( !(s12_evt0 != 0)))) || (( !(s12_evt2 != 0)) && ((s12_evt0 != 0) && ( !(s12_evt1 != 0)))))) || ( !(((_x_s12_l0 != 0) && ( !(_x_s12_l1 != 0))) && ((( !(s12_l0 != 0)) && ( !(s12_l1 != 0))) && ((delta == 0.0) && ( !(( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))))))))) && (((( !(_x_s12_l0 != 0)) && ( !(_x_s12_l1 != 0))) || ((_x_s12_l0 != 0) && ( !(_x_s12_l1 != 0)))) || ( !(((s12_l1 != 0) && ( !(s12_l0 != 0))) && ((delta == 0.0) && ( !(( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))))))))) && (((404.0 <= s12_x) && ((( !(s12_evt2 != 0)) && ((s12_evt1 != 0) && ( !(s12_evt0 != 0)))) && (_x_s12_x == 0.0))) || ( !((( !(_x_s12_l0 != 0)) && ( !(_x_s12_l1 != 0))) && (((s12_l1 != 0) && ( !(s12_l0 != 0))) && ((delta == 0.0) && ( !(( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))))))))) && (((s12_x <= 26.0) && ((( !(s12_evt2 != 0)) && ((s12_evt0 != 0) && ( !(s12_evt1 != 0)))) && (_x_s12_x == 0.0))) || ( !(((_x_s12_l0 != 0) && ( !(_x_s12_l1 != 0))) && (((s12_l1 != 0) && ( !(s12_l0 != 0))) && ((delta == 0.0) && ( !(( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))))))))) && ((((_x_s12_l1 != 0) && ( !(_x_s12_l0 != 0))) || ((_x_s12_l0 != 0) && ( !(_x_s12_l1 != 0)))) || ( !(((s12_l0 != 0) && ( !(s12_l1 != 0))) && ((delta == 0.0) && ( !(( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))))))))) && (((s12_x <= 26.0) && ((( !(s12_evt2 != 0)) && ((s12_evt0 != 0) && ( !(s12_evt1 != 0)))) && (_x_s12_x == 0.0))) || ( !(((_x_s12_l0 != 0) && ( !(_x_s12_l1 != 0))) && (((s12_l0 != 0) && ( !(s12_l1 != 0))) && ((delta == 0.0) && ( !(( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))))))))) && (((s12_x <= 26.0) && (((s12_evt2 != 0) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))) && (_x_s12_x == 0.0))) || ( !(((_x_s12_l1 != 0) && ( !(_x_s12_l0 != 0))) && (((s12_l0 != 0) && ( !(s12_l1 != 0))) && ((delta == 0.0) && ( !(( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s11_evt2 != 0)) && ((_x_s11_evt0 != 0) && ( !(_x_s11_evt1 != 0)))) || (((( !(_x_s11_evt2 != 0)) && (( !(_x_s11_evt0 != 0)) && ( !(_x_s11_evt1 != 0)))) || ((_x_s11_evt2 != 0) && (( !(_x_s11_evt0 != 0)) && ( !(_x_s11_evt1 != 0))))) || ((( !(_x_s11_evt2 != 0)) && ((_x_s11_evt1 != 0) && ( !(_x_s11_evt0 != 0)))) || ((_x_s11_evt2 != 0) && ((_x_s11_evt1 != 0) && ( !(_x_s11_evt0 != 0))))))) && ((( !(_x_s11_l0 != 0)) && ( !(_x_s11_l1 != 0))) || (((_x_s11_l1 != 0) && ( !(_x_s11_l0 != 0))) || ((_x_s11_l0 != 0) && ( !(_x_s11_l1 != 0)))))) && ((_x_s11_x <= 404.0) || ( !((_x_s11_l1 != 0) && ( !(_x_s11_l0 != 0)))))) && ((_x_s11_x <= 26.0) || ( !((_x_s11_l0 != 0) && ( !(_x_s11_l1 != 0)))))) && ((delta <= 0.0) || ((((s11_l0 != 0) == (_x_s11_l0 != 0)) && ((s11_l1 != 0) == (_x_s11_l1 != 0))) && ((delta + (s11_x + (-1.0 * _x_s11_x))) == 0.0)))) && (((((s11_l0 != 0) == (_x_s11_l0 != 0)) && ((s11_l1 != 0) == (_x_s11_l1 != 0))) && ((delta + (s11_x + (-1.0 * _x_s11_x))) == 0.0)) || ( !(( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))))) && ((((_x_s11_l0 != 0) && ( !(_x_s11_l1 != 0))) || ((( !(_x_s11_l0 != 0)) && ( !(_x_s11_l1 != 0))) || ((_x_s11_l1 != 0) && ( !(_x_s11_l0 != 0))))) || ( !((( !(s11_l0 != 0)) && ( !(s11_l1 != 0))) && ((delta == 0.0) && ( !(( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))))))))) && (((( !(s11_evt2 != 0)) && ((s11_evt0 != 0) && ( !(s11_evt1 != 0)))) && (_x_s11_x == 0.0)) || ( !((( !(_x_s11_l0 != 0)) && ( !(_x_s11_l1 != 0))) && ((( !(s11_l0 != 0)) && ( !(s11_l1 != 0))) && ((delta == 0.0) && ( !(( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))))))))) && ((((s11_evt2 != 0) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))) && (_x_s11_x == 0.0)) || ( !(((_x_s11_l1 != 0) && ( !(_x_s11_l0 != 0))) && ((( !(s11_l0 != 0)) && ( !(s11_l1 != 0))) && ((delta == 0.0) && ( !(( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))))))))) && (((_x_s11_x == 0.0) && (((s11_evt2 != 0) && ((s11_evt1 != 0) && ( !(s11_evt0 != 0)))) || (( !(s11_evt2 != 0)) && ((s11_evt0 != 0) && ( !(s11_evt1 != 0)))))) || ( !(((_x_s11_l0 != 0) && ( !(_x_s11_l1 != 0))) && ((( !(s11_l0 != 0)) && ( !(s11_l1 != 0))) && ((delta == 0.0) && ( !(( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))))))))) && (((( !(_x_s11_l0 != 0)) && ( !(_x_s11_l1 != 0))) || ((_x_s11_l0 != 0) && ( !(_x_s11_l1 != 0)))) || ( !(((s11_l1 != 0) && ( !(s11_l0 != 0))) && ((delta == 0.0) && ( !(( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))))))))) && (((404.0 <= s11_x) && ((( !(s11_evt2 != 0)) && ((s11_evt1 != 0) && ( !(s11_evt0 != 0)))) && (_x_s11_x == 0.0))) || ( !((( !(_x_s11_l0 != 0)) && ( !(_x_s11_l1 != 0))) && (((s11_l1 != 0) && ( !(s11_l0 != 0))) && ((delta == 0.0) && ( !(( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))))))))) && (((s11_x <= 26.0) && ((( !(s11_evt2 != 0)) && ((s11_evt0 != 0) && ( !(s11_evt1 != 0)))) && (_x_s11_x == 0.0))) || ( !(((_x_s11_l0 != 0) && ( !(_x_s11_l1 != 0))) && (((s11_l1 != 0) && ( !(s11_l0 != 0))) && ((delta == 0.0) && ( !(( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))))))))) && ((((_x_s11_l1 != 0) && ( !(_x_s11_l0 != 0))) || ((_x_s11_l0 != 0) && ( !(_x_s11_l1 != 0)))) || ( !(((s11_l0 != 0) && ( !(s11_l1 != 0))) && ((delta == 0.0) && ( !(( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))))))))) && (((s11_x <= 26.0) && ((( !(s11_evt2 != 0)) && ((s11_evt0 != 0) && ( !(s11_evt1 != 0)))) && (_x_s11_x == 0.0))) || ( !(((_x_s11_l0 != 0) && ( !(_x_s11_l1 != 0))) && (((s11_l0 != 0) && ( !(s11_l1 != 0))) && ((delta == 0.0) && ( !(( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))))))))) && (((s11_x <= 26.0) && (((s11_evt2 != 0) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))) && (_x_s11_x == 0.0))) || ( !(((_x_s11_l1 != 0) && ( !(_x_s11_l0 != 0))) && (((s11_l0 != 0) && ( !(s11_l1 != 0))) && ((delta == 0.0) && ( !(( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s10_evt2 != 0)) && ((_x_s10_evt0 != 0) && ( !(_x_s10_evt1 != 0)))) || (((( !(_x_s10_evt2 != 0)) && (( !(_x_s10_evt0 != 0)) && ( !(_x_s10_evt1 != 0)))) || ((_x_s10_evt2 != 0) && (( !(_x_s10_evt0 != 0)) && ( !(_x_s10_evt1 != 0))))) || ((( !(_x_s10_evt2 != 0)) && ((_x_s10_evt1 != 0) && ( !(_x_s10_evt0 != 0)))) || ((_x_s10_evt2 != 0) && ((_x_s10_evt1 != 0) && ( !(_x_s10_evt0 != 0))))))) && ((( !(_x_s10_l0 != 0)) && ( !(_x_s10_l1 != 0))) || (((_x_s10_l1 != 0) && ( !(_x_s10_l0 != 0))) || ((_x_s10_l0 != 0) && ( !(_x_s10_l1 != 0)))))) && ((_x_s10_x <= 404.0) || ( !((_x_s10_l1 != 0) && ( !(_x_s10_l0 != 0)))))) && ((_x_s10_x <= 26.0) || ( !((_x_s10_l0 != 0) && ( !(_x_s10_l1 != 0)))))) && ((delta <= 0.0) || ((((s10_l0 != 0) == (_x_s10_l0 != 0)) && ((s10_l1 != 0) == (_x_s10_l1 != 0))) && ((delta + (s10_x + (-1.0 * _x_s10_x))) == 0.0)))) && (((((s10_l0 != 0) == (_x_s10_l0 != 0)) && ((s10_l1 != 0) == (_x_s10_l1 != 0))) && ((delta + (s10_x + (-1.0 * _x_s10_x))) == 0.0)) || ( !(( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0))))))) && ((((_x_s10_l0 != 0) && ( !(_x_s10_l1 != 0))) || ((( !(_x_s10_l0 != 0)) && ( !(_x_s10_l1 != 0))) || ((_x_s10_l1 != 0) && ( !(_x_s10_l0 != 0))))) || ( !((( !(s10_l0 != 0)) && ( !(s10_l1 != 0))) && ((delta == 0.0) && ( !(( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))))))))) && (((( !(s10_evt2 != 0)) && ((s10_evt0 != 0) && ( !(s10_evt1 != 0)))) && (_x_s10_x == 0.0)) || ( !((( !(_x_s10_l0 != 0)) && ( !(_x_s10_l1 != 0))) && ((( !(s10_l0 != 0)) && ( !(s10_l1 != 0))) && ((delta == 0.0) && ( !(( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0))))))))))) && ((((s10_evt2 != 0) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))) && (_x_s10_x == 0.0)) || ( !(((_x_s10_l1 != 0) && ( !(_x_s10_l0 != 0))) && ((( !(s10_l0 != 0)) && ( !(s10_l1 != 0))) && ((delta == 0.0) && ( !(( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0))))))))))) && (((_x_s10_x == 0.0) && (((s10_evt2 != 0) && ((s10_evt1 != 0) && ( !(s10_evt0 != 0)))) || (( !(s10_evt2 != 0)) && ((s10_evt0 != 0) && ( !(s10_evt1 != 0)))))) || ( !(((_x_s10_l0 != 0) && ( !(_x_s10_l1 != 0))) && ((( !(s10_l0 != 0)) && ( !(s10_l1 != 0))) && ((delta == 0.0) && ( !(( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0))))))))))) && (((( !(_x_s10_l0 != 0)) && ( !(_x_s10_l1 != 0))) || ((_x_s10_l0 != 0) && ( !(_x_s10_l1 != 0)))) || ( !(((s10_l1 != 0) && ( !(s10_l0 != 0))) && ((delta == 0.0) && ( !(( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))))))))) && (((404.0 <= s10_x) && ((( !(s10_evt2 != 0)) && ((s10_evt1 != 0) && ( !(s10_evt0 != 0)))) && (_x_s10_x == 0.0))) || ( !((( !(_x_s10_l0 != 0)) && ( !(_x_s10_l1 != 0))) && (((s10_l1 != 0) && ( !(s10_l0 != 0))) && ((delta == 0.0) && ( !(( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0))))))))))) && (((s10_x <= 26.0) && ((( !(s10_evt2 != 0)) && ((s10_evt0 != 0) && ( !(s10_evt1 != 0)))) && (_x_s10_x == 0.0))) || ( !(((_x_s10_l0 != 0) && ( !(_x_s10_l1 != 0))) && (((s10_l1 != 0) && ( !(s10_l0 != 0))) && ((delta == 0.0) && ( !(( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0))))))))))) && ((((_x_s10_l1 != 0) && ( !(_x_s10_l0 != 0))) || ((_x_s10_l0 != 0) && ( !(_x_s10_l1 != 0)))) || ( !(((s10_l0 != 0) && ( !(s10_l1 != 0))) && ((delta == 0.0) && ( !(( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))))))))) && (((s10_x <= 26.0) && ((( !(s10_evt2 != 0)) && ((s10_evt0 != 0) && ( !(s10_evt1 != 0)))) && (_x_s10_x == 0.0))) || ( !(((_x_s10_l0 != 0) && ( !(_x_s10_l1 != 0))) && (((s10_l0 != 0) && ( !(s10_l1 != 0))) && ((delta == 0.0) && ( !(( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0))))))))))) && (((s10_x <= 26.0) && (((s10_evt2 != 0) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))) && (_x_s10_x == 0.0))) || ( !(((_x_s10_l1 != 0) && ( !(_x_s10_l0 != 0))) && (((s10_l0 != 0) && ( !(s10_l1 != 0))) && ((delta == 0.0) && ( !(( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s9_evt2 != 0)) && ((_x_s9_evt0 != 0) && ( !(_x_s9_evt1 != 0)))) || (((( !(_x_s9_evt2 != 0)) && (( !(_x_s9_evt0 != 0)) && ( !(_x_s9_evt1 != 0)))) || ((_x_s9_evt2 != 0) && (( !(_x_s9_evt0 != 0)) && ( !(_x_s9_evt1 != 0))))) || ((( !(_x_s9_evt2 != 0)) && ((_x_s9_evt1 != 0) && ( !(_x_s9_evt0 != 0)))) || ((_x_s9_evt2 != 0) && ((_x_s9_evt1 != 0) && ( !(_x_s9_evt0 != 0))))))) && ((( !(_x_s9_l0 != 0)) && ( !(_x_s9_l1 != 0))) || (((_x_s9_l1 != 0) && ( !(_x_s9_l0 != 0))) || ((_x_s9_l0 != 0) && ( !(_x_s9_l1 != 0)))))) && ((_x_s9_x <= 404.0) || ( !((_x_s9_l1 != 0) && ( !(_x_s9_l0 != 0)))))) && ((_x_s9_x <= 26.0) || ( !((_x_s9_l0 != 0) && ( !(_x_s9_l1 != 0)))))) && ((delta <= 0.0) || ((((s9_l0 != 0) == (_x_s9_l0 != 0)) && ((s9_l1 != 0) == (_x_s9_l1 != 0))) && ((delta + (s9_x + (-1.0 * _x_s9_x))) == 0.0)))) && (((((s9_l0 != 0) == (_x_s9_l0 != 0)) && ((s9_l1 != 0) == (_x_s9_l1 != 0))) && ((delta + (s9_x + (-1.0 * _x_s9_x))) == 0.0)) || ( !(( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0))))))) && ((((_x_s9_l0 != 0) && ( !(_x_s9_l1 != 0))) || ((( !(_x_s9_l0 != 0)) && ( !(_x_s9_l1 != 0))) || ((_x_s9_l1 != 0) && ( !(_x_s9_l0 != 0))))) || ( !((( !(s9_l0 != 0)) && ( !(s9_l1 != 0))) && ((delta == 0.0) && ( !(( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))))))))) && (((( !(s9_evt2 != 0)) && ((s9_evt0 != 0) && ( !(s9_evt1 != 0)))) && (_x_s9_x == 0.0)) || ( !((( !(_x_s9_l0 != 0)) && ( !(_x_s9_l1 != 0))) && ((( !(s9_l0 != 0)) && ( !(s9_l1 != 0))) && ((delta == 0.0) && ( !(( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0))))))))))) && ((((s9_evt2 != 0) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) && (_x_s9_x == 0.0)) || ( !(((_x_s9_l1 != 0) && ( !(_x_s9_l0 != 0))) && ((( !(s9_l0 != 0)) && ( !(s9_l1 != 0))) && ((delta == 0.0) && ( !(( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0))))))))))) && (((_x_s9_x == 0.0) && (((s9_evt2 != 0) && ((s9_evt1 != 0) && ( !(s9_evt0 != 0)))) || (( !(s9_evt2 != 0)) && ((s9_evt0 != 0) && ( !(s9_evt1 != 0)))))) || ( !(((_x_s9_l0 != 0) && ( !(_x_s9_l1 != 0))) && ((( !(s9_l0 != 0)) && ( !(s9_l1 != 0))) && ((delta == 0.0) && ( !(( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0))))))))))) && (((( !(_x_s9_l0 != 0)) && ( !(_x_s9_l1 != 0))) || ((_x_s9_l0 != 0) && ( !(_x_s9_l1 != 0)))) || ( !(((s9_l1 != 0) && ( !(s9_l0 != 0))) && ((delta == 0.0) && ( !(( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))))))))) && (((404.0 <= s9_x) && ((( !(s9_evt2 != 0)) && ((s9_evt1 != 0) && ( !(s9_evt0 != 0)))) && (_x_s9_x == 0.0))) || ( !((( !(_x_s9_l0 != 0)) && ( !(_x_s9_l1 != 0))) && (((s9_l1 != 0) && ( !(s9_l0 != 0))) && ((delta == 0.0) && ( !(( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0))))))))))) && (((s9_x <= 26.0) && ((( !(s9_evt2 != 0)) && ((s9_evt0 != 0) && ( !(s9_evt1 != 0)))) && (_x_s9_x == 0.0))) || ( !(((_x_s9_l0 != 0) && ( !(_x_s9_l1 != 0))) && (((s9_l1 != 0) && ( !(s9_l0 != 0))) && ((delta == 0.0) && ( !(( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0))))))))))) && ((((_x_s9_l1 != 0) && ( !(_x_s9_l0 != 0))) || ((_x_s9_l0 != 0) && ( !(_x_s9_l1 != 0)))) || ( !(((s9_l0 != 0) && ( !(s9_l1 != 0))) && ((delta == 0.0) && ( !(( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))))))))) && (((s9_x <= 26.0) && ((( !(s9_evt2 != 0)) && ((s9_evt0 != 0) && ( !(s9_evt1 != 0)))) && (_x_s9_x == 0.0))) || ( !(((_x_s9_l0 != 0) && ( !(_x_s9_l1 != 0))) && (((s9_l0 != 0) && ( !(s9_l1 != 0))) && ((delta == 0.0) && ( !(( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0))))))))))) && (((s9_x <= 26.0) && (((s9_evt2 != 0) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) && (_x_s9_x == 0.0))) || ( !(((_x_s9_l1 != 0) && ( !(_x_s9_l0 != 0))) && (((s9_l0 != 0) && ( !(s9_l1 != 0))) && ((delta == 0.0) && ( !(( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s8_evt2 != 0)) && ((_x_s8_evt0 != 0) && ( !(_x_s8_evt1 != 0)))) || (((( !(_x_s8_evt2 != 0)) && (( !(_x_s8_evt0 != 0)) && ( !(_x_s8_evt1 != 0)))) || ((_x_s8_evt2 != 0) && (( !(_x_s8_evt0 != 0)) && ( !(_x_s8_evt1 != 0))))) || ((( !(_x_s8_evt2 != 0)) && ((_x_s8_evt1 != 0) && ( !(_x_s8_evt0 != 0)))) || ((_x_s8_evt2 != 0) && ((_x_s8_evt1 != 0) && ( !(_x_s8_evt0 != 0))))))) && ((( !(_x_s8_l0 != 0)) && ( !(_x_s8_l1 != 0))) || (((_x_s8_l1 != 0) && ( !(_x_s8_l0 != 0))) || ((_x_s8_l0 != 0) && ( !(_x_s8_l1 != 0)))))) && ((_x_s8_x <= 404.0) || ( !((_x_s8_l1 != 0) && ( !(_x_s8_l0 != 0)))))) && ((_x_s8_x <= 26.0) || ( !((_x_s8_l0 != 0) && ( !(_x_s8_l1 != 0)))))) && ((delta <= 0.0) || ((((s8_l0 != 0) == (_x_s8_l0 != 0)) && ((s8_l1 != 0) == (_x_s8_l1 != 0))) && ((delta + (s8_x + (-1.0 * _x_s8_x))) == 0.0)))) && (((((s8_l0 != 0) == (_x_s8_l0 != 0)) && ((s8_l1 != 0) == (_x_s8_l1 != 0))) && ((delta + (s8_x + (-1.0 * _x_s8_x))) == 0.0)) || ( !(( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0))))))) && ((((_x_s8_l0 != 0) && ( !(_x_s8_l1 != 0))) || ((( !(_x_s8_l0 != 0)) && ( !(_x_s8_l1 != 0))) || ((_x_s8_l1 != 0) && ( !(_x_s8_l0 != 0))))) || ( !((( !(s8_l0 != 0)) && ( !(s8_l1 != 0))) && ((delta == 0.0) && ( !(( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))))))))) && (((( !(s8_evt2 != 0)) && ((s8_evt0 != 0) && ( !(s8_evt1 != 0)))) && (_x_s8_x == 0.0)) || ( !((( !(_x_s8_l0 != 0)) && ( !(_x_s8_l1 != 0))) && ((( !(s8_l0 != 0)) && ( !(s8_l1 != 0))) && ((delta == 0.0) && ( !(( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0))))))))))) && ((((s8_evt2 != 0) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) && (_x_s8_x == 0.0)) || ( !(((_x_s8_l1 != 0) && ( !(_x_s8_l0 != 0))) && ((( !(s8_l0 != 0)) && ( !(s8_l1 != 0))) && ((delta == 0.0) && ( !(( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0))))))))))) && (((_x_s8_x == 0.0) && (((s8_evt2 != 0) && ((s8_evt1 != 0) && ( !(s8_evt0 != 0)))) || (( !(s8_evt2 != 0)) && ((s8_evt0 != 0) && ( !(s8_evt1 != 0)))))) || ( !(((_x_s8_l0 != 0) && ( !(_x_s8_l1 != 0))) && ((( !(s8_l0 != 0)) && ( !(s8_l1 != 0))) && ((delta == 0.0) && ( !(( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0))))))))))) && (((( !(_x_s8_l0 != 0)) && ( !(_x_s8_l1 != 0))) || ((_x_s8_l0 != 0) && ( !(_x_s8_l1 != 0)))) || ( !(((s8_l1 != 0) && ( !(s8_l0 != 0))) && ((delta == 0.0) && ( !(( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))))))))) && (((404.0 <= s8_x) && ((( !(s8_evt2 != 0)) && ((s8_evt1 != 0) && ( !(s8_evt0 != 0)))) && (_x_s8_x == 0.0))) || ( !((( !(_x_s8_l0 != 0)) && ( !(_x_s8_l1 != 0))) && (((s8_l1 != 0) && ( !(s8_l0 != 0))) && ((delta == 0.0) && ( !(( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0))))))))))) && (((s8_x <= 26.0) && ((( !(s8_evt2 != 0)) && ((s8_evt0 != 0) && ( !(s8_evt1 != 0)))) && (_x_s8_x == 0.0))) || ( !(((_x_s8_l0 != 0) && ( !(_x_s8_l1 != 0))) && (((s8_l1 != 0) && ( !(s8_l0 != 0))) && ((delta == 0.0) && ( !(( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0))))))))))) && ((((_x_s8_l1 != 0) && ( !(_x_s8_l0 != 0))) || ((_x_s8_l0 != 0) && ( !(_x_s8_l1 != 0)))) || ( !(((s8_l0 != 0) && ( !(s8_l1 != 0))) && ((delta == 0.0) && ( !(( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))))))))) && (((s8_x <= 26.0) && ((( !(s8_evt2 != 0)) && ((s8_evt0 != 0) && ( !(s8_evt1 != 0)))) && (_x_s8_x == 0.0))) || ( !(((_x_s8_l0 != 0) && ( !(_x_s8_l1 != 0))) && (((s8_l0 != 0) && ( !(s8_l1 != 0))) && ((delta == 0.0) && ( !(( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0))))))))))) && (((s8_x <= 26.0) && (((s8_evt2 != 0) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) && (_x_s8_x == 0.0))) || ( !(((_x_s8_l1 != 0) && ( !(_x_s8_l0 != 0))) && (((s8_l0 != 0) && ( !(s8_l1 != 0))) && ((delta == 0.0) && ( !(( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s7_evt2 != 0)) && ((_x_s7_evt0 != 0) && ( !(_x_s7_evt1 != 0)))) || (((( !(_x_s7_evt2 != 0)) && (( !(_x_s7_evt0 != 0)) && ( !(_x_s7_evt1 != 0)))) || ((_x_s7_evt2 != 0) && (( !(_x_s7_evt0 != 0)) && ( !(_x_s7_evt1 != 0))))) || ((( !(_x_s7_evt2 != 0)) && ((_x_s7_evt1 != 0) && ( !(_x_s7_evt0 != 0)))) || ((_x_s7_evt2 != 0) && ((_x_s7_evt1 != 0) && ( !(_x_s7_evt0 != 0))))))) && ((( !(_x_s7_l0 != 0)) && ( !(_x_s7_l1 != 0))) || (((_x_s7_l1 != 0) && ( !(_x_s7_l0 != 0))) || ((_x_s7_l0 != 0) && ( !(_x_s7_l1 != 0)))))) && ((_x_s7_x <= 404.0) || ( !((_x_s7_l1 != 0) && ( !(_x_s7_l0 != 0)))))) && ((_x_s7_x <= 26.0) || ( !((_x_s7_l0 != 0) && ( !(_x_s7_l1 != 0)))))) && ((delta <= 0.0) || ((((s7_l0 != 0) == (_x_s7_l0 != 0)) && ((s7_l1 != 0) == (_x_s7_l1 != 0))) && ((delta + (s7_x + (-1.0 * _x_s7_x))) == 0.0)))) && (((((s7_l0 != 0) == (_x_s7_l0 != 0)) && ((s7_l1 != 0) == (_x_s7_l1 != 0))) && ((delta + (s7_x + (-1.0 * _x_s7_x))) == 0.0)) || ( !(( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0))))))) && ((((_x_s7_l0 != 0) && ( !(_x_s7_l1 != 0))) || ((( !(_x_s7_l0 != 0)) && ( !(_x_s7_l1 != 0))) || ((_x_s7_l1 != 0) && ( !(_x_s7_l0 != 0))))) || ( !((( !(s7_l0 != 0)) && ( !(s7_l1 != 0))) && ((delta == 0.0) && ( !(( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))))))))) && (((( !(s7_evt2 != 0)) && ((s7_evt0 != 0) && ( !(s7_evt1 != 0)))) && (_x_s7_x == 0.0)) || ( !((( !(_x_s7_l0 != 0)) && ( !(_x_s7_l1 != 0))) && ((( !(s7_l0 != 0)) && ( !(s7_l1 != 0))) && ((delta == 0.0) && ( !(( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0))))))))))) && ((((s7_evt2 != 0) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) && (_x_s7_x == 0.0)) || ( !(((_x_s7_l1 != 0) && ( !(_x_s7_l0 != 0))) && ((( !(s7_l0 != 0)) && ( !(s7_l1 != 0))) && ((delta == 0.0) && ( !(( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0))))))))))) && (((_x_s7_x == 0.0) && (((s7_evt2 != 0) && ((s7_evt1 != 0) && ( !(s7_evt0 != 0)))) || (( !(s7_evt2 != 0)) && ((s7_evt0 != 0) && ( !(s7_evt1 != 0)))))) || ( !(((_x_s7_l0 != 0) && ( !(_x_s7_l1 != 0))) && ((( !(s7_l0 != 0)) && ( !(s7_l1 != 0))) && ((delta == 0.0) && ( !(( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0))))))))))) && (((( !(_x_s7_l0 != 0)) && ( !(_x_s7_l1 != 0))) || ((_x_s7_l0 != 0) && ( !(_x_s7_l1 != 0)))) || ( !(((s7_l1 != 0) && ( !(s7_l0 != 0))) && ((delta == 0.0) && ( !(( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))))))))) && (((404.0 <= s7_x) && ((( !(s7_evt2 != 0)) && ((s7_evt1 != 0) && ( !(s7_evt0 != 0)))) && (_x_s7_x == 0.0))) || ( !((( !(_x_s7_l0 != 0)) && ( !(_x_s7_l1 != 0))) && (((s7_l1 != 0) && ( !(s7_l0 != 0))) && ((delta == 0.0) && ( !(( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0))))))))))) && (((s7_x <= 26.0) && ((( !(s7_evt2 != 0)) && ((s7_evt0 != 0) && ( !(s7_evt1 != 0)))) && (_x_s7_x == 0.0))) || ( !(((_x_s7_l0 != 0) && ( !(_x_s7_l1 != 0))) && (((s7_l1 != 0) && ( !(s7_l0 != 0))) && ((delta == 0.0) && ( !(( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0))))))))))) && ((((_x_s7_l1 != 0) && ( !(_x_s7_l0 != 0))) || ((_x_s7_l0 != 0) && ( !(_x_s7_l1 != 0)))) || ( !(((s7_l0 != 0) && ( !(s7_l1 != 0))) && ((delta == 0.0) && ( !(( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))))))))) && (((s7_x <= 26.0) && ((( !(s7_evt2 != 0)) && ((s7_evt0 != 0) && ( !(s7_evt1 != 0)))) && (_x_s7_x == 0.0))) || ( !(((_x_s7_l0 != 0) && ( !(_x_s7_l1 != 0))) && (((s7_l0 != 0) && ( !(s7_l1 != 0))) && ((delta == 0.0) && ( !(( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0))))))))))) && (((s7_x <= 26.0) && (((s7_evt2 != 0) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) && (_x_s7_x == 0.0))) || ( !(((_x_s7_l1 != 0) && ( !(_x_s7_l0 != 0))) && (((s7_l0 != 0) && ( !(s7_l1 != 0))) && ((delta == 0.0) && ( !(( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s6_evt2 != 0)) && ((_x_s6_evt0 != 0) && ( !(_x_s6_evt1 != 0)))) || (((( !(_x_s6_evt2 != 0)) && (( !(_x_s6_evt0 != 0)) && ( !(_x_s6_evt1 != 0)))) || ((_x_s6_evt2 != 0) && (( !(_x_s6_evt0 != 0)) && ( !(_x_s6_evt1 != 0))))) || ((( !(_x_s6_evt2 != 0)) && ((_x_s6_evt1 != 0) && ( !(_x_s6_evt0 != 0)))) || ((_x_s6_evt2 != 0) && ((_x_s6_evt1 != 0) && ( !(_x_s6_evt0 != 0))))))) && ((( !(_x_s6_l0 != 0)) && ( !(_x_s6_l1 != 0))) || (((_x_s6_l1 != 0) && ( !(_x_s6_l0 != 0))) || ((_x_s6_l0 != 0) && ( !(_x_s6_l1 != 0)))))) && ((_x_s6_x <= 404.0) || ( !((_x_s6_l1 != 0) && ( !(_x_s6_l0 != 0)))))) && ((_x_s6_x <= 26.0) || ( !((_x_s6_l0 != 0) && ( !(_x_s6_l1 != 0)))))) && ((delta <= 0.0) || ((((s6_l0 != 0) == (_x_s6_l0 != 0)) && ((s6_l1 != 0) == (_x_s6_l1 != 0))) && ((delta + (s6_x + (-1.0 * _x_s6_x))) == 0.0)))) && (((((s6_l0 != 0) == (_x_s6_l0 != 0)) && ((s6_l1 != 0) == (_x_s6_l1 != 0))) && ((delta + (s6_x + (-1.0 * _x_s6_x))) == 0.0)) || ( !(( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0))))))) && ((((_x_s6_l0 != 0) && ( !(_x_s6_l1 != 0))) || ((( !(_x_s6_l0 != 0)) && ( !(_x_s6_l1 != 0))) || ((_x_s6_l1 != 0) && ( !(_x_s6_l0 != 0))))) || ( !((( !(s6_l0 != 0)) && ( !(s6_l1 != 0))) && ((delta == 0.0) && ( !(( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))))))))) && (((( !(s6_evt2 != 0)) && ((s6_evt0 != 0) && ( !(s6_evt1 != 0)))) && (_x_s6_x == 0.0)) || ( !((( !(_x_s6_l0 != 0)) && ( !(_x_s6_l1 != 0))) && ((( !(s6_l0 != 0)) && ( !(s6_l1 != 0))) && ((delta == 0.0) && ( !(( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0))))))))))) && ((((s6_evt2 != 0) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) && (_x_s6_x == 0.0)) || ( !(((_x_s6_l1 != 0) && ( !(_x_s6_l0 != 0))) && ((( !(s6_l0 != 0)) && ( !(s6_l1 != 0))) && ((delta == 0.0) && ( !(( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0))))))))))) && (((_x_s6_x == 0.0) && (((s6_evt2 != 0) && ((s6_evt1 != 0) && ( !(s6_evt0 != 0)))) || (( !(s6_evt2 != 0)) && ((s6_evt0 != 0) && ( !(s6_evt1 != 0)))))) || ( !(((_x_s6_l0 != 0) && ( !(_x_s6_l1 != 0))) && ((( !(s6_l0 != 0)) && ( !(s6_l1 != 0))) && ((delta == 0.0) && ( !(( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0))))))))))) && (((( !(_x_s6_l0 != 0)) && ( !(_x_s6_l1 != 0))) || ((_x_s6_l0 != 0) && ( !(_x_s6_l1 != 0)))) || ( !(((s6_l1 != 0) && ( !(s6_l0 != 0))) && ((delta == 0.0) && ( !(( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))))))))) && (((404.0 <= s6_x) && ((( !(s6_evt2 != 0)) && ((s6_evt1 != 0) && ( !(s6_evt0 != 0)))) && (_x_s6_x == 0.0))) || ( !((( !(_x_s6_l0 != 0)) && ( !(_x_s6_l1 != 0))) && (((s6_l1 != 0) && ( !(s6_l0 != 0))) && ((delta == 0.0) && ( !(( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0))))))))))) && (((s6_x <= 26.0) && ((( !(s6_evt2 != 0)) && ((s6_evt0 != 0) && ( !(s6_evt1 != 0)))) && (_x_s6_x == 0.0))) || ( !(((_x_s6_l0 != 0) && ( !(_x_s6_l1 != 0))) && (((s6_l1 != 0) && ( !(s6_l0 != 0))) && ((delta == 0.0) && ( !(( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0))))))))))) && ((((_x_s6_l1 != 0) && ( !(_x_s6_l0 != 0))) || ((_x_s6_l0 != 0) && ( !(_x_s6_l1 != 0)))) || ( !(((s6_l0 != 0) && ( !(s6_l1 != 0))) && ((delta == 0.0) && ( !(( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))))))))) && (((s6_x <= 26.0) && ((( !(s6_evt2 != 0)) && ((s6_evt0 != 0) && ( !(s6_evt1 != 0)))) && (_x_s6_x == 0.0))) || ( !(((_x_s6_l0 != 0) && ( !(_x_s6_l1 != 0))) && (((s6_l0 != 0) && ( !(s6_l1 != 0))) && ((delta == 0.0) && ( !(( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0))))))))))) && (((s6_x <= 26.0) && (((s6_evt2 != 0) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) && (_x_s6_x == 0.0))) || ( !(((_x_s6_l1 != 0) && ( !(_x_s6_l0 != 0))) && (((s6_l0 != 0) && ( !(s6_l1 != 0))) && ((delta == 0.0) && ( !(( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s5_evt2 != 0)) && ((_x_s5_evt0 != 0) && ( !(_x_s5_evt1 != 0)))) || (((( !(_x_s5_evt2 != 0)) && (( !(_x_s5_evt0 != 0)) && ( !(_x_s5_evt1 != 0)))) || ((_x_s5_evt2 != 0) && (( !(_x_s5_evt0 != 0)) && ( !(_x_s5_evt1 != 0))))) || ((( !(_x_s5_evt2 != 0)) && ((_x_s5_evt1 != 0) && ( !(_x_s5_evt0 != 0)))) || ((_x_s5_evt2 != 0) && ((_x_s5_evt1 != 0) && ( !(_x_s5_evt0 != 0))))))) && ((( !(_x_s5_l0 != 0)) && ( !(_x_s5_l1 != 0))) || (((_x_s5_l1 != 0) && ( !(_x_s5_l0 != 0))) || ((_x_s5_l0 != 0) && ( !(_x_s5_l1 != 0)))))) && ((_x_s5_x <= 404.0) || ( !((_x_s5_l1 != 0) && ( !(_x_s5_l0 != 0)))))) && ((_x_s5_x <= 26.0) || ( !((_x_s5_l0 != 0) && ( !(_x_s5_l1 != 0)))))) && ((delta <= 0.0) || ((((s5_l0 != 0) == (_x_s5_l0 != 0)) && ((s5_l1 != 0) == (_x_s5_l1 != 0))) && ((delta + (s5_x + (-1.0 * _x_s5_x))) == 0.0)))) && (((((s5_l0 != 0) == (_x_s5_l0 != 0)) && ((s5_l1 != 0) == (_x_s5_l1 != 0))) && ((delta + (s5_x + (-1.0 * _x_s5_x))) == 0.0)) || ( !(( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0))))))) && ((((_x_s5_l0 != 0) && ( !(_x_s5_l1 != 0))) || ((( !(_x_s5_l0 != 0)) && ( !(_x_s5_l1 != 0))) || ((_x_s5_l1 != 0) && ( !(_x_s5_l0 != 0))))) || ( !((( !(s5_l0 != 0)) && ( !(s5_l1 != 0))) && ((delta == 0.0) && ( !(( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))))))))) && (((( !(s5_evt2 != 0)) && ((s5_evt0 != 0) && ( !(s5_evt1 != 0)))) && (_x_s5_x == 0.0)) || ( !((( !(_x_s5_l0 != 0)) && ( !(_x_s5_l1 != 0))) && ((( !(s5_l0 != 0)) && ( !(s5_l1 != 0))) && ((delta == 0.0) && ( !(( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0))))))))))) && ((((s5_evt2 != 0) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) && (_x_s5_x == 0.0)) || ( !(((_x_s5_l1 != 0) && ( !(_x_s5_l0 != 0))) && ((( !(s5_l0 != 0)) && ( !(s5_l1 != 0))) && ((delta == 0.0) && ( !(( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0))))))))))) && (((_x_s5_x == 0.0) && (((s5_evt2 != 0) && ((s5_evt1 != 0) && ( !(s5_evt0 != 0)))) || (( !(s5_evt2 != 0)) && ((s5_evt0 != 0) && ( !(s5_evt1 != 0)))))) || ( !(((_x_s5_l0 != 0) && ( !(_x_s5_l1 != 0))) && ((( !(s5_l0 != 0)) && ( !(s5_l1 != 0))) && ((delta == 0.0) && ( !(( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0))))))))))) && (((( !(_x_s5_l0 != 0)) && ( !(_x_s5_l1 != 0))) || ((_x_s5_l0 != 0) && ( !(_x_s5_l1 != 0)))) || ( !(((s5_l1 != 0) && ( !(s5_l0 != 0))) && ((delta == 0.0) && ( !(( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))))))))) && (((404.0 <= s5_x) && ((( !(s5_evt2 != 0)) && ((s5_evt1 != 0) && ( !(s5_evt0 != 0)))) && (_x_s5_x == 0.0))) || ( !((( !(_x_s5_l0 != 0)) && ( !(_x_s5_l1 != 0))) && (((s5_l1 != 0) && ( !(s5_l0 != 0))) && ((delta == 0.0) && ( !(( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0))))))))))) && (((s5_x <= 26.0) && ((( !(s5_evt2 != 0)) && ((s5_evt0 != 0) && ( !(s5_evt1 != 0)))) && (_x_s5_x == 0.0))) || ( !(((_x_s5_l0 != 0) && ( !(_x_s5_l1 != 0))) && (((s5_l1 != 0) && ( !(s5_l0 != 0))) && ((delta == 0.0) && ( !(( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0))))))))))) && ((((_x_s5_l1 != 0) && ( !(_x_s5_l0 != 0))) || ((_x_s5_l0 != 0) && ( !(_x_s5_l1 != 0)))) || ( !(((s5_l0 != 0) && ( !(s5_l1 != 0))) && ((delta == 0.0) && ( !(( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))))))))) && (((s5_x <= 26.0) && ((( !(s5_evt2 != 0)) && ((s5_evt0 != 0) && ( !(s5_evt1 != 0)))) && (_x_s5_x == 0.0))) || ( !(((_x_s5_l0 != 0) && ( !(_x_s5_l1 != 0))) && (((s5_l0 != 0) && ( !(s5_l1 != 0))) && ((delta == 0.0) && ( !(( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0))))))))))) && (((s5_x <= 26.0) && (((s5_evt2 != 0) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) && (_x_s5_x == 0.0))) || ( !(((_x_s5_l1 != 0) && ( !(_x_s5_l0 != 0))) && (((s5_l0 != 0) && ( !(s5_l1 != 0))) && ((delta == 0.0) && ( !(( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s4_evt2 != 0)) && ((_x_s4_evt0 != 0) && ( !(_x_s4_evt1 != 0)))) || (((( !(_x_s4_evt2 != 0)) && (( !(_x_s4_evt0 != 0)) && ( !(_x_s4_evt1 != 0)))) || ((_x_s4_evt2 != 0) && (( !(_x_s4_evt0 != 0)) && ( !(_x_s4_evt1 != 0))))) || ((( !(_x_s4_evt2 != 0)) && ((_x_s4_evt1 != 0) && ( !(_x_s4_evt0 != 0)))) || ((_x_s4_evt2 != 0) && ((_x_s4_evt1 != 0) && ( !(_x_s4_evt0 != 0))))))) && ((( !(_x_s4_l0 != 0)) && ( !(_x_s4_l1 != 0))) || (((_x_s4_l1 != 0) && ( !(_x_s4_l0 != 0))) || ((_x_s4_l0 != 0) && ( !(_x_s4_l1 != 0)))))) && ((_x_s4_x <= 404.0) || ( !((_x_s4_l1 != 0) && ( !(_x_s4_l0 != 0)))))) && ((_x_s4_x <= 26.0) || ( !((_x_s4_l0 != 0) && ( !(_x_s4_l1 != 0)))))) && ((delta <= 0.0) || ((((s4_l0 != 0) == (_x_s4_l0 != 0)) && ((s4_l1 != 0) == (_x_s4_l1 != 0))) && ((delta + (s4_x + (-1.0 * _x_s4_x))) == 0.0)))) && (((((s4_l0 != 0) == (_x_s4_l0 != 0)) && ((s4_l1 != 0) == (_x_s4_l1 != 0))) && ((delta + (s4_x + (-1.0 * _x_s4_x))) == 0.0)) || ( !(( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0))))))) && ((((_x_s4_l0 != 0) && ( !(_x_s4_l1 != 0))) || ((( !(_x_s4_l0 != 0)) && ( !(_x_s4_l1 != 0))) || ((_x_s4_l1 != 0) && ( !(_x_s4_l0 != 0))))) || ( !((( !(s4_l0 != 0)) && ( !(s4_l1 != 0))) && ((delta == 0.0) && ( !(( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))))))))) && (((( !(s4_evt2 != 0)) && ((s4_evt0 != 0) && ( !(s4_evt1 != 0)))) && (_x_s4_x == 0.0)) || ( !((( !(_x_s4_l0 != 0)) && ( !(_x_s4_l1 != 0))) && ((( !(s4_l0 != 0)) && ( !(s4_l1 != 0))) && ((delta == 0.0) && ( !(( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0))))))))))) && ((((s4_evt2 != 0) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) && (_x_s4_x == 0.0)) || ( !(((_x_s4_l1 != 0) && ( !(_x_s4_l0 != 0))) && ((( !(s4_l0 != 0)) && ( !(s4_l1 != 0))) && ((delta == 0.0) && ( !(( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0))))))))))) && (((_x_s4_x == 0.0) && (((s4_evt2 != 0) && ((s4_evt1 != 0) && ( !(s4_evt0 != 0)))) || (( !(s4_evt2 != 0)) && ((s4_evt0 != 0) && ( !(s4_evt1 != 0)))))) || ( !(((_x_s4_l0 != 0) && ( !(_x_s4_l1 != 0))) && ((( !(s4_l0 != 0)) && ( !(s4_l1 != 0))) && ((delta == 0.0) && ( !(( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0))))))))))) && (((( !(_x_s4_l0 != 0)) && ( !(_x_s4_l1 != 0))) || ((_x_s4_l0 != 0) && ( !(_x_s4_l1 != 0)))) || ( !(((s4_l1 != 0) && ( !(s4_l0 != 0))) && ((delta == 0.0) && ( !(( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))))))))) && (((404.0 <= s4_x) && ((( !(s4_evt2 != 0)) && ((s4_evt1 != 0) && ( !(s4_evt0 != 0)))) && (_x_s4_x == 0.0))) || ( !((( !(_x_s4_l0 != 0)) && ( !(_x_s4_l1 != 0))) && (((s4_l1 != 0) && ( !(s4_l0 != 0))) && ((delta == 0.0) && ( !(( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0))))))))))) && (((s4_x <= 26.0) && ((( !(s4_evt2 != 0)) && ((s4_evt0 != 0) && ( !(s4_evt1 != 0)))) && (_x_s4_x == 0.0))) || ( !(((_x_s4_l0 != 0) && ( !(_x_s4_l1 != 0))) && (((s4_l1 != 0) && ( !(s4_l0 != 0))) && ((delta == 0.0) && ( !(( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0))))))))))) && ((((_x_s4_l1 != 0) && ( !(_x_s4_l0 != 0))) || ((_x_s4_l0 != 0) && ( !(_x_s4_l1 != 0)))) || ( !(((s4_l0 != 0) && ( !(s4_l1 != 0))) && ((delta == 0.0) && ( !(( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))))))))) && (((s4_x <= 26.0) && ((( !(s4_evt2 != 0)) && ((s4_evt0 != 0) && ( !(s4_evt1 != 0)))) && (_x_s4_x == 0.0))) || ( !(((_x_s4_l0 != 0) && ( !(_x_s4_l1 != 0))) && (((s4_l0 != 0) && ( !(s4_l1 != 0))) && ((delta == 0.0) && ( !(( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0))))))))))) && (((s4_x <= 26.0) && (((s4_evt2 != 0) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) && (_x_s4_x == 0.0))) || ( !(((_x_s4_l1 != 0) && ( !(_x_s4_l0 != 0))) && (((s4_l0 != 0) && ( !(s4_l1 != 0))) && ((delta == 0.0) && ( !(( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s3_evt2 != 0)) && ((_x_s3_evt0 != 0) && ( !(_x_s3_evt1 != 0)))) || (((( !(_x_s3_evt2 != 0)) && (( !(_x_s3_evt0 != 0)) && ( !(_x_s3_evt1 != 0)))) || ((_x_s3_evt2 != 0) && (( !(_x_s3_evt0 != 0)) && ( !(_x_s3_evt1 != 0))))) || ((( !(_x_s3_evt2 != 0)) && ((_x_s3_evt1 != 0) && ( !(_x_s3_evt0 != 0)))) || ((_x_s3_evt2 != 0) && ((_x_s3_evt1 != 0) && ( !(_x_s3_evt0 != 0))))))) && ((( !(_x_s3_l0 != 0)) && ( !(_x_s3_l1 != 0))) || (((_x_s3_l1 != 0) && ( !(_x_s3_l0 != 0))) || ((_x_s3_l0 != 0) && ( !(_x_s3_l1 != 0)))))) && ((_x_s3_x <= 404.0) || ( !((_x_s3_l1 != 0) && ( !(_x_s3_l0 != 0)))))) && ((_x_s3_x <= 26.0) || ( !((_x_s3_l0 != 0) && ( !(_x_s3_l1 != 0)))))) && ((delta <= 0.0) || ((((s3_l0 != 0) == (_x_s3_l0 != 0)) && ((s3_l1 != 0) == (_x_s3_l1 != 0))) && ((delta + (s3_x + (-1.0 * _x_s3_x))) == 0.0)))) && (((((s3_l0 != 0) == (_x_s3_l0 != 0)) && ((s3_l1 != 0) == (_x_s3_l1 != 0))) && ((delta + (s3_x + (-1.0 * _x_s3_x))) == 0.0)) || ( !(( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0))))))) && ((((_x_s3_l0 != 0) && ( !(_x_s3_l1 != 0))) || ((( !(_x_s3_l0 != 0)) && ( !(_x_s3_l1 != 0))) || ((_x_s3_l1 != 0) && ( !(_x_s3_l0 != 0))))) || ( !((( !(s3_l0 != 0)) && ( !(s3_l1 != 0))) && ((delta == 0.0) && ( !(( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))))))))) && (((( !(s3_evt2 != 0)) && ((s3_evt0 != 0) && ( !(s3_evt1 != 0)))) && (_x_s3_x == 0.0)) || ( !((( !(_x_s3_l0 != 0)) && ( !(_x_s3_l1 != 0))) && ((( !(s3_l0 != 0)) && ( !(s3_l1 != 0))) && ((delta == 0.0) && ( !(( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0))))))))))) && ((((s3_evt2 != 0) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) && (_x_s3_x == 0.0)) || ( !(((_x_s3_l1 != 0) && ( !(_x_s3_l0 != 0))) && ((( !(s3_l0 != 0)) && ( !(s3_l1 != 0))) && ((delta == 0.0) && ( !(( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0))))))))))) && (((_x_s3_x == 0.0) && (((s3_evt2 != 0) && ((s3_evt1 != 0) && ( !(s3_evt0 != 0)))) || (( !(s3_evt2 != 0)) && ((s3_evt0 != 0) && ( !(s3_evt1 != 0)))))) || ( !(((_x_s3_l0 != 0) && ( !(_x_s3_l1 != 0))) && ((( !(s3_l0 != 0)) && ( !(s3_l1 != 0))) && ((delta == 0.0) && ( !(( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0))))))))))) && (((( !(_x_s3_l0 != 0)) && ( !(_x_s3_l1 != 0))) || ((_x_s3_l0 != 0) && ( !(_x_s3_l1 != 0)))) || ( !(((s3_l1 != 0) && ( !(s3_l0 != 0))) && ((delta == 0.0) && ( !(( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))))))))) && (((404.0 <= s3_x) && ((( !(s3_evt2 != 0)) && ((s3_evt1 != 0) && ( !(s3_evt0 != 0)))) && (_x_s3_x == 0.0))) || ( !((( !(_x_s3_l0 != 0)) && ( !(_x_s3_l1 != 0))) && (((s3_l1 != 0) && ( !(s3_l0 != 0))) && ((delta == 0.0) && ( !(( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0))))))))))) && (((s3_x <= 26.0) && ((( !(s3_evt2 != 0)) && ((s3_evt0 != 0) && ( !(s3_evt1 != 0)))) && (_x_s3_x == 0.0))) || ( !(((_x_s3_l0 != 0) && ( !(_x_s3_l1 != 0))) && (((s3_l1 != 0) && ( !(s3_l0 != 0))) && ((delta == 0.0) && ( !(( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0))))))))))) && ((((_x_s3_l1 != 0) && ( !(_x_s3_l0 != 0))) || ((_x_s3_l0 != 0) && ( !(_x_s3_l1 != 0)))) || ( !(((s3_l0 != 0) && ( !(s3_l1 != 0))) && ((delta == 0.0) && ( !(( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))))))))) && (((s3_x <= 26.0) && ((( !(s3_evt2 != 0)) && ((s3_evt0 != 0) && ( !(s3_evt1 != 0)))) && (_x_s3_x == 0.0))) || ( !(((_x_s3_l0 != 0) && ( !(_x_s3_l1 != 0))) && (((s3_l0 != 0) && ( !(s3_l1 != 0))) && ((delta == 0.0) && ( !(( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0))))))))))) && (((s3_x <= 26.0) && (((s3_evt2 != 0) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) && (_x_s3_x == 0.0))) || ( !(((_x_s3_l1 != 0) && ( !(_x_s3_l0 != 0))) && (((s3_l0 != 0) && ( !(s3_l1 != 0))) && ((delta == 0.0) && ( !(( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s2_evt2 != 0)) && ((_x_s2_evt0 != 0) && ( !(_x_s2_evt1 != 0)))) || (((( !(_x_s2_evt2 != 0)) && (( !(_x_s2_evt0 != 0)) && ( !(_x_s2_evt1 != 0)))) || ((_x_s2_evt2 != 0) && (( !(_x_s2_evt0 != 0)) && ( !(_x_s2_evt1 != 0))))) || ((( !(_x_s2_evt2 != 0)) && ((_x_s2_evt1 != 0) && ( !(_x_s2_evt0 != 0)))) || ((_x_s2_evt2 != 0) && ((_x_s2_evt1 != 0) && ( !(_x_s2_evt0 != 0))))))) && ((( !(_x_s2_l0 != 0)) && ( !(_x_s2_l1 != 0))) || (((_x_s2_l1 != 0) && ( !(_x_s2_l0 != 0))) || ((_x_s2_l0 != 0) && ( !(_x_s2_l1 != 0)))))) && ((_x_s2_x <= 404.0) || ( !((_x_s2_l1 != 0) && ( !(_x_s2_l0 != 0)))))) && ((_x_s2_x <= 26.0) || ( !((_x_s2_l0 != 0) && ( !(_x_s2_l1 != 0)))))) && ((delta <= 0.0) || ((((s2_l0 != 0) == (_x_s2_l0 != 0)) && ((s2_l1 != 0) == (_x_s2_l1 != 0))) && ((delta + (s2_x + (-1.0 * _x_s2_x))) == 0.0)))) && (((((s2_l0 != 0) == (_x_s2_l0 != 0)) && ((s2_l1 != 0) == (_x_s2_l1 != 0))) && ((delta + (s2_x + (-1.0 * _x_s2_x))) == 0.0)) || ( !(( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0))))))) && ((((_x_s2_l0 != 0) && ( !(_x_s2_l1 != 0))) || ((( !(_x_s2_l0 != 0)) && ( !(_x_s2_l1 != 0))) || ((_x_s2_l1 != 0) && ( !(_x_s2_l0 != 0))))) || ( !((( !(s2_l0 != 0)) && ( !(s2_l1 != 0))) && ((delta == 0.0) && ( !(( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))))))))) && (((( !(s2_evt2 != 0)) && ((s2_evt0 != 0) && ( !(s2_evt1 != 0)))) && (_x_s2_x == 0.0)) || ( !((( !(_x_s2_l0 != 0)) && ( !(_x_s2_l1 != 0))) && ((( !(s2_l0 != 0)) && ( !(s2_l1 != 0))) && ((delta == 0.0) && ( !(( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0))))))))))) && ((((s2_evt2 != 0) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) && (_x_s2_x == 0.0)) || ( !(((_x_s2_l1 != 0) && ( !(_x_s2_l0 != 0))) && ((( !(s2_l0 != 0)) && ( !(s2_l1 != 0))) && ((delta == 0.0) && ( !(( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0))))))))))) && (((_x_s2_x == 0.0) && (((s2_evt2 != 0) && ((s2_evt1 != 0) && ( !(s2_evt0 != 0)))) || (( !(s2_evt2 != 0)) && ((s2_evt0 != 0) && ( !(s2_evt1 != 0)))))) || ( !(((_x_s2_l0 != 0) && ( !(_x_s2_l1 != 0))) && ((( !(s2_l0 != 0)) && ( !(s2_l1 != 0))) && ((delta == 0.0) && ( !(( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0))))))))))) && (((( !(_x_s2_l0 != 0)) && ( !(_x_s2_l1 != 0))) || ((_x_s2_l0 != 0) && ( !(_x_s2_l1 != 0)))) || ( !(((s2_l1 != 0) && ( !(s2_l0 != 0))) && ((delta == 0.0) && ( !(( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))))))))) && (((404.0 <= s2_x) && ((( !(s2_evt2 != 0)) && ((s2_evt1 != 0) && ( !(s2_evt0 != 0)))) && (_x_s2_x == 0.0))) || ( !((( !(_x_s2_l0 != 0)) && ( !(_x_s2_l1 != 0))) && (((s2_l1 != 0) && ( !(s2_l0 != 0))) && ((delta == 0.0) && ( !(( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0))))))))))) && (((s2_x <= 26.0) && ((( !(s2_evt2 != 0)) && ((s2_evt0 != 0) && ( !(s2_evt1 != 0)))) && (_x_s2_x == 0.0))) || ( !(((_x_s2_l0 != 0) && ( !(_x_s2_l1 != 0))) && (((s2_l1 != 0) && ( !(s2_l0 != 0))) && ((delta == 0.0) && ( !(( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0))))))))))) && ((((_x_s2_l1 != 0) && ( !(_x_s2_l0 != 0))) || ((_x_s2_l0 != 0) && ( !(_x_s2_l1 != 0)))) || ( !(((s2_l0 != 0) && ( !(s2_l1 != 0))) && ((delta == 0.0) && ( !(( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))))))))) && (((s2_x <= 26.0) && ((( !(s2_evt2 != 0)) && ((s2_evt0 != 0) && ( !(s2_evt1 != 0)))) && (_x_s2_x == 0.0))) || ( !(((_x_s2_l0 != 0) && ( !(_x_s2_l1 != 0))) && (((s2_l0 != 0) && ( !(s2_l1 != 0))) && ((delta == 0.0) && ( !(( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0))))))))))) && (((s2_x <= 26.0) && (((s2_evt2 != 0) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) && (_x_s2_x == 0.0))) || ( !(((_x_s2_l1 != 0) && ( !(_x_s2_l0 != 0))) && (((s2_l0 != 0) && ( !(s2_l1 != 0))) && ((delta == 0.0) && ( !(( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s1_evt2 != 0)) && ((_x_s1_evt0 != 0) && ( !(_x_s1_evt1 != 0)))) || (((( !(_x_s1_evt2 != 0)) && (( !(_x_s1_evt0 != 0)) && ( !(_x_s1_evt1 != 0)))) || ((_x_s1_evt2 != 0) && (( !(_x_s1_evt0 != 0)) && ( !(_x_s1_evt1 != 0))))) || ((( !(_x_s1_evt2 != 0)) && ((_x_s1_evt1 != 0) && ( !(_x_s1_evt0 != 0)))) || ((_x_s1_evt2 != 0) && ((_x_s1_evt1 != 0) && ( !(_x_s1_evt0 != 0))))))) && ((( !(_x_s1_l0 != 0)) && ( !(_x_s1_l1 != 0))) || (((_x_s1_l1 != 0) && ( !(_x_s1_l0 != 0))) || ((_x_s1_l0 != 0) && ( !(_x_s1_l1 != 0)))))) && ((_x_s1_x <= 404.0) || ( !((_x_s1_l1 != 0) && ( !(_x_s1_l0 != 0)))))) && ((_x_s1_x <= 26.0) || ( !((_x_s1_l0 != 0) && ( !(_x_s1_l1 != 0)))))) && ((delta <= 0.0) || ((((s1_l0 != 0) == (_x_s1_l0 != 0)) && ((s1_l1 != 0) == (_x_s1_l1 != 0))) && ((delta + (s1_x + (-1.0 * _x_s1_x))) == 0.0)))) && (((((s1_l0 != 0) == (_x_s1_l0 != 0)) && ((s1_l1 != 0) == (_x_s1_l1 != 0))) && ((delta + (s1_x + (-1.0 * _x_s1_x))) == 0.0)) || ( !(( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0))))))) && ((((_x_s1_l0 != 0) && ( !(_x_s1_l1 != 0))) || ((( !(_x_s1_l0 != 0)) && ( !(_x_s1_l1 != 0))) || ((_x_s1_l1 != 0) && ( !(_x_s1_l0 != 0))))) || ( !((( !(s1_l0 != 0)) && ( !(s1_l1 != 0))) && ((delta == 0.0) && ( !(( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))))))))) && (((( !(s1_evt2 != 0)) && ((s1_evt0 != 0) && ( !(s1_evt1 != 0)))) && (_x_s1_x == 0.0)) || ( !((( !(_x_s1_l0 != 0)) && ( !(_x_s1_l1 != 0))) && ((( !(s1_l0 != 0)) && ( !(s1_l1 != 0))) && ((delta == 0.0) && ( !(( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0))))))))))) && ((((s1_evt2 != 0) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) && (_x_s1_x == 0.0)) || ( !(((_x_s1_l1 != 0) && ( !(_x_s1_l0 != 0))) && ((( !(s1_l0 != 0)) && ( !(s1_l1 != 0))) && ((delta == 0.0) && ( !(( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0))))))))))) && (((_x_s1_x == 0.0) && (((s1_evt2 != 0) && ((s1_evt1 != 0) && ( !(s1_evt0 != 0)))) || (( !(s1_evt2 != 0)) && ((s1_evt0 != 0) && ( !(s1_evt1 != 0)))))) || ( !(((_x_s1_l0 != 0) && ( !(_x_s1_l1 != 0))) && ((( !(s1_l0 != 0)) && ( !(s1_l1 != 0))) && ((delta == 0.0) && ( !(( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0))))))))))) && (((( !(_x_s1_l0 != 0)) && ( !(_x_s1_l1 != 0))) || ((_x_s1_l0 != 0) && ( !(_x_s1_l1 != 0)))) || ( !(((s1_l1 != 0) && ( !(s1_l0 != 0))) && ((delta == 0.0) && ( !(( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))))))))) && (((404.0 <= s1_x) && ((( !(s1_evt2 != 0)) && ((s1_evt1 != 0) && ( !(s1_evt0 != 0)))) && (_x_s1_x == 0.0))) || ( !((( !(_x_s1_l0 != 0)) && ( !(_x_s1_l1 != 0))) && (((s1_l1 != 0) && ( !(s1_l0 != 0))) && ((delta == 0.0) && ( !(( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0))))))))))) && (((s1_x <= 26.0) && ((( !(s1_evt2 != 0)) && ((s1_evt0 != 0) && ( !(s1_evt1 != 0)))) && (_x_s1_x == 0.0))) || ( !(((_x_s1_l0 != 0) && ( !(_x_s1_l1 != 0))) && (((s1_l1 != 0) && ( !(s1_l0 != 0))) && ((delta == 0.0) && ( !(( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0))))))))))) && ((((_x_s1_l1 != 0) && ( !(_x_s1_l0 != 0))) || ((_x_s1_l0 != 0) && ( !(_x_s1_l1 != 0)))) || ( !(((s1_l0 != 0) && ( !(s1_l1 != 0))) && ((delta == 0.0) && ( !(( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))))))))) && (((s1_x <= 26.0) && ((( !(s1_evt2 != 0)) && ((s1_evt0 != 0) && ( !(s1_evt1 != 0)))) && (_x_s1_x == 0.0))) || ( !(((_x_s1_l0 != 0) && ( !(_x_s1_l1 != 0))) && (((s1_l0 != 0) && ( !(s1_l1 != 0))) && ((delta == 0.0) && ( !(( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0))))))))))) && (((s1_x <= 26.0) && (((s1_evt2 != 0) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) && (_x_s1_x == 0.0))) || ( !(((_x_s1_l1 != 0) && ( !(_x_s1_l0 != 0))) && (((s1_l0 != 0) && ( !(s1_l1 != 0))) && ((delta == 0.0) && ( !(( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0))))))))))) && ((((((((((((((((((( !(_x_s0_evt2 != 0)) && ((_x_s0_evt0 != 0) && ( !(_x_s0_evt1 != 0)))) || (((( !(_x_s0_evt2 != 0)) && (( !(_x_s0_evt0 != 0)) && ( !(_x_s0_evt1 != 0)))) || ((_x_s0_evt2 != 0) && (( !(_x_s0_evt0 != 0)) && ( !(_x_s0_evt1 != 0))))) || ((( !(_x_s0_evt2 != 0)) && ((_x_s0_evt1 != 0) && ( !(_x_s0_evt0 != 0)))) || ((_x_s0_evt2 != 0) && ((_x_s0_evt1 != 0) && ( !(_x_s0_evt0 != 0))))))) && ((( !(_x_s0_l0 != 0)) && ( !(_x_s0_l1 != 0))) || (((_x_s0_l1 != 0) && ( !(_x_s0_l0 != 0))) || ((_x_s0_l0 != 0) && ( !(_x_s0_l1 != 0)))))) && ((_x_s0_x <= 404.0) || ( !((_x_s0_l1 != 0) && ( !(_x_s0_l0 != 0)))))) && ((_x_s0_x <= 26.0) || ( !((_x_s0_l0 != 0) && ( !(_x_s0_l1 != 0)))))) && ((delta <= 0.0) || ((((s0_l0 != 0) == (_x_s0_l0 != 0)) && ((s0_l1 != 0) == (_x_s0_l1 != 0))) && ((delta + (s0_x + (-1.0 * _x_s0_x))) == 0.0)))) && (((((s0_l0 != 0) == (_x_s0_l0 != 0)) && ((s0_l1 != 0) == (_x_s0_l1 != 0))) && ((delta + (s0_x + (-1.0 * _x_s0_x))) == 0.0)) || ( !(( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0))))))) && ((((_x_s0_l0 != 0) && ( !(_x_s0_l1 != 0))) || ((( !(_x_s0_l0 != 0)) && ( !(_x_s0_l1 != 0))) || ((_x_s0_l1 != 0) && ( !(_x_s0_l0 != 0))))) || ( !((( !(s0_l0 != 0)) && ( !(s0_l1 != 0))) && ((delta == 0.0) && ( !(( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))))))))) && (((( !(s0_evt2 != 0)) && ((s0_evt0 != 0) && ( !(s0_evt1 != 0)))) && (_x_s0_x == 0.0)) || ( !((( !(_x_s0_l0 != 0)) && ( !(_x_s0_l1 != 0))) && ((( !(s0_l0 != 0)) && ( !(s0_l1 != 0))) && ((delta == 0.0) && ( !(( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0))))))))))) && ((((s0_evt2 != 0) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) && (_x_s0_x == 0.0)) || ( !(((_x_s0_l1 != 0) && ( !(_x_s0_l0 != 0))) && ((( !(s0_l0 != 0)) && ( !(s0_l1 != 0))) && ((delta == 0.0) && ( !(( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0))))))))))) && (((_x_s0_x == 0.0) && (((s0_evt2 != 0) && ((s0_evt1 != 0) && ( !(s0_evt0 != 0)))) || (( !(s0_evt2 != 0)) && ((s0_evt0 != 0) && ( !(s0_evt1 != 0)))))) || ( !(((_x_s0_l0 != 0) && ( !(_x_s0_l1 != 0))) && ((( !(s0_l0 != 0)) && ( !(s0_l1 != 0))) && ((delta == 0.0) && ( !(( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0))))))))))) && (((( !(_x_s0_l0 != 0)) && ( !(_x_s0_l1 != 0))) || ((_x_s0_l0 != 0) && ( !(_x_s0_l1 != 0)))) || ( !(((s0_l1 != 0) && ( !(s0_l0 != 0))) && ((delta == 0.0) && ( !(( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))))))))) && (((404.0 <= s0_x) && ((( !(s0_evt2 != 0)) && ((s0_evt1 != 0) && ( !(s0_evt0 != 0)))) && (_x_s0_x == 0.0))) || ( !((( !(_x_s0_l0 != 0)) && ( !(_x_s0_l1 != 0))) && (((s0_l1 != 0) && ( !(s0_l0 != 0))) && ((delta == 0.0) && ( !(( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0))))))))))) && (((s0_x <= 26.0) && ((( !(s0_evt2 != 0)) && ((s0_evt0 != 0) && ( !(s0_evt1 != 0)))) && (_x_s0_x == 0.0))) || ( !(((_x_s0_l0 != 0) && ( !(_x_s0_l1 != 0))) && (((s0_l1 != 0) && ( !(s0_l0 != 0))) && ((delta == 0.0) && ( !(( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0))))))))))) && ((((_x_s0_l1 != 0) && ( !(_x_s0_l0 != 0))) || ((_x_s0_l0 != 0) && ( !(_x_s0_l1 != 0)))) || ( !(((s0_l0 != 0) && ( !(s0_l1 != 0))) && ((delta == 0.0) && ( !(( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))))))))) && (((s0_x <= 26.0) && ((( !(s0_evt2 != 0)) && ((s0_evt0 != 0) && ( !(s0_evt1 != 0)))) && (_x_s0_x == 0.0))) || ( !(((_x_s0_l0 != 0) && ( !(_x_s0_l1 != 0))) && (((s0_l0 != 0) && ( !(s0_l1 != 0))) && ((delta == 0.0) && ( !(( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0))))))))))) && (((s0_x <= 26.0) && (((s0_evt2 != 0) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) && (_x_s0_x == 0.0))) || ( !(((_x_s0_l1 != 0) && ( !(_x_s0_l0 != 0))) && (((s0_l0 != 0) && ( !(s0_l1 != 0))) && ((delta == 0.0) && ( !(( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0))))))))))) && (((((((((((((((( !(_x_bus_evt2 != 0)) && (( !(_x_bus_evt0 != 0)) && ( !(_x_bus_evt1 != 0)))) || ((((_x_bus_evt2 != 0) && (( !(_x_bus_evt0 != 0)) && ( !(_x_bus_evt1 != 0)))) || (( !(_x_bus_evt2 != 0)) && ((_x_bus_evt1 != 0) && ( !(_x_bus_evt0 != 0))))) || (((_x_bus_evt2 != 0) && ((_x_bus_evt1 != 0) && ( !(_x_bus_evt0 != 0)))) || (( !(_x_bus_evt2 != 0)) && ((_x_bus_evt0 != 0) && ( !(_x_bus_evt1 != 0))))))) && (((( !(_x_bus_l0 != 0)) && ( !(_x_bus_l1 != 0))) || ((_x_bus_l1 != 0) && ( !(_x_bus_l0 != 0)))) || (((_x_bus_l0 != 0) && ( !(_x_bus_l1 != 0))) || ((_x_bus_l0 != 0) && (_x_bus_l1 != 0))))) && ((( !(13.0 <= _x_bus_x)) || ( !((_x_bus_l0 != 0) && ( !(_x_bus_l1 != 0))))) && ((_x_delta == 0.0) || ( !((_x_bus_l0 != 0) && (_x_bus_l1 != 0)))))) && ((delta <= 0.0) || (((delta + (bus_x + (-1.0 * _x_bus_x))) == 0.0) && ((((bus_l0 != 0) == (_x_bus_l0 != 0)) && ((bus_l1 != 0) == (_x_bus_l1 != 0))) && (bus_j == _x_bus_j))))) && ((((delta + (bus_x + (-1.0 * _x_bus_x))) == 0.0) && ((((bus_l0 != 0) == (_x_bus_l0 != 0)) && ((bus_l1 != 0) == (_x_bus_l1 != 0))) && (bus_j == _x_bus_j))) || ( !(( !(bus_evt2 != 0)) && (( !(bus_evt0 != 0)) && ( !(bus_evt1 != 0))))))) && (((((bus_evt2 != 0) && (( !(bus_evt0 != 0)) && ( !(bus_evt1 != 0)))) && ((_x_bus_l1 != 0) && ( !(_x_bus_l0 != 0)))) && ((bus_j == _x_bus_j) && (_x_bus_x == 0.0))) || ( !((( !(bus_l0 != 0)) && ( !(bus_l1 != 0))) && ((delta == 0.0) && ( !(( !(bus_evt2 != 0)) && (( !(bus_evt0 != 0)) && ( !(bus_evt1 != 0)))))))))) && (((bus_j == _x_bus_j) && (((_x_bus_l0 != 0) && ( !(_x_bus_l1 != 0))) || ((( !(_x_bus_l0 != 0)) && ( !(_x_bus_l1 != 0))) || ((_x_bus_l1 != 0) && ( !(_x_bus_l0 != 0)))))) || ( !(((bus_l1 != 0) && ( !(bus_l0 != 0))) && ((delta == 0.0) && ( !(( !(bus_evt2 != 0)) && (( !(bus_evt0 != 0)) && ( !(bus_evt1 != 0)))))))))) && (((( !(bus_evt2 != 0)) && ((bus_evt1 != 0) && ( !(bus_evt0 != 0)))) && (_x_bus_x == 0.0)) || ( !(((delta == 0.0) && ( !(( !(bus_evt2 != 0)) && (( !(bus_evt0 != 0)) && ( !(bus_evt1 != 0)))))) && ((( !(_x_bus_l0 != 0)) && ( !(_x_bus_l1 != 0))) && ((bus_l1 != 0) && ( !(bus_l0 != 0)))))))) && ((((bus_evt2 != 0) && ((bus_evt1 != 0) && ( !(bus_evt0 != 0)))) && ((13.0 <= bus_x) && (bus_x == _x_bus_x))) || ( !(((delta == 0.0) && ( !(( !(bus_evt2 != 0)) && (( !(bus_evt0 != 0)) && ( !(bus_evt1 != 0)))))) && (((bus_l1 != 0) && ( !(bus_l0 != 0))) && ((_x_bus_l1 != 0) && ( !(_x_bus_l0 != 0)))))))) && ((((bus_evt2 != 0) && (( !(bus_evt0 != 0)) && ( !(bus_evt1 != 0)))) && (( !(13.0 <= bus_x)) && (_x_bus_x == 0.0))) || ( !(((delta == 0.0) && ( !(( !(bus_evt2 != 0)) && (( !(bus_evt0 != 0)) && ( !(bus_evt1 != 0)))))) && (((bus_l1 != 0) && ( !(bus_l0 != 0))) && ((_x_bus_l0 != 0) && ( !(_x_bus_l1 != 0)))))))) && ((((((_x_bus_l0 != 0) && (_x_bus_l1 != 0)) && ( !(13.0 <= bus_x))) && ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == bus_j))) && ((_x_bus_x == 0.0) && ((bus_j + (-1 * _x_bus_j)) == -1))) || ( !(((bus_l0 != 0) && ( !(bus_l1 != 0))) && ((delta == 0.0) && ( !(( !(bus_evt2 != 0)) && (( !(bus_evt0 != 0)) && ( !(bus_evt1 != 0)))))))))) && ((((bus_j + (-1 * _x_bus_j)) == -1) && (((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == bus_j)) && ((_x_bus_x == 0.0) && ( !(26 <= bus_j))))) || ( !(((delta == 0.0) && ( !(( !(bus_evt2 != 0)) && (( !(bus_evt0 != 0)) && ( !(bus_evt1 != 0)))))) && (((bus_l0 != 0) && (bus_l1 != 0)) && ((_x_bus_l0 != 0) && (_x_bus_l1 != 0))))))) && (((((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_j == 26)) && ((_x_bus_x == 0.0) && (bus_cd_id == bus_j))) && (_x_bus_j == 0)) || ( !(((delta == 0.0) && ( !(( !(bus_evt2 != 0)) && (( !(bus_evt0 != 0)) && ( !(bus_evt1 != 0)))))) && ((( !(_x_bus_l0 != 0)) && ( !(_x_bus_l1 != 0))) && ((bus_l0 != 0) && (bus_l1 != 0))))))) && (0.0 <= _x_delta))))))))))))))))))))))))))))) && (((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0))))) || ( !(delta == 0.0)))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || (( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || (( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || (( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || (( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || (( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || (( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || (( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || (( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || (( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || (( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || (( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || (( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || (( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) || (( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) || (( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) || (( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) || (( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) || (( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) || (( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) || (( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) || (( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) || (( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) || (( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) || (( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) || (( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) || (( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) || (( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) || (( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) || (( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) || (( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) || (( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) || (( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) || (( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) || (( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) || (( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) || (( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))) || (( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))) || (( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))) || (( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))) || (( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))) || (( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))) || (( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))) || (( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))) || (( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))) || (( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))) || (( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))) || (( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))) || (( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))) || (( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))) || (( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))) || (( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))) || (( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))) || (( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))) || (( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))) || (( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))) || (( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))) || (( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))) || (( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))) || (( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))) || (( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))) || (( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))) || (( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))) || (( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0)))) || (( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0)))) || (( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0)))) || (( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0)))) || (( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0)))) || (( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0)))) || (( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0)))) || (( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0)))) || (( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0)))) || (( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0)))) || (( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0)))) || (( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0)))) || (( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0)))) || (( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0)))) || (( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0)))) || (( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0)))) || (( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0)))) || (( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0)))) || (( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0)))) || (( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0)))) || (( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0)))) || (( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0)))) || (( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0)))) || (( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0)))) || (( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0)))) || (( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0)))) || (( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0)))) || (( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0)))) || (( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0)))) || (( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0)))) || (( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0)))) || (( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0)))) || (( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0)))) || (( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || ((( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0)))) || (( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))))) && (( !(delta == 0.0)) || (( !(( !(s26_evt2 != 0)) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0))))) || (( !(( !(s25_evt2 != 0)) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0))))) || (( !(( !(s24_evt2 != 0)) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0))))) || (( !(( !(s23_evt2 != 0)) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0))))) || (( !(( !(s22_evt2 != 0)) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0))))) || (( !(( !(s21_evt2 != 0)) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0))))) || (( !(( !(s20_evt2 != 0)) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0))))) || (( !(( !(s19_evt2 != 0)) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0))))) || (( !(( !(s18_evt2 != 0)) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0))))) || (( !(( !(s17_evt2 != 0)) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0))))) || (( !(( !(s16_evt2 != 0)) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0))))) || (( !(( !(s15_evt2 != 0)) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0))))) || (( !(( !(s14_evt2 != 0)) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0))))) || (( !(( !(s13_evt2 != 0)) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0))))) || (( !(( !(s12_evt2 != 0)) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0))))) || (( !(( !(s11_evt2 != 0)) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0))))) || (( !(( !(s10_evt2 != 0)) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0))))) || (( !(( !(s9_evt2 != 0)) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0))))) || (( !(( !(s8_evt2 != 0)) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0))))) || (( !(( !(s7_evt2 != 0)) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0))))) || (( !(( !(s6_evt2 != 0)) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0))))) || (( !(( !(s5_evt2 != 0)) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0))))) || (( !(( !(s4_evt2 != 0)) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0))))) || (( !(( !(s3_evt2 != 0)) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0))))) || (( !(( !(s2_evt2 != 0)) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0))))) || (( !(( !(s1_evt2 != 0)) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0))))) || (( !(( !(bus_evt2 != 0)) && (( !(bus_evt0 != 0)) && ( !(bus_evt1 != 0))))) || ( !(( !(s0_evt2 != 0)) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))))))))))))))))))))))))))))))))) && (( !(delta == 0.0)) || (((bus_evt2 != 0) && (( !(bus_evt0 != 0)) && ( !(bus_evt1 != 0)))) == (((s26_evt2 != 0) && (( !(s26_evt0 != 0)) && ( !(s26_evt1 != 0)))) || (((s25_evt2 != 0) && (( !(s25_evt0 != 0)) && ( !(s25_evt1 != 0)))) || (((s24_evt2 != 0) && (( !(s24_evt0 != 0)) && ( !(s24_evt1 != 0)))) || (((s23_evt2 != 0) && (( !(s23_evt0 != 0)) && ( !(s23_evt1 != 0)))) || (((s22_evt2 != 0) && (( !(s22_evt0 != 0)) && ( !(s22_evt1 != 0)))) || (((s21_evt2 != 0) && (( !(s21_evt0 != 0)) && ( !(s21_evt1 != 0)))) || (((s20_evt2 != 0) && (( !(s20_evt0 != 0)) && ( !(s20_evt1 != 0)))) || (((s19_evt2 != 0) && (( !(s19_evt0 != 0)) && ( !(s19_evt1 != 0)))) || (((s18_evt2 != 0) && (( !(s18_evt0 != 0)) && ( !(s18_evt1 != 0)))) || (((s17_evt2 != 0) && (( !(s17_evt0 != 0)) && ( !(s17_evt1 != 0)))) || (((s16_evt2 != 0) && (( !(s16_evt0 != 0)) && ( !(s16_evt1 != 0)))) || (((s15_evt2 != 0) && (( !(s15_evt0 != 0)) && ( !(s15_evt1 != 0)))) || (((s14_evt2 != 0) && (( !(s14_evt0 != 0)) && ( !(s14_evt1 != 0)))) || (((s13_evt2 != 0) && (( !(s13_evt0 != 0)) && ( !(s13_evt1 != 0)))) || (((s12_evt2 != 0) && (( !(s12_evt0 != 0)) && ( !(s12_evt1 != 0)))) || (((s11_evt2 != 0) && (( !(s11_evt0 != 0)) && ( !(s11_evt1 != 0)))) || (((s10_evt2 != 0) && (( !(s10_evt0 != 0)) && ( !(s10_evt1 != 0)))) || (((s9_evt2 != 0) && (( !(s9_evt0 != 0)) && ( !(s9_evt1 != 0)))) || (((s8_evt2 != 0) && (( !(s8_evt0 != 0)) && ( !(s8_evt1 != 0)))) || (((s7_evt2 != 0) && (( !(s7_evt0 != 0)) && ( !(s7_evt1 != 0)))) || (((s6_evt2 != 0) && (( !(s6_evt0 != 0)) && ( !(s6_evt1 != 0)))) || (((s5_evt2 != 0) && (( !(s5_evt0 != 0)) && ( !(s5_evt1 != 0)))) || (((s4_evt2 != 0) && (( !(s4_evt0 != 0)) && ( !(s4_evt1 != 0)))) || (((s3_evt2 != 0) && (( !(s3_evt0 != 0)) && ( !(s3_evt1 != 0)))) || (((s2_evt2 != 0) && (( !(s2_evt0 != 0)) && ( !(s2_evt1 != 0)))) || (((s0_evt2 != 0) && (( !(s0_evt0 != 0)) && ( !(s0_evt1 != 0)))) || ((s1_evt2 != 0) && (( !(s1_evt0 != 0)) && ( !(s1_evt1 != 0))))))))))))))))))))))))))))))))) && (( !(delta == 0.0)) || ((( !(bus_evt2 != 0)) && ((bus_evt1 != 0) && ( !(bus_evt0 != 0)))) == ((( !(s26_evt2 != 0)) && ((s26_evt1 != 0) && ( !(s26_evt0 != 0)))) || ((( !(s25_evt2 != 0)) && ((s25_evt1 != 0) && ( !(s25_evt0 != 0)))) || ((( !(s24_evt2 != 0)) && ((s24_evt1 != 0) && ( !(s24_evt0 != 0)))) || ((( !(s23_evt2 != 0)) && ((s23_evt1 != 0) && ( !(s23_evt0 != 0)))) || ((( !(s22_evt2 != 0)) && ((s22_evt1 != 0) && ( !(s22_evt0 != 0)))) || ((( !(s21_evt2 != 0)) && ((s21_evt1 != 0) && ( !(s21_evt0 != 0)))) || ((( !(s20_evt2 != 0)) && ((s20_evt1 != 0) && ( !(s20_evt0 != 0)))) || ((( !(s19_evt2 != 0)) && ((s19_evt1 != 0) && ( !(s19_evt0 != 0)))) || ((( !(s18_evt2 != 0)) && ((s18_evt1 != 0) && ( !(s18_evt0 != 0)))) || ((( !(s17_evt2 != 0)) && ((s17_evt1 != 0) && ( !(s17_evt0 != 0)))) || ((( !(s16_evt2 != 0)) && ((s16_evt1 != 0) && ( !(s16_evt0 != 0)))) || ((( !(s15_evt2 != 0)) && ((s15_evt1 != 0) && ( !(s15_evt0 != 0)))) || ((( !(s14_evt2 != 0)) && ((s14_evt1 != 0) && ( !(s14_evt0 != 0)))) || ((( !(s13_evt2 != 0)) && ((s13_evt1 != 0) && ( !(s13_evt0 != 0)))) || ((( !(s12_evt2 != 0)) && ((s12_evt1 != 0) && ( !(s12_evt0 != 0)))) || ((( !(s11_evt2 != 0)) && ((s11_evt1 != 0) && ( !(s11_evt0 != 0)))) || ((( !(s10_evt2 != 0)) && ((s10_evt1 != 0) && ( !(s10_evt0 != 0)))) || ((( !(s9_evt2 != 0)) && ((s9_evt1 != 0) && ( !(s9_evt0 != 0)))) || ((( !(s8_evt2 != 0)) && ((s8_evt1 != 0) && ( !(s8_evt0 != 0)))) || ((( !(s7_evt2 != 0)) && ((s7_evt1 != 0) && ( !(s7_evt0 != 0)))) || ((( !(s6_evt2 != 0)) && ((s6_evt1 != 0) && ( !(s6_evt0 != 0)))) || ((( !(s5_evt2 != 0)) && ((s5_evt1 != 0) && ( !(s5_evt0 != 0)))) || ((( !(s4_evt2 != 0)) && ((s4_evt1 != 0) && ( !(s4_evt0 != 0)))) || ((( !(s3_evt2 != 0)) && ((s3_evt1 != 0) && ( !(s3_evt0 != 0)))) || ((( !(s2_evt2 != 0)) && ((s2_evt1 != 0) && ( !(s2_evt0 != 0)))) || ((( !(s0_evt2 != 0)) && ((s0_evt1 != 0) && ( !(s0_evt0 != 0)))) || (( !(s1_evt2 != 0)) && ((s1_evt1 != 0) && ( !(s1_evt0 != 0))))))))))))))))))))))))))))))))) && (( !(delta == 0.0)) || (((bus_evt2 != 0) && ((bus_evt1 != 0) && ( !(bus_evt0 != 0)))) == (((s26_evt2 != 0) && ((s26_evt1 != 0) && ( !(s26_evt0 != 0)))) || (((s25_evt2 != 0) && ((s25_evt1 != 0) && ( !(s25_evt0 != 0)))) || (((s24_evt2 != 0) && ((s24_evt1 != 0) && ( !(s24_evt0 != 0)))) || (((s23_evt2 != 0) && ((s23_evt1 != 0) && ( !(s23_evt0 != 0)))) || (((s22_evt2 != 0) && ((s22_evt1 != 0) && ( !(s22_evt0 != 0)))) || (((s21_evt2 != 0) && ((s21_evt1 != 0) && ( !(s21_evt0 != 0)))) || (((s20_evt2 != 0) && ((s20_evt1 != 0) && ( !(s20_evt0 != 0)))) || (((s19_evt2 != 0) && ((s19_evt1 != 0) && ( !(s19_evt0 != 0)))) || (((s18_evt2 != 0) && ((s18_evt1 != 0) && ( !(s18_evt0 != 0)))) || (((s17_evt2 != 0) && ((s17_evt1 != 0) && ( !(s17_evt0 != 0)))) || (((s16_evt2 != 0) && ((s16_evt1 != 0) && ( !(s16_evt0 != 0)))) || (((s15_evt2 != 0) && ((s15_evt1 != 0) && ( !(s15_evt0 != 0)))) || (((s14_evt2 != 0) && ((s14_evt1 != 0) && ( !(s14_evt0 != 0)))) || (((s13_evt2 != 0) && ((s13_evt1 != 0) && ( !(s13_evt0 != 0)))) || (((s12_evt2 != 0) && ((s12_evt1 != 0) && ( !(s12_evt0 != 0)))) || (((s11_evt2 != 0) && ((s11_evt1 != 0) && ( !(s11_evt0 != 0)))) || (((s10_evt2 != 0) && ((s10_evt1 != 0) && ( !(s10_evt0 != 0)))) || (((s9_evt2 != 0) && ((s9_evt1 != 0) && ( !(s9_evt0 != 0)))) || (((s8_evt2 != 0) && ((s8_evt1 != 0) && ( !(s8_evt0 != 0)))) || (((s7_evt2 != 0) && ((s7_evt1 != 0) && ( !(s7_evt0 != 0)))) || (((s6_evt2 != 0) && ((s6_evt1 != 0) && ( !(s6_evt0 != 0)))) || (((s5_evt2 != 0) && ((s5_evt1 != 0) && ( !(s5_evt0 != 0)))) || (((s4_evt2 != 0) && ((s4_evt1 != 0) && ( !(s4_evt0 != 0)))) || (((s3_evt2 != 0) && ((s3_evt1 != 0) && ( !(s3_evt0 != 0)))) || (((s2_evt2 != 0) && ((s2_evt1 != 0) && ( !(s2_evt0 != 0)))) || (((s0_evt2 != 0) && ((s0_evt1 != 0) && ( !(s0_evt0 != 0)))) || ((s1_evt2 != 0) && ((s1_evt1 != 0) && ( !(s1_evt0 != 0))))))))))))))))))))))))))))))))) && (( !(delta == 0.0)) || ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) == ((( !(s26_evt2 != 0)) && ((s26_evt0 != 0) && ( !(s26_evt1 != 0)))) || ((( !(s25_evt2 != 0)) && ((s25_evt0 != 0) && ( !(s25_evt1 != 0)))) || ((( !(s24_evt2 != 0)) && ((s24_evt0 != 0) && ( !(s24_evt1 != 0)))) || ((( !(s23_evt2 != 0)) && ((s23_evt0 != 0) && ( !(s23_evt1 != 0)))) || ((( !(s22_evt2 != 0)) && ((s22_evt0 != 0) && ( !(s22_evt1 != 0)))) || ((( !(s21_evt2 != 0)) && ((s21_evt0 != 0) && ( !(s21_evt1 != 0)))) || ((( !(s20_evt2 != 0)) && ((s20_evt0 != 0) && ( !(s20_evt1 != 0)))) || ((( !(s19_evt2 != 0)) && ((s19_evt0 != 0) && ( !(s19_evt1 != 0)))) || ((( !(s18_evt2 != 0)) && ((s18_evt0 != 0) && ( !(s18_evt1 != 0)))) || ((( !(s17_evt2 != 0)) && ((s17_evt0 != 0) && ( !(s17_evt1 != 0)))) || ((( !(s16_evt2 != 0)) && ((s16_evt0 != 0) && ( !(s16_evt1 != 0)))) || ((( !(s15_evt2 != 0)) && ((s15_evt0 != 0) && ( !(s15_evt1 != 0)))) || ((( !(s14_evt2 != 0)) && ((s14_evt0 != 0) && ( !(s14_evt1 != 0)))) || ((( !(s13_evt2 != 0)) && ((s13_evt0 != 0) && ( !(s13_evt1 != 0)))) || ((( !(s12_evt2 != 0)) && ((s12_evt0 != 0) && ( !(s12_evt1 != 0)))) || ((( !(s11_evt2 != 0)) && ((s11_evt0 != 0) && ( !(s11_evt1 != 0)))) || ((( !(s10_evt2 != 0)) && ((s10_evt0 != 0) && ( !(s10_evt1 != 0)))) || ((( !(s9_evt2 != 0)) && ((s9_evt0 != 0) && ( !(s9_evt1 != 0)))) || ((( !(s8_evt2 != 0)) && ((s8_evt0 != 0) && ( !(s8_evt1 != 0)))) || ((( !(s7_evt2 != 0)) && ((s7_evt0 != 0) && ( !(s7_evt1 != 0)))) || ((( !(s6_evt2 != 0)) && ((s6_evt0 != 0) && ( !(s6_evt1 != 0)))) || ((( !(s5_evt2 != 0)) && ((s5_evt0 != 0) && ( !(s5_evt1 != 0)))) || ((( !(s4_evt2 != 0)) && ((s4_evt0 != 0) && ( !(s4_evt1 != 0)))) || ((( !(s3_evt2 != 0)) && ((s3_evt0 != 0) && ( !(s3_evt1 != 0)))) || ((( !(s2_evt2 != 0)) && ((s2_evt0 != 0) && ( !(s2_evt1 != 0)))) || ((( !(s0_evt2 != 0)) && ((s0_evt0 != 0) && ( !(s0_evt1 != 0)))) || (( !(s1_evt2 != 0)) && ((s1_evt0 != 0) && ( !(s1_evt1 != 0))))))))))))))))))))))))))))))))) && (( !(delta == 0.0)) || ((( !(s0_evt2 != 0)) && ((s0_evt0 != 0) && ( !(s0_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 0))))) && (( !(delta == 0.0)) || ((( !(s1_evt2 != 0)) && ((s1_evt0 != 0) && ( !(s1_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 1))))) && (( !(delta == 0.0)) || ((( !(s2_evt2 != 0)) && ((s2_evt0 != 0) && ( !(s2_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 2))))) && (( !(delta == 0.0)) || ((( !(s3_evt2 != 0)) && ((s3_evt0 != 0) && ( !(s3_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 3))))) && (( !(delta == 0.0)) || ((( !(s4_evt2 != 0)) && ((s4_evt0 != 0) && ( !(s4_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 4))))) && (( !(delta == 0.0)) || ((( !(s5_evt2 != 0)) && ((s5_evt0 != 0) && ( !(s5_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 5))))) && (( !(delta == 0.0)) || ((( !(s6_evt2 != 0)) && ((s6_evt0 != 0) && ( !(s6_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 6))))) && (( !(delta == 0.0)) || ((( !(s7_evt2 != 0)) && ((s7_evt0 != 0) && ( !(s7_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 7))))) && (( !(delta == 0.0)) || ((( !(s8_evt2 != 0)) && ((s8_evt0 != 0) && ( !(s8_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 8))))) && (( !(delta == 0.0)) || ((( !(s9_evt2 != 0)) && ((s9_evt0 != 0) && ( !(s9_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 9))))) && (( !(delta == 0.0)) || ((( !(s10_evt2 != 0)) && ((s10_evt0 != 0) && ( !(s10_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 10))))) && (( !(delta == 0.0)) || ((( !(s11_evt2 != 0)) && ((s11_evt0 != 0) && ( !(s11_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 11))))) && (( !(delta == 0.0)) || ((( !(s12_evt2 != 0)) && ((s12_evt0 != 0) && ( !(s12_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 12))))) && (( !(delta == 0.0)) || ((( !(s13_evt2 != 0)) && ((s13_evt0 != 0) && ( !(s13_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 13))))) && (( !(delta == 0.0)) || ((( !(s14_evt2 != 0)) && ((s14_evt0 != 0) && ( !(s14_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 14))))) && (( !(delta == 0.0)) || ((( !(s15_evt2 != 0)) && ((s15_evt0 != 0) && ( !(s15_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 15))))) && (( !(delta == 0.0)) || ((( !(s16_evt2 != 0)) && ((s16_evt0 != 0) && ( !(s16_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 16))))) && (( !(delta == 0.0)) || ((( !(s17_evt2 != 0)) && ((s17_evt0 != 0) && ( !(s17_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 17))))) && (( !(delta == 0.0)) || ((( !(s18_evt2 != 0)) && ((s18_evt0 != 0) && ( !(s18_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 18))))) && (( !(delta == 0.0)) || ((( !(s19_evt2 != 0)) && ((s19_evt0 != 0) && ( !(s19_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 19))))) && (( !(delta == 0.0)) || ((( !(s20_evt2 != 0)) && ((s20_evt0 != 0) && ( !(s20_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 20))))) && (( !(delta == 0.0)) || ((( !(s21_evt2 != 0)) && ((s21_evt0 != 0) && ( !(s21_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 21))))) && (( !(delta == 0.0)) || ((( !(s22_evt2 != 0)) && ((s22_evt0 != 0) && ( !(s22_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 22))))) && (( !(delta == 0.0)) || ((( !(s23_evt2 != 0)) && ((s23_evt0 != 0) && ( !(s23_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 23))))) && (( !(delta == 0.0)) || ((( !(s24_evt2 != 0)) && ((s24_evt0 != 0) && ( !(s24_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 24))))) && (( !(delta == 0.0)) || ((( !(s25_evt2 != 0)) && ((s25_evt0 != 0) && ( !(s25_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 25))))) && (( !(delta == 0.0)) || ((( !(s26_evt2 != 0)) && ((s26_evt0 != 0) && ( !(s26_evt1 != 0)))) == ((( !(bus_evt2 != 0)) && ((bus_evt0 != 0) && ( !(bus_evt1 != 0)))) && (bus_cd_id == 26))))) && (((delta == _x__diverge_delta) || ( !(1.0 <= _diverge_delta))) && ((1.0 <= _diverge_delta) || ((delta + (_diverge_delta + (-1.0 * _x__diverge_delta))) == 0.0)))); _diverge_delta = _x__diverge_delta; s26_evt2 = _x_s26_evt2; s26_evt0 = _x_s26_evt0; s26_x = _x_s26_x; s25_evt2 = _x_s25_evt2; s25_evt0 = _x_s25_evt0; s25_x = _x_s25_x; s24_evt2 = _x_s24_evt2; s24_evt0 = _x_s24_evt0; s24_x = _x_s24_x; s23_evt2 = _x_s23_evt2; s23_evt0 = _x_s23_evt0; s23_x = _x_s23_x; s22_evt2 = _x_s22_evt2; s22_evt0 = _x_s22_evt0; s22_x = _x_s22_x; s21_evt2 = _x_s21_evt2; s21_evt0 = _x_s21_evt0; s21_x = _x_s21_x; s20_evt2 = _x_s20_evt2; s20_evt0 = _x_s20_evt0; s20_x = _x_s20_x; s8_evt0 = _x_s8_evt0; s7_l0 = _x_s7_l0; s21_l1 = _x_s21_l1; s7_evt2 = _x_s7_evt2; s19_x = _x_s19_x; s21_l0 = _x_s21_l0; s7_evt1 = _x_s7_evt1; s7_evt0 = _x_s7_evt0; s6_l1 = _x_s6_l1; s6_l0 = _x_s6_l0; s20_l1 = _x_s20_l1; s6_evt2 = _x_s6_evt2; s18_x = _x_s18_x; s20_l0 = _x_s20_l0; s6_evt1 = _x_s6_evt1; s6_evt0 = _x_s6_evt0; s5_l0 = _x_s5_l0; s19_l1 = _x_s19_l1; s5_evt2 = _x_s5_evt2; s17_x = _x_s17_x; s19_l0 = _x_s19_l0; s5_evt1 = _x_s5_evt1; s19_evt2 = _x_s19_evt2; s5_evt0 = _x_s5_evt0; s22_evt1 = _x_s22_evt1; s4_x = _x_s4_x; s3_l1 = _x_s3_l1; s3_l0 = _x_s3_l0; s17_l1 = _x_s17_l1; s3_evt2 = _x_s3_evt2; s15_x = _x_s15_x; s17_evt2 = _x_s17_evt2; s7_l1 = _x_s7_l1; s19_evt1 = _x_s19_evt1; s1_x = _x_s1_x; s20_evt1 = _x_s20_evt1; s2_x = _x_s2_x; s21_evt1 = _x_s21_evt1; s3_x = _x_s3_x; s4_l1 = _x_s4_l1; bus_l1 = _x_bus_l1; s16_x = _x_s16_x; bus_evt2 = _x_bus_evt2; s11_evt0 = _x_s11_evt0; s4_l0 = _x_s4_l0; bus_l0 = _x_bus_l0; s10_x = _x_s10_x; s18_evt2 = _x_s18_evt2; bus_evt1 = _x_bus_evt1; s4_evt0 = _x_s4_evt0; s0_x = _x_s0_x; s18_evt1 = _x_s18_evt1; s4_evt2 = _x_s4_evt2; s18_l1 = _x_s18_l1; bus_evt0 = _x_bus_evt0; s23_evt1 = _x_s23_evt1; s5_x = _x_s5_x; s0_evt0 = _x_s0_evt0; s14_evt1 = _x_s14_evt1; s24_evt1 = _x_s24_evt1; s6_x = _x_s6_x; s1_evt0 = _x_s1_evt0; s15_evt1 = _x_s15_evt1; s25_evt1 = _x_s25_evt1; s7_x = _x_s7_x; s2_evt0 = _x_s2_evt0; s16_evt1 = _x_s16_evt1; s26_evt1 = _x_s26_evt1; s8_x = _x_s8_x; s3_evt0 = _x_s3_evt0; s17_evt1 = _x_s17_evt1; s13_evt2 = _x_s13_evt2; s14_evt2 = _x_s14_evt2; s15_evt2 = _x_s15_evt2; s16_evt2 = _x_s16_evt2; s12_x = _x_s12_x; s11_x = _x_s11_x; s13_x = _x_s13_x; s14_x = _x_s14_x; bus_x = _x_bus_x; s5_l1 = _x_s5_l1; s9_l1 = _x_s9_l1; s0_l0 = _x_s0_l0; s0_evt2 = _x_s0_evt2; s14_l1 = _x_s14_l1; s1_l0 = _x_s1_l0; s1_evt2 = _x_s1_evt2; s15_l1 = _x_s15_l1; s2_l0 = _x_s2_l0; s2_evt2 = _x_s2_evt2; s16_l1 = _x_s16_l1; s0_l1 = _x_s0_l1; s1_l1 = _x_s1_l1; s2_l1 = _x_s2_l1; s22_l0 = _x_s22_l0; s8_evt1 = _x_s8_evt1; s22_l1 = _x_s22_l1; s8_evt2 = _x_s8_evt2; s8_l0 = _x_s8_l0; s8_l1 = _x_s8_l1; s9_x = _x_s9_x; s9_evt0 = _x_s9_evt0; s23_l0 = _x_s23_l0; s9_evt1 = _x_s9_evt1; s23_l1 = _x_s23_l1; s9_evt2 = _x_s9_evt2; s9_l0 = _x_s9_l0; s10_evt0 = _x_s10_evt0; s24_l0 = _x_s24_l0; s10_evt1 = _x_s10_evt1; s24_l1 = _x_s24_l1; s10_evt2 = _x_s10_evt2; s10_l0 = _x_s10_l0; s10_l1 = _x_s10_l1; s25_l0 = _x_s25_l0; s11_evt1 = _x_s11_evt1; s25_l1 = _x_s25_l1; s11_evt2 = _x_s11_evt2; s11_l0 = _x_s11_l0; s11_l1 = _x_s11_l1; s12_evt0 = _x_s12_evt0; s26_l0 = _x_s26_l0; s12_evt1 = _x_s12_evt1; s26_l1 = _x_s26_l1; s12_evt2 = _x_s12_evt2; s12_l0 = _x_s12_l0; s12_l1 = _x_s12_l1; s13_evt0 = _x_s13_evt0; s13_evt1 = _x_s13_evt1; bus_cd_id = _x_bus_cd_id; s13_l0 = _x_s13_l0; bus_j = _x_bus_j; s13_l1 = _x_s13_l1; s14_evt0 = _x_s14_evt0; s0_evt1 = _x_s0_evt1; s14_l0 = _x_s14_l0; s15_evt0 = _x_s15_evt0; s1_evt1 = _x_s1_evt1; s15_l0 = _x_s15_l0; s16_evt0 = _x_s16_evt0; s2_evt1 = _x_s2_evt1; s16_l0 = _x_s16_l0; s17_evt0 = _x_s17_evt0; s3_evt1 = _x_s3_evt1; s17_l0 = _x_s17_l0; s18_evt0 = _x_s18_evt0; s4_evt1 = _x_s4_evt1; delta = _x_delta; s18_l0 = _x_s18_l0; s19_evt0 = _x_s19_evt0; } }
the_stack_data/65016.c
#include <assert.h> #include <errno.h> #include <fcntl.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/eventfd.h> #include <sys/param.h> #include <sys/prctl.h> #include <sys/stat.h> #include <sys/time.h> #include <sys/types.h> #include <unistd.h> /* `detect_oom` returns zero when OOM was detected, non-zero otherwise. */ int detect_oom(int event_fd, const char *event_control_path) { fd_set rfds; int rv; FD_ZERO(&rfds); /* Stick around for read on eventfd */ FD_SET(event_fd, &rfds); do { rv = select(event_fd + 1, &rfds, NULL, NULL, NULL); } while(rv == -1 && errno == EINTR); /* Return if something other than an OOM happened */ if (!FD_ISSET(event_fd, &rfds)) { return -1; } uint64_t result; do { rv = read(event_fd, &result, sizeof(result)); } while (rv == -1 && errno == EINTR); if (rv == -1) { perror("read"); return -1; } assert(rv == sizeof(result)); /* Check if the event_fd triggered because the cgroup was removed */ rv = access(event_control_path, W_OK); if (rv == -1 && errno == ENOENT) { perror("access"); return -1; } if (rv == -1) { perror("access"); return -1; } /* Read from event_fd, and cgroup is present */ return 0; } int main(int argc, char **argv) { int event_fd = -1; char oom_control_path[PATH_MAX]; size_t oom_control_path_len; int oom_control_fd = -1; char event_control_path[PATH_MAX]; size_t event_control_path_len; int event_control_fd = -1; char line[LINE_MAX]; size_t line_len; int rv; if (argc != 2) { fprintf(stderr, "Usage: %s <path to cgroup>\n", argv[0]); return 1; } /* Die when parent dies */ rv = prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (rv == -1) { perror("prctl"); return 1; } /* Open event fd */ event_fd = eventfd(0, 0); if (event_fd == -1) { perror("eventfd"); return 1; } /* Open oom control file */ oom_control_path_len = snprintf(oom_control_path, sizeof(oom_control_path), "%s/memory.oom_control", argv[1]); assert(oom_control_path_len < sizeof(oom_control_path)); oom_control_fd = open(oom_control_path, O_RDONLY); if (oom_control_fd == -1) { perror("open"); return 1; } /* Open event control file */ event_control_path_len = snprintf(event_control_path, sizeof(event_control_path), "%s/cgroup.event_control", argv[1]); assert(event_control_path_len < sizeof(event_control_path)); event_control_fd = open(event_control_path, O_WRONLY); if (event_control_fd == -1) { perror("open"); return 1; } /* Write event fd and oom control fd to event control fd */ line_len = snprintf(line, sizeof(line), "%d %d\n", event_fd, oom_control_fd); assert(line_len < sizeof(line)); rv = write(event_control_fd, line, line_len); if (rv == -1) { perror("write"); return 1; } rv = detect_oom(event_fd, event_control_path); if (rv == -1) { return 1; } /* OOM happened */ return 0; }
the_stack_data/42750.c
/* Code generated from eC source file: Container.ec */ #if defined(_WIN32) #define __runtimePlatform 1 #elif defined(__APPLE__) #define __runtimePlatform 3 #else #define __runtimePlatform 2 #endif #if defined(__GNUC__) typedef long long int64; typedef unsigned long long uint64; #ifndef _WIN32 #define __declspec(x) #endif #elif defined(__TINYC__) #include <stdarg.h> #define __builtin_va_list va_list #define __builtin_va_start va_start #define __builtin_va_end va_end #ifdef _WIN32 #define strcasecmp stricmp #define strncasecmp strnicmp #define __declspec(x) __attribute__((x)) #else #define __declspec(x) #endif typedef long long int64; typedef unsigned long long uint64; #else typedef __int64 int64; typedef unsigned __int64 uint64; #endif #ifdef __BIG_ENDIAN__ #define __ENDIAN_PAD(x) (8 - (x)) #else #define __ENDIAN_PAD(x) 0 #endif #if defined(_WIN32) # if defined(__GNUC__) || defined(__TINYC__) # define ecere_stdcall __attribute__((__stdcall__)) # define ecere_gcc_struct __attribute__((gcc_struct)) # else # define ecere_stdcall __stdcall # define ecere_gcc_struct # endif #else # define ecere_stdcall # define ecere_gcc_struct #endif #include <stdint.h> #include <sys/types.h> extern int __ecereVMethodID_class_OnCompare; extern int __ecereVMethodID_class_OnGetString; extern int __ecereVMethodID_class_OnSerialize; extern int __ecereVMethodID_class_OnUnserialize; extern struct __ecereNameSpace__ecere__com__Property * __ecereProp___ecereNameSpace__ecere__com__Class_char__PTR_; struct __ecereNameSpace__ecere__sys__BTNode; struct __ecereNameSpace__ecere__sys__OldList { void * first; void * last; int count; unsigned int offset; unsigned int circ; } ecere_gcc_struct; struct __ecereNameSpace__ecere__com__DataValue { union { char c; unsigned char uc; short s; unsigned short us; int i; unsigned int ui; void * p; float f; double d; long long i64; uint64 ui64; } ecere_gcc_struct __anon1; } ecere_gcc_struct; struct __ecereNameSpace__ecere__com__IteratorPointer; struct __ecereNameSpace__ecere__com__SerialBuffer { unsigned char * _buffer; unsigned int count; unsigned int _size; unsigned int pos; } ecere_gcc_struct; extern void * __ecereNameSpace__ecere__com__eSystem_New(unsigned int size); extern void * __ecereNameSpace__ecere__com__eSystem_New0(unsigned int size); extern void * __ecereNameSpace__ecere__com__eSystem_Renew(void * memory, unsigned int size); extern void * __ecereNameSpace__ecere__com__eSystem_Renew0(void * memory, unsigned int size); extern void __ecereNameSpace__ecere__com__eSystem_Delete(void * memory); extern char * strcat(char * , const char * ); extern void * memset(void * area, int value, size_t count); extern unsigned int __ecereNameSpace__ecere__com__log2i(unsigned int number); struct __ecereNameSpace__ecere__com__ClassTemplateParameter; int __ecereVMethodID_class_OnCompare; int __ecereVMethodID_class_OnCopy; int __ecereVMethodID_class_OnGetString; int __ecereVMethodID_class_OnFree; struct __ecereNameSpace__ecere__com__Property; static __attribute__((unused)) struct __ecereNameSpace__ecere__com__Property * __ecereProp___ecereNameSpace__ecere__com__Iterator_data, * __ecerePropM___ecereNameSpace__ecere__com__Iterator_data; static __attribute__((unused)) struct __ecereNameSpace__ecere__com__Property * __ecereProp___ecereNameSpace__ecere__com__Container_copySrc, * __ecerePropM___ecereNameSpace__ecere__com__Container_copySrc; static __attribute__((unused)) struct __ecereNameSpace__ecere__com__Property * __ecereProp___ecereNameSpace__ecere__com__Container_firstIterator, * __ecerePropM___ecereNameSpace__ecere__com__Container_firstIterator; static __attribute__((unused)) struct __ecereNameSpace__ecere__com__Property * __ecereProp___ecereNameSpace__ecere__com__Container_lastIterator, * __ecerePropM___ecereNameSpace__ecere__com__Container_lastIterator; struct __ecereNameSpace__ecere__com__Class; struct __ecereNameSpace__ecere__com__Instance { void * * _vTbl; struct __ecereNameSpace__ecere__com__Class * _class; int _refCount; } ecere_gcc_struct; extern long long __ecereNameSpace__ecere__com__eClass_GetProperty(struct __ecereNameSpace__ecere__com__Class * _class, const char * name); extern void __ecereNameSpace__ecere__com__eClass_SetProperty(struct __ecereNameSpace__ecere__com__Class * _class, const char * name, long long value); extern void * __ecereNameSpace__ecere__com__eInstance_New(struct __ecereNameSpace__ecere__com__Class * _class); extern struct __ecereNameSpace__ecere__com__Property * __ecereNameSpace__ecere__com__eClass_AddProperty(struct __ecereNameSpace__ecere__com__Class * _class, const char * name, const char * dataType, void * setStmt, void * getStmt, int declMode); extern void __ecereNameSpace__ecere__com__eClass_DoneAddingTemplateParameters(struct __ecereNameSpace__ecere__com__Class * base); int __ecereVMethodID___ecereNameSpace__ecere__com__Container_GetFirst; int __ecereVMethodID___ecereNameSpace__ecere__com__Container_GetLast; int __ecereVMethodID___ecereNameSpace__ecere__com__Container_GetPrev; int __ecereVMethodID___ecereNameSpace__ecere__com__Container_GetNext; int __ecereVMethodID___ecereNameSpace__ecere__com__Container_GetData; int __ecereVMethodID___ecereNameSpace__ecere__com__Container_SetData; int __ecereVMethodID___ecereNameSpace__ecere__com__Container_GetAtPosition; int __ecereVMethodID___ecereNameSpace__ecere__com__Container_Insert; int __ecereVMethodID___ecereNameSpace__ecere__com__Container_Add; int __ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove; int __ecereVMethodID___ecereNameSpace__ecere__com__Container_Move; int __ecereVMethodID___ecereNameSpace__ecere__com__Container_RemoveAll; int __ecereVMethodID___ecereNameSpace__ecere__com__Container_Copy; int __ecereVMethodID___ecereNameSpace__ecere__com__Container_Find; int __ecereVMethodID___ecereNameSpace__ecere__com__Container_FreeIterator; int __ecereVMethodID___ecereNameSpace__ecere__com__Container_GetCount; int __ecereVMethodID___ecereNameSpace__ecere__com__Container_Free; int __ecereVMethodID___ecereNameSpace__ecere__com__Container_Delete; int __ecereVMethodID___ecereNameSpace__ecere__com__Container_Sort; struct __ecereNameSpace__ecere__com__Property { struct __ecereNameSpace__ecere__com__Property * prev; struct __ecereNameSpace__ecere__com__Property * next; const char * name; unsigned int isProperty; int memberAccess; int id; struct __ecereNameSpace__ecere__com__Class * _class; const char * dataTypeString; struct __ecereNameSpace__ecere__com__Class * dataTypeClass; struct __ecereNameSpace__ecere__com__Instance * dataType; void (* Set)(void * , int); int (* Get)(void * ); unsigned int (* IsSet)(void * ); void * data; void * symbol; int vid; unsigned int conversion; unsigned int watcherOffset; const char * category; unsigned int compiled; unsigned int selfWatchable; unsigned int isWatchable; } ecere_gcc_struct; extern void __ecereNameSpace__ecere__com__eInstance_FireSelfWatchers(struct __ecereNameSpace__ecere__com__Instance * instance, struct __ecereNameSpace__ecere__com__Property * _property); extern void __ecereNameSpace__ecere__com__eInstance_SetMethod(struct __ecereNameSpace__ecere__com__Instance * instance, const char * name, void * function); extern void __ecereNameSpace__ecere__com__eInstance_IncRef(struct __ecereNameSpace__ecere__com__Instance * instance); extern void __ecereNameSpace__ecere__com__eInstance_StopWatching(struct __ecereNameSpace__ecere__com__Instance * instance, struct __ecereNameSpace__ecere__com__Property * _property, struct __ecereNameSpace__ecere__com__Instance * object); extern void __ecereNameSpace__ecere__com__eInstance_Watch(struct __ecereNameSpace__ecere__com__Instance * instance, struct __ecereNameSpace__ecere__com__Property * _property, void * object, void (* callback)(void * , void * )); extern void __ecereNameSpace__ecere__com__eInstance_FireWatchers(struct __ecereNameSpace__ecere__com__Instance * instance, struct __ecereNameSpace__ecere__com__Property * _property); struct __ecereNameSpace__ecere__com__Iterator { struct __ecereNameSpace__ecere__com__Instance * container; struct __ecereNameSpace__ecere__com__IteratorPointer * pointer; } ecere_gcc_struct; void __ecereProp___ecereNameSpace__ecere__com__Container_Set_copySrc(struct __ecereNameSpace__ecere__com__Instance * this, struct __ecereNameSpace__ecere__com__Instance * value); struct __ecereNameSpace__ecere__com__IteratorPointer * __ecereMethod___ecereNameSpace__ecere__com__Container_GetFirst(struct __ecereNameSpace__ecere__com__Instance * this) { return (((void *)0)); } struct __ecereNameSpace__ecere__com__IteratorPointer * __ecereMethod___ecereNameSpace__ecere__com__Container_GetLast(struct __ecereNameSpace__ecere__com__Instance * this) { return (((void *)0)); } struct __ecereNameSpace__ecere__com__IteratorPointer * __ecereMethod___ecereNameSpace__ecere__com__Container_GetPrev(struct __ecereNameSpace__ecere__com__Instance * this, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer) { return (((void *)0)); } struct __ecereNameSpace__ecere__com__IteratorPointer * __ecereMethod___ecereNameSpace__ecere__com__Container_GetNext(struct __ecereNameSpace__ecere__com__Instance * this, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer) { return (((void *)0)); } uint64 __ecereMethod___ecereNameSpace__ecere__com__Container_GetData(struct __ecereNameSpace__ecere__com__Instance * this, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer) { return (uint64)0; } struct __ecereNameSpace__ecere__com__IteratorPointer * __ecereMethod___ecereNameSpace__ecere__com__Container_GetAtPosition(struct __ecereNameSpace__ecere__com__Instance * this, const uint64 pos, unsigned int create, unsigned int * justAdded) { return (((void *)0)); } int __ecereVMethodID_class_OnSerialize; int __ecereVMethodID_class_OnUnserialize; extern void __ecereNameSpace__ecere__com__eInstance_DecRef(struct __ecereNameSpace__ecere__com__Instance * instance); void __ecereMethod___ecereNameSpace__ecere__com__IOChannel_Put(struct __ecereNameSpace__ecere__com__Instance * this, struct __ecereNameSpace__ecere__com__Class * class, const void * data); void __ecereMethod___ecereNameSpace__ecere__com__IOChannel_Get(struct __ecereNameSpace__ecere__com__Instance * this, struct __ecereNameSpace__ecere__com__Class * class, void * * data); uint64 __ecereProp___ecereNameSpace__ecere__com__Iterator_Get_data(struct __ecereNameSpace__ecere__com__Iterator * this); void __ecereProp___ecereNameSpace__ecere__com__Iterator_Set_data(struct __ecereNameSpace__ecere__com__Iterator * this, uint64 value); struct __ecereNameSpace__ecere__sys__BinaryTree; struct __ecereNameSpace__ecere__sys__BinaryTree { struct __ecereNameSpace__ecere__sys__BTNode * root; int count; int (* CompareKey)(struct __ecereNameSpace__ecere__sys__BinaryTree * tree, uintptr_t a, uintptr_t b); void (* FreeKey)(void * key); } ecere_gcc_struct; struct __ecereNameSpace__ecere__com__DataMember; struct __ecereNameSpace__ecere__com__DataMember { struct __ecereNameSpace__ecere__com__DataMember * prev; struct __ecereNameSpace__ecere__com__DataMember * next; const char * name; unsigned int isProperty; int memberAccess; int id; struct __ecereNameSpace__ecere__com__Class * _class; const char * dataTypeString; struct __ecereNameSpace__ecere__com__Class * dataTypeClass; struct __ecereNameSpace__ecere__com__Instance * dataType; int type; int offset; int memberID; struct __ecereNameSpace__ecere__sys__OldList members; struct __ecereNameSpace__ecere__sys__BinaryTree membersAlpha; int memberOffset; short structAlignment; short pointerAlignment; } ecere_gcc_struct; extern struct __ecereNameSpace__ecere__com__DataMember * __ecereNameSpace__ecere__com__eClass_AddDataMember(struct __ecereNameSpace__ecere__com__Class * _class, const char * name, const char * type, unsigned int size, unsigned int alignment, int declMode); struct __ecereNameSpace__ecere__com__Method; struct __ecereNameSpace__ecere__com__ClassTemplateArgument { union { struct { const char * dataTypeString; struct __ecereNameSpace__ecere__com__Class * dataTypeClass; } ecere_gcc_struct __anon1; struct __ecereNameSpace__ecere__com__DataValue expression; struct { const char * memberString; union { struct __ecereNameSpace__ecere__com__DataMember * member; struct __ecereNameSpace__ecere__com__Property * prop; struct __ecereNameSpace__ecere__com__Method * method; } ecere_gcc_struct __anon1; } ecere_gcc_struct __anon2; } ecere_gcc_struct __anon1; } ecere_gcc_struct; struct __ecereNameSpace__ecere__com__Method { const char * name; struct __ecereNameSpace__ecere__com__Method * parent; struct __ecereNameSpace__ecere__com__Method * left; struct __ecereNameSpace__ecere__com__Method * right; int depth; int (* function)(); int vid; int type; struct __ecereNameSpace__ecere__com__Class * _class; void * symbol; const char * dataTypeString; struct __ecereNameSpace__ecere__com__Instance * dataType; int memberAccess; } ecere_gcc_struct; extern struct __ecereNameSpace__ecere__com__Method * __ecereNameSpace__ecere__com__eClass_AddMethod(struct __ecereNameSpace__ecere__com__Class * _class, const char * name, const char * type, void * function, int declMode); extern struct __ecereNameSpace__ecere__com__Method * __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(struct __ecereNameSpace__ecere__com__Class * _class, const char * name, const char * type, void * function, int declMode); extern struct __ecereNameSpace__ecere__com__ClassTemplateParameter * __ecereNameSpace__ecere__com__eClass_AddTemplateParameter(struct __ecereNameSpace__ecere__com__Class * _class, const char * name, int type, const void * info, struct __ecereNameSpace__ecere__com__ClassTemplateArgument * defaultArg); struct __ecereNameSpace__ecere__com__Module; extern struct __ecereNameSpace__ecere__com__Class * __ecereNameSpace__ecere__com__eSystem_RegisterClass(int type, const char * name, const char * baseName, int size, int sizeClass, unsigned int (* Constructor)(void * ), void (* Destructor)(void * ), struct __ecereNameSpace__ecere__com__Instance * module, int declMode, int inheritanceAccess); extern struct __ecereNameSpace__ecere__com__Instance * __thisModule; struct __ecereNameSpace__ecere__com__NameSpace; struct __ecereNameSpace__ecere__com__NameSpace { const char * name; struct __ecereNameSpace__ecere__com__NameSpace * btParent; struct __ecereNameSpace__ecere__com__NameSpace * left; struct __ecereNameSpace__ecere__com__NameSpace * right; int depth; struct __ecereNameSpace__ecere__com__NameSpace * parent; struct __ecereNameSpace__ecere__sys__BinaryTree nameSpaces; struct __ecereNameSpace__ecere__sys__BinaryTree classes; struct __ecereNameSpace__ecere__sys__BinaryTree defines; struct __ecereNameSpace__ecere__sys__BinaryTree functions; } ecere_gcc_struct; struct __ecereNameSpace__ecere__com__Class { struct __ecereNameSpace__ecere__com__Class * prev; struct __ecereNameSpace__ecere__com__Class * next; const char * name; int offset; int structSize; void * * _vTbl; int vTblSize; unsigned int (* Constructor)(void * ); void (* Destructor)(void * ); int offsetClass; int sizeClass; struct __ecereNameSpace__ecere__com__Class * base; struct __ecereNameSpace__ecere__sys__BinaryTree methods; struct __ecereNameSpace__ecere__sys__BinaryTree members; struct __ecereNameSpace__ecere__sys__BinaryTree prop; struct __ecereNameSpace__ecere__sys__OldList membersAndProperties; struct __ecereNameSpace__ecere__sys__BinaryTree classProperties; struct __ecereNameSpace__ecere__sys__OldList derivatives; int memberID; int startMemberID; int type; struct __ecereNameSpace__ecere__com__Instance * module; struct __ecereNameSpace__ecere__com__NameSpace * nameSpace; const char * dataTypeString; struct __ecereNameSpace__ecere__com__Instance * dataType; int typeSize; int defaultAlignment; void (* Initialize)(); int memberOffset; struct __ecereNameSpace__ecere__sys__OldList selfWatchers; const char * designerClass; unsigned int noExpansion; const char * defaultProperty; unsigned int comRedefinition; int count; int isRemote; unsigned int internalDecl; void * data; unsigned int computeSize; short structAlignment; short pointerAlignment; int destructionWatchOffset; unsigned int fixed; struct __ecereNameSpace__ecere__sys__OldList delayedCPValues; int inheritanceAccess; const char * fullName; void * symbol; struct __ecereNameSpace__ecere__sys__OldList conversions; struct __ecereNameSpace__ecere__sys__OldList templateParams; struct __ecereNameSpace__ecere__com__ClassTemplateArgument * templateArgs; struct __ecereNameSpace__ecere__com__Class * templateClass; struct __ecereNameSpace__ecere__sys__OldList templatized; int numParams; unsigned int isInstanceClass; unsigned int byValueSystemClass; void * bindingsClass; } ecere_gcc_struct; struct __ecereNameSpace__ecere__com__Application { int argc; const char * * argv; int exitCode; unsigned int isGUIApp; struct __ecereNameSpace__ecere__sys__OldList allModules; char * parsedCommand; struct __ecereNameSpace__ecere__com__NameSpace systemNameSpace; } ecere_gcc_struct; static struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Iterator; static struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Container; void __ecereMethod___ecereNameSpace__ecere__com__Container_OnFree(struct __ecereNameSpace__ecere__com__Class * class, struct __ecereNameSpace__ecere__com__Instance * this) { if((struct __ecereNameSpace__ecere__com__Instance *)this) { (__extension__ ({ void (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((void (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : class->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_Free]); __internal_VirtualMethod ? __internal_VirtualMethod(this) : (void)1; })); (__ecereNameSpace__ecere__com__eInstance_DecRef(this), this = 0); } } extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_int; extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Instance; extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_uint; const char * __ecereProp___ecereNameSpace__ecere__com__Class_Get_char__PTR_(struct __ecereNameSpace__ecere__com__Class * this); struct __ecereNameSpace__ecere__com__Class * __ecereProp___ecereNameSpace__ecere__com__Class_Set_char__PTR_(const char * value); extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Module; struct __ecereNameSpace__ecere__com__Module { struct __ecereNameSpace__ecere__com__Instance * application; struct __ecereNameSpace__ecere__sys__OldList classes; struct __ecereNameSpace__ecere__sys__OldList defines; struct __ecereNameSpace__ecere__sys__OldList functions; struct __ecereNameSpace__ecere__sys__OldList modules; struct __ecereNameSpace__ecere__com__Instance * prev; struct __ecereNameSpace__ecere__com__Instance * next; const char * name; void * library; void * Unload; int importType; int origImportType; struct __ecereNameSpace__ecere__com__NameSpace privateNameSpace; struct __ecereNameSpace__ecere__com__NameSpace publicNameSpace; } ecere_gcc_struct; uint64 __ecereProp___ecereNameSpace__ecere__com__Iterator_Get_data(struct __ecereNameSpace__ecere__com__Iterator * this) { return (__extension__ ({ uint64 (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((uint64 (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this->container; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetData]); __internal_VirtualMethod ? __internal_VirtualMethod(this->container, this->pointer) : (uint64)1; })); } void __ecereProp___ecereNameSpace__ecere__com__Iterator_Set_data(struct __ecereNameSpace__ecere__com__Iterator * this, uint64 value) { (__extension__ ({ unsigned int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer, uint64 data); __internal_VirtualMethod = ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer, uint64 data))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this->container; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_SetData]); __internal_VirtualMethod ? __internal_VirtualMethod(this->container, this->pointer, value) : (unsigned int)1; })); } unsigned int __ecereMethod___ecereNameSpace__ecere__com__Iterator_Prev(struct __ecereNameSpace__ecere__com__Iterator * this) { if(this->pointer && this->container) this->pointer = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this->container; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetPrev]); __internal_VirtualMethod ? __internal_VirtualMethod(this->container, this->pointer) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); else if(this->container) this->pointer = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this->container; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetLast]); __internal_VirtualMethod ? __internal_VirtualMethod(this->container) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); return this->pointer != (((void *)0)); } unsigned int __ecereMethod___ecereNameSpace__ecere__com__Iterator_Next(struct __ecereNameSpace__ecere__com__Iterator * this) { if(this->pointer && this->container) this->pointer = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this->container; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetNext]); __internal_VirtualMethod ? __internal_VirtualMethod(this->container, this->pointer) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); else if(this->container) this->pointer = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this->container; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetFirst]); __internal_VirtualMethod ? __internal_VirtualMethod(this->container) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); return this->pointer != (((void *)0)); } uint64 __ecereMethod___ecereNameSpace__ecere__com__Iterator_GetData(struct __ecereNameSpace__ecere__com__Iterator * this) { return (__extension__ ({ uint64 (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((uint64 (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this->container; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetData]); __internal_VirtualMethod ? __internal_VirtualMethod(this->container, this->pointer) : (uint64)1; })); } unsigned int __ecereMethod___ecereNameSpace__ecere__com__Iterator_SetData(struct __ecereNameSpace__ecere__com__Iterator * this, uint64 value) { return (__extension__ ({ unsigned int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer, uint64 data); __internal_VirtualMethod = ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer, uint64 data))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this->container; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_SetData]); __internal_VirtualMethod ? __internal_VirtualMethod(this->container, this->pointer, value) : (unsigned int)1; })); } void __ecereMethod___ecereNameSpace__ecere__com__Iterator_Remove(struct __ecereNameSpace__ecere__com__Iterator * this) { if(this->container) (__extension__ ({ void (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * it); __internal_VirtualMethod = ((void (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * it))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this->container; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove]); __internal_VirtualMethod ? __internal_VirtualMethod(this->container, this->pointer) : (void)1; })); this->pointer = (((void *)0)); } void __ecereMethod___ecereNameSpace__ecere__com__Iterator_Free(struct __ecereNameSpace__ecere__com__Iterator * this) { if(this->container) (__extension__ ({ void (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * it); __internal_VirtualMethod = ((void (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * it))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this->container; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_FreeIterator]); __internal_VirtualMethod ? __internal_VirtualMethod(this->container, this->pointer) : (void)1; })); } void __ecereDestructor___ecereNameSpace__ecere__com__Container(struct __ecereNameSpace__ecere__com__Instance * this) { { (__extension__ ({ void (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((void (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_RemoveAll]); __internal_VirtualMethod ? __internal_VirtualMethod(this) : (void)1; })); } } void __ecereProp___ecereNameSpace__ecere__com__Container_Set_copySrc(struct __ecereNameSpace__ecere__com__Instance * this, struct __ecereNameSpace__ecere__com__Instance * value) { if(value) (__extension__ ({ void (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__Instance * source); __internal_VirtualMethod = ((void (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__Instance * source))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_Copy]); __internal_VirtualMethod ? __internal_VirtualMethod(this, value) : (void)1; })); __ecereNameSpace__ecere__com__eInstance_FireSelfWatchers(this, __ecereProp___ecereNameSpace__ecere__com__Container_copySrc), __ecereNameSpace__ecere__com__eInstance_FireSelfWatchers(this, __ecerePropM___ecereNameSpace__ecere__com__Container_copySrc); } void __ecereProp___ecereNameSpace__ecere__com__Container_Get_firstIterator(struct __ecereNameSpace__ecere__com__Instance * this, struct __ecereNameSpace__ecere__com__Iterator * value) { struct __ecereNameSpace__ecere__com__Iterator __simpleStruct0; *value = (__simpleStruct0.container = (struct __ecereNameSpace__ecere__com__Instance *)this, __simpleStruct0.pointer = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetFirst]); __internal_VirtualMethod ? __internal_VirtualMethod(this) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })), __simpleStruct0); } void __ecereProp___ecereNameSpace__ecere__com__Container_Get_lastIterator(struct __ecereNameSpace__ecere__com__Instance * this, struct __ecereNameSpace__ecere__com__Iterator * value) { struct __ecereNameSpace__ecere__com__Iterator __simpleStruct0; *value = (__simpleStruct0.container = (struct __ecereNameSpace__ecere__com__Instance *)this, __simpleStruct0.pointer = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetLast]); __internal_VirtualMethod ? __internal_VirtualMethod(this) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })), __simpleStruct0); } void __ecereMethod___ecereNameSpace__ecere__com__Container_RemoveAll(struct __ecereNameSpace__ecere__com__Instance * this) { struct __ecereNameSpace__ecere__com__IteratorPointer * i, * next; for(i = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetFirst]); __internal_VirtualMethod ? __internal_VirtualMethod(this) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })), next = i ? (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetNext]); __internal_VirtualMethod ? __internal_VirtualMethod(this, i) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })) : (((void *)0)); i; i = next, next = i ? (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetNext]); __internal_VirtualMethod ? __internal_VirtualMethod(this, i) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })) : (((void *)0))) (__extension__ ({ void (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * it); __internal_VirtualMethod = ((void (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * it))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove]); __internal_VirtualMethod ? __internal_VirtualMethod(this, i) : (void)1; })); } void __ecereMethod___ecereNameSpace__ecere__com__Container_Copy(struct __ecereNameSpace__ecere__com__Instance * this, struct __ecereNameSpace__ecere__com__Instance * source) { struct __ecereNameSpace__ecere__com__IteratorPointer * i; (__extension__ ({ void (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((void (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_RemoveAll]); __internal_VirtualMethod ? __internal_VirtualMethod(this) : (void)1; })); for(i = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = source; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetFirst]); __internal_VirtualMethod ? __internal_VirtualMethod(source) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); i; i = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = source; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetNext]); __internal_VirtualMethod ? __internal_VirtualMethod(source, i) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; }))) { uint64 data = (__extension__ ({ uint64 (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((uint64 (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = source; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetData]); __internal_VirtualMethod ? __internal_VirtualMethod(source, i) : (uint64)1; })); (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, uint64 value); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, uint64 value))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_Add]); __internal_VirtualMethod ? __internal_VirtualMethod(this, data) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); } } int __ecereMethod___ecereNameSpace__ecere__com__Container_OnCompare(struct __ecereNameSpace__ecere__com__Class * class, struct __ecereNameSpace__ecere__com__Instance * this, struct __ecereNameSpace__ecere__com__Instance * b) { struct __ecereNameSpace__ecere__com__IteratorPointer * ia, * ib; struct __ecereNameSpace__ecere__com__Class * Dclass = class->templateArgs[2].__anon1.__anon1.dataTypeClass; unsigned int byRef = (Dclass->type == 1000 && !Dclass->byValueSystemClass) || Dclass->type == 2 || Dclass->type == 4 || Dclass->type == 3; int (* onCompare)(void *, const void *, const void *) = (void *)Dclass->_vTbl[__ecereVMethodID_class_OnCompare]; if(this && !b) return 1; if(b && !this) return -1; if(!b && !this) return 0; if((__extension__ ({ int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((int (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : class->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetCount]); __internal_VirtualMethod ? __internal_VirtualMethod(this) : (int)1; })) > (__extension__ ({ int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((int (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = b; __internal_ClassInst ? __internal_ClassInst->_vTbl : class->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetCount]); __internal_VirtualMethod ? __internal_VirtualMethod(b) : (int)1; }))) return 1; if((__extension__ ({ int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((int (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : class->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetCount]); __internal_VirtualMethod ? __internal_VirtualMethod(this) : (int)1; })) < (__extension__ ({ int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((int (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = b; __internal_ClassInst ? __internal_ClassInst->_vTbl : class->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetCount]); __internal_VirtualMethod ? __internal_VirtualMethod(b) : (int)1; }))) return -1; ia = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : class->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetFirst]); __internal_VirtualMethod ? __internal_VirtualMethod(this) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); ib = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = b; __internal_ClassInst ? __internal_ClassInst->_vTbl : class->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetFirst]); __internal_VirtualMethod ? __internal_VirtualMethod(b) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); while(ia && ib) { uint64 dataA = (__extension__ ({ uint64 (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((uint64 (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : class->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetData]); __internal_VirtualMethod ? __internal_VirtualMethod(this, ia) : (uint64)1; })); uint64 dataB = (__extension__ ({ uint64 (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((uint64 (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = b; __internal_ClassInst ? __internal_ClassInst->_vTbl : class->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetData]); __internal_VirtualMethod ? __internal_VirtualMethod(b, ib) : (uint64)1; })); int r = onCompare(Dclass, byRef ? ((char *)&dataA + __ENDIAN_PAD(class->templateArgs[2].__anon1.__anon1.dataTypeClass->typeSize)) : (const void *)(uintptr_t)dataA, byRef ? ((char *)&dataB + __ENDIAN_PAD(class->templateArgs[2].__anon1.__anon1.dataTypeClass->typeSize)) : (const void *)(uintptr_t)dataB); if(r) return r; ia = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : class->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetNext]); __internal_VirtualMethod ? __internal_VirtualMethod(this, ia) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); ib = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = b; __internal_ClassInst ? __internal_ClassInst->_vTbl : class->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetNext]); __internal_VirtualMethod ? __internal_VirtualMethod(b, ib) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); } if(ia) return 1; if(ib) return -1; return 0; } int __ecereMethod___ecereNameSpace__ecere__com__Container_GetCount(struct __ecereNameSpace__ecere__com__Instance * this) { int count = 0; struct __ecereNameSpace__ecere__com__IteratorPointer * i; for(i = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetFirst]); __internal_VirtualMethod ? __internal_VirtualMethod(this) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); i; i = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetNext]); __internal_VirtualMethod ? __internal_VirtualMethod(this, i) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; }))) count++; return count; } void __ecereMethod___ecereNameSpace__ecere__com__Container_Free(struct __ecereNameSpace__ecere__com__Instance * this) { struct __ecereNameSpace__ecere__com__IteratorPointer * i; while((i = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetFirst]); __internal_VirtualMethod ? __internal_VirtualMethod(this) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })))) (__extension__ ({ void (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * i); __internal_VirtualMethod = ((void (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * i))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_Delete]); __internal_VirtualMethod ? __internal_VirtualMethod(this, i) : (void)1; })); } const char * __ecereMethod___ecereNameSpace__ecere__com__Container_OnGetString(struct __ecereNameSpace__ecere__com__Class * class, struct __ecereNameSpace__ecere__com__Instance * this, char * tempString, void * fieldData, unsigned int * needClass) { if((struct __ecereNameSpace__ecere__com__Instance *)this) { char itemString[4096]; unsigned int first = 1; struct __ecereNameSpace__ecere__com__IteratorPointer * i; tempString[0] = '\0'; for(i = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : class->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetFirst]); __internal_VirtualMethod ? __internal_VirtualMethod(this) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); i; i = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : class->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetNext]); __internal_VirtualMethod ? __internal_VirtualMethod(this, i) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; }))) { struct __ecereNameSpace__ecere__com__Class * Dclass = class->templateArgs[2].__anon1.__anon1.dataTypeClass; uint64 data = (__extension__ ({ uint64 (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((uint64 (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : class->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetData]); __internal_VirtualMethod ? __internal_VirtualMethod(this, i) : (uint64)1; })); const char * result; itemString[0] = '\0'; result = ((const char * (*)(void *, void *, char *, void *, unsigned int *))(void *)Dclass->_vTbl[__ecereVMethodID_class_OnGetString])(Dclass, ((Dclass->type == 1000 && !Dclass->byValueSystemClass) || Dclass->type == 2 || Dclass->type == 4 || Dclass->type == 3) ? ((char *)&data + __ENDIAN_PAD(class->templateArgs[2].__anon1.__anon1.dataTypeClass->typeSize)) : (void *)(uintptr_t)data, itemString, (((void *)0)), (((void *)0))); if(!first) strcat(tempString, ", "); strcat(tempString, result); first = 0; } } else tempString[0] = 0; return tempString; } void __ecereMethod___ecereNameSpace__ecere__com__Container_TakeOut(struct __ecereNameSpace__ecere__com__Instance * this, const uint64 d) { struct __ecereNameSpace__ecere__com__IteratorPointer * i = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, const uint64 value); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, const uint64 value))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_Find]); __internal_VirtualMethod ? __internal_VirtualMethod(this, d) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); if(i) (__extension__ ({ void (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * it); __internal_VirtualMethod = ((void (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * it))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove]); __internal_VirtualMethod ? __internal_VirtualMethod(this, i) : (void)1; })); } static __attribute__((unused)) void UnusedFunction() { int a; (__extension__ ({ int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Class * , const void * , const void * object); __internal_VirtualMethod = ((int (*)(struct __ecereNameSpace__ecere__com__Class *, const void *, const void * object))__ecereClass_int->_vTbl[__ecereVMethodID_class_OnCompare]); __internal_VirtualMethod ? __internal_VirtualMethod(__ecereClass_int, (void *)&a, (((void *)0))) : (int)1; })); (__extension__ ({ void (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Class * , const void * , const void * newData); __internal_VirtualMethod = ((void (*)(struct __ecereNameSpace__ecere__com__Class *, const void *, const void * newData))__ecereClass_int->_vTbl[__ecereVMethodID_class_OnCopy]); __internal_VirtualMethod ? __internal_VirtualMethod(__ecereClass_int, (void *)&a, (((void *)0))) : (void)1; })); (__extension__ ({ const char * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Class * , const void * , char * tempString, void * fieldData, unsigned int * needClass); __internal_VirtualMethod = ((const char * (*)(struct __ecereNameSpace__ecere__com__Class *, const void *, char * tempString, void * fieldData, unsigned int * needClass))__ecereClass_int->_vTbl[__ecereVMethodID_class_OnGetString]); __internal_VirtualMethod ? __internal_VirtualMethod(__ecereClass_int, (void *)&a, (((void *)0)), (((void *)0)), (((void *)0))) : (const char * )1; })); (__extension__ ({ void (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Class * , const void * , struct __ecereNameSpace__ecere__com__Instance * channel); __internal_VirtualMethod = ((void (*)(struct __ecereNameSpace__ecere__com__Class *, const void *, struct __ecereNameSpace__ecere__com__Instance * channel))__ecereClass_int->_vTbl[__ecereVMethodID_class_OnSerialize]); __internal_VirtualMethod ? __internal_VirtualMethod(__ecereClass_int, (void *)&a, (((void *)0))) : (void)1; })); (__extension__ ({ void (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Class * , const void * , struct __ecereNameSpace__ecere__com__Instance * channel); __internal_VirtualMethod = ((void (*)(struct __ecereNameSpace__ecere__com__Class *, const void *, struct __ecereNameSpace__ecere__com__Instance * channel))__ecereClass_int->_vTbl[__ecereVMethodID_class_OnUnserialize]); __internal_VirtualMethod ? __internal_VirtualMethod(__ecereClass_int, (void *)&a, (((void *)0))) : (void)1; })); } void __ecereMethod___ecereNameSpace__ecere__com__Container_OnCopy(struct __ecereNameSpace__ecere__com__Class * class, struct __ecereNameSpace__ecere__com__Instance ** this, struct __ecereNameSpace__ecere__com__Instance * source) { if((struct __ecereNameSpace__ecere__com__Instance *)source) { struct __ecereNameSpace__ecere__com__Instance * container = __ecereNameSpace__ecere__com__eInstance_New(((struct __ecereNameSpace__ecere__com__Instance *)(char *)source)->_class); (__extension__ ({ void (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__Instance * source); __internal_VirtualMethod = ((void (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__Instance * source))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = container; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_Copy]); __internal_VirtualMethod ? __internal_VirtualMethod(container, (struct __ecereNameSpace__ecere__com__Instance *)source) : (void)1; })); (*this) = container; } else { (*this) = (((void *)0)); } } struct __ecereNameSpace__ecere__com__IteratorPointer * __ecereMethod___ecereNameSpace__ecere__com__Container_Find(struct __ecereNameSpace__ecere__com__Instance * this, const uint64 value) { struct __ecereNameSpace__ecere__com__IteratorPointer * i; struct __ecereNameSpace__ecere__com__Class * Dclass = ((struct __ecereNameSpace__ecere__com__Instance *)(char *)this)->_class->templateArgs[2].__anon1.__anon1.dataTypeClass; unsigned int byRef = (Dclass->type == 1000 && !Dclass->byValueSystemClass) || Dclass->type == 2 || Dclass->type == 4 || Dclass->type == 3; int (* onCompare)(void *, const void *, const void *) = (void *)Dclass->_vTbl[__ecereVMethodID_class_OnCompare]; if(byRef) { for(i = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetFirst]); __internal_VirtualMethod ? __internal_VirtualMethod(this) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); i; i = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetNext]); __internal_VirtualMethod ? __internal_VirtualMethod(this, i) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; }))) { uint64 data = (__extension__ ({ uint64 (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((uint64 (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetData]); __internal_VirtualMethod ? __internal_VirtualMethod(this, i) : (uint64)1; })); int result = onCompare(Dclass, ((char *)&value + __ENDIAN_PAD(((struct __ecereNameSpace__ecere__com__Instance *)(char *)this)->_class->templateArgs[2].__anon1.__anon1.dataTypeClass->typeSize)), ((char *)&data + __ENDIAN_PAD(((struct __ecereNameSpace__ecere__com__Instance *)(char *)this)->_class->templateArgs[2].__anon1.__anon1.dataTypeClass->typeSize))); if(!result) return i; } } else { for(i = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetFirst]); __internal_VirtualMethod ? __internal_VirtualMethod(this) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); i; i = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetNext]); __internal_VirtualMethod ? __internal_VirtualMethod(this, i) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; }))) { uint64 data = (__extension__ ({ uint64 (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((uint64 (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetData]); __internal_VirtualMethod ? __internal_VirtualMethod(this, i) : (uint64)1; })); int result = onCompare(Dclass, (const void *)(uintptr_t)value, (const void *)(uintptr_t)data); if(!result) return i; } } return (((void *)0)); } void __ecereMethod___ecereNameSpace__ecere__com__Container_Delete(struct __ecereNameSpace__ecere__com__Instance * this, struct __ecereNameSpace__ecere__com__IteratorPointer * i) { uint64 data = (__extension__ ({ uint64 (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((uint64 (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetData]); __internal_VirtualMethod ? __internal_VirtualMethod(this, i) : (uint64)1; })); (((void (* )(void * _class, void * data))((struct __ecereNameSpace__ecere__com__Instance *)(char *)this)->_class->templateArgs[2].__anon1.__anon1.dataTypeClass->_vTbl[__ecereVMethodID_class_OnFree])(((struct __ecereNameSpace__ecere__com__Instance * )(char * )this)->_class->templateArgs[2].__anon1.__anon1.dataTypeClass, ((void * )((uintptr_t)(data)))), data = 0); (__extension__ ({ void (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * it); __internal_VirtualMethod = ((void (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * it))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_Remove]); __internal_VirtualMethod ? __internal_VirtualMethod(this, i) : (void)1; })); } void __ecereMethod___ecereNameSpace__ecere__com__Container_OnSerialize(struct __ecereNameSpace__ecere__com__Class * class, struct __ecereNameSpace__ecere__com__Instance * this, struct __ecereNameSpace__ecere__com__Instance * channel) { unsigned int count = (struct __ecereNameSpace__ecere__com__Instance *)this ? (__extension__ ({ int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((int (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : class->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetCount]); __internal_VirtualMethod ? __internal_VirtualMethod(this) : (int)1; })) : 0; struct __ecereNameSpace__ecere__com__IteratorPointer * i; struct __ecereNameSpace__ecere__com__Class * Dclass = class->templateArgs[2].__anon1.__anon1.dataTypeClass; unsigned int isNormalClass = (Dclass->type == 0) && Dclass->structSize; __ecereMethod___ecereNameSpace__ecere__com__IOChannel_Put(channel, __ecereClass_uint, (void *)&count); if((struct __ecereNameSpace__ecere__com__Instance *)this) for(i = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : class->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetFirst]); __internal_VirtualMethod ? __internal_VirtualMethod(this) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); i; i = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : class->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetNext]); __internal_VirtualMethod ? __internal_VirtualMethod(this, i) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; }))) { uint64 data = (__extension__ ({ uint64 (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer); __internal_VirtualMethod = ((uint64 (*)(struct __ecereNameSpace__ecere__com__Instance *, struct __ecereNameSpace__ecere__com__IteratorPointer * pointer))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : class->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetData]); __internal_VirtualMethod ? __internal_VirtualMethod(this, i) : (uint64)1; })); struct __ecereNameSpace__ecere__com__Class * Eclass = isNormalClass ? ((struct __ecereNameSpace__ecere__com__Instance *)(char *)((struct __ecereNameSpace__ecere__com__Instance *)((uintptr_t)((uint64)(data)))))->_class : Dclass; ((void (*)(void *, void *, void *))(void *)Eclass->_vTbl[__ecereVMethodID_class_OnSerialize])(Eclass, ((Dclass->type == 1000 && !Dclass->byValueSystemClass) || Dclass->type == 2 || Dclass->type == 4 || Dclass->type == 3) ? ((char *)&data + __ENDIAN_PAD(class->templateArgs[2].__anon1.__anon1.dataTypeClass->typeSize)) : (void *)(uintptr_t)data, channel); } } void __ecereMethod___ecereNameSpace__ecere__com__Container_OnUnserialize(struct __ecereNameSpace__ecere__com__Class * class, struct __ecereNameSpace__ecere__com__Instance ** this, struct __ecereNameSpace__ecere__com__Instance * channel) { struct __ecereNameSpace__ecere__com__Instance * container = __ecereNameSpace__ecere__com__eInstance_New(__ecereProp___ecereNameSpace__ecere__com__Class_Set_char__PTR_(class->fullName)); unsigned int count, c; struct __ecereNameSpace__ecere__com__Class * Dclass = class->templateArgs[2].__anon1.__anon1.dataTypeClass; uint64 data; unsigned int isStruct = Dclass->type == 1; container->_refCount++; __ecereMethod___ecereNameSpace__ecere__com__IOChannel_Get(channel, __ecereClass_uint, (void *)&count); if(isStruct) data = (uint64)(uintptr_t)(__ecereNameSpace__ecere__com__eSystem_New(sizeof(unsigned char) * (Dclass->structSize))); for(c = 0; c < count; c++) { if(isStruct) memset((char *)(uintptr_t)data, 0, Dclass->structSize); else data = (uint64)0; ((void (*)(void *, void *, void *))(void *)Dclass->_vTbl[__ecereVMethodID_class_OnUnserialize])(Dclass, isStruct ? (void *)(uintptr_t)data : ((char *)&data + __ENDIAN_PAD(class->templateArgs[2].__anon1.__anon1.dataTypeClass->typeSize)), channel); (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, uint64 value); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, uint64 value))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = container; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_Add]); __internal_VirtualMethod ? __internal_VirtualMethod(container, data) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); } if(isStruct) (__ecereNameSpace__ecere__com__eSystem_Delete((void *)(uintptr_t)data), data = 0); (*this) = container; } void __ecereUnregisterModule_Container(struct __ecereNameSpace__ecere__com__Instance * module) { __ecerePropM___ecereNameSpace__ecere__com__Iterator_data = (void *)0; __ecerePropM___ecereNameSpace__ecere__com__Container_copySrc = (void *)0; __ecerePropM___ecereNameSpace__ecere__com__Container_firstIterator = (void *)0; __ecerePropM___ecereNameSpace__ecere__com__Container_lastIterator = (void *)0; } unsigned int __ecereMethod___ecereNameSpace__ecere__com__Iterator_Find(struct __ecereNameSpace__ecere__com__Iterator * this, const uint64 value) { if(this->container) { __ecereMethod___ecereNameSpace__ecere__com__Iterator_Free(this); this->pointer = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, const uint64 value); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, const uint64 value))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this->container; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_Find]); __internal_VirtualMethod ? __internal_VirtualMethod(this->container, value) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); } return this->pointer != (((void *)0)); } unsigned int __ecereMethod___ecereNameSpace__ecere__com__Iterator_Index(struct __ecereNameSpace__ecere__com__Iterator * this, const uint64 index, unsigned int create) { if(this->container) { unsigned int justAdded = 0; __ecereMethod___ecereNameSpace__ecere__com__Iterator_Free(this); this->pointer = (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, const uint64 pos, unsigned int create, unsigned int * justAdded); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, const uint64 pos, unsigned int create, unsigned int * justAdded))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this->container; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetAtPosition]); __internal_VirtualMethod ? __internal_VirtualMethod(this->container, index, create, &justAdded) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); return !justAdded && this->pointer != (((void *)0)); } return 0; } static void __ecereMethod___ecereNameSpace__ecere__com__Container__Sort(struct __ecereNameSpace__ecere__com__Instance * this, unsigned int ascending, struct __ecereNameSpace__ecere__com__Instance * * lists); static void __ecereMethod___ecereNameSpace__ecere__com__Container__Sort(struct __ecereNameSpace__ecere__com__Instance * this, unsigned int ascending, struct __ecereNameSpace__ecere__com__Instance ** lists) { int count = (__extension__ ({ int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((int (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetCount]); __internal_VirtualMethod ? __internal_VirtualMethod(this) : (int)1; })); if(count >= 2 && ((struct __ecereNameSpace__ecere__com__Instance *)(char *)this)->_class->templateArgs[1].__anon1.__anon1.dataTypeClass == __ecereClass_int) { struct __ecereNameSpace__ecere__com__Iterator __simpleStruct1 = { 0, 0 }; struct __ecereNameSpace__ecere__com__Iterator __simpleStruct0 = { 0, 0 }; struct __ecereNameSpace__ecere__com__Iterator a = { this, 0 }; struct __ecereNameSpace__ecere__com__Iterator b = { this, 0 }; struct __ecereNameSpace__ecere__com__Iterator mid = { this, 0 }; struct __ecereNameSpace__ecere__com__Class * Dclass = ((struct __ecereNameSpace__ecere__com__Instance *)(char *)this)->_class->templateArgs[2].__anon1.__anon1.dataTypeClass; unsigned int byRef = (Dclass->type == 1000 && !Dclass->byValueSystemClass) || Dclass->type == 2 || Dclass->type == 4 || Dclass->type == 3; int (* onCompare)(void *, const void *, const void *) = (void *)Dclass->_vTbl[__ecereVMethodID_class_OnCompare]; struct __ecereNameSpace__ecere__com__Instance * listA = lists[0]; struct __ecereNameSpace__ecere__com__Instance * listB = lists[1]; __ecereMethod___ecereNameSpace__ecere__com__Iterator_Index(&mid, (uint64)(count / 2 - 1), 0); while(__ecereMethod___ecereNameSpace__ecere__com__Iterator_Next(&a)) { (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, uint64 value); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, uint64 value))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = listA; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_Add]); __internal_VirtualMethod ? __internal_VirtualMethod(listA, __ecereProp___ecereNameSpace__ecere__com__Iterator_Get_data(&a)) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); if(a.pointer == mid.pointer) break; } b.pointer = mid.pointer; while(__ecereMethod___ecereNameSpace__ecere__com__Iterator_Next(&b)) (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, uint64 value); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, uint64 value))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = listB; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_Add]); __internal_VirtualMethod ? __internal_VirtualMethod(listB, __ecereProp___ecereNameSpace__ecere__com__Iterator_Get_data(&b)) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); (__extension__ ({ void (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((void (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_RemoveAll]); __internal_VirtualMethod ? __internal_VirtualMethod(this) : (void)1; })); __ecereMethod___ecereNameSpace__ecere__com__Container__Sort(listA, ascending, lists + 2); __ecereMethod___ecereNameSpace__ecere__com__Container__Sort(listB, ascending, lists + 2); a = (__simpleStruct0.container = listA, __simpleStruct0); b = (__simpleStruct1.container = listB, __simpleStruct1); __ecereMethod___ecereNameSpace__ecere__com__Iterator_Next(&a); __ecereMethod___ecereNameSpace__ecere__com__Iterator_Next(&b); while(a.pointer || b.pointer) { int r; if(a.pointer && b.pointer) { uint64 dataA = __ecereProp___ecereNameSpace__ecere__com__Iterator_Get_data(&a), dataB = __ecereProp___ecereNameSpace__ecere__com__Iterator_Get_data(&b); r = onCompare(Dclass, byRef ? ((char *)&dataA + __ENDIAN_PAD(((struct __ecereNameSpace__ecere__com__Instance *)(char *)this)->_class->templateArgs[2].__anon1.__anon1.dataTypeClass->typeSize)) : (const void *)(uintptr_t)dataA, byRef ? ((char *)&dataB + __ENDIAN_PAD(((struct __ecereNameSpace__ecere__com__Instance *)(char *)this)->_class->templateArgs[2].__anon1.__anon1.dataTypeClass->typeSize)) : (const void *)(uintptr_t)dataB); } else if(a.pointer) r = -1; else r = 1; if(!ascending) r *= -1; if(r < 0) { (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, uint64 value); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, uint64 value))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_Add]); __internal_VirtualMethod ? __internal_VirtualMethod(this, __ecereProp___ecereNameSpace__ecere__com__Iterator_Get_data(&a)) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); __ecereMethod___ecereNameSpace__ecere__com__Iterator_Next(&a); } else { (__extension__ ({ struct __ecereNameSpace__ecere__com__IteratorPointer * (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, uint64 value); __internal_VirtualMethod = ((struct __ecereNameSpace__ecere__com__IteratorPointer * (*)(struct __ecereNameSpace__ecere__com__Instance *, uint64 value))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_Add]); __internal_VirtualMethod ? __internal_VirtualMethod(this, __ecereProp___ecereNameSpace__ecere__com__Iterator_Get_data(&b)) : (struct __ecereNameSpace__ecere__com__IteratorPointer *)1; })); __ecereMethod___ecereNameSpace__ecere__com__Iterator_Next(&b); } } (__extension__ ({ void (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((void (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = listA; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_RemoveAll]); __internal_VirtualMethod ? __internal_VirtualMethod(listA) : (void)1; })); (__extension__ ({ void (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((void (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = listB; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_RemoveAll]); __internal_VirtualMethod ? __internal_VirtualMethod(listB) : (void)1; })); } } void __ecereMethod___ecereNameSpace__ecere__com__Container_Sort(struct __ecereNameSpace__ecere__com__Instance * this, unsigned int ascending) { int i, numLists = __ecereNameSpace__ecere__com__log2i((__extension__ ({ int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *); __internal_VirtualMethod = ((int (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({ struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = this; __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__com__Container->_vTbl; })[__ecereVMethodID___ecereNameSpace__ecere__com__Container_GetCount]); __internal_VirtualMethod ? __internal_VirtualMethod(this) : (int)1; }))) * 2; struct __ecereNameSpace__ecere__com__Instance ** lists = __ecereNameSpace__ecere__com__eSystem_New(sizeof(struct __ecereNameSpace__ecere__com__Instance *) * (numLists)); for(i = 0; i < numLists; i++) lists[i] = __ecereNameSpace__ecere__com__eInstance_New(((struct __ecereNameSpace__ecere__com__Instance *)(char *)this)->_class); __ecereMethod___ecereNameSpace__ecere__com__Container__Sort(this, ascending, lists); for(i = 0; i < numLists; i++) (__ecereNameSpace__ecere__com__eInstance_DecRef(lists[i]), lists[i] = 0); (__ecereNameSpace__ecere__com__eSystem_Delete(lists), lists = 0); } void __ecereRegisterModule_Container(struct __ecereNameSpace__ecere__com__Instance * module) { struct __ecereNameSpace__ecere__com__ClassTemplateArgument __simpleStruct2 = { .__anon1 = { .__anon1 = { .dataTypeString = "T" } } }; struct __ecereNameSpace__ecere__com__ClassTemplateArgument __simpleStruct1 = { .__anon1 = { .__anon1 = { .dataTypeString = "int" } } }; struct __ecereNameSpace__ecere__com__ClassTemplateArgument __simpleStruct0 = { .__anon1 = { .__anon1 = { .dataTypeString = "int" } } }; struct __ecereNameSpace__ecere__com__Class __attribute__((unused)) * class; class = __ecereNameSpace__ecere__com__eSystem_RegisterClass(1, "ecere::com::Iterator", 0, sizeof(struct __ecereNameSpace__ecere__com__Iterator), 0, (void *)0, (void *)0, module, 4, 1); if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application == ((struct __ecereNameSpace__ecere__com__Module *)(((char *)__thisModule + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application && class) __ecereClass___ecereNameSpace__ecere__com__Iterator = class; __ecereNameSpace__ecere__com__eClass_AddMethod(class, "Find", "bool Find(const T value)", __ecereMethod___ecereNameSpace__ecere__com__Iterator_Find, 1); __ecereNameSpace__ecere__com__eClass_AddMethod(class, "Free", "void Free()", __ecereMethod___ecereNameSpace__ecere__com__Iterator_Free, 1); __ecereNameSpace__ecere__com__eClass_AddMethod(class, "GetData", "T GetData()", __ecereMethod___ecereNameSpace__ecere__com__Iterator_GetData, 1); __ecereNameSpace__ecere__com__eClass_AddMethod(class, "Index", "bool Index(const IT index, bool create)", __ecereMethod___ecereNameSpace__ecere__com__Iterator_Index, 1); __ecereNameSpace__ecere__com__eClass_AddMethod(class, "Next", "bool Next()", __ecereMethod___ecereNameSpace__ecere__com__Iterator_Next, 1); __ecereNameSpace__ecere__com__eClass_AddMethod(class, "Prev", "bool Prev()", __ecereMethod___ecereNameSpace__ecere__com__Iterator_Prev, 1); __ecereNameSpace__ecere__com__eClass_AddMethod(class, "Remove", "void Remove()", __ecereMethod___ecereNameSpace__ecere__com__Iterator_Remove, 1); __ecereNameSpace__ecere__com__eClass_AddMethod(class, "SetData", "bool SetData(T value)", __ecereMethod___ecereNameSpace__ecere__com__Iterator_SetData, 1); __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "container", "ecere::com::Container<T, IT>", sizeof(void *), 0xF000F000, 1); __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "pointer", "ecere::com::IteratorPointer", sizeof(void *), 0xF000F000, 1); __ecerePropM___ecereNameSpace__ecere__com__Iterator_data = __ecereNameSpace__ecere__com__eClass_AddProperty(class, "data", "T", __ecereProp___ecereNameSpace__ecere__com__Iterator_Set_data, __ecereProp___ecereNameSpace__ecere__com__Iterator_Get_data, 1); if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application == ((struct __ecereNameSpace__ecere__com__Module *)(((char *)__thisModule + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application) __ecereProp___ecereNameSpace__ecere__com__Iterator_data = __ecerePropM___ecereNameSpace__ecere__com__Iterator_data, __ecerePropM___ecereNameSpace__ecere__com__Iterator_data = (void *)0; __ecereNameSpace__ecere__com__eClass_AddTemplateParameter(class, "T", 0, 0, (((void *)0))); __ecereNameSpace__ecere__com__eClass_AddTemplateParameter(class, "IT", 0, 0, &__simpleStruct0); __ecereNameSpace__ecere__com__eClass_DoneAddingTemplateParameters(class); class = __ecereNameSpace__ecere__com__eSystem_RegisterClass(0, "ecere::com::Container", 0, 0, 0, (void *)0, (void *)__ecereDestructor___ecereNameSpace__ecere__com__Container, module, 4, 1); if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application == ((struct __ecereNameSpace__ecere__com__Module *)(((char *)__thisModule + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application && class) __ecereClass___ecereNameSpace__ecere__com__Container = class; __ecereNameSpace__ecere__com__eClass_AddMethod(class, "OnCompare", 0, __ecereMethod___ecereNameSpace__ecere__com__Container_OnCompare, 1); __ecereNameSpace__ecere__com__eClass_AddMethod(class, "OnCopy", 0, __ecereMethod___ecereNameSpace__ecere__com__Container_OnCopy, 1); __ecereNameSpace__ecere__com__eClass_AddMethod(class, "OnFree", 0, __ecereMethod___ecereNameSpace__ecere__com__Container_OnFree, 1); __ecereNameSpace__ecere__com__eClass_AddMethod(class, "OnGetString", 0, __ecereMethod___ecereNameSpace__ecere__com__Container_OnGetString, 1); __ecereNameSpace__ecere__com__eClass_AddMethod(class, "OnSerialize", 0, __ecereMethod___ecereNameSpace__ecere__com__Container_OnSerialize, 1); __ecereNameSpace__ecere__com__eClass_AddMethod(class, "OnUnserialize", 0, __ecereMethod___ecereNameSpace__ecere__com__Container_OnUnserialize, 1); __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(class, "GetFirst", "ecere::com::IteratorPointer GetFirst()", __ecereMethod___ecereNameSpace__ecere__com__Container_GetFirst, 1); __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(class, "GetLast", "ecere::com::IteratorPointer GetLast()", __ecereMethod___ecereNameSpace__ecere__com__Container_GetLast, 1); __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(class, "GetPrev", "ecere::com::IteratorPointer GetPrev(ecere::com::IteratorPointer pointer)", __ecereMethod___ecereNameSpace__ecere__com__Container_GetPrev, 1); __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(class, "GetNext", "ecere::com::IteratorPointer GetNext(ecere::com::IteratorPointer pointer)", __ecereMethod___ecereNameSpace__ecere__com__Container_GetNext, 1); __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(class, "GetData", "D GetData(ecere::com::IteratorPointer pointer)", __ecereMethod___ecereNameSpace__ecere__com__Container_GetData, 1); __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(class, "SetData", "bool SetData(ecere::com::IteratorPointer pointer, D data)", 0, 1); __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(class, "GetAtPosition", "ecere::com::IteratorPointer GetAtPosition(const I pos, bool create, bool * justAdded)", __ecereMethod___ecereNameSpace__ecere__com__Container_GetAtPosition, 1); __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(class, "Insert", "ecere::com::IteratorPointer Insert(ecere::com::IteratorPointer after, T value)", 0, 1); __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(class, "Add", "ecere::com::IteratorPointer Add(T value)", 0, 1); __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(class, "Remove", "void Remove(ecere::com::IteratorPointer it)", 0, 1); __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(class, "Move", "void Move(ecere::com::IteratorPointer it, ecere::com::IteratorPointer after)", 0, 1); __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(class, "RemoveAll", "void RemoveAll()", __ecereMethod___ecereNameSpace__ecere__com__Container_RemoveAll, 1); __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(class, "Copy", "void Copy(ecere::com::Container<T> source)", __ecereMethod___ecereNameSpace__ecere__com__Container_Copy, 1); __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(class, "Find", "ecere::com::IteratorPointer Find(const D value)", __ecereMethod___ecereNameSpace__ecere__com__Container_Find, 1); __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(class, "FreeIterator", "void FreeIterator(ecere::com::IteratorPointer it)", 0, 1); __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(class, "GetCount", "int GetCount()", __ecereMethod___ecereNameSpace__ecere__com__Container_GetCount, 1); __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(class, "Free", "void Free()", __ecereMethod___ecereNameSpace__ecere__com__Container_Free, 1); __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(class, "Delete", "void Delete(ecere::com::IteratorPointer i)", __ecereMethod___ecereNameSpace__ecere__com__Container_Delete, 1); __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(class, "Sort", "void Sort(bool ascending)", __ecereMethod___ecereNameSpace__ecere__com__Container_Sort, 1); __ecereNameSpace__ecere__com__eClass_AddMethod(class, "TakeOut", "void TakeOut(const D d)", __ecereMethod___ecereNameSpace__ecere__com__Container_TakeOut, 1); __ecerePropM___ecereNameSpace__ecere__com__Container_copySrc = __ecereNameSpace__ecere__com__eClass_AddProperty(class, "copySrc", "ecere::com::Container<T>", __ecereProp___ecereNameSpace__ecere__com__Container_Set_copySrc, 0, 1); if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application == ((struct __ecereNameSpace__ecere__com__Module *)(((char *)__thisModule + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application) __ecereProp___ecereNameSpace__ecere__com__Container_copySrc = __ecerePropM___ecereNameSpace__ecere__com__Container_copySrc, __ecerePropM___ecereNameSpace__ecere__com__Container_copySrc = (void *)0; __ecerePropM___ecereNameSpace__ecere__com__Container_firstIterator = __ecereNameSpace__ecere__com__eClass_AddProperty(class, "firstIterator", "ecere::com::Iterator<T>", 0, __ecereProp___ecereNameSpace__ecere__com__Container_Get_firstIterator, 1); if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application == ((struct __ecereNameSpace__ecere__com__Module *)(((char *)__thisModule + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application) __ecereProp___ecereNameSpace__ecere__com__Container_firstIterator = __ecerePropM___ecereNameSpace__ecere__com__Container_firstIterator, __ecerePropM___ecereNameSpace__ecere__com__Container_firstIterator = (void *)0; __ecerePropM___ecereNameSpace__ecere__com__Container_lastIterator = __ecereNameSpace__ecere__com__eClass_AddProperty(class, "lastIterator", "ecere::com::Iterator<T>", 0, __ecereProp___ecereNameSpace__ecere__com__Container_Get_lastIterator, 1); if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application == ((struct __ecereNameSpace__ecere__com__Module *)(((char *)__thisModule + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application) __ecereProp___ecereNameSpace__ecere__com__Container_lastIterator = __ecerePropM___ecereNameSpace__ecere__com__Container_lastIterator, __ecerePropM___ecereNameSpace__ecere__com__Container_lastIterator = (void *)0; __ecereNameSpace__ecere__com__eClass_AddTemplateParameter(class, "T", 0, 0, (((void *)0))); __ecereNameSpace__ecere__com__eClass_AddTemplateParameter(class, "I", 0, 0, &__simpleStruct1); __ecereNameSpace__ecere__com__eClass_AddTemplateParameter(class, "D", 0, 0, &__simpleStruct2); __ecereNameSpace__ecere__com__eClass_DoneAddingTemplateParameters(class); if(class) class->fixed = (unsigned int)1; }
the_stack_data/225408.c
#include <stdio.h> // int sumOfSevens(int array[], int n) // { // int sum = 0, i; // for (i = 0; i < n; i++) // { // if (array[i] / 7 == 0) // { // sum += array[i]; // } // } // return sum; // } int main() { int n = 5, i; int sum = 0; int scores[n]; for (i = 0; i < n; i++) { scores[i] = 2154 % 9 + 2 * i; printf("%d ", scores[i]); } //int result = sumOfSevens(scores, n); for (i = 0; i < n; i++) { if ((scores[i] % 7) == 0)//divisiable by 7 then { printf("\n%d + %d ", sum, scores[i]); sum += scores[i]; printf(" %d \n", sum); } } printf("%d\n", sum); return 0; }
the_stack_data/117326784.c
/* This caused an ICE on s390 due to incorrect secondary output reloads. */ /* { dg-do compile } */ /* { dg-options "-O2 -fprofile-generate" } */ char * test(char *ret, int *counter, void *schema, const char* name, const char *namespace, void *node, int topLevel) { char buf[30]; int val; if (counter == 0) return 0; if (schema == 0) return 0; if (name == 0) return 0; __builtin_memset (ret, 0, 100); lookup (schema, name, -1); val = hash (schema, name, namespace, name, ret); if (val == 0) return ret; if (topLevel != 0) { error (1, 0, 0, node, "%s", name); return 0; } __snprintf_chk (buf, 29, 1, 30, "#eCont %d", ++*counter); val = hash (schema, name, buf, namespace, ret); if (val == 0) return ret; error (1, 0, 0, node, "%s", name); return 0; } /* { dg-final { cleanup-coverage-files } } */
the_stack_data/73573983.c
/* Calculates product of the inputs from both partys */ int mpc_main(int INPUT_B, int INPUT_A) { int OUTPUT = INPUT_B * INPUT_A; return OUTPUT; }
the_stack_data/1113676.c
#include<stdio.h> #include<stdlib.h> #include<string.h> int remainder_check(char* parameter_1,int checksum_div,int length); int remainder_check(char* parameter_1,int checksum_div,int length) { if(strlen(parameter_1)!=length) return 0; int sum = 0; for(int i=0;i<length;i++) sum = sum + parameter_1[i]; if((sum % checksum_div==0)) return 1; else return 0; } float v_tlog_pkt_pos_is_in( unsigned int parameter_1,int parameter_2); char v_tlog_pkt_pos_is_past( short parameter_1,char parameter_2); float v_tlog_pkt_pos_is_reachable( float parameter_1,short parameter_2); long v_tlog_pkt_pos_is_compatible( unsigned int parameter_1,double parameter_2); unsigned int v_tlog_pkt_pos_is_valid( unsigned int parameter_1); void v_tlog_pkt_pos_move( double parameter_1,long parameter_2,int parameter_3); void v_tlog_timespec_cap_add( double parameter_1,char parameter_2,short parameter_3); void v_tlog_pkt_init( int parameter_1); void v_tlog_pkt_cleanup( unsigned int parameter_1); unsigned int v_tlog_source_loc_fmt( double parameter_1,long parameter_2); void v_tlog_timespec_sub( unsigned int parameter_1,double parameter_2,char parameter_3); short v_tlog_source_read( short parameter_1,char parameter_2); long v_tlog_source_loc_get( int parameter_1); unsigned int v_tlog_timespec_is_zero( unsigned int parameter_1); void v_tlog_pkt_type_is_valid( double parameter_1); short v_tlog_pkt_is_valid( long parameter_1); unsigned int v_tlog_pkt_is_void(); void v_tlog_timespec_fp_div( float parameter_1,float parameter_2,char parameter_3); void v_tlog_timespec_fp_mul( int parameter_1,long parameter_2,int parameter_3); void v_tlog_timespec_cmp( long parameter_1,double parameter_2); void v_tlog_timestr_parser_reset( double parameter_1); char v_tlog_play_run_read_input( int parameter_1,long parameter_2); unsigned int v_tlog_play_run( unsigned int parameter_1,int parameter_2); int v_tlog_grc_to( unsigned int parameter_1,float parameter_2); unsigned int v_tlog_grc_strerror( short parameter_1); int v_tlog_errs_replace_with_nomem(); void v_tlog_errs_pushs( float parameter_1,unsigned int parameter_2); short v_tlog_grc_range_is_valid( int parameter_1); unsigned int v_tlog_grc_is( short parameter_1,unsigned int parameter_2); void v_tlog_grc_is_valid( char parameter_1); void v_tlog_errs_pushc( char parameter_1,double parameter_2); char v_tlog_play_cleanup( int parameter_1); long v_tlog_play_io_sighandler( int parameter_1); double v_tlog_play_exit_sighandler( int parameter_1); void v_tlog_source_destroy( float parameter_1); char v_tlog_source_is_valid(); long v_tlog_source_type_is_valid(); float v_tlog_source_create( unsigned int parameter_1,float parameter_2,short parameter_3); char v_tlog_json_source_params_is_valid( short parameter_1); unsigned int v_tlog_json_source_create( int parameter_1,double parameter_2); long v_tlog_fd_json_reader_create( short parameter_1,int parameter_2,short parameter_3,double parameter_4); int v_tlog_play_create_file_json_reader( long parameter_1,long parameter_2,short parameter_3); void v_tlog_json_reader_destroy( char parameter_1); double v_tlog_json_reader_is_valid( float parameter_1); double v_tlog_json_reader_type_is_valid( float parameter_1); char v_tlog_json_reader_create( short parameter_1,long parameter_2,int parameter_3); long v_tlog_es_json_reader_create( long parameter_1,char parameter_2,unsigned int parameter_3,long parameter_4); unsigned int v_tlog_es_json_reader_base_url_is_valid( short parameter_1); int v_tlog_play_create_es_json_reader( float parameter_1,float parameter_2,short parameter_3); float v_tlog_play_create_json_reader( short parameter_1,double parameter_2,short parameter_3,int uni_para); float v_tlog_play_create_log_source( short parameter_1,long parameter_2,double parameter_3,int uni_para); short v_tlog_timestr_parser_yield( float parameter_1,unsigned int parameter_2); short v_tlog_timestr_parser_is_valid( float parameter_1); long v_tlog_timestr_parser_feed( char parameter_1,char parameter_2); unsigned int v_tlog_timestr_to_timespec( long parameter_1,int parameter_2); long v_tlog_timespec_is_valid( unsigned int parameter_1); long v_tlog_timespec_from_fp( double parameter_1,double parameter_2); char v_tlog_play_init( int parameter_1,float parameter_2,int uni_para); void v_tlog_errs_destroy(); int v_tlog_errs_print( int parameter_1,int parameter_2); void v_tlog_play( int parameter_1,unsigned int parameter_2,unsigned int parameter_3,int parameter_4,int uni_para); void v_tlog_errs_pushf( char parameter_1,unsigned int parameter_2,char parameter_3); void v_tlog_play_conf_cmd_load( double parameter_1,char parameter_2,char parameter_3,int parameter_4,char parameter_5); int v_tlog_json_overlay( char parameter_1,long parameter_2,long parameter_3); int v_tlog_play_conf_validate( short parameter_1,int parameter_2,char parameter_3); short v_tlog_json_object_from_file( float parameter_1,long parameter_2); int v_tlog_play_conf_file_load( long parameter_1,double parameter_2,short parameter_3); unsigned int v_tlog_build_or_inst_path( char parameter_1,long parameter_2,float parameter_3,double parameter_4); unsigned int v_tlog_play_conf_load( unsigned int parameter_1,char parameter_2,char parameter_3,int parameter_4,char parameter_5); float v_tlog_pkt_pos_is_in( unsigned int parameter_1,int parameter_2) { short short_1 = 1; long long_1 = 1; char char_1 = 1; char char_2 = 1; unsigned int unsigned_int_1 = 1; double double_1 = 1; float float_1 = 1; long long_2 = 1; unsigned int unsigned_int_2 = 1; unsigned int unsigned_int_3 = 1; short_1 = v_tlog_pkt_is_valid(long_1); char_1 = char_2; long_1 = v_tlog_pkt_pos_is_compatible(unsigned_int_1,double_1); float_1 = float_1 + float_1; long_2 = long_2 + long_1; return float_1; unsigned_int_2 = v_tlog_pkt_pos_is_valid(unsigned_int_3); } char v_tlog_pkt_pos_is_past( short parameter_1,char parameter_2) { long long_1 = 1; unsigned int unsigned_int_1 = 1; double double_1 = 1; char char_1 = 1; char char_2 = 1; float float_1 = 1; unsigned int unsigned_int_2 = 1; int int_1 = 1; float float_2 = 1; short short_1 = 1; short short_2 = 1; char char_3 = 1; short short_3 = 1; long long_2 = 1; long_1 = v_tlog_pkt_pos_is_compatible(unsigned_int_1,double_1); char_2 = char_1 * char_1; float_1 = v_tlog_pkt_pos_is_in(unsigned_int_2,int_1); float_2 = float_1; short_1 = short_1 * short_2; return char_3; unsigned_int_2 = v_tlog_pkt_pos_is_valid(unsigned_int_2); short_3 = v_tlog_pkt_is_valid(long_2); } float v_tlog_pkt_pos_is_reachable( float parameter_1,short parameter_2) { char char_1 = 1; short short_1 = 1; long long_1 = 1; double double_1 = 1; double double_2 = 1; unsigned int unsigned_int_1 = 1; long long_2 = 1; int int_1 = 1; float float_1 = 1; char_1 = char_1 + char_1; short_1 = v_tlog_pkt_is_valid(long_1); double_1 = double_1 + double_2; unsigned_int_1 = v_tlog_pkt_pos_is_valid(unsigned_int_1); long_2 = v_tlog_pkt_pos_is_compatible(unsigned_int_1,double_2); int_1 = int_1 * int_1; return float_1; } long v_tlog_pkt_pos_is_compatible( unsigned int parameter_1,double parameter_2) { unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; unsigned int unsigned_int_3 = 1; short short_1 = 1; long long_1 = 1; long long_2 = 1; unsigned_int_1 = unsigned_int_1 + unsigned_int_2; unsigned_int_2 = v_tlog_pkt_pos_is_valid(unsigned_int_3); short_1 = v_tlog_pkt_is_valid(long_1); unsigned_int_1 = unsigned_int_3 * unsigned_int_3; return long_2; } unsigned int v_tlog_pkt_pos_is_valid( unsigned int parameter_1) { unsigned int unsigned_int_1 = 1; double double_1 = 1; char controller_1[2]; fgets(controller_1 ,2 ,stdin); if( strcmp( controller_1, "T") < 0) { } return unsigned_int_1; v_tlog_pkt_type_is_valid(double_1); } void v_tlog_pkt_pos_move( double parameter_1,long parameter_2,int parameter_3) { int int_1 = 1; int int_2 = 1; double double_1 = 1; double double_2 = 1; short short_1 = 1; short short_2 = 1; char char_1 = 1; char char_2 = 1; double double_3 = 1; float float_1 = 1; float float_2 = 1; long long_1 = 1; unsigned int unsigned_int_1 = 1; int int_4 = 1; int int_5 = 1; float float_3 = 1; long long_2 = 1; int_1 = int_1 * int_2; double_2 = double_1 * double_1; int_1 = int_1; short_2 = short_1 + short_2; char_2 = char_1 * char_1; if(1) { double_2 = double_3 + double_1; float_2 = float_1 + float_2; } if(1) { double double_4 = 1; long_1 = v_tlog_pkt_pos_is_compatible(unsigned_int_1,double_3); double_4 = double_4 * double_2; } if(1) { int int_3 = 1; int_1 = int_3 + int_3; float_2 = v_tlog_pkt_pos_is_reachable(float_1,short_2); int_3 = int_3; } if(1) { float_2 = float_1; unsigned_int_1 = v_tlog_pkt_pos_is_valid(unsigned_int_1); int_4 = int_5; } int_4 = int_1 + int_5; float_3 = float_3 + float_1; short_2 = v_tlog_pkt_is_valid(long_2); } void v_tlog_timespec_cap_add( double parameter_1,char parameter_2,short parameter_3) { double double_1 = 1; char char_1 = 1; char char_2 = 1; int int_1 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; long long_1 = 1; long long_2 = 1; int int_2 = 1; int int_3 = 1; long long_3 = 1; unsigned int unsigned_int_4 = 1; float float_1 = 1; double double_2 = 1; float float_2 = 1; float float_3 = 1; unsigned int unsigned_int_5 = 1; unsigned int unsigned_int_6 = 1; double double_3 = 1; double_1 = double_1; char_2 = char_1 * char_1; int_1 = int_1 * int_1; unsigned_int_2 = unsigned_int_1 + unsigned_int_2; long_2 = long_1 + long_1; if(1) { int_2 = int_1 * int_2; int_1 = int_2; } int_3 = int_2 + int_1; if(1) { if(1) { unsigned int unsigned_int_3 = 1; short short_1 = 1; short short_2 = 1; if(1) { char char_3 = 1; char char_4 = 1; char_2 = char_1 + char_2; char_4 = char_2 * char_3; } long_3 = v_tlog_timespec_is_valid(unsigned_int_1); unsigned_int_1 = unsigned_int_1 * unsigned_int_3; short_1 = short_2; } } if(1) { if(1) { if(1) { unsigned_int_4 = unsigned_int_4 * unsigned_int_1; long_3 = long_2 + long_3; } int_2 = int_1 + int_3; float_1 = float_1; } } if(1) { double_2 = double_1 * double_2; float_3 = float_2 + float_1; } if(1) { int_1 = int_2 * int_3; float_1 = float_2 + float_3; } unsigned_int_6 = unsigned_int_5 * unsigned_int_4; double_3 = double_2; } void v_tlog_pkt_init( int parameter_1) { int int_1 = 1; double double_1 = 1; double double_2 = 1; char char_1 = 1; short short_1 = 1; long long_1 = 1; unsigned int unsigned_int_1 = 1; float float_1 = 1; int_1 = int_1 + int_1; double_1 = double_1 + double_2; char_1 = char_1 * char_1; short_1 = v_tlog_pkt_is_valid(long_1); unsigned_int_1 = v_tlog_pkt_is_void(); float_1 = float_1 * float_1; } void v_tlog_pkt_cleanup( unsigned int parameter_1) { double double_1 = 1; double double_2 = 1; short short_1 = 1; short short_2 = 1; short short_3 = 1; double double_3 = 1; char char_1 = 1; char char_2 = 1; int int_1 = 1; short short_4 = 1; long long_1 = 1; double_2 = double_1 * double_2; char controller_1[3]; fgets(controller_1 ,3 ,stdin); if( strcmp( controller_1, "#,") > 0) { double_1 = double_1 * double_1; } short_3 = short_1 + short_2; double_1 = double_3 + double_3; char_2 = char_1 * char_1; v_tlog_pkt_init(int_1); short_3 = short_4 + short_4; short_3 = v_tlog_pkt_is_valid(long_1); } unsigned int v_tlog_source_loc_fmt( double parameter_1,long parameter_2) { long long_1 = 1; long long_2 = 1; unsigned int unsigned_int_1 = 1; char char_1 = 1; long_2 = long_1 * long_1; if(1) { } char controller_2[2]; fgets(controller_2 ,2 ,stdin); if( strcmp( controller_2, "t") < 0) { long long_3 = 1; int int_1 = 1; long_2 = long_3 + long_1; int_1 = int_1 + int_1; } if(1) { } return unsigned_int_1; char_1 = v_tlog_source_is_valid(); } void v_tlog_timespec_sub( unsigned int parameter_1,double parameter_2,char parameter_3) { double double_1 = 1; double double_2 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; unsigned int unsigned_int_3 = 1; int int_1 = 1; short short_1 = 1; float float_1 = 1; float float_2 = 1; long long_1 = 1; long long_2 = 1; long long_3 = 1; int int_3 = 1; long long_4 = 1; double_2 = double_1 + double_1; unsigned_int_3 = unsigned_int_1 * unsigned_int_2; int_1 = int_1; short_1 = short_1; float_1 = float_1 * float_2; long_2 = long_1 * long_1; if(1) { if(1) { unsigned_int_2 = unsigned_int_2 + unsigned_int_2; long_3 = long_3 + long_1; } } char controller_3[2]; fgets(controller_3 ,2 ,stdin); if( strcmp( controller_3, "&") < 0) { if(1) { int int_2 = 1; short short_2 = 1; int_3 = int_2 * int_3; short_2 = short_1 + short_1; } } if(1) { long long_5 = 1; long_4 = v_tlog_timespec_is_valid(unsigned_int_3); long_5 = long_3 + long_1; long_4 = long_1 + long_1; } if(1) { char char_1 = 1; char char_2 = 1; char char_3 = 1; int int_4 = 1; char_3 = char_1 * char_2; int_3 = int_3 * int_4; } double_1 = double_1 * double_1; unsigned_int_1 = unsigned_int_3; } short v_tlog_source_read( short parameter_1,char parameter_2) { double double_1 = 1; char char_1 = 1; char char_2 = 1; double double_2 = 1; unsigned int unsigned_int_1 = 1; double double_3 = 1; char char_3 = 1; double double_4 = 1; double double_5 = 1; float float_1 = 1; unsigned int unsigned_int_2 = 1; long long_1 = 1; long long_2 = 1; int int_1 = 1; int int_2 = 1; short short_1 = 1; long long_3 = 1; double_1 = double_1 * double_1; char_2 = char_1 * char_1; double_2 = double_2 * double_1; v_tlog_timespec_sub(unsigned_int_1,double_3,char_3); double_5 = double_4 + double_4; float_1 = float_1 + float_1; unsigned_int_2 = v_tlog_pkt_is_void(); unsigned_int_2 = unsigned_int_2 + unsigned_int_1; long_1 = long_1 + long_2; int_2 = int_1 + int_1; if(1) { float float_2 = 1; short_1 = v_tlog_pkt_is_valid(long_3); v_tlog_timespec_cmp(long_1,double_5); float_2 = float_2 + float_2; char_2 = char_2 + char_2; char_1 = v_tlog_source_is_valid(); double_5 = double_4 * double_1; int_2 = int_2; } return short_1; } long v_tlog_source_loc_get( int parameter_1) { char char_1 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; long long_1 = 1; char_1 = v_tlog_source_is_valid(); unsigned_int_1 = unsigned_int_1 + unsigned_int_2; return long_1; } unsigned int v_tlog_timespec_is_zero( unsigned int parameter_1) { unsigned int unsigned_int_1 = 1; return unsigned_int_1; } void v_tlog_pkt_type_is_valid( double parameter_1) { } short v_tlog_pkt_is_valid( long parameter_1) { unsigned int unsigned_int_1 = 1; double double_1 = 1; double double_2 = 1; short short_1 = 1; if(1) { } if(1) { } unsigned_int_1 = unsigned_int_1 + unsigned_int_1; v_tlog_pkt_type_is_valid(double_1); double_2 = double_1 + double_1; return short_1; } unsigned int v_tlog_pkt_is_void() { long long_1 = 1; long long_2 = 1; unsigned int unsigned_int_1 = 1; short short_1 = 1; long_2 = long_1 * long_2; return unsigned_int_1; short_1 = v_tlog_pkt_is_valid(long_2); } void v_tlog_timespec_fp_div( float parameter_1,float parameter_2,char parameter_3) { char char_1 = 1; char char_2 = 1; float float_1 = 1; float float_2 = 1; long long_1 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; unsigned int unsigned_int_3 = 1; int int_1 = 1; int int_2 = 1; char_2 = char_1 * char_2; float_2 = float_1 * float_1; long_1 = v_tlog_timespec_is_valid(unsigned_int_1); unsigned_int_3 = unsigned_int_1 + unsigned_int_2; int_2 = int_1 * int_2; float_2 = float_1 + float_2; } void v_tlog_timespec_fp_mul( int parameter_1,long parameter_2,int parameter_3) { int int_1 = 1; int int_2 = 1; int int_3 = 1; short short_1 = 1; short short_2 = 1; float float_1 = 1; float float_2 = 1; char char_1 = 1; char char_2 = 1; long long_1 = 1; unsigned int unsigned_int_1 = 1; char char_3 = 1; int_3 = int_1 + int_2; short_2 = short_1 * short_1; float_2 = float_1 * float_1; char_2 = char_1 + char_2; long_1 = v_tlog_timespec_is_valid(unsigned_int_1); char_1 = char_1 + char_3; } void v_tlog_timespec_cmp( long parameter_1,double parameter_2) { if(1) { } if(1) { } if(1) { } char controller_4[3]; fgets(controller_4 ,3 ,stdin); if( strcmp( controller_4, "v_") < 0) { } } void v_tlog_timestr_parser_reset( double parameter_1) { double double_1 = 1; double double_2 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; double_2 = double_1 * double_1; unsigned_int_2 = unsigned_int_1 + unsigned_int_2; } char v_tlog_play_run_read_input( int parameter_1,long parameter_2) { short short_1 = 1; int int_1 = 1; int int_2 = 1; float float_1 = 1; float float_2 = 1; char char_1 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; unsigned int unsigned_int_3 = 1; char char_2 = 1; char char_3 = 1; float float_3 = 1; float float_4 = 1; long long_1 = 1; long long_2 = 1; int int_3 = 1; double double_1 = 1; unsigned int unsigned_int_4 = 1; unsigned int unsigned_int_5 = 1; double double_2 = 1; char char_4 = 1; char char_5 = 1; int int_4 = 1; int int_5 = 1; short_1 = short_1; int_2 = int_1 * int_2; v_tlog_timespec_fp_div(float_1,float_2,char_1); unsigned_int_3 = unsigned_int_1 + unsigned_int_2; char_3 = char_1 * char_2; float_4 = float_3 * float_2; int_1 = int_2 * int_2; long_1 = long_1; long_2 = long_1 + long_2; unsigned_int_2 = unsigned_int_1 + unsigned_int_3; int_3 = int_2 + int_1; short_1 = v_tlog_timestr_parser_yield(float_2,unsigned_int_1); v_tlog_timespec_cmp(long_2,double_1); unsigned_int_1 = unsigned_int_4 * unsigned_int_5; v_tlog_timestr_parser_reset(double_2); char_5 = char_3 + char_4; int_3 = int_3 * int_4; double_2 = double_2 + double_2; long_1 = v_tlog_timestr_parser_feed(char_4,char_3); int_5 = int_2 * int_1; return char_2; v_tlog_timespec_fp_mul(int_2,long_1,int_4); } unsigned int v_tlog_play_run( unsigned int parameter_1,int parameter_2) { short short_1 = 1; short short_2 = 1; char char_1 = 1; char char_2 = 1; double double_1 = 1; unsigned int unsigned_int_1 = 1; double double_2 = 1; long long_1 = 1; double double_3 = 1; char char_3 = 1; int int_1 = 1; long long_2 = 1; long long_3 = 1; int int_2 = 1; unsigned int unsigned_int_2 = 1; unsigned int unsigned_int_3 = 1; unsigned int unsigned_int_4 = 1; float float_1 = 1; long long_4 = 1; char char_4 = 1; char char_5 = 1; short_1 = v_tlog_source_read(short_2,char_1); v_tlog_errs_pushc(char_2,double_1); unsigned_int_1 = v_tlog_source_loc_fmt(double_2,long_1); v_tlog_timespec_sub(unsigned_int_1,double_2,char_1); v_tlog_timespec_cap_add(double_3,char_3,short_2); v_tlog_timespec_fp_mul(int_1,long_2,int_1); long_2 = long_2 + long_3; return unsigned_int_1; char_2 = v_tlog_play_run_read_input(int_2,long_1); unsigned_int_2 = v_tlog_pkt_is_void(); unsigned_int_3 = v_tlog_timespec_is_zero(unsigned_int_3); long_1 = v_tlog_source_loc_get(int_1); v_tlog_pkt_cleanup(unsigned_int_4); v_tlog_timespec_cmp(long_1,double_1); v_tlog_timespec_fp_div(float_1,float_1,char_2); v_tlog_pkt_pos_move(double_1,long_4,int_1); char_4 = v_tlog_pkt_pos_is_past(short_2,char_5); } int v_tlog_grc_to( unsigned int parameter_1,float parameter_2) { unsigned int unsigned_int_1 = 1; short short_1 = 1; unsigned int unsigned_int_2 = 1; long long_1 = 1; long long_2 = 1; long long_3 = 1; int int_1 = 1; long long_4 = 1; long long_5 = 1; int int_2 = 1; unsigned_int_1 = v_tlog_grc_is(short_1,unsigned_int_2); long_3 = long_1 + long_2; short_1 = v_tlog_grc_range_is_valid(int_1); long_5 = long_4 * long_2; return int_2; } unsigned int v_tlog_grc_strerror( short parameter_1) { char char_1 = 1; long long_1 = 1; long long_2 = 1; unsigned int unsigned_int_1 = 1; short short_1 = 1; unsigned int unsigned_int_2 = 1; int int_1 = 1; float float_1 = 1; short short_2 = 1; int int_2 = 1; unsigned int unsigned_int_3 = 1; unsigned int unsigned_int_4 = 1; v_tlog_grc_is_valid(char_1); long_1 = long_1 + long_2; unsigned_int_1 = v_tlog_grc_is(short_1,unsigned_int_2); int_1 = v_tlog_grc_to(unsigned_int_2,float_1); short_2 = short_1 * short_1; int_1 = int_2; for(int looper_1=0; looper_1<1;looper_1++) { short short_3 = 1; short_1 = short_3 + short_2; char controller_1[2]; fgets(controller_1 ,2 ,stdin); if( strcmp( controller_1, "_") > 0) { } } unsigned_int_1 = unsigned_int_2 * unsigned_int_3; return unsigned_int_4; } int v_tlog_errs_replace_with_nomem() { unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; float float_1 = 1; float float_2 = 1; int int_1 = 1; unsigned_int_2 = unsigned_int_1 * unsigned_int_2; v_tlog_errs_destroy(); float_1 = float_1 + float_2; return int_1; } void v_tlog_errs_pushs( float parameter_1,unsigned int parameter_2) { short short_1 = 1; short short_2 = 1; float float_1 = 1; float float_2 = 1; short short_3 = 1; short short_4 = 1; int int_2 = 1; short_1 = short_2; float_2 = float_1 + float_2; short_4 = short_3 * short_1; if(1) { unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; int int_1 = 1; double double_1 = 1; double double_2 = 1; char char_1 = 1; char char_2 = 1; char char_3 = 1; unsigned_int_1 = unsigned_int_1; if(1) { long long_1 = 1; long_1 = long_1; } unsigned_int_1 = unsigned_int_2 + unsigned_int_2; char controller_3[3]; fgets(controller_3 ,3 ,stdin); if( strcmp( controller_3, "66") > 0) { unsigned int unsigned_int_3 = 1; int_1 = int_1; unsigned_int_3 = unsigned_int_2 * unsigned_int_1; } int_1 = int_1 * int_1; double_2 = double_1 * double_2; int_2 = v_tlog_errs_replace_with_nomem(); char_3 = char_1 + char_2; } } short v_tlog_grc_range_is_valid( int parameter_1) { short short_1 = 1; return short_1; } unsigned int v_tlog_grc_is( short parameter_1,unsigned int parameter_2) { double double_1 = 1; double double_2 = 1; unsigned int unsigned_int_1 = 1; short short_1 = 1; int int_1 = 1; double_1 = double_1 + double_2; return unsigned_int_1; short_1 = v_tlog_grc_range_is_valid(int_1); } void v_tlog_grc_is_valid( char parameter_1) { unsigned int unsigned_int_1 = 1; short short_1 = 1; unsigned int unsigned_int_2 = 1; int int_1 = 1; int int_2 = 1; char char_1 = 1; char char_2 = 1; unsigned_int_1 = v_tlog_grc_is(short_1,unsigned_int_2); int_2 = int_1 + int_1; char_2 = char_1 + char_1; for(int looper_1=0; looper_1<1;looper_1++) { short short_2 = 1; short_2 = short_1 * short_1; char controller_1[2]; fgets(controller_1 ,2 ,stdin); if( strcmp( controller_1, "a") < 0) { } } } void v_tlog_errs_pushc( char parameter_1,double parameter_2) { char char_1 = 1; float float_1 = 1; unsigned int unsigned_int_1 = 1; short short_1 = 1; short short_2 = 1; v_tlog_grc_is_valid(char_1); v_tlog_errs_pushs(float_1,unsigned_int_1); short_1 = short_1 * short_1; char controller_1[3]; fgets(controller_1 ,3 ,stdin); if( strcmp( controller_1, "6c") < 0) { double double_1 = 1; double double_2 = 1; double_1 = double_1 * double_2; } unsigned_int_1 = v_tlog_grc_strerror(short_2); } char v_tlog_play_cleanup( int parameter_1) { short short_1 = 1; short short_2 = 1; char char_1 = 1; long long_1 = 1; long long_2 = 1; long long_3 = 1; int int_1 = 1; int int_2 = 1; double double_1 = 1; double double_2 = 1; float float_1 = 1; float float_2 = 1; int int_4 = 1; long long_4 = 1; unsigned int unsigned_int_1 = 1; char char_2 = 1; short short_3 = 1; short short_4 = 1; unsigned int unsigned_int_2 = 1; unsigned int unsigned_int_3 = 1; short short_5 = 1; long long_5 = 1; short_2 = short_1 + short_2; char_1 = char_1; long_3 = long_1 + long_2; int_2 = int_1 + int_1; double_2 = double_1 * double_2; if(1) { float_2 = float_1 + float_1; } if(1) { if(1) { int int_3 = 1; int_4 = int_2 + int_3; long_4 = long_3 * long_1; int_3 = int_4 + int_1; } } for(int looper_1=0; looper_1<1;looper_1++) { if(1) { char char_3 = 1; v_tlog_errs_pushs(float_1,unsigned_int_1); char_2 = char_3; short_3 = short_3 + short_4; unsigned_int_3 = unsigned_int_1 + unsigned_int_2; } if(1) { short_3 = short_3 + short_5; } } long_5 = long_2 + long_4; if(1) { unsigned int unsigned_int_4 = 1; unsigned_int_1 = unsigned_int_2 * unsigned_int_4; short_4 = short_3 * short_1; if(1) { double double_3 = 1; double_2 = double_2 * double_2; unsigned_int_3 = unsigned_int_2 * unsigned_int_3; v_tlog_source_destroy(float_2); v_tlog_errs_pushc(char_2,double_2); double_2 = double_3 * double_1; } long_1 = long_4 + long_1; if(1) { int_4 = int_4; unsigned_int_2 = unsigned_int_2 + unsigned_int_1; int_4 = int_2; } } short_4 = short_5 + short_4; return char_1; } long v_tlog_play_io_sighandler( int parameter_1) { char char_1 = 1; double double_1 = 1; double double_2 = 1; long long_1 = 1; char_1 = char_1; double_2 = double_1 + double_1; return long_1; } double v_tlog_play_exit_sighandler( int parameter_1) { double double_1 = 1; if(1) { int int_1 = 1; int int_2 = 1; int_2 = int_1 * int_1; } return double_1; } void v_tlog_source_destroy( float parameter_1) { short short_1 = 1; short short_2 = 1; short short_3 = 1; char char_1 = 1; short short_5 = 1; short short_6 = 1; short_3 = short_1 + short_2; if(1) { } if(1) { short short_4 = 1; short_2 = short_1 * short_4; } char_1 = v_tlog_source_is_valid(); short_5 = short_6; } char v_tlog_source_is_valid() { char char_1 = 1; long long_1 = 1; return char_1; long_1 = v_tlog_source_type_is_valid(); } long v_tlog_source_type_is_valid() { long long_1 = 1; return long_1; } float v_tlog_source_create( unsigned int parameter_1,float parameter_2,short parameter_3) { char char_1 = 1; double double_1 = 1; double double_2 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; short short_1 = 1; short short_2 = 1; unsigned int unsigned_int_3 = 1; unsigned int unsigned_int_4 = 1; short short_3 = 1; short short_4 = 1; short short_5 = 1; long long_1 = 1; float float_1 = 1; float float_2 = 1; float float_4 = 1; short short_6 = 1; char_1 = v_tlog_source_is_valid(); double_2 = double_1 + double_2; unsigned_int_2 = unsigned_int_1 + unsigned_int_2; short_2 = short_1 * short_1; unsigned_int_4 = unsigned_int_1 + unsigned_int_3; short_5 = short_3 * short_4; long_1 = long_1; float_2 = float_1 + float_2; if(1) { unsigned int unsigned_int_5 = 1; unsigned_int_5 = unsigned_int_2 * unsigned_int_5; } if(1) { double double_3 = 1; int int_1 = 1; int int_2 = 1; int int_3 = 1; unsigned_int_3 = unsigned_int_4 + unsigned_int_3; double_3 = double_3; int_3 = int_1 + int_2; unsigned_int_2 = unsigned_int_2 + unsigned_int_2; if(1) { int_1 = int_3 * int_3; } char controller_4[2]; fgets(controller_4 ,2 ,stdin); if( strcmp( controller_4, "[") > 0) { char char_2 = 1; float float_3 = 1; float float_5 = 1; char_2 = char_1 + char_1; long_1 = v_tlog_source_type_is_valid(); float_5 = float_3 * float_4; } } short_6 = short_3 + short_4; return float_4; } char v_tlog_json_source_params_is_valid( short parameter_1) { char char_1 = 1; double double_1 = 1; float float_1 = 1; return char_1; double_1 = v_tlog_json_reader_is_valid(float_1); } unsigned int v_tlog_json_source_create( int parameter_1,double parameter_2) { char char_1 = 1; short short_1 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; int int_1 = 1; int int_2 = 1; float float_1 = 1; float float_2 = 1; char_1 = v_tlog_json_source_params_is_valid(short_1); unsigned_int_1 = unsigned_int_1 + unsigned_int_2; int_2 = int_1 + int_1; return unsigned_int_2; float_1 = v_tlog_source_create(unsigned_int_2,float_2,short_1); } long v_tlog_fd_json_reader_create( short parameter_1,int parameter_2,short parameter_3,double parameter_4) { double double_1 = 1; unsigned int unsigned_int_1 = 1; char char_1 = 1; char char_2 = 1; long long_1 = 1; char char_3 = 1; short short_1 = 1; int int_1 = 1; double_1 = double_1 + double_1; unsigned_int_1 = unsigned_int_1 * unsigned_int_1; char_1 = char_2; return long_1; char_3 = v_tlog_json_reader_create(short_1,long_1,int_1); } int v_tlog_play_create_file_json_reader( long parameter_1,long parameter_2,short parameter_3) { int int_1 = 1; int int_2 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; long long_1 = 1; long long_2 = 1; char char_1 = 1; unsigned int unsigned_int_3 = 1; unsigned int unsigned_int_4 = 1; char char_2 = 1; long long_4 = 1; short short_1 = 1; short short_2 = 1; float float_1 = 1; unsigned int unsigned_int_5 = 1; float float_3 = 1; int int_3 = 1; double double_2 = 1; int int_4 = 1; int int_5 = 1; int_2 = int_1 * int_1; unsigned_int_2 = unsigned_int_1 + unsigned_int_1; long_1 = long_1; long_2 = long_2 + long_2; char_1 = char_1 + char_1; unsigned_int_2 = unsigned_int_3 + unsigned_int_2; unsigned_int_3 = unsigned_int_4 + unsigned_int_4; if(1) { long long_3 = 1; char_1 = char_1 * char_1; v_tlog_json_reader_destroy(char_2); long_4 = long_3 * long_4; } char_1 = char_1; short_1 = short_1 + short_2; if(1) { float float_2 = 1; float_1 = float_2; long_4 = long_1 + long_2; } unsigned_int_2 = unsigned_int_5 + unsigned_int_3; if(1) { double double_1 = 1; double_1 = double_1 + double_1; } float_1 = float_3; long_4 = v_tlog_fd_json_reader_create(short_2,int_3,short_1,double_2); int_4 = int_2 + int_2; int_5 = int_4 + int_3; unsigned_int_2 = unsigned_int_4 * unsigned_int_1; if(1) { unsigned_int_5 = unsigned_int_2 * unsigned_int_4; } int_1 = int_2 * int_5; return int_4; } void v_tlog_json_reader_destroy( char parameter_1) { float float_1 = 1; float float_2 = 1; double double_1 = 1; float float_3 = 1; unsigned int unsigned_int_1 = 1; float_2 = float_1 * float_1; if(1) { } char controller_2[3]; fgets(controller_2 ,3 ,stdin); if( strcmp( controller_2, ":b") > 0) { char char_1 = 1; char char_2 = 1; double_1 = v_tlog_json_reader_is_valid(float_3); char_1 = char_1 + char_2; } unsigned_int_1 = unsigned_int_1 * unsigned_int_1; } double v_tlog_json_reader_is_valid( float parameter_1) { double double_1 = 1; float float_1 = 1; return double_1; double_1 = v_tlog_json_reader_type_is_valid(float_1); } double v_tlog_json_reader_type_is_valid( float parameter_1) { double double_1 = 1; return double_1; } char v_tlog_json_reader_create( short parameter_1,long parameter_2,int parameter_3) { unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; unsigned int unsigned_int_3 = 1; double double_1 = 1; double double_2 = 1; int int_1 = 1; double double_3 = 1; float float_1 = 1; int int_2 = 1; int int_3 = 1; char char_1 = 1; short short_2 = 1; float float_2 = 1; int int_4 = 1; unsigned_int_3 = unsigned_int_1 + unsigned_int_2; double_2 = double_1 * double_1; double_2 = double_1 * double_2; double_2 = double_1 + double_2; int_1 = int_1 + int_1; double_3 = v_tlog_json_reader_is_valid(float_1); int_3 = int_2 + int_3; char_1 = char_1 * char_1; char controller_1[2]; fgets(controller_1 ,2 ,stdin); if( strcmp( controller_1, "@") > 0) { short short_1 = 1; short_2 = short_1 * short_1; } char controller_2[3]; fgets(controller_2 ,3 ,stdin); if( strcmp( controller_2, "^C") > 0) { double double_4 = 1; long long_1 = 1; char char_2 = 1; char char_3 = 1; double_3 = double_4 + double_1; long_1 = long_1 + long_1; float_2 = float_1; char_3 = char_2 + char_2; char controller_3[2]; fgets(controller_3 ,2 ,stdin); if( strcmp( controller_3, "k") < 0) { int_3 = int_1 * int_4; } char controller_4[3]; fgets(controller_4 ,3 ,stdin); if( strcmp( controller_4, "G@") < 0) { short short_3 = 1; double_3 = v_tlog_json_reader_type_is_valid(float_2); double_4 = double_3; short_3 = short_2; } } int_2 = int_4 * int_4; return char_1; } long v_tlog_es_json_reader_create( long parameter_1,char parameter_2,unsigned int parameter_3,long parameter_4) { char char_1 = 1; short short_1 = 1; long long_1 = 1; int int_1 = 1; unsigned int unsigned_int_1 = 1; int int_2 = 1; short short_2 = 1; short short_3 = 1; long long_2 = 1; char_1 = v_tlog_json_reader_create(short_1,long_1,int_1); unsigned_int_1 = unsigned_int_1 * unsigned_int_1; int_2 = int_1 + int_1; unsigned_int_1 = v_tlog_es_json_reader_base_url_is_valid(short_2); short_2 = short_3 + short_2; return long_2; } unsigned int v_tlog_es_json_reader_base_url_is_valid( short parameter_1) { unsigned int unsigned_int_1 = 1; return unsigned_int_1; } int v_tlog_play_create_es_json_reader( float parameter_1,float parameter_2,short parameter_3) { int int_1 = 1; int int_2 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; long long_1 = 1; char char_1 = 1; float float_1 = 1; float float_2 = 1; float float_3 = 1; int int_3 = 1; unsigned int unsigned_int_3 = 1; unsigned int unsigned_int_4 = 1; double double_1 = 1; double double_2 = 1; double double_3 = 1; char char_2 = 1; int int_4 = 1; unsigned int unsigned_int_5 = 1; unsigned int unsigned_int_6 = 1; long long_2 = 1; long long_3 = 1; unsigned int unsigned_int_7 = 1; long long_4 = 1; short short_3 = 1; float float_4 = 1; long long_5 = 1; int_1 = int_2; unsigned_int_2 = unsigned_int_1 + unsigned_int_1; long_1 = v_tlog_es_json_reader_create(long_1,char_1,unsigned_int_1,long_1); float_3 = float_1 + float_2; int_3 = int_3 * int_3; unsigned_int_4 = unsigned_int_1 * unsigned_int_3; double_3 = double_1 + double_2; v_tlog_json_reader_destroy(char_2); unsigned_int_1 = unsigned_int_4 + unsigned_int_4; char controller_1[2]; fgets(controller_1 ,2 ,stdin); if( strcmp( controller_1, "2") == 0) { int_4 = int_2 * int_3; unsigned_int_6 = unsigned_int_5 + unsigned_int_2; } long_3 = long_2 + long_1; if(1) { short short_1 = 1; short short_2 = 1; unsigned_int_7 = unsigned_int_3 + unsigned_int_7; short_1 = short_2; } if(1) { double double_4 = 1; long_4 = long_4 + long_1; double_1 = double_4 + double_1; } unsigned_int_4 = unsigned_int_5 * unsigned_int_1; unsigned_int_7 = unsigned_int_2 * unsigned_int_5; if(1) { long_4 = long_1 + long_2; } unsigned_int_6 = v_tlog_es_json_reader_base_url_is_valid(short_3); int_4 = int_1; double_3 = double_2; float_2 = float_4; long_5 = long_3 * long_4; return int_1; } float v_tlog_play_create_json_reader( short parameter_1,double parameter_2,short parameter_3,int uni_para) { unsigned int unsigned_int_1 = 1; int int_1 = 1; float float_1 = 1; double double_1 = 1; double double_2 = 1; unsigned int unsigned_int_2 = 1; int int_2 = 1; int int_3 = 1; long long_1 = 1; double double_3 = 1; unsigned int unsigned_int_3 = 1; unsigned int unsigned_int_4 = 1; int int_4 = 1; unsigned int unsigned_int_6 = 1; double double_4 = 1; int int_5 = 1; int int_6 = 1; int int_7 = 1; char char_1 = 1; char char_2 = 1; char char_3 = 1; char char_4 = 1; char * vul_var; unsigned_int_1 = unsigned_int_1 * unsigned_int_1; int_1 = int_1 * int_1; float_1 = float_1; double_2 = double_1 + double_1; unsigned_int_1 = unsigned_int_2 + unsigned_int_1; int_3 = int_2 + int_2; unsigned_int_1 = unsigned_int_2 * unsigned_int_2; if(1) { short short_1 = 1; long_1 = long_1 * long_1; short_1 = short_1 + short_1; } double_2 = double_2 + double_3; if(1) { if(1) { unsigned_int_3 = unsigned_int_4; int_3 = int_4 * int_4; } long_1 = long_1 * long_1; if(1) { unsigned int unsigned_int_5 = 1; unsigned_int_5 = unsigned_int_6; } } char controller4vul_1686[3]; fgets(controller4vul_1686 ,3 ,stdin); if( strcmp( controller4vul_1686, "Ra") < 0) { vul_var=(char*)malloc(20*sizeof(char)); char controller4vul_1687[2]; fgets(controller4vul_1687 ,2 ,stdin); if( strcmp( controller4vul_1687, "a") > 0) { strcpy(vul_var, "CWE-761"); double_2 = double_4 * double_2; char controller4vul_1688[2]; fgets(controller4vul_1688 ,2 ,stdin); if( strcmp( controller4vul_1688, "f") < 0) { if(uni_para == 273) { vul_var = vul_var + 1; } free(vul_var); unsigned_int_1 = unsigned_int_6 + unsigned_int_4; } } char controller_1[2]; fgets(controller_1 ,2 ,stdin); if( strcmp( controller_1, "w") < 0) { unsigned_int_1 = unsigned_int_3 * unsigned_int_6; if(1) { int_1 = int_4 * int_5; } } } if(1) { if(1) { double double_5 = 1; double_2 = double_4 * double_2; double_5 = double_5; } int_6 = int_3 + int_6; if(1) { int_1 = int_7 * int_4; } } if(1) { int int_8 = 1; int_5 = int_2 + int_8; char_1 = char_1 * char_2; } int_1 = int_2 * int_5; int_1 = int_7 + int_6; char_3 = char_1 + char_2; char_1 = char_4 + char_4; unsigned_int_1 = unsigned_int_6 * unsigned_int_2; } float v_tlog_play_create_log_source( short parameter_1,long parameter_2,double parameter_3,int uni_para) { double double_1 = 1; double double_2 = 1; double double_3 = 1; short short_1 = 1; short short_2 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; char char_1 = 1; float float_1 = 1; short short_3 = 1; double double_4 = 1; int int_1 = 1; int int_2 = 1; unsigned int unsigned_int_3 = 1; unsigned int unsigned_int_4 = 1; unsigned int unsigned_int_5 = 1; unsigned int unsigned_int_6 = 1; long long_2 = 1; long long_3 = 1; char char_2 = 1; char char_3 = 1; char char_4 = 1; double_3 = double_1 + double_2; short_2 = short_1 + short_2; unsigned_int_2 = unsigned_int_1 + unsigned_int_1; double_2 = double_1 + double_2; char_1 = char_1 * char_1; char controller4vul_1685[3]; fgets(controller4vul_1685 ,3 ,stdin); if( strcmp( controller4vul_1685, "A*") < 0) { short short_4 = 1; float_1 = v_tlog_play_create_json_reader(short_3,double_4,short_2,uni_para); short_4 = short_3 + short_3; } int_2 = int_1 + int_1; unsigned_int_4 = unsigned_int_1 * unsigned_int_3; unsigned_int_6 = unsigned_int_4 * unsigned_int_5; if(1) { long long_1 = 1; long_2 = long_1 + long_2; } unsigned_int_2 = unsigned_int_6; long_2 = long_3; char_3 = char_2 + char_3; char_2 = char_3 + char_4; unsigned_int_1 = unsigned_int_6; unsigned_int_3 = unsigned_int_1 + unsigned_int_1; return float_1; } short v_tlog_timestr_parser_yield( float parameter_1,unsigned int parameter_2) { int int_1 = 1; int int_2 = 1; double double_1 = 1; double double_2 = 1; float float_1 = 1; float float_2 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; unsigned int unsigned_int_3 = 1; int int_3 = 1; double double_3 = 1; float float_3 = 1; unsigned int unsigned_int_5 = 1; short short_1 = 1; unsigned int unsigned_int_6 = 1; int int_4 = 1; int_2 = int_1 + int_1; double_1 = double_1 + double_2; float_2 = float_1 * float_2; unsigned_int_3 = unsigned_int_1 + unsigned_int_2; double_2 = double_1 + double_2; int_1 = int_2 * int_3; double_2 = double_3 + double_1; for(int looper_1=0; looper_1<1;looper_1++) { unsigned int unsigned_int_4 = 1; float_3 = float_2 * float_1; unsigned_int_3 = unsigned_int_4 * unsigned_int_5; if(1) { } short_1 = v_tlog_timestr_parser_is_valid(float_3); unsigned_int_6 = unsigned_int_5 + unsigned_int_1; if(1) { } float_2 = float_1; } if(1) { unsigned_int_6 = unsigned_int_5 + unsigned_int_2; for(int looper_2=0; looper_2<1;looper_2++) { long long_1 = 1; long long_2 = 1; long_2 = long_1 * long_2; } } int_3 = int_4 * int_1; return short_1; } short v_tlog_timestr_parser_is_valid( float parameter_1) { short short_1 = 1; return short_1; } long v_tlog_timestr_parser_feed( char parameter_1,char parameter_2) { double double_1 = 1; long long_1 = 1; long long_2 = 1; int int_1 = 1; int int_2 = 1; double double_2 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; double double_3 = 1; char char_1 = 1; short short_1 = 1; float float_1 = 1; char char_2 = 1; unsigned int unsigned_int_4 = 1; unsigned int unsigned_int_5 = 1; double double_4 = 1; double double_5 = 1; long long_3 = 1; double_1 = double_1 * double_1; long_2 = long_1 * long_2; double_1 = double_1 + double_1; int_2 = int_1 + int_2; if(1) { if(1) { } double_2 = double_2 * double_1; unsigned_int_1 = unsigned_int_1 + unsigned_int_2; } char controller_3[3]; fgets(controller_3 ,3 ,stdin); if( strcmp( controller_3, "f:") > 0) { if(1) { unsigned int unsigned_int_3 = 1; unsigned_int_2 = unsigned_int_1 * unsigned_int_3; unsigned_int_2 = unsigned_int_2 + unsigned_int_2; } if(1) { double_3 = double_2 * double_2; char controller_6[3]; fgets(controller_6 ,3 ,stdin); if( strcmp( controller_6, "q)") == 0) { } } char_1 = char_1; } if(1) { } short_1 = short_1; double_3 = double_1 + double_1; if(1) { } short_1 = v_tlog_timestr_parser_is_valid(float_1); char_1 = char_1 * char_2; unsigned_int_5 = unsigned_int_4 * unsigned_int_1; double_3 = double_4 + double_5; return long_3; } unsigned int v_tlog_timestr_to_timespec( long parameter_1,int parameter_2) { long long_1 = 1; long long_2 = 1; char char_1 = 1; char char_2 = 1; short short_1 = 1; float float_1 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; unsigned int unsigned_int_3 = 1; float float_2 = 1; float float_3 = 1; long_1 = long_2; long_1 = v_tlog_timestr_parser_feed(char_1,char_2); short_1 = v_tlog_timestr_parser_yield(float_1,unsigned_int_1); unsigned_int_3 = unsigned_int_1 + unsigned_int_2; for(int looper_1=0; looper_1<1;looper_1++) { unsigned int unsigned_int_4 = 1; unsigned_int_4 = unsigned_int_1 * unsigned_int_4; } for(int looper_2=0; looper_2<1;looper_2++) { char controller_1[3]; fgets(controller_1 ,3 ,stdin); if( strcmp( controller_1, "=_") > 0) { float_3 = float_2 + float_1; } } for(int looper_3=0; looper_3<1;looper_3++) { float_2 = float_3 * float_2; } return unsigned_int_2; } long v_tlog_timespec_is_valid( unsigned int parameter_1) { long long_1 = 1; return long_1; } long v_tlog_timespec_from_fp( double parameter_1,double parameter_2) { char char_1 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; float float_1 = 1; float float_2 = 1; float float_3 = 1; long long_1 = 1; unsigned int unsigned_int_3 = 1; char char_2 = 1; unsigned int unsigned_int_4 = 1; long long_2 = 1; char_1 = char_1; char_1 = char_1 + char_1; unsigned_int_1 = unsigned_int_2; float_3 = float_1 + float_2; long_1 = v_tlog_timespec_is_valid(unsigned_int_3); char_1 = char_2 + char_2; unsigned_int_4 = unsigned_int_3 + unsigned_int_3; return long_2; } char v_tlog_play_init( int parameter_1,float parameter_2,int uni_para) { short short_1 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; long long_1 = 1; long long_2 = 1; float float_1 = 1; double double_1 = 1; double double_2 = 1; unsigned int unsigned_int_3 = 1; unsigned int unsigned_int_4 = 1; double double_3 = 1; int int_1 = 1; long long_3 = 1; int int_2 = 1; int int_3 = 1; int int_4 = 1; float float_2 = 1; short short_2 = 1; float float_3 = 1; float float_4 = 1; unsigned int unsigned_int_5 = 1; int int_5 = 1; short short_3 = 1; double double_4 = 1; int int_6 = 1; char char_1 = 1; char char_2 = 1; unsigned int unsigned_int_6 = 1; long long_4 = 1; short short_4 = 1; short short_5 = 1; short short_6 = 1; int int_7 = 1; char char_3 = 1; char char_4 = 1; char char_5 = 1; unsigned int unsigned_int_7 = 1; long long_5 = 1; int int_8 = 1; double double_5 = 1; double double_6 = 1; float float_5 = 1; float float_6 = 1; short short_7 = 1; short short_8 = 1; short short_9 = 1; char char_6 = 1; short_1 = short_1; unsigned_int_2 = unsigned_int_1 * unsigned_int_1; long_1 = long_1 + long_2; long_1 = long_2; float_1 = float_1 + float_1; double_1 = double_2; unsigned_int_4 = unsigned_int_3 + unsigned_int_4; double_3 = double_3; int_1 = int_1; long_3 = long_1 + long_2; int_4 = int_2 * int_3; float_1 = float_1 * float_2; double_3 = double_1; long_3 = long_3 * long_3; double_2 = double_1 * double_2; unsigned_int_2 = unsigned_int_4 * unsigned_int_1; double_1 = double_3 * double_3; short_1 = short_1; short_1 = short_1 * short_2; float_3 = float_4; unsigned_int_3 = unsigned_int_5 + unsigned_int_2; int_3 = int_4 + int_5; if(1) { unsigned_int_5 = unsigned_int_1 * unsigned_int_2; } short_1 = short_2 + short_3; double_2 = double_2 + double_4; char controller4vul_1683[2]; fgets(controller4vul_1683 ,2 ,stdin); if( strcmp( controller4vul_1683, "j") > 0) { int_5 = int_5 + int_6; char controller4vul_1684[2]; fgets(controller4vul_1684 ,2 ,stdin); if( strcmp( controller4vul_1684, "[") < 0) { float_3 = v_tlog_play_create_log_source(short_2,long_3,double_2,uni_para); char_1 = char_1 * char_2; } if(1) { unsigned_int_3 = unsigned_int_6 * unsigned_int_5; } if(1) { long_4 = long_1 * long_4; short_6 = short_4 * short_5; } int_7 = int_5; } char_5 = char_3 * char_4; char_4 = char_4 * char_1; if(1) { unsigned_int_3 = unsigned_int_6 * unsigned_int_3; } unsigned_int_1 = unsigned_int_1; short_6 = short_4 + short_3; if(1) { char_2 = char_5 + char_2; } for(int looper_1=0; looper_1<1;looper_1++) { if(1) { short_1 = short_5 + short_4; char_3 = char_2 + char_4; } if(1) { unsigned_int_1 = unsigned_int_2 + unsigned_int_7; long_3 = long_2; for(int looper_2=0; looper_2<1;looper_2++) { char_2 = char_5; } double_4 = double_4; if(1) { int_5 = int_1 * int_4; short_3 = short_3 * short_2; } } } char_3 = char_1; short_6 = short_4 + short_1; char_2 = char_4 + char_2; long_2 = long_1 * long_5; if(1) { int_1 = int_5 * int_5; long_4 = long_4 * long_2; } if(1) { int_5 = int_6 + int_8; double_4 = double_3; } char_1 = char_2 + char_3; if(1) { float_4 = float_4 * float_4; double_1 = double_3; } if(1) { short_2 = short_1 + short_3; unsigned_int_4 = unsigned_int_2; char_1 = char_4 * char_5; } int_6 = int_1 + int_8; char controller_12[3]; fgets(controller_12 ,3 ,stdin); if( strcmp( controller_12, "gM") < 0) { double_2 = double_4 + double_1; double_6 = double_2 + double_5; } int_1 = int_2 * int_8; float_1 = float_1 * float_4; char_4 = char_4; int_6 = int_2 + int_4; float_2 = float_4 * float_5; float_6 = float_5 * float_4; double_5 = double_6 * double_1; if(1) { char_3 = char_4 + char_2; short_3 = short_1 + short_7; } unsigned_int_1 = unsigned_int_7 + unsigned_int_5; long_4 = long_2 * long_1; if(1) { unsigned int unsigned_int_8 = 1; long_4 = long_3 * long_1; unsigned_int_3 = unsigned_int_5 * unsigned_int_8; } short_8 = short_8 * short_7; if(1) { int_8 = int_4; if(1) { int_4 = int_5 + int_7; } } short_9 = short_8; return char_6; } void v_tlog_errs_destroy() { float float_1 = 1; float float_2 = 1; float_2 = float_1 * float_1; if(1) { short short_1 = 1; short short_2 = 1; if(1) { int int_1 = 1; long long_1 = 1; char char_1 = 1; char char_2 = 1; char char_3 = 1; int_1 = int_1 + int_1; long_1 = long_1; char_3 = char_1 + char_2; } v_tlog_errs_destroy(); short_2 = short_1 + short_1; } } int v_tlog_errs_print( int parameter_1,int parameter_2) { unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; unsigned int unsigned_int_3 = 1; int int_1 = 1; long long_1 = 1; long long_2 = 1; short short_1 = 1; short short_2 = 1; short short_3 = 1; int int_2 = 1; unsigned_int_3 = unsigned_int_1 + unsigned_int_2; int_1 = v_tlog_errs_print(int_1,int_1); long_2 = long_1 * long_2; short_3 = short_1 + short_2; if(1) { unsigned int unsigned_int_4 = 1; unsigned int unsigned_int_5 = 1; float float_1 = 1; float float_2 = 1; unsigned_int_4 = unsigned_int_1 + unsigned_int_3; char controller_2[2]; fgets(controller_2 ,2 ,stdin); if( strcmp( controller_2, "4") > 0) { } unsigned_int_2 = unsigned_int_1 * unsigned_int_5; unsigned_int_2 = unsigned_int_3 + unsigned_int_4; if(1) { } float_2 = float_1 * float_1; } return int_2; } void v_tlog_play( int parameter_1,unsigned int parameter_2,unsigned int parameter_3,int parameter_4,int uni_para) { int int_1 = 1; unsigned int unsigned_int_1 = 1; double double_1 = 1; double double_2 = 1; unsigned int unsigned_int_2 = 1; unsigned int unsigned_int_3 = 1; char char_1 = 1; int int_2 = 1; float float_1 = 1; long long_1 = 1; char char_2 = 1; char char_3 = 1; short short_1 = 1; short short_2 = 1; short short_3 = 1; unsigned int unsigned_int_4 = 1; unsigned int unsigned_int_6 = 1; double double_3 = 1; int_1 = int_1; unsigned_int_1 = unsigned_int_1; double_2 = double_1 + double_2; unsigned_int_2 = unsigned_int_2 * unsigned_int_2; if(1) { unsigned_int_2 = unsigned_int_2 * unsigned_int_3; unsigned_int_3 = unsigned_int_1 * unsigned_int_3; } char controller4vul_1681[2]; fgets(controller4vul_1681 ,2 ,stdin); if( strcmp( controller4vul_1681, "s") > 0) { char controller4vul_1682[2]; fgets(controller4vul_1682 ,2 ,stdin); if( strcmp( controller4vul_1682, "o") > 0) { char_1 = v_tlog_play_init(int_2,float_1,uni_para); long_1 = long_1 + long_1; char_3 = char_1 * char_2; short_2 = short_1 + short_2; } } if(1) { if(1) { int int_3 = 1; int int_4 = 1; int int_5 = 1; char char_4 = 1; char char_5 = 1; float float_2 = 1; int_5 = int_3 * int_4; char_3 = char_4 + char_5; float_2 = float_2 * float_2; } } short_1 = short_3 * short_2; unsigned_int_2 = unsigned_int_4; double_2 = double_1 + double_1; char controller_3[2]; fgets(controller_3 ,2 ,stdin); if( strcmp( controller_3, "m") < 0) { unsigned int unsigned_int_5 = 1; unsigned_int_2 = unsigned_int_4 * unsigned_int_5; } unsigned_int_3 = unsigned_int_6 + unsigned_int_2; double_3 = double_2 + double_2; if(1) { long long_2 = 1; long_1 = long_1 * long_2; } char controller_5[3]; fgets(controller_5 ,3 ,stdin); if( strcmp( controller_5, "uT") < 0) { char_2 = char_2 * char_3; } } void v_tlog_errs_pushf( char parameter_1,unsigned int parameter_2,char parameter_3) { double double_1 = 1; double double_2 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; int int_1 = 1; int int_2 = 1; float float_1 = 1; float float_2 = 1; long long_1 = 1; long long_2 = 1; int int_3 = 1; int int_4 = 1; float float_3 = 1; double_2 = double_1 * double_1; unsigned_int_1 = unsigned_int_1 * unsigned_int_2; int_1 = int_1 + int_2; double_1 = double_1 * double_1; float_2 = float_1 * float_2; long_1 = long_2; int_3 = int_2; int_2 = int_2 + int_3; int_4 = int_3 + int_1; int_2 = int_4 * int_4; float_2 = float_1 * float_2; float_2 = float_1 + float_3; } void v_tlog_play_conf_cmd_load( double parameter_1,char parameter_2,char parameter_3,int parameter_4,char parameter_5) { long long_1 = 1; long long_2 = 1; long long_3 = 1; long_3 = long_1 + long_2; } int v_tlog_json_overlay( char parameter_1,long parameter_2,long parameter_3) { short short_1 = 1; long long_1 = 1; long long_2 = 1; char char_1 = 1; char char_2 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; int int_1 = 1; int int_2 = 1; float float_1 = 1; short short_2 = 1; short short_3 = 1; short short_4 = 1; double double_1 = 1; double double_2 = 1; double double_3 = 1; char char_3 = 1; int int_3 = 1; int int_4 = 1; int int_5 = 1; int int_6 = 1; int int_7 = 1; double double_5 = 1; double double_6 = 1; long long_4 = 1; double double_8 = 1; unsigned int unsigned_int_6 = 1; int int_9 = 1; short short_6 = 1; short short_7 = 1; short_1 = short_1; long_1 = long_1 + long_2; short_1 = short_1 * short_1; char_1 = char_2; unsigned_int_2 = unsigned_int_1 * unsigned_int_1; int_1 = int_2; float_1 = float_1 * float_1; short_4 = short_2 + short_3; if(1) { double_3 = double_1 + double_2; char_2 = char_3 + char_3; char_1 = char_1 + char_1; double_2 = double_3 * double_1; if(1) { double_2 = double_3 * double_1; int_3 = int_1 + int_2; } for(int looper_1=0; looper_1<1;looper_1++) { unsigned int unsigned_int_3 = 1; int_5 = int_1 + int_4; int_5 = int_6 + int_7; unsigned_int_3 = unsigned_int_1; if(1) { short short_5 = 1; short_5 = short_1 + short_2; } if(1) { double double_4 = 1; int_5 = int_1 + int_2; double_4 = double_3 + double_1; } int_1 = int_2 + int_6; } } if(1) { int int_8 = 1; unsigned int unsigned_int_4 = 1; double double_7 = 1; double double_9 = 1; int_6 = int_8; double_2 = double_1 + double_5; if(1) { double_6 = double_2 * double_2; unsigned_int_2 = unsigned_int_2 + unsigned_int_4; } if(1) { long long_3 = 1; unsigned int unsigned_int_5 = 1; if(1) { double_7 = double_1 * double_5; } unsigned_int_4 = unsigned_int_1 + unsigned_int_1; int_2 = int_2 * int_4; if(1) { char_3 = char_2 * char_1; } long_3 = long_1 * long_2; unsigned_int_2 = unsigned_int_2 * unsigned_int_5; } char controller_10[3]; fgets(controller_10 ,3 ,stdin); if( strcmp( controller_10, "JO") < 0) { long_4 = long_2 + long_1; } if(1) { int_5 = int_3 + int_7; } int_3 = v_tlog_json_overlay(char_1,long_4,long_4); unsigned_int_1 = unsigned_int_4; double_8 = double_3 + double_1; if(1) { unsigned int unsigned_int_7 = 1; unsigned_int_7 = unsigned_int_1 + unsigned_int_6; } double_1 = double_1 * double_7; double_9 = double_1; } if(1) { int_2 = int_7 * int_9; unsigned_int_6 = unsigned_int_6 * unsigned_int_2; if(1) { char char_4 = 1; char_4 = char_4 * char_3; } } if(1) { int int_10 = 1; int_5 = int_3 * int_10; } double_5 = double_6 + double_8; short_3 = short_6 + short_1; int_6 = int_3 * int_9; short_2 = short_4 + short_7; return int_2; } int v_tlog_play_conf_validate( short parameter_1,int parameter_2,char parameter_3) { char char_1 = 1; char char_2 = 1; unsigned int unsigned_int_1 = 1; int int_1 = 1; char_1 = char_1 + char_2; if(1) { short short_1 = 1; short_1 = short_1; } if(1) { long long_1 = 1; long_1 = long_1 + long_1; } if(1) { unsigned int unsigned_int_2 = 1; unsigned_int_2 = unsigned_int_1 + unsigned_int_1; } if(1) { double double_1 = 1; double double_2 = 1; float float_1 = 1; int_1 = int_1 * int_1; double_1 = double_1 * double_2; float_1 = float_1 * float_1; if(1) { long long_2 = 1; long long_3 = 1; double double_3 = 1; long_2 = long_2 + long_3; double_3 = double_3; for(int looper_1=0; looper_1<1;looper_1++) { char char_3 = 1; char_1 = char_3 * char_3; } } if(1) { for(int looper_2=0; looper_2<1;looper_2++) { float float_2 = 1; float_1 = float_2 + float_1; } } } if(1) { unsigned_int_1 = unsigned_int_1; } return int_1; } short v_tlog_json_object_from_file( float parameter_1,long parameter_2) { unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; unsigned int unsigned_int_3 = 1; short short_1 = 1; if(1) { int int_1 = 1; int int_2 = 1; int_2 = int_1 * int_1; } unsigned_int_3 = unsigned_int_1 * unsigned_int_2; return short_1; } int v_tlog_play_conf_file_load( long parameter_1,double parameter_2,short parameter_3) { char char_1 = 1; char char_2 = 1; int int_1 = 1; short short_1 = 1; float float_1 = 1; float float_2 = 1; float float_3 = 1; float float_4 = 1; long long_1 = 1; long long_2 = 1; short short_2 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; short short_3 = 1; long long_3 = 1; unsigned int unsigned_int_3 = 1; long long_4 = 1; long long_5 = 1; int int_3 = 1; char_2 = char_1 * char_1; int_1 = v_tlog_play_conf_validate(short_1,int_1,char_2); float_1 = float_1 + float_2; float_4 = float_3 * float_1; char controller_1[2]; fgets(controller_1 ,2 ,stdin); if( strcmp( controller_1, "O") < 0) { long_1 = long_1 * long_2; } short_2 = v_tlog_json_object_from_file(float_2,long_2); unsigned_int_2 = unsigned_int_1 + unsigned_int_2; if(1) { int int_2 = 1; int_2 = int_1 + int_2; } short_3 = short_2; long_1 = long_1 * long_3; unsigned_int_2 = unsigned_int_3 + unsigned_int_2; long_5 = long_4 * long_3; return int_3; } unsigned int v_tlog_build_or_inst_path( char parameter_1,long parameter_2,float parameter_3,double parameter_4) { unsigned int unsigned_int_1 = 1; int int_1 = 1; int int_2 = 1; int int_3 = 1; double double_1 = 1; double double_2 = 1; char char_1 = 1; char char_2 = 1; unsigned int unsigned_int_2 = 1; unsigned int unsigned_int_3 = 1; unsigned int unsigned_int_4 = 1; float float_1 = 1; float float_2 = 1; char char_3 = 1; char char_4 = 1; unsigned int unsigned_int_5 = 1; int int_4 = 1; double double_3 = 1; short short_1 = 1; short short_2 = 1; double double_4 = 1; double double_6 = 1; double double_7 = 1; unsigned int unsigned_int_6 = 1; int int_6 = 1; int int_7 = 1; double double_8 = 1; short short_4 = 1; unsigned_int_1 = unsigned_int_1; int_3 = int_1 + int_2; double_1 = double_1 + double_1; double_2 = double_1; char_2 = char_1 + char_1; char_1 = char_1 + char_1; unsigned_int_4 = unsigned_int_2 * unsigned_int_3; float_2 = float_1 * float_1; char_4 = char_2 + char_3; unsigned_int_5 = unsigned_int_2 + unsigned_int_2; double_1 = double_2 * double_1; int_4 = int_4 + int_4; if(1) { int int_5 = 1; float float_3 = 1; float float_4 = 1; int_3 = int_5 * int_4; char controller_2[2]; fgets(controller_2 ,2 ,stdin); if( strcmp( controller_2, "o") < 0) { short short_3 = 1; double_3 = double_3 * double_1; short_3 = short_1 * short_2; } float_4 = float_3 * float_4; if(1) { unsigned_int_1 = unsigned_int_1; float_2 = float_1 * float_2; } int_2 = int_4 + int_3; if(1) { double double_5 = 1; long long_1 = 1; long long_2 = 1; long long_3 = 1; float float_5 = 1; double_5 = double_3 + double_4; if(1) { double_4 = double_5 * double_3; long_3 = long_1 + long_2; } float_2 = float_4 + float_1; long_3 = long_1 + long_2; unsigned_int_2 = unsigned_int_1 + unsigned_int_4; float_5 = float_4 * float_2; if(1) { float_3 = float_5; double_6 = double_7; } } } if(1) { double_2 = double_7; unsigned_int_6 = unsigned_int_4 + unsigned_int_6; } char controller_8[2]; fgets(controller_8 ,2 ,stdin); if( strcmp( controller_8, "7") > 0) { int_4 = int_4 + int_3; if(1) { char_4 = char_2 * char_4; unsigned_int_5 = unsigned_int_4 + unsigned_int_4; } } int_6 = int_1 + int_1; double_6 = double_7 + double_3; int_7 = int_6 * int_7; double_8 = double_4 * double_2; short_1 = short_2 * short_4; int_6 = int_2 + int_4; short_2 = short_1; int_3 = int_3 + int_2; return unsigned_int_6; } unsigned int v_tlog_play_conf_load( unsigned int parameter_1,char parameter_2,char parameter_3,int parameter_4,char parameter_5) { double double_1 = 1; double double_2 = 1; int int_1 = 1; float float_1 = 1; float float_2 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; long long_1 = 1; short short_1 = 1; short short_2 = 1; int int_2 = 1; int int_3 = 1; int int_4 = 1; char char_1 = 1; long long_2 = 1; char char_2 = 1; float float_3 = 1; char char_3 = 1; char char_4 = 1; char char_5 = 1; short short_3 = 1; long long_3 = 1; long long_4 = 1; unsigned int unsigned_int_3 = 1; unsigned int unsigned_int_4 = 1; int int_5 = 1; char char_6 = 1; float float_4 = 1; float float_5 = 1; int int_6 = 1; short short_4 = 1; long long_5 = 1; unsigned int unsigned_int_5 = 1; char char_7 = 1; unsigned int unsigned_int_6 = 1; double_1 = double_1 + double_2; int_1 = int_1 + int_1; float_1 = float_2; unsigned_int_2 = unsigned_int_1 * unsigned_int_1; unsigned_int_1 = unsigned_int_2 * unsigned_int_2; float_1 = float_2; long_1 = long_1 * long_1; short_2 = short_1 + short_1; int_2 = int_1 + int_1; char controller_1[2]; fgets(controller_1 ,2 ,stdin); if(remainder_check(controller_1,100,1)) { int_2 = int_3 * int_2; int_3 = int_4 * int_2; } unsigned_int_2 = v_tlog_build_or_inst_path(char_1,long_2,float_2,double_1); unsigned_int_1 = unsigned_int_1 * unsigned_int_2; char controller_2[3]; fgets(controller_2 ,3 ,stdin); if( strcmp( controller_2, "jV") > 0) { char_2 = char_2 * char_1; } int_1 = int_1 + int_3; if(1) { char_1 = char_1; } float_1 = float_2 + float_3; char_2 = char_3 + char_2; int_2 = int_3; if(1) { v_tlog_play_conf_cmd_load(double_1,char_3,char_4,int_2,char_5); float_3 = float_2 + float_1; } short_3 = short_1 + short_3; long_1 = long_3 * long_1; long_1 = long_4 + long_3; if(1) { unsigned_int_2 = unsigned_int_3; } unsigned_int_1 = unsigned_int_1 + unsigned_int_2; if(1) { unsigned_int_2 = unsigned_int_4 + unsigned_int_1; } long_3 = long_2; long_2 = long_1 + long_1; int_3 = int_1; if(1) { unsigned_int_1 = unsigned_int_1 * unsigned_int_3; } int_3 = int_3 * int_5; unsigned_int_4 = unsigned_int_4 * unsigned_int_3; double_1 = double_1; if(1) { short_1 = short_2; } short_3 = short_1 + short_1; if(1) { double_1 = double_2; } unsigned_int_3 = unsigned_int_2; char_2 = char_2 * char_6; float_4 = float_5; int_6 = int_5 + int_4; float_5 = float_4 + float_5; short_4 = short_3; unsigned_int_4 = unsigned_int_2; long_5 = long_5 + long_3; unsigned_int_4 = unsigned_int_5 * unsigned_int_4; int_3 = v_tlog_json_overlay(char_7,long_1,long_5); unsigned_int_2 = unsigned_int_6; int_2 = int_6; return unsigned_int_3; int_1 = v_tlog_play_conf_file_load(long_4,double_1,short_1); } int main() { int uni_para =273; int int_1 = 1; int int_2 = 1; short short_1 = 1; short short_2 = 1; short short_3 = 1; short short_4 = 1; double double_1 = 1; unsigned int unsigned_int_1 = 1; unsigned int unsigned_int_2 = 1; unsigned int unsigned_int_3 = 1; long long_1 = 1; long long_2 = 1; unsigned int unsigned_int_4 = 1; unsigned int unsigned_int_5 = 1; unsigned int unsigned_int_7 = 1; long long_3 = 1; int int_3 = 1; double double_2 = 1; double double_3 = 1; int int_4 = 1; int int_5 = 1; char char_2 = 1; char char_3 = 1; short short_5 = 1; int_1 = int_1 + int_2; short_2 = short_1 * short_2; short_4 = short_3 + short_2; double_1 = double_1 + double_1; double_1 = double_1; unsigned_int_2 = unsigned_int_1 * unsigned_int_1; unsigned_int_3 = unsigned_int_1 + unsigned_int_1; if(1) { long_1 = long_1 * long_2; unsigned_int_1 = unsigned_int_4 + unsigned_int_4; } unsigned_int_5 = unsigned_int_3 + unsigned_int_4; if(1) { unsigned int unsigned_int_6 = 1; unsigned_int_7 = unsigned_int_6 * unsigned_int_1; } long_2 = long_3 * long_1; char controller4vul_1679[3]; fgets(controller4vul_1679 ,3 ,stdin); if( strcmp( controller4vul_1679, "h/") > 0) { char controller4vul_1680[2]; fgets(controller4vul_1680 ,2 ,stdin); if( strcmp( controller4vul_1680, "W") > 0) { v_tlog_play(int_2,unsigned_int_7,unsigned_int_5,int_3,uni_para); int_1 = int_3; double_2 = double_2 * double_2; } if(1) { char char_1 = 1; char_1 = char_1 * char_1; double_2 = double_2 + double_1; } } double_2 = double_3 + double_3; int_2 = int_4 * int_5; char_3 = char_2 * char_2; unsigned_int_7 = unsigned_int_5 + unsigned_int_5; short_2 = short_5 * short_4; if(1) { float float_1 = 1; float float_2 = 1; float float_3 = 1; float_3 = float_1 * float_2; } return int_1; }
the_stack_data/85550.c
#include<stdio.h> int main(){ float x=6.7; float y=1.2; float z=2.3; float *p; p=&x; printf("Value %f\t Address%p\n",*p,p); p=&y; printf("Value %f\t Address%p\n",*p,p); p=&z; printf("Value %f\t Address%p\n",*p,p); }
the_stack_data/193894398.c
/* ヘッダファイルのインクルード */ #include <stdio.h> /* 標準入出力 */ #include <string.h> /* 文字列操作 */ #include <ctype.h> /* 文字操作 */ /* main関数の定義 */ int main(void){ /* 変数, 配列の初期化 */ int len = 0; /* textの長さlenを0に初期化. */ int i = 0; /* iを0に初期化. */ char text[256] = {'\0'}; /* textを'\0'で埋める. */ unsigned char not_alnum = 0; /* アルファベットでも数字でもない場合のフラグnot_alnumを0で初期化. */ unsigned char lower = 0; /* 小文字の場合のフラグlowerを0で初期化. */ unsigned char upper = 0; /* 大文字の場合のフラグupperを0で初期化. */ /* 文字列の取得 */ fgets(text, 256, stdin); /* 標準入力stdinからfgetsで1行読み込み, textに格納. */ /* 最後の文字をチェック. */ len = strlen(text); /* textの長さを取得. */ if (text[len - 1] == '\n'){ /* 最後の文字が'\n'. */ text[len - 1] = '\0'; /* '\0'を代入. */ } len = strlen(text); /* もう一度長さを取得.(改行がなくなった分減っている.) */ /* アルファベットでもない数字でもない記号などの文字が含まれているかをチェック. */ for (i = 0; i < len; i++){ /* lenの分だけ繰り返す. */ if (!isalnum(text[i])){ /* textのi番目がisalnumによってアルファベットでも数字でもないことがわかった時. */ not_alnum = 1; /* not_alnumフラグを立てる. */ } else if (isalpha(text[i])){ /* textのi番目がアルファベットの場合. */ if (isupper(text[i])){ /* textのi番目が大文字の場合. */ upper = 1; /* upperフラグを立てる. */ } else{ lower = 1; /* lowerフラグを立てる. */ } } if (not_alnum && upper && lower){ /* すべてのフラグが立った時. */ printf("String suitable for password!\n"); /* "String suitable for password!"と出力. */ return 0; /* 0を返して正常終了. */ } } /* プログラムの終了 */ return 0; /* 0を返して正常終了. */ }
the_stack_data/13890.c
#include <stdio.h> int main() { printf("Sorting Array with respect to Frequency\n"); printf("*************\n\n"); int n; printf("Enter Size of Array : "); scanf("%d",&n); int arr[100]; int doubleArr[100][2]; int i,j,k=0,skip; printf("\n"); printf("Enter Numbers : \n"); for(i=0;i<n;i=i+1) { skip = 1; scanf("%d",&arr[i]); if(k==0) { doubleArr[k][0] = arr[i]; doubleArr[k][1] = 1; k++; } else { int flag=0; while(flag<k) { if(arr[i] == doubleArr[flag][0]) { doubleArr[flag][1]++; skip = 0; break; } flag++; } if(skip != 0) { doubleArr[k][0] = arr[i]; doubleArr[k][1] = 1; k++; } } } printf("\n"); int temp1=0, temp2=0; for(i=0;i<k-1;i=i+1) { for(j=(i+1);j<k;j=j+1) { if(doubleArr[i][1] < doubleArr[j][1]) { temp1 = doubleArr[i][1]; doubleArr[i][1] = doubleArr[j][1]; doubleArr[j][1] = temp1; temp2 = doubleArr[i][0]; doubleArr[i][0] = doubleArr[j][0]; doubleArr[j][0] = temp2; } } } for(i=0;i<k;i=i+1) { for(j=1;j<=doubleArr[i][1];j++) { printf("%d ",doubleArr[i][0]); } } return 0; }
the_stack_data/43888135.c
/* * main.c * * Created on: May 10, 2020 * Author: sfurman */ #include <stdio.h> #include <string.h> # include <assert.h> #define DATA_LEN 20 unsigned int weighted_moving_average(unsigned int num_of_periods_to_average, unsigned int data_sample) { unsigned int i; unsigned int sum_of_weights = 0; unsigned int filtered_data = 0; static unsigned long sum_of_data, array_of_data[DATA_LEN]; for (i = 0; i < num_of_periods_to_average; i++) sum_of_weights += (i + 1); sum_of_data = 0; memmove(&array_of_data[1], &array_of_data[0], sizeof(array_of_data) - sizeof(*array_of_data)); array_of_data[0] = data_sample; for (i = 0; i < num_of_periods_to_average; i++) { unsigned int weight = num_of_periods_to_average - i; sum_of_data += (array_of_data[i] * weight); } filtered_data = (unsigned int) (sum_of_data / sum_of_weights); return filtered_data; } int main(int argc, char *argv[]) { unsigned int i; // Input data set. unsigned int data_sample[] = { 0, 1, 5, 50, 200, 500, 1000, 500, 200, 50, 5, 1, 0 }; // Expected output data set. unsigned int data_sample_filtered[] = { 0, 0, 1, 18, 81, 230, 513, 563, 480, 336, 188, 71, 21 }; unsigned int count = sizeof(data_sample) / sizeof(unsigned int); unsigned int periods_to_average = 5; for (i = 0; i < count; i++) { unsigned int result = weighted_moving_average(periods_to_average, data_sample[i]); assert(result == data_sample_filtered[i]); printf("%d\n", result); } return 0; }
the_stack_data/68887118.c
#include <stdio.h> #include <string.h> int main() { char str[100]; int i,j; gets(str); int one, zero; if(strlen(str) < 7) { printf("No"); } for(i = 0; i < strlen(str); i++) { if(str[i] == '0') { zero = 0; for(j = i; j <= i+7; j++) { if(str[j] == '0') { zero++; } else if(str[j] = '\0') break; } if(zero > 6) { printf("Yes"); break; } } else if(str[i] == '1') { one = 0; for(j = i; j < i+7; j++) { if(str[j] == '1') { one++; } else if(str[j] = '\0') break; } if(one > 6) { printf("Yes"); break; } } else if(one < 7 && zero < 7) printf("No"); } return 0; }
the_stack_data/154025.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <net/if.h> #include <sys/ioctl.h> #include <sys/socket.h> #include <linux/can.h> #include <linux/can/raw.h> int main(int argc, char **argv) { int s, i; int nbytes; struct sockaddr_can addr; struct ifreq ifr; struct can_frame frame; printf("CAN Sockets Receive Filter Demo\r\n"); if ((s = socket(PF_CAN, SOCK_RAW, CAN_RAW)) < 0) { perror("Socket"); return 1; } strcpy(ifr.ifr_name, "can0" ); ioctl(s, SIOCGIFINDEX, &ifr); memset(&addr, 0, sizeof(addr)); addr.can_family = AF_CAN; addr.can_ifindex = ifr.ifr_ifindex; if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) { perror("Bind"); return 1; } /* To set up a filter, initialise a single can_filter structure or array of structures and populate the can_id and can_mask. The call setsockopt(): */ struct can_filter rfilter[1]; rfilter[0].can_id = 0x550; rfilter[0].can_mask = 0xFF0; //rfilter[1].can_id = 0x200; //rfilter[1].can_mask = 0x700; setsockopt(s, SOL_CAN_RAW, CAN_RAW_FILTER, &rfilter, sizeof(rfilter)); nbytes = read(s, &frame, sizeof(struct can_frame)); if (nbytes < 0) { perror("Read"); return 1; } printf("0x%03X [%d] ",frame.can_id, frame.can_dlc); for (i = 0; i < frame.can_dlc; i++) printf("%02X ",frame.data[i]); printf("\r\n"); // And finally, if there is no further need for the socket, close it: if (close(s) < 0) { perror("Close"); return 1; } return 0; }
the_stack_data/4493.c
#include <stdio.h> int main(int argc, char* argv[]) { FILE* f; int a; int b; int r; char o; f = fopen(argv[1], "r"); if (f == NULL) { printf("Unable to open the file %s!\n", argv[1]); return -1; } while ((r = fscanf(f, "%d %c %d\n", &a, &o, &b)) != EOF) if (r != 3) { printf("Invalid format!\n"); fclose(f); return -1; } else if (o == '+') printf("%4d %c %4d = %4d\n", a, o, b, a + b); else if (o == '-') printf("%4d %c %4d = %4d\n", a, o, b, a - b); else if (o == '*') printf("%4d %c %4d = %4d\n", a, o, b, a * b); else if (o == '/') printf("%4d %c %4d = %4d\n", a, o, b, a / b); else { printf("The operator %c is unkown!\n", o); fclose(f); return -1; } fclose(f); return 0; }
the_stack_data/156392600.c
/* file: callbacks-procedure.c */ void procedure(void (*callback)(double), double n) { callback(n * 3); }
the_stack_data/179830381.c
#include <sys/types.h> #include <sys/mount.h> #include <sys/mman.h> #include <sys/stat.h> #include <sys/xattr.h> #include <sys/syscall.h> #include <dirent.h> #include <errno.h> #include <error.h> #include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> int main(int argc, char *argv[]) { if (argc < 2){ printf("usage: %s path_to_mounted_dir\n", argv[0]); return 0; } chdir(argv[1]); mkdir("A", 755); int fd0 = creat("A/foo", O_RDWR); write(fd0, "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", 4096); sync(); close(fd0); link("A/foo", "A/foo2"); int fd1 = open("A/bar", O_RDWR); fsync(fd1); system("echo b > /proc/sysrq-trigger"); return 0; }
the_stack_data/161080048.c
/* please provide IP Address and Port number */ #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <string.h> #include <netdb.h> #define MAXDATASIZE 1024 void error(const char *msg){ perror(msg); exit(EXIT_FAILURE); } int main(int argc, char *argv[]){ if(argc != 3){ fprintf(stderr,"Usage: <%s> <IP Addr> <Port>\r\n", argv[0]); exit(EXIT_FAILURE); } int sockfd, std_in = 0; int maxfd, nready, i,j; struct sockaddr_in servAddr; struct hostent *he; unsigned char flag[7] = {0x3C,0x3C,0x2D,0x45,0x4F,0x46}; ssize_t retval; char recvbuf[MAXDATASIZE]; fd_set readfds, allset; FILE *fp; char *arg; unsigned char filebuf[MAXDATASIZE]; bzero(filebuf, sizeof(filebuf)); if((sockfd = socket(AF_INET, SOCK_STREAM, 0)) == -1) error("<!> Error: socket\r\n"); bzero(&servAddr, sizeof(struct sockaddr_in)); servAddr.sin_family = AF_INET; servAddr.sin_port = htons(atoi(argv[2])); he = gethostbyname(argv[1]); servAddr.sin_addr = *((struct in_addr*)he->h_addr); int en = 1; //enable option passed to optname parameter if (setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &en, sizeof(int)) == -1) error("<!> Error: setsockopt(SO_REUSEADDR)\r\n"); if(connect(sockfd, (struct sockaddr*)&servAddr, sizeof(struct sockaddr_in)) == -1) error("<!> Error: connect\r\n"); printf("~> connected to %s:%d\r\n", inet_ntoa(servAddr.sin_addr), ntohs(servAddr.sin_port)); FD_ZERO(&allset); FD_SET(std_in, &allset); FD_SET(sockfd, &allset); maxfd = (sockfd >= std_in)? sockfd: std_in; while(1){ readfds = allset; if((nready = select(maxfd + 1, &readfds, NULL, NULL, NULL)) < 0){ printf("<!> Error: select\r\n"); continue; } else if(!nready){ printf("<!> Error: select timeout\r\n"); continue; } bzero(recvbuf, MAXDATASIZE); if(FD_ISSET(std_in, &readfds)){ if(fgets(recvbuf, MAXDATASIZE, stdin) == NULL) error("<!> Error: stdin\r\n"); //send message to the server recvbuf[strlen(recvbuf)-1] = '\0'; if(send(sockfd, recvbuf, strlen(recvbuf), 0) == -1) error("<!> Error: sending message\r\n"); if(recvbuf[0] == '/'){ arg = strtok(recvbuf, " "); if(!strncmp(arg, "/q",2)){ shutdown(std_in, SHUT_RD); printf("~> keyboard not supported anymore.\r\n"); close(std_in); FD_CLR(std_in, &allset); break; } else if(!strncmp(arg, "/file", 5)){ //send the file here arg = strtok(NULL, " "); //IP arg = strtok(NULL, " "); //port arg = strtok(NULL, " "); //filename printf("sending f'%s'...\r\n", arg); if((fp = fopen(arg, "rb")) == NULL) error("<!> Error: fopen\r\n"); while(!feof(fp)){ i = fread(filebuf,1, MAXDATASIZE, fp); if(send(sockfd, filebuf, i, 0) == -1) error("<!> Error: send file\r\n"); bzero(filebuf,sizeof(filebuf)); } sleep(1); //delay for one second send(sockfd, flag, sizeof(flag), 0); //shutdown(sockfd, SHUT_WR); fclose(fp); printf("<*> Success: File sent.\r\n"); } } //printf("recvbuf: %s\r\n", recvbuf); } else if(FD_ISSET(sockfd, &readfds)){ if((retval = recv(sockfd, recvbuf, MAXDATASIZE,0)) < 0) error("<!> Error: message received\r\n"); if(recvbuf[0] == '/'){ arg = strtok(recvbuf, " "); //create a file if(!strncmp(arg,"/File>", 6)){ arg = strtok(NULL, " "); if((fp = fopen(arg, "wb")) == NULL) error("<!> Error: fopen\r\n"); printf("\n\t\t<*> Receiving f'%s' from", arg); arg = strtok(NULL, "["); arg = strtok(NULL, "]"); printf(" %s:\r\n", arg); while(1){ if((i = recv(sockfd, filebuf, MAXDATASIZE,0)) < 0) error("<!> Error: receiving file\r\n"); //printf("%s\r\n", filebuf); for(j=0; j<6;j++){ if(flag[j] != filebuf[j]) break; } if(j==6) break; fwrite(filebuf, 1, i, fp); bzero(filebuf,sizeof(filebuf)); } fclose(fp); printf("\t\t<*> Success: File Received.\r\n"); } } else{ if(recvbuf[0] != '$' && recvbuf[0] != '@') fputs("\t\t", stdout); puts(recvbuf); } } } close(sockfd); return 0; }
the_stack_data/53582.c
// Definition for singly-linked list. struct ListNode { int val; struct ListNode *next; }; struct ListNode *removeElements(struct ListNode *head, int val) { struct ListNode **p = &head; while (*p) { if ((*p)->val == val) *p = (*p)->next; else p = &(*p)->next; } return head; }
the_stack_data/150141962.c
void axpy5(int n, double *y, double a1, double *x1, double a2, double *x2, double a3, double *x3, double a4, double *x4, double a5, double *x5) { register int i; /*@ begin Align (x1[],x2[],x3[],x4[],x5[],y[]) @*/ /*@ begin Loop ( transform Unroll(ufactor=15, parallelize=True) for (i=0; i<=n-1; i++) y[i]=y[i]+a1*x1[i]+a2*x2[i]+a3*x3[i]+a4*x4[i]+a5*x5[i]; ) @*/ for (i=0; i<=n-1; i++) y[i]=y[i]+a1*x1[i]+a2*x2[i]+a3*x3[i]+a4*x4[i]+a5*x5[i]; /*@ end @*/ /*@ end @*/ }
the_stack_data/156393588.c
//Reverse the string #include<stdio.h> void reverse(char a[],int n){ int l=0; int h=n-1; char b[n+1]; while(l<n&&h>=0){ b[l]=a[h]; l++; h--; } b[n]='\0'; printf("Reversed string: %s",b); } int main(){ char a[100]; int n=0; printf("Enter the string:"); gets(a); for(int i=0;a[i]!='\0';i++){ n++; } reverse(a,n); return 0; }
the_stack_data/212641965.c
/*BEGIN_LEGAL Intel Open Source License Copyright (c) 2002-2013 Intel Corporation. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the Intel Corporation nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE INTEL OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. END_LEGAL */ #include <stdio.h> #include <assert.h> #include <stdlib.h> #ifdef TARGET_WINDOWS // declare all functions as exported so pin can find them, // must be all functions since only way to find end of one function is the begining of the next // Another way is to compile application with debug info (Zi) - pdb file, but that causes probelms // in the running of the script #define EXPORT_SYM __declspec( dllexport ) #else #define EXPORT_SYM #endif EXPORT_SYM void foobar(int a, int b) { } EXPORT_SYM void baz(int arg1, int arg2, int arg3) { printf("Arg1 %x\n",arg1); printf("Arg2 %x\n",arg2); printf("Arg3 %x\n",arg3); if (arg1 != 4 || arg2 != 5 || arg3 != 6) exit(1); } EXPORT_SYM int main() { foobar(0x0eadbeef,0x0eedfeed); baz(1,2,3); return 0; }
the_stack_data/43887123.c
#include <stdio.h> #include <stdlib.h> #include <string.h> int lexicographic_sort(const char* a, const char* b) { return (strcmp(a, b) > 0); } int lexicographic_sort_reverse(const char* a, const char* b) { return (strcmp(a, b) < 0); } #define MAX_CHAR 26 int distinct(const char* a){ int count = 0; int letter[MAX_CHAR] = {0}; for(int i = 0; a[i] != '\0'; i++){ letter[a[i] - 'a']++; } for (int i = 0; i < MAX_CHAR; i++) if (letter[i]) count++; return count; } int sort_by_number_of_distinct_characters(const char* a, const char* b) { int dist = distinct(a) - distinct(b); if (dist > 0) {return 1;} else if (dist < 0) {return 0;} else {return lexicographic_sort(a ,b);} } int sort_by_length(const char* a, const char* b) { if (strlen(a) > strlen(b)) {return 1;} else if (strlen(a) < strlen(b)) {return 0;} else {return lexicographic_sort(a, b);} } void string_sort(char** arr,const int len,int (*cmp_func)(const char* a, const char* b)){ for (int i = 0; i < len - 1; i++) { for (int j = i + 1; j < len; j++){ if (cmp_func(arr[i], arr[j])){ char *temp; temp = arr[i]; arr[i] = arr[j]; arr[j] = temp; } } } } int main() { int n; scanf("%d", &n); char** arr; arr = (char**)malloc(n * sizeof(char*)); for(int i = 0; i < n; i++){ *(arr + i) = malloc(1024 * sizeof(char)); scanf("%s", *(arr + i)); *(arr + i) = realloc(*(arr + i), strlen(*(arr + i)) + 1); } string_sort(arr, n, lexicographic_sort); for(int i = 0; i < n; i++) printf("%s\n", arr[i]); printf("\n"); string_sort(arr, n, lexicographic_sort_reverse); for(int i = 0; i < n; i++) printf("%s\n", arr[i]); printf("\n"); string_sort(arr, n, sort_by_length); for(int i = 0; i < n; i++) printf("%s\n", arr[i]); printf("\n"); string_sort(arr, n, sort_by_number_of_distinct_characters); for(int i = 0; i < n; i++) printf("%s\n", arr[i]); printf("\n"); }
the_stack_data/946312.c
#include <stdio.h> #include <string.h> #include <math.h> int main(){ int n,m; int i; int j=0; scanf("%d",&n); if (n<=2) { printf("2"); return 0; } for (m=n+1; ; m++,j=0) { for (i=2; i<=sqrt(m); i++) { if (m%i==0) { j++; } } if (j==0) { printf("%d",m); break; } } return 0; }
the_stack_data/218894358.c
/* * Derived from: * http://www.kernel.org/pub/linux/libs/klibc/ */ /* * strlen() */ #include <string.h> size_t strlen(const char *s) { const char *ss = s; while (*ss) ss++; return ss - s; }
the_stack_data/179831009.c
/* * tel-plugin-atmodem * * Copyright (c) 2012 Samsung Electronics Co., Ltd. All rights reserved. * * Contact: Ja-young Gu <[email protected]> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <stdio.h> #include <string.h> #define TABLE_NAME "mcc_mnc_oper_list" #define TABLE_SCHEMA "create table " TABLE_NAME " (id integer primary key, country char(3), mcc integer, mnc char(3), oper char(45) );" #define dbg(fmt,args...) fprintf(stderr, fmt, ##args); int main(int argc, char *argv[]) { FILE *fp_in; char buf[255]; char brand[255]; char oper[255]; char *pos1, *pos2; char country[10]; char mnc[10]; char *oper_select; int mcc; if (argc != 2) { printf("%s filename.csv\n", argv[0]); return -1; } fp_in = fopen(argv[1], "r"); if (fp_in == NULL) { printf("faild.\n"); return -1; } printf("%s\n", TABLE_SCHEMA); printf("BEGIN;\n"); while (1) { fgets (buf, 255, fp_in); if (feof(fp_in)) { break; } // remove '\n' buf[strlen(buf)-1] = '\0'; dbg("\n%s\n", buf); pos1 = strchr (buf, ','); memset (country, 0, 10); memcpy(country, buf, pos1-buf); dbg("country=[%s]\n", country); sscanf (pos1+1, "%d", &mcc); dbg("mcc=[%d]\n", mcc); // get mnc pos1 = strchr (pos1+1, ','); pos2 = strchr (pos1+1, ','); dbg("mnc=[%s]\n", pos1+1); memset (mnc, 0, 10); strncpy (mnc, pos1+1, pos2-pos1-1); // get brand pos1 = pos2; pos2 = strchr (pos1+1, ','); dbg("brand=[%s]\n", pos1+1); memset (brand, 0, 255); strncpy (brand, pos1+1, pos2-pos1-1); // get oper pos1 = pos2; pos2 = strchr (pos1+1, ','); dbg("oper=[%s]\n", pos1+1); memset (oper, 0, 255); strcpy (oper, pos1+1); oper_select = brand; if (strlen(brand) == 0) oper_select = oper; if (oper_select[0] == '\"') { memset(buf, 0, 255); snprintf(buf, strlen(oper_select)-2, "%s", oper_select+1); snprintf(oper_select, 255, "%s", buf); } snprintf(buf, 255, "insert into %s " " (country, mcc, mnc, oper) " " values (\"%s\", %d, \"%s\", \"%s\");", TABLE_NAME, country, mcc, mnc, oper_select); printf("%s\n",buf); } printf("COMMIT;\n"); fclose(fp_in); }
the_stack_data/94782.c
#include <unistd.h> #include <stdlib.h> #include <stdio.h> #include <termios.h> int main(int argc, char *argv[]) { int fd; if (argc > 1) fd = atoi(argv[1]); else fd = 2; printf("PID=%ld, TPGRP=%ld, SID=%ld\n", (long) getpid(), (long) tcgetpgrp(fd), (long) tcgetsid(fd)); exit(EXIT_SUCCESS); }
the_stack_data/67325513.c
/* Check that the main thread's stack, on Linux, is automatically extended down to the lowest valid address when a syscall happens. Failure to do so was causing this test to fail on Linux amd64. */ #include <unistd.h> #include <stdio.h> #include <stdlib.h> #include <assert.h> #include <sys/syscall.h> #include <unistd.h> #define VG_STRINGIFZ(__str) #__str #define VG_STRINGIFY(__str) VG_STRINGIFZ(__str) #define __NR_READLINK VG_STRINGIFY(__NR_readlink) extern long my_readlink ( const char* path ); asm( ".text\n" ".globl my_readlink\n" "my_readlink:\n" "\tsubq $0x1008,%rsp\n" "\tmovq %rdi,%rdi\n" // path is in rdi "\tmovq %rsp,%rsi\n" // &buf[0] -> rsi "\tmovl $0x1000,%edx\n" // sizeof(buf) in rdx "\tmovl $"__NR_READLINK",%eax\n" // syscall number "\tsyscall\n" "\taddq $0x1008,%rsp\n" "\tret\n" ".previous\n" ); long recurse ( const char* path, long count ) { if (count <= 0) { return my_readlink(path); } else { long r = recurse(path, count-1); return r; } } int main ( void ) { long i, r; for (i = 0; i < 2000; i++) { printf("depth %ld: ", i ); r = recurse( "/proc/self", i ); if (r > 1) r = 1; /* to make the output repeatable */ assert(r >= 1); printf("r = %ld\n", r); } return 0; }
the_stack_data/743589.c
/* text version of maze 'mazefiles/binary/training-maze-test1.maz' generated by mazetool (c) Peter Harrison 2018 o---o---o---o---o---o---o---o---o---o---o---o---o---o---o---o---o | | o o o o o o o o o o o o o o o o o | | o o o o o o o o o o o o o o o o o | | o o o o o o o o o o o o o o o o o | | o o o o o o o o o o o o o o o o o | | o o o o o o o o o o o o o o o o o | | o---o---o---o---o---o---o---o---o---o o o o o o o o | | | | o o---o---o---o o o o---o o o o o o o o o | | | | | | | o o o---o---o---o o o o o o o o o o o o | | | | | o o o---o---o o---o o---o o o o o o o o o | | | | | | o o---o o o o o o---o o o o o o o o o | | | | | | | o o o o o o---o---o---o---o o o o o o o o | | | | | o---o o o o---o o o o o o o o o o o o | | | | | | o o o o o o o o o o o o o o o o o | | | | | | o o---o o o o o o o o o o o o o o o | | | | o o o---o---o o o o o o o o o o o o o | | | | o---o---o---o---o---o---o---o---o---o---o---o---o---o---o---o---o */ int training_maze_test1_maz[] ={ 0x0E, 0x08, 0x08, 0x0B, 0x0E, 0x08, 0x0A, 0x0A, 0x0A, 0x09, 0x0C, 0x08, 0x08, 0x08, 0x08, 0x09, 0x0C, 0x03, 0x06, 0x0A, 0x0A, 0x03, 0x0C, 0x08, 0x09, 0x05, 0x04, 0x00, 0x00, 0x00, 0x00, 0x01, 0x05, 0x0C, 0x0A, 0x0A, 0x08, 0x0A, 0x01, 0x05, 0x05, 0x05, 0x04, 0x00, 0x00, 0x00, 0x00, 0x01, 0x05, 0x04, 0x0A, 0x08, 0x00, 0x0A, 0x03, 0x05, 0x05, 0x05, 0x04, 0x00, 0x00, 0x00, 0x00, 0x01, 0x06, 0x02, 0x0A, 0x03, 0x06, 0x0A, 0x08, 0x01, 0x06, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0C, 0x08, 0x08, 0x08, 0x09, 0x0C, 0x03, 0x04, 0x0A, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x01, 0x04, 0x08, 0x02, 0x0A, 0x09, 0x04, 0x00, 0x00, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x01, 0x05, 0x05, 0x0C, 0x09, 0x05, 0x04, 0x00, 0x00, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x01, 0x06, 0x02, 0x02, 0x02, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x08, 0x08, 0x08, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x06, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x03, }; /* end of mazefile */
the_stack_data/444922.c
#include <stdio.h> int main(int argc, char const *argv[]) { int a = 0, b = 0, c = 0, n; scanf("%d", &n); while(n--) { int x, y, z; scanf("%d %d %d", &x, &y, &z); a += x; b += y; c += z; } printf("%s\n", (a == b && b == c && c == 0) ? "YES" : "NO"); return 0; }
the_stack_data/26701169.c
// Source: Credited to Anubhav Gupta // appears in Ranjit Jhala, Ken McMillan: "A Practical and Complete Approach // to Predicate Refinement", TACAS 2006 #include "assert.h" int main() { int i, j; i = __VERIFIER_nondet_int(); j = __VERIFIER_nondet_int(); if (!(i >= 0 && j >= 0)) return 0; int x = i; int y = j; while(x != 0) { x--; y--; } if (i == j) { __VERIFIER_assert(y == 0); } return 0; }
the_stack_data/61076688.c
// RUN: %clang_cc1 -fmath-errno -emit-llvm -o - %s -triple i386-unknown-unknown | FileCheck -check-prefix CHECK-YES %s // RUN: %clang_cc1 -emit-llvm -o - %s -triple i386-unknown-unknown | FileCheck -check-prefix CHECK-NO %s // RUN: %clang_cc1 -menable-unsafe-fp-math -emit-llvm -o - %s -triple i386-unknown-unknown | FileCheck -check-prefix CHECK-FAST %s // CHECK-YES-LABEL: define void @test_sqrt // CHECK-NO-LABEL: define void @test_sqrt // CHECK-FAST-LABEL: define void @test_sqrt void test_sqrt(float a0, double a1, long double a2) { // Following llvm-gcc's lead, we never emit these as intrinsics; // no-math-errno isn't good enough. We could probably use intrinsics // with appropriate guards if it proves worthwhile. // CHECK-YES: call float @sqrtf // CHECK-NO: call float @sqrtf float l0 = sqrtf(a0); // CHECK-YES: call double @sqrt // CHECK-NO: call double @sqrt double l1 = sqrt(a1); // CHECK-YES: call x86_fp80 @sqrtl // CHECK-NO: call x86_fp80 @sqrtl long double l2 = sqrtl(a2); } // CHECK-YES: declare float @sqrtf(float) // CHECK-YES: declare double @sqrt(double) // CHECK-YES: declare x86_fp80 @sqrtl(x86_fp80) // CHECK-NO: declare float @sqrtf(float) [[NUW_RN:#[0-9]+]] // CHECK-NO: declare double @sqrt(double) [[NUW_RN]] // CHECK-NO: declare x86_fp80 @sqrtl(x86_fp80) [[NUW_RN]] // CHECK-FAST: declare float @llvm.sqrt.f32(float) // CHECK-FAST: declare double @llvm.sqrt.f64(double) // CHECK-FAST: declare x86_fp80 @llvm.sqrt.f80(x86_fp80) // CHECK-YES-LABEL: define void @test_pow // CHECK-NO-LABEL: define void @test_pow void test_pow(float a0, double a1, long double a2) { // CHECK-YES: call float @powf // CHECK-NO: call float @llvm.pow.f32 float l0 = powf(a0, a0); // CHECK-YES: call double @pow // CHECK-NO: call double @llvm.pow.f64 double l1 = pow(a1, a1); // CHECK-YES: call x86_fp80 @powl // CHECK-NO: call x86_fp80 @llvm.pow.f80 long double l2 = powl(a2, a2); } // CHECK-YES: declare float @powf(float, float) // CHECK-YES: declare double @pow(double, double) // CHECK-YES: declare x86_fp80 @powl(x86_fp80, x86_fp80) // CHECK-NO: declare float @llvm.pow.f32(float, float) [[NUW_RNI:#[0-9]+]] // CHECK-NO: declare double @llvm.pow.f64(double, double) [[NUW_RNI]] // CHECK-NO: declare x86_fp80 @llvm.pow.f80(x86_fp80, x86_fp80) [[NUW_RNI]] // CHECK-YES-LABEL: define void @test_fma // CHECK-NO-LABEL: define void @test_fma void test_fma(float a0, double a1, long double a2) { // CHECK-YES: call float @llvm.fma.f32 // CHECK-NO: call float @llvm.fma.f32 float l0 = fmaf(a0, a0, a0); // CHECK-YES: call double @llvm.fma.f64 // CHECK-NO: call double @llvm.fma.f64 double l1 = fma(a1, a1, a1); // CHECK-YES: call x86_fp80 @llvm.fma.f80 // CHECK-NO: call x86_fp80 @llvm.fma.f80 long double l2 = fmal(a2, a2, a2); } // CHECK-YES: declare float @llvm.fma.f32(float, float, float) [[NUW_RN:#[0-9]+]] // CHECK-YES: declare double @llvm.fma.f64(double, double, double) [[NUW_RN]] // CHECK-YES: declare x86_fp80 @llvm.fma.f80(x86_fp80, x86_fp80, x86_fp80) [[NUW_RN]] // CHECK-NO: declare float @llvm.fma.f32(float, float, float) [[NUW_RN2:#[0-9]+]] // CHECK-NO: declare double @llvm.fma.f64(double, double, double) [[NUW_RN2]] // CHECK-NO: declare x86_fp80 @llvm.fma.f80(x86_fp80, x86_fp80, x86_fp80) [[NUW_RN2]] // Just checking to make sure these library functions are marked readnone void test_builtins(double d, float f, long double ld) { // CHECK-NO: @test_builtins // CHECK-YES: @test_builtins double atan_ = atan(d); long double atanl_ = atanl(ld); float atanf_ = atanf(f); // CHECK-NO: declare double @atan(double) [[NUW_RN]] // CHECK-NO: declare x86_fp80 @atanl(x86_fp80) [[NUW_RN]] // CHECK-NO: declare float @atanf(float) [[NUW_RN]] // CHECK-YES-NOT: declare double @atan(double) [[NUW_RN]] // CHECK-YES-NOT: declare x86_fp80 @atanl(x86_fp80) [[NUW_RN]] // CHECK-YES-NOT: declare float @atanf(float) [[NUW_RN]] double atan2_ = atan2(d, 2); long double atan2l_ = atan2l(ld, ld); float atan2f_ = atan2f(f, f); // CHECK-NO: declare double @atan2(double, double) [[NUW_RN]] // CHECK-NO: declare x86_fp80 @atan2l(x86_fp80, x86_fp80) [[NUW_RN]] // CHECK-NO: declare float @atan2f(float, float) [[NUW_RN]] // CHECK-YES-NOT: declare double @atan2(double, double) [[NUW_RN]] // CHECK-YES-NOT: declare x86_fp80 @atan2l(x86_fp80, x86_fp80) [[NUW_RN]] // CHECK-YES-NOT: declare float @atan2f(float, float) [[NUW_RN]] double exp_ = exp(d); long double expl_ = expl(ld); float expf_ = expf(f); // CHECK-NO: declare double @exp(double) [[NUW_RN]] // CHECK-NO: declare x86_fp80 @expl(x86_fp80) [[NUW_RN]] // CHECK-NO: declare float @expf(float) [[NUW_RN]] // CHECK-YES-NOT: declare double @exp(double) [[NUW_RN]] // CHECK-YES-NOT: declare x86_fp80 @expl(x86_fp80) [[NUW_RN]] // CHECK-YES-NOT: declare float @expf(float) [[NUW_RN]] double log_ = log(d); long double logl_ = logl(ld); float logf_ = logf(f); // CHECK-NO: declare double @log(double) [[NUW_RN]] // CHECK-NO: declare x86_fp80 @logl(x86_fp80) [[NUW_RN]] // CHECK-NO: declare float @logf(float) [[NUW_RN]] // CHECK-YES-NOT: declare double @log(double) [[NUW_RN]] // CHECK-YES-NOT: declare x86_fp80 @logl(x86_fp80) [[NUW_RN]] // CHECK-YES-NOT: declare float @logf(float) [[NUW_RN]] } // CHECK-YES: attributes [[NUW_RN]] = { nounwind readnone } // CHECK-NO: attributes [[NUW_RN]] = { nounwind readnone{{.*}} } // CHECK-NO: attributes [[NUW_RNI]] = { nounwind readnone }
the_stack_data/88815.c
#include <stdio.h> int main(int argc, char **argv) { (void)argc; (void)argv; printf("Hello world, here I am ...\n"); return 0; }
the_stack_data/61075853.c
// write a program that read number and display its armstrong or not #include<stdio.h> int main() { while(1) { int i, temp, rem, sum=0; for(i=1; i<=1000; i++) { temp=i; while(temp!=0) { rem= temp%10; sum = sum+rem*rem*rem; temp = temp/10; } if (i==sum) { printf("%d",i); } } sum=0; } return 0; }
the_stack_data/27057.c
#include<stdio.h> #include<string.h> int main() { int n,m,length = 0,i; char number[100]; scanf("%s",&number); int c = 0; length = strlen(number); for(i=0; i<length; i++) { if(number[i] == '1') { c++; } } if(c%2 == 0) { printf("%s",number); printf("0\n"); } else { printf("%s",number); printf("1\n"); } return 0; }
the_stack_data/248580728.c
#include <stdio.h> #define MIN(a, b) (a < b) ? a : b #define MAX(a, b) (a > b) ? a : b int main() { printf("MIN(10, 5) = %d\n", MIN(10, 5)); printf("MAX(-0.5 + 3.3, 3.2) = %.2f\n", MAX(-0.5 + 3.3, 3.2)); return 0; }
the_stack_data/500900.c
// Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. /* Input to godefs. See also mkerrors.sh and mkall.sh */ typedef unsigned short ushort; typedef unsigned char uchar; typedef unsigned long ulong; typedef unsigned int uint; typedef long long vlong; typedef unsigned long long uvlong; typedef int $_C_int; enum { OREAD = 0, // open for read OWRITE = 1, // write ORDWR = 2, // read and write $O_RDONLY = OREAD, $O_WRONLY = OWRITE, $O_RDWR = ORDWR, OEXEC = 3, // execute, == read but check execute permission OTRUNC = 16, // or'ed in (except for exec), truncate file first OCEXEC = 32, // or'ed in, close on exec $O_CLOEXEC = OCEXEC, ORCLOSE = 64, // or'ed in, remove on close OEXCL = 0x1000, // or'ed in, exclusive use (create only) $O_EXCL = OEXCL, $STATMAX = 65535U, $ERRMAX = 128, $MORDER = 0x0003, // mask for bits defining order of mounting $MREPL = 0x0000, // mount replaces object $MBEFORE = 0x0001, // mount goes before others in union directory $MAFTER = 0x0002, // mount goes after others in union directory $MCREATE = 0x0004, // permit creation in mounted directory $MCACHE = 0x0010, // cache some data $MMASK = 0x0017, // all bits on $RFNAMEG = (1<<0), $RFENVG = (1<<1), $RFFDG = (1<<2), $RFNOTEG = (1<<3), $RFPROC = (1<<4), $RFMEM = (1<<5), $RFNOWAIT = (1<<6), $RFCNAMEG = (1<<10), $RFCENVG = (1<<11), $RFCFDG = (1<<12), $RFREND = (1<<13), $RFNOMNT = (1<<14), // bits in Qid.type $QTDIR = 0x80, // type bit for directories $QTAPPEND = 0x40, // type bit for append only files $QTEXCL = 0x20, // type bit for exclusive use files $QTMOUNT = 0x10, // type bit for mounted channel $QTAUTH = 0x08, // type bit for authentication file $QTTMP = 0x04, // type bit for not-backed-up file $QTFILE = 0x00, // plain file // bits in Dir.mode $DMDIR = 0x80000000, // mode bit for directories $DMAPPEND = 0x40000000, // mode bit for append only files $DMEXCL = 0x20000000, // mode bit for exclusive use files $DMMOUNT = 0x10000000, // mode bit for mounted channel $DMAUTH = 0x08000000, // mode bit for authentication file $DMTMP = 0x04000000, // mode bit for non-backed-up files $DMREAD = 0x4, // mode bit for read permission $DMWRITE = 0x2, // mode bit for write permission $DMEXEC = 0x1, // mode bit for execute permission BIT8SZ = 1, BIT16SZ = 2, BIT32SZ = 4, BIT64SZ = 8, QIDSZ = BIT8SZ+BIT32SZ+BIT64SZ, // STATFIXLEN includes leading 16-bit count // The count, however, excludes itself; total size is BIT16SZ+count $STATFIXLEN = BIT16SZ+QIDSZ+5*BIT16SZ+4*BIT32SZ+1*BIT64SZ, // amount of fixed length data in a stat buffer }; struct Prof // Per process profiling { struct Plink *pp; // known to be 0(ptr) struct Plink *next; // known to be 4(ptr) struct Plink *last; struct Plink *first; ulong pid; ulong what; }; struct Tos { struct Prof prof; uvlong cyclefreq; // cycle clock frequency if there is one, 0 otherwise vlong kcycles; // cycles spent in kernel vlong pcycles; // cycles spent in process (kernel + user) ulong pid; // might as well put the pid here ulong clock; // top of stack is here }; typedef struct Prof $Prof; typedef struct Tos $Tos;
the_stack_data/241087.c
/* Author : Arnob Mahmud mail : [email protected] */ #include <stdio.h> int main(int argc, char const *argv[]) { /* int i; i = 0; do { printf("%d ", i); // 0 1 2 3 4 i++; } while (i < 5); */ int i; i = 0; label: printf("%d ", i); // 0 1 2 3 4 i++; if (i < 5) { goto label; } return 0; }
the_stack_data/31387125.c
/**~use case~ * Include [Class] * * Description * * An Include relationship specifies that a UseCase contains the behavior defined in another UseCase. * * Diagrams * * Use Cases * * Generalizations * * DirectedRelationship, NamedElement * * Association Ends * *  addition : UseCase [1..1]{subsets DirectedRelationship::target} (opposite A_addition_include::include) * * The UseCase that is to be included. * *  includingCase : UseCase [1..1]{subsets NamedElement::namespace, subsets DirectedRelationship::source} * (opposite UseCase::include) * * The UseCase which includes the addition and owns the Include relationship. **/
the_stack_data/109128.c
/* ** EPITECH PROJECT, 2017 ** libmy.a ** File description: ** Return 1 if string are the same else return 0 (only compare n 1st char) */ int my_strncmp(char const *s1, char const *s2, int n) { int i = 0; if (s1 == 0 || s2 == 0) return (0); for (; s1[i] != '\0' && s2[i] != '\0' && i < n; i++) { if (s1[i] != s2[i]) return (s1[i] - s2[i]); } if ((s1[i] != '\0' || s2[i] != '\0') && i < n) return ((s1[i] != '\0') ? s1[i] : -s2[i]); return (0); }
the_stack_data/184517252.c
// // #include<stdio.h> int main(){ int num1, num2, num3, num4, smallest; printf( "Please enter 4 numbers separated by spaces > " ); scanf( "%d %d %d %d", &num1, &num2, &num3, &num4 ); if( num1 < num2 ) printf( "%d is the smallest\n", smallest ); return 0; }
the_stack_data/461337.c
//file: _insn_test_ld4u_Y2.c //op=130 #include <stdio.h> #include <stdlib.h> void func_exit(void) { printf("%s\n", __func__); exit(0); } void func_call(void) { printf("%s\n", __func__); exit(0); } unsigned long mem[2] = { 0xb002a7dc1c538d17, 0x553c16d3559d1cee }; int main(void) { unsigned long a[4] = { 0, 0 }; asm __volatile__ ( "moveli r42, 20445\n" "shl16insli r42, r42, -17976\n" "shl16insli r42, r42, -29438\n" "shl16insli r42, r42, -12912\n" "moveli r15, 6570\n" "shl16insli r15, r15, -30096\n" "shl16insli r15, r15, -3418\n" "shl16insli r15, r15, 9405\n" "move r15, %2\n" "{ fnop ; fnop ; ld4u r42, r15 }\n" "move %0, r42\n" "move %1, r15\n" :"=r"(a[0]),"=r"(a[1]) : "r"(mem)); printf("%016lx %016lx\n", mem[0], mem[1]); printf("%016lx\n", a[0]); printf("%016lx\n", a[1]); return 0; }
the_stack_data/178266272.c
#include<stdio.h> void input(int *p) { int i; for (i=0;i<=3;i++) scanf("%d",p+i); } void display(int *p) { int i; for (i=0;i<=3;i++) printf("%4d",*(p+i)); printf("\n"); } void swap(int *p) { int r,t,i; for (r=1;r<=3;r++) { for(i=0;i<=3-r;i++) if(*(p+i)<*(p+i+1)) { t=*(p+i); *(p+i)=*(p+i+1); *(p+i+1)=t; } } } void main() { int a[4]; input(a); display(a); swap(a); display(a); }
the_stack_data/97959.c
#include <stdio.h> #include <string.h> int valchecker(char *s, int n) { int aci_val = 0; for (int i = 0; i < n; i++) { aci_val += s[i]; } return aci_val; } int main() { char s1[10000] = {'\0'}; char s2[10000] = {'\0'}; fgets(s1, sizeof(s1), stdin); fgets(s2, sizeof(s2), stdin); int n1 = strlen(s1); int n2 = strlen(s2); int a1 = valchecker(s1, n1); int a2 = valchecker(s2, n2); if (a1 > a2) { printf("1"); } if (a2 > a1) { printf("-1"); } if (a2 == a1) { printf("0"); } return 0; }
the_stack_data/597748.c
#include <stdio.h> #include <stdlib.h> void printNum(int nbr){ printf("%d\n",nbr); } void myFunc(void f(int), int n){ for(int i = 0; i< n; i++){ f(i); } } int main(int argc, char* argv[]){ int s = atoi(argv[1]); myFunc(printNum,s); return 0; }
the_stack_data/23574511.c
#include<math.h> #include<stdio.h> #define N 10 #define EPSILON 0.01 int main(int argc, char *argv[]) { double diff; int i,j; double mean; double u[N][N]; double w[N][N]; int count; mean = 0.0; // Can parallelise this - barrier to ensure all means are done for (i = 0; i < N; i++){ u[i][0] = u[i][N-1] = u[0][i] = 100.0; u[N-1][i] = 0.0; mean += u[i][0] + u[i][N-1] + u[0][i] + u[N-1][i]; } mean /= (4.0 * N); for (i = 1; i < N-1; i++ ) for ( j= 1; j < N-1; j++) u[i][j] = mean; // Can parallelise this - get each diff and take min, take each count and add for(;;){ diff = 0.0; for(i =1 ; i < N-1; i++) for(j =1 ; j < N-1; j++){ w[i][j] = ( u[i-1][j] + u[i+1][j]+ u[i][j-1] + u[i][j+1])/4.0; if( fabs(w[i][j] - u[i][j]) > diff ) diff = fabs(w[i][j]- u[i][j]); count++; } if(diff <= EPSILON) break; for (i =1; i< N-1; i++) for (j =1; j< N-1; j++) u[i][j] = w[i][j]; } for(i =0; i <N; i++){ for(j = 0; j<N; j++) printf("%d,",u[i][j]); putchar('\n'); } printf("\nNumber of iteration: %d\n",count); }
the_stack_data/39293.c
/****************************************************************************** *[File] mt6516-evb.c *[Version] v1.0 *[Revision Date] 2010-03-01 *[Author] *[Description] * dummy file for build system *[Copyright] * Copyright (C) 2010 MediaTek Incorporation. All Rights Reserved. ******************************************************************************/ /* ** Log: mt6516-evb.c * * 07 08 2010 cp.wu * * [WPD00003833] [MT6620 and MT5931] Driver migration - move to new repository. * * 06 06 2010 kevin.huang * [WPD00003832][MT6620 5931] Create driver base * [MT6620 5931] Create driver base * * 04 19 2010 jeffrey.chang * [WPD00003826]Initial import for Linux port * remove debug message * * 03 24 2010 jeffrey.chang * [WPD00003826]Initial import for Linux port * initial import for Linux port ** */
the_stack_data/116064.c
a, b, c, d, e, f; h(l) { int g = c; if (l < 0) { int i, j, k; (i = n()) < (j = n()) || (k = n()); if ((g == 76 || g == 77) && i == 1) { int m = n(); if (k == 0 && (m & 8) == 0 && g) l = o(); } else if ((g == 76 || g == 77) && i == 5) if (j && k & 5 && f) ; else l = b; if (i == 3) if (j == i && (g == 76 || g == 77)) l = d; else if (j == 1 && k & 3) l = e; if (l) return a; } if (l == c) p(); }
the_stack_data/131722.c
/* Copyright (c) 2019-2021 Grant Hadlich * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the Software), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ #include <math.h> //a^b = e^(b*ln(a)) double myPow(double x, int n){ double ret = 1; long long power = n; if (n == 0 || x == 0.0) { return 1; } if (x == 1.0) return 1; if (power < 0) { x = 1/x; power = -power; } while (power > 0) { if (power % 2 == 0) { x *= x; power /= 2; } else { ret *=x; power--; } } return ret; }
the_stack_data/212643436.c
#include <arpa/inet.h> #include <curses.h> #include <errno.h> #include <error.h> #include <pthread.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <strings.h> #include <time.h> #include <unistd.h> #define OOPS(msg) \ { \ perror(msg); \ return 1; \ } #define HEIGHT 24 #define WIDTH 80 #define FOOD -100 #define PORT 9999 WINDOW *win; int game_result = 1; // int key = -1; char *log_path = "log.txt"; int add_thread(void *(*)(void *), void *); void *update_screen(void *); void add_log(const char *); void init_log(); int main(int argc, char *argv[]) { init_log(); int sockfd; struct sockaddr_in serv_addr; if (argc != 2) error(1, 0, "usage: tcpclient <IPaddress>"); sockfd = socket(AF_INET, SOCK_STREAM, 0); bzero(&serv_addr, sizeof(serv_addr)); serv_addr.sin_family = AF_INET; serv_addr.sin_port = htons(PORT); inet_pton(AF_INET, argv[1], &serv_addr.sin_addr); int connect_rt = connect(sockfd, (struct sockaddr *)&serv_addr, sizeof(serv_addr)); if (connect_rt < 0) { error(1, errno, "connect failed "); } initscr(); clear(); noecho(); cbreak(); start_color(); use_default_colors(); curs_set(0); // Set window to new ncurses window win = newwin(HEIGHT, WIDTH, 0, 0); // Snake colours init_pair(1, COLOR_WHITE, COLOR_RED); init_pair(5, COLOR_BLACK, COLOR_YELLOW); init_pair(6, COLOR_BLACK, COLOR_MAGENTA); init_pair(7, COLOR_BLACK, COLOR_CYAN); init_pair(8, COLOR_BLACK, COLOR_WHITE); add_thread(update_screen, &sockfd); add_log("thread added.\n"); int key_buffer; while (game_result) { bzero(&key_buffer, sizeof(key_buffer)); key_buffer = wgetch(win); if (key_buffer == 'w' || key_buffer == 's' || key_buffer == 'a' || key_buffer == 'd') { int n = write(sockfd, &key_buffer, sizeof(key_buffer)); if (n < 0) error(1, errno, "ERROR writing to socket."); add_log("have written to the server.\n"); } } add_log("gonna to generate announcement\n"); // Show the user who won WINDOW *announcement = newwin(7, 35, (HEIGHT - 7) / 2, (WIDTH - 35) / 2); box(announcement, 0, 0); mvwaddstr(announcement, 2, (35 - 21) / 2, "Game Over"); mvwaddstr(announcement, 4, (35 - 21) / 2, "Press any key to quit."); wbkgd(announcement, COLOR_PAIR(1)); mvwin(announcement, (HEIGHT - 7) / 2, (WIDTH - 35) / 2); wnoutrefresh(announcement); wrefresh(announcement); sleep(2); wgetch(announcement); delwin(announcement); wclear(win); echo(); curs_set(1); endwin(); // Close connection close(sockfd); return 0; } int add_thread(void *(*fn)(void *), void *arg) { pthread_attr_t attr; pthread_t tid; if (pthread_attr_init(&attr) != 0) OOPS("pthread_attr_init"); pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); if (pthread_create(&tid, &attr, fn, arg) != 0) OOPS("pthread_create"); pthread_attr_destroy(&attr); return 0; }; void *update_screen(void *arg) { int sockfd = *(int *)arg; int bytes_read; int map[HEIGHT][WIDTH]; int map_size = HEIGHT * WIDTH * sizeof(map[0][0]); char map_buffer[map_size]; int i, j, n; while (game_result) { // receive updated map from server bytes_read = 0; bzero(map_buffer, map_size); while (bytes_read < map_size) { n = read(sockfd, map_buffer + bytes_read, map_size - bytes_read); if (n <= 0) goto end; bytes_read += n; } add_log("have read from the server.\n"); memcpy(map, map_buffer, map_size); clear(); box(win, 0, 0); refresh(); wrefresh(win); for (i = 1; i < HEIGHT - 1; i++) { for (j = 1; j < WIDTH - 1; j++) { int current = map[i][j]; int colour = abs(current) % 7; attron(COLOR_PAIR(colour)); if ((current > 0) && (current != FOOD)) { mvprintw(i, j, " "); attroff(COLOR_PAIR(colour)); } else if (current == FOOD) { attroff(COLOR_PAIR(colour)); mvprintw(i, j, "o"); } } } refresh(); } end: game_result = 0; add_log("thread <update_screen> over\n"); return 0; } void add_log(const char *str) { FILE *fp = fopen(log_path, "a+"); if (fp == 0) { printf("can't open log file\n"); return; } fseek(fp, 0, SEEK_END); fwrite(str, strlen(str), 1, fp); fclose(fp); } void init_log() { remove(log_path); time_t tt = time(0); char s[21]; strftime(s, sizeof(s), "%Y-%m-%d %H:%M:%S", localtime(&tt)); s[19] = '\n'; s[20] = '\0'; add_log(s); }
the_stack_data/23575699.c
#include<stdio.h> #include<stdlib.h> int main( void ) { int i; for ( i = 1; i <= 20; i++ ) { printf( "%10d", 1 + ( rand() % 6 ) ); if ( i % 5 == 0 ) { printf( "\n" ); } } return 0; }
the_stack_data/150143431.c
/* BrSecurity Security Functions for B&R Automation Studio https://github.com/hilch/BrSecurity */ #include <sys/types.h> #include <sys/stat.h> char heap[1000]; char *heapstart=heap; char *heapend=&heap[1000]; void abort(void) { } int fstat(int file, struct stat *st) { st->st_mode = S_IFCHR; return 0; } int close(int file){ return -1; } int lseek(int file, int ptr, int dir){ return 0; } int read(int file, char *ptr, int len){ return 0; } int isatty(int file){ return 1; } int writechar(char a) { return 0; } int write(int file, char *ptr, int len){ int todo; for (todo = 0; todo < len; todo++) { writechar(*ptr++); } return len; } caddr_t sbrk(int incr){ static char *heap_end; char *prev_heap_end; if (heap_end == 0) { heap_end = heapstart; } prev_heap_end = heap_end; if (heap_end + incr > heapend) { /* _write (1, "Heap and stack collision\n", 25);*/ abort (); } heap_end += incr; return (caddr_t) prev_heap_end; }
the_stack_data/218894213.c
/* Test infinities convert to __float128 infinity. Bug 77265. */ /* { dg-do run } */ /* { dg-require-effective-target __float128 } */ /* { dg-require-effective-target base_quadfloat_support } */ /* { dg-add-options __float128 } */ extern void abort (void); extern void exit (int); volatile float finf = __builtin_inff (); volatile double dinf = __builtin_inf (); volatile long double ldinf = __builtin_infl (); volatile float nfinf = -__builtin_inff (); volatile double ndinf = -__builtin_inf (); volatile long double nldinf = -__builtin_infl (); int main (void) { volatile __float128 r; r = (__float128) finf; if (!__builtin_isinf (r) || __builtin_signbit (r) != 0) abort (); r = (__float128) dinf; if (!__builtin_isinf (r) || __builtin_signbit (r) != 0) abort (); r = (__float128) ldinf; if (!__builtin_isinf (r) || __builtin_signbit (r) != 0) abort (); r = (__float128) nfinf; if (!__builtin_isinf (r) || __builtin_signbit (r) == 0) abort (); r = (__float128) ndinf; if (!__builtin_isinf (r) || __builtin_signbit (r) == 0) abort (); r = (__float128) nldinf; if (!__builtin_isinf (r) || __builtin_signbit (r) == 0) abort (); exit (0); }
the_stack_data/179831142.c
#include <stdio.h> int main() { int n = 78120; int i = 0; int cnt = 0; for (i = 1; i < n; ++i) { if (n % i == 0) { cnt++; } } printf("%d\n", cnt); return 0; }
the_stack_data/75007.c
#include <stdlib.h> #include <stdio.h> #include <math.h> /**********************************************************************/ /* Vector Dot Product */ double VoV(double A[3], double B[3]) { return(A[0]*B[0]+A[1]*B[1]+A[2]*B[2]); } /**********************************************************************/ /* Vector Cross Product */ void VxV(double A[3], double B[3], double C[3]) { C[0]=A[1]*B[2]-A[2]*B[1]; C[1]=A[2]*B[0]-A[0]*B[2]; C[2]=A[0]*B[1]-A[1]*B[0]; } /**********************************************************************/ /* Magnitude of a 3-vector */ double MAGV(double V[3]) { return(sqrt(V[0]*V[0]+V[1]*V[1]+V[2]*V[2])); } /**********************************************************************/ /* Normalize a 3-vector. Return its (pre-normalization) magnitude */ double UNITV(double V[3]) { double A; A=sqrt(V[0]*V[0]+V[1]*V[1]+V[2]*V[2]); if (A > 0.0) { V[0]/=A; V[1]/=A; V[2]/=A; } else { printf("Attempted divide by zero in UNITV\n"); V[0] = 0.0; V[1] = 0.0; V[2] = 0.0; } return(A); } /**********************************************************************/ /* Copy and normalize a 3-vector. Return its magnitude */ double CopyUnitV(double V[3], double W[3]) { double A; A=sqrt(V[0]*V[0]+V[1]*V[1]+V[2]*V[2]); if (A > 0.0) { W[0] = V[0]/A; W[1] = V[1]/A; W[2] = V[2]/A; } else { printf("Attempted divide by zero in COPYUNITV\n"); W[0] = 0.0; W[1] = 0.0; W[2] = 0.0; } return(A); } /**********************************************************************/ double TrueAnomaly(double mu, double p, double e, double t) { #define EPS 1.0E-12 #define PI 3.141592653589793 #define TWOPI 6.283185307179586 double p3,B,x,f,fp,e1,N,H,M,E; double Ne,dx,dH,dE,Anom; short i; p3 = p*p*p; if (e ==1.0) { i = 0; B = 3.0*sqrt(mu/p3)*t; x = 0.0; do { i++; f = x*(x*x+3.0)-2.0*B; fp = 3.0*x*x+3.0; dx = f/fp; x -= dx; } while (fabs(f) > EPS && fabs(dx) > EPS && i < 100); Anom = 2.0*atan(x); } else if (e > 1.0) { i = 0; e1 = e*e-1.0; N = sqrt(mu*e1*e1*e1/p3)*t; Ne = N/e; H = log(Ne+sqrt(Ne*Ne+1.0)); /* H = arcsinh(N/e); */ do { i++; f = e*sinh(H) - H - N; fp = e*cosh(H) - 1.0; dH = f/fp; if (dH > 0.1) dH = 0.1; if (dH < -0.1) dH = -0.1; H -= dH; } while (fabs(f) > EPS && fabs(dH) > EPS && i < 100); Anom = 2.0*atan(sqrt((e+1.0)/(e-1.0))*tanh(0.5*H)); } else { i = 0; e1 = 1.0-e*e; M = sqrt(mu*e1*e1*e1/p3)*t; M = fmod(M+PI, TWOPI) - PI; E = M; do { i++; f = E - e*sin(E) - M; fp = 1.0 - e*cos(E); dE = f/fp; if (dE > 0.1) dE = 0.1; if (dE < -0.1) dE = -0.1; E -= dE; } while (fabs(f) > EPS && fabs(dE) > EPS && i < 100); Anom = 2.0*atan(sqrt((1.0+e)/(1.0-e))*tan(0.5*E)); } return(Anom); #undef EPS #undef PI #undef TWOPI } /**********************************************************************/ double TimeSincePeriapsis(double mu, double p, double e, double th) { double x,a,B,E,H,dt; x = tan(0.5*th); if (e == 1.0) { B = 0.5*x*(x*x+3.0); dt = sqrt(p*p*p/mu)/3.0*B; } else if (e < 1.0) { a = p/(1.0-e*e); E=2.0*atan(sqrt((1.0-e)/(1.0+e))*x); dt=(E-e*sin(E))*sqrt(a*a*a/mu); } else { a = p/(1.0-e*e); H=2.0*atanh(sqrt((e-1.0)/(e+1.0))*x); dt=(e*sinh(H)-H)*sqrt(-a*a*a/mu); } return(dt); } /**********************************************************************/ /* Compute orbital elements, given position and velocity. Works for */ /* for all eccentricities. */ void RV2Eph(double time, double mu, double xr[3], double xv[3], double *SMA, double *e, double *i, double *RAAN, double *omg, double *th, double *tp, double *p, double *alpha) { #define EPS 1.0E-12 #define PI 3.141592653589793 #define TWOPI 6.283185307179586 double xh[3],xe[3],rhat[3],r,v,vxh[3],cth,hxe[3]; double rohxe,h,dt; double xn[3],hxn[3],cosw,sinw; r=sqrt(xr[0]*xr[0]+xr[1]*xr[1]+xr[2]*xr[2]); v=sqrt(xv[0]*xv[0]+xv[1]*xv[1]+xv[2]*xv[2]); *alpha = 2.0*(mu/r-0.5*v*v)/mu; *SMA = 1.0/(*alpha); xh[0] = xr[1]*xv[2]-xr[2]*xv[1]; xh[1] = xr[2]*xv[0]-xr[0]*xv[2]; xh[2] = xr[0]*xv[1]-xr[1]*xv[0]; *p = (xh[0]*xh[0]+xh[1]*xh[1]+xh[2]*xh[2])/mu; rhat[0] = xr[0]/r; rhat[1] = xr[1]/r; rhat[2] = xr[2]/r; vxh[0] = xv[1]*xh[2]-xv[2]*xh[1]; vxh[1] = xv[2]*xh[0]-xv[0]*xh[2]; vxh[2] = xv[0]*xh[1]-xv[1]*xh[0]; xe[0] = vxh[0]/mu-rhat[0]; xe[1] = vxh[1]/mu-rhat[1]; xe[2] = vxh[2]/mu-rhat[2]; *e=sqrt(xe[0]*xe[0]+xe[1]*xe[1]+xe[2]*xe[2]); h=sqrt(xh[0]*xh[0]+xh[1]*xh[1]+xh[2]*xh[2]); /* 3D mag */ xh[0] /= h; xh[1] /= h; xh[2] /= h; h = sqrt(xh[0]*xh[0]+xh[1]*xh[1]); /* 2D mag */ if (*e < EPS) { /* Circular */ if (h < EPS) { /* Equatorial */ /* Arbitrarily set RAAN, omg = 0 */ *RAAN = 0.0; *i = (xh[2]>0.0 ? 0.0 : PI ); *omg = 0.0; xe[0] = 1.0; xe[1] = 0.0; xe[2] = 0.0; } else { /* Inclined */ /* Arbitrarily set omg = 0 */ *RAAN = atan2(xh[0],-xh[1]); *i = acos(xh[2]); *omg = 0.0; xe[0] = -xh[1]/h; xe[1] = xh[0]/h; xe[2] = 0.0; } } else { /* Eccentric */ xe[0] /= *e; xe[1] /= *e; xe[2] /= *e; if (h < EPS) { /* Equatorial */ /* Arbitrarily set RAAN = 0 */ xn[0] = 1.0; xn[1] = 0.0; xn[2] = 0.0; *RAAN = 0.0; *i = (xh[2]>0.0 ? 0.0 : PI ); /* Find omg */ hxn[0] = -xh[2]*xn[1]; hxn[1] = xh[2]*xn[0]; hxn[2] = xh[0]*xn[1]-xh[1]*xn[0]; cosw = xe[0]*xn[0]+xe[1]*xn[1]; sinw = xe[0]*hxn[0]+xe[1]*hxn[1]+xe[2]*hxn[2]; *omg = atan2(sinw,cosw); } else { /* Inclined */ /* RAAN, omg both well defined */ xn[0] = -xh[1]/h; xn[1] = xh[0]/h; xn[2] = 0.0; *RAAN = atan2(xn[1],xn[0]); *i = acos(xh[2]); /* Find omg */ hxn[0] = -xh[2]*xn[1]; hxn[1] = xh[2]*xn[0]; hxn[2] = xh[0]*xn[1]-xh[1]*xn[0]; cosw = xe[0]*xn[0]+xe[1]*xn[1]; sinw = xe[0]*hxn[0]+xe[1]*hxn[1]+xe[2]*hxn[2]; *omg = atan2(sinw,cosw); } } cth = rhat[0]*xe[0]+rhat[1]*xe[1]+rhat[2]*xe[2]; *th = acos(cth); hxe[0] = xh[1]*xe[2]-xh[2]*xe[1]; hxe[1] = xh[2]*xe[0]-xh[0]*xe[2]; hxe[2] = xh[0]*xe[1]-xh[1]*xe[0]; rohxe = rhat[0]*hxe[0]+rhat[1]*hxe[1]+rhat[2]*hxe[2]; if (rohxe < 0.0) *th = TWOPI - *th; dt = TimeSincePeriapsis(mu,*p,*e,*th); *tp = time - dt; } /**********************************************************************/ /* Compute position and velocity given orbital elements. Works for */ /* circular, elliptical, parabolic and hyperbolic orbits. */ void Eph2RV(double mu, double p, double e, double i, double RAAN, double omg, double dt, double r[3], double v[3], double *anom) { double R,th,CPN[3][3],cth,sth,pr[3],pv[3],c2,a; double C1,S1,C2,S2,C3,S3; // if (e > 1.0) { // a=p/(1.0-e*e); // if (fabs(sqrt(-mu/a/a/a)*dt) > e-1.0) { // FindHyperbolicRadius(mu,p,e,dt,&R); // cth = (p/R-1.0)/e; // th = acos(cth); // if (dt < 0.0) th = -th; // sth = sin(th); // } // else { // FindTrueAnomaly(mu,p,e,dt,&th); // sth = sin(th); // cth = cos(th); // R = p/(1.0+e*cth); // } // } // else { th = TrueAnomaly(mu,p,e,dt); sth = sin(th); cth = cos(th); R = p/(1.0+e*cth); // } c2 = sqrt(mu/p); pr[0] = R*cth; pr[1] = R*sth; pr[2] = 0.0; pv[0] = -c2*sth; pv[1] = c2*(e+cth); pv[2] = 0.0; C1=cos(RAAN);S1=sin(RAAN); C2=cos(i);S2=sin(i); C3=cos(omg);S3=sin(omg); CPN[0][0]=-S1*C2*S3+C3*C1; CPN[1][0]=-S1*C2*C3-S3*C1; CPN[2][0]=S1*S2; CPN[0][1]=C1*C2*S3+C3*S1; CPN[1][1]=C1*C2*C3-S3*S1; CPN[2][1]=-C1*S2; CPN[0][2]=S2*S3; CPN[1][2]=S2*C3; CPN[2][2]=C2; r[0] = pr[0]*CPN[0][0]+pr[1]*CPN[1][0]; r[1] = pr[0]*CPN[0][1]+pr[1]*CPN[1][1]; r[2] = pr[0]*CPN[0][2]+pr[1]*CPN[1][2]; v[0] = pv[0]*CPN[0][0]+pv[1]*CPN[1][0]; v[1] = pv[0]*CPN[0][1]+pv[1]*CPN[1][1]; v[2] = pv[0]*CPN[0][2]+pv[1]*CPN[1][2]; *anom = th; } /**********************************************************************/ /* Q(S1) = 4/3*F(3,1;5/2;S1) is a hypergeometric function. */ /* See Battin */ double HyperQ(double S1) { double delta = 1.0; double u = 1.0; double Sigma = 1.0; short n = 1; double gamma; while(fabs(u) > 1.0E-8 && n < 1000) { if (n%2) { /* n odd */ gamma = ((double) ((n+2)*(n+5)))/((double) ((2*n+1)*(2*n+3))); } else { /* n even */ gamma = ((double) (n*(n-3)))/((double) ((2*n+1)*(2*n+3))); } delta = 1.0/(1.0-gamma*delta*S1); u *= (delta - 1.0); Sigma += u; n++; } return(4.0/3.0*Sigma); } /**********************************************************************/ /* See Battin 7.1 */ double LambertTOF(double mu, double amin, double lambda, double x) { double y,eta,S1,Q,T; double delta = 1.0; double u = 1.0; double Sigma = 1.0; short n = 1; double gamma; y = sqrt(1.0-lambda*lambda*(1.0-x*x)); eta = y-lambda*x; S1 = 0.5*(1.0-lambda-x*eta); /* Q = HyperQ(S1) */ while(fabs(u) > 1.0E-8 && n < 1000) { if (n%2) { /* n odd */ gamma = ((double) ((n+2)*(n+5)))/((double) ((2*n+1)*(2*n+3))); } else { /* n even */ gamma = ((double) (n*(n-3)))/((double) ((2*n+1)*(2*n+3))); } delta = 1.0/(1.0-gamma*delta*S1); u *= (delta - 1.0); Sigma += u; n++; } Q = 4.0/3.0*Sigma; T = (eta*eta*Q + 4.0*lambda)*eta*sqrt(amin*amin*amin/mu); return(T); } /**********************************************************************/ /* See Battin 7.1 */ /* TransferType = 1.0 for Type I (1H, 1A, 1B) transfers */ /* TransferType = -1.0 for Type II (2H, 2A, 2B) transfers */ void LambertProblem(double t0, double mu, double xr1[3], double xr2[3], double TOF,double TransferType,double *p, double *e, double *inc, double *RAAN, double *ArgP, double *tp) { double r1,r2,ir1[3],ir2[3],ih[3],th,dr[3],c,s,amin,lambda; double xold,Told,x,dx,T; double y,eta,ihxir1[3],xv1[3],Coef0,Coef1,Coef2; double a,anom,alpha; short i; r1 = CopyUnitV(xr1,ir1); r2 = CopyUnitV(xr2,ir2); VxV(xr1,xr2,ih); UNITV(ih); th = acos(VoV(ir1,ir2)); for(i=0;i<3;i++) dr[i] = xr2[i]-xr1[i]; c = MAGV(dr); s = 0.5*(r1+r2+c); amin = 0.5*s; lambda = TransferType*sqrt(r1*r2)*cos(0.5*th)/s; /* Secant Search for x */ xold = 0.0; Told = LambertTOF(mu,amin,lambda,xold); x = 0.1; dx = x - xold; while(fabs(dx) > 1.0E-6) { T = LambertTOF(mu,amin,lambda,x); dx = (TOF-T)/(T-Told)*(x-xold); xold = x; Told = T; if (dx < -0.1) dx = -0.1; if (dx > 0.1) dx = 0.1; x += dx; if (x < -1.0) x = -1.0; } y = sqrt(1.0-lambda*lambda*(1.0-x*x)); eta = y - lambda*x; VxV(ih,ir1,ihxir1); Coef0 = sqrt(mu/amin)/eta; Coef1 = (2.0*lambda*amin/r1 - (lambda + x*eta))*Coef0; Coef2 = sqrt(r2/r1)*sin(0.5*th)*Coef0; for(i=0;i<3;i++) xv1[i] = Coef1*ir1[i] + Coef2*TransferType*ihxir1[i]; RV2Eph(t0,mu,xr1,xv1,&a,e,inc,RAAN,ArgP,&anom,tp,p,&alpha); } /**********************************************************************/ double RendezvousCostFunction(double *InVec, double *AuxVec) { double t0,TOF,mu,r1e[3],v1e[3],r2e[3],v2e[3]; double tf,SMA,ecc,inc,RAAN,ArgP,anom,tp,p,alpha; double r1[3],v1[3],r2[3],v2[3]; double r1t[3],v1t[3],r2t[3],v2t[3]; double DV1I[3],DV2I[3],DeltaVI; double DV1II[3],DV2II[3],DeltaVII; double DV1[3],DV2[3],DeltaV; double Per1,Per2; short i; t0 = InVec[0]; TOF = InVec[1]; mu = AuxVec[0]; for(i=0;i<3;i++) { r1e[i] = AuxVec[1+i]; v1e[i] = AuxVec[4+i]; r2e[i] = AuxVec[7+i]; v2e[i] = AuxVec[10+i]; } tf = t0 + TOF; /* .. Find r1(t0), r2(tf) */ RV2Eph(0.0,mu,r1e,v1e,&SMA,&ecc,&inc,&RAAN,&ArgP,&anom,&tp,&p,&alpha); Eph2RV(mu,p,ecc,inc,RAAN,ArgP,t0-tp,r1,v1,&anom); Per1 = 6.28*sqrt(SMA*SMA*SMA/mu); RV2Eph(0.0,mu,r2e,v2e,&SMA,&ecc,&inc,&RAAN,&ArgP,&anom,&tp,&p,&alpha); Eph2RV(mu,p,ecc,inc,RAAN,ArgP,tf-tp,r2,v2,&anom); Per2 = 6.28*sqrt(SMA*SMA*SMA/mu); /* .. Solve Lambert problem to find transfer orbit, transfer angle < Pi */ LambertProblem(t0,mu,r1,r2,TOF,1.0,&p,&ecc,&inc,&RAAN,&ArgP,&tp); /* .. Compute delta-V */ Eph2RV(mu,p,ecc,inc,RAAN,ArgP,t0-tp,r1t,v1t,&anom); Eph2RV(mu,p,ecc,inc,RAAN,ArgP,tf-tp,r2t,v2t,&anom); for(i=0;i<3;i++) { DV1I[i] = v1t[i]-v1[i]; DV2I[i] = v2[i]-v2t[i]; } DeltaVI = MAGV(DV1I) + MAGV(DV2I); /* .. Solve Lambert problem to find transfer orbit, transfer angle > Pi */ LambertProblem(t0,mu,r1,r2,TOF,-1.0,&p,&ecc,&inc,&RAAN,&ArgP,&tp); /* .. Compute delta-V */ Eph2RV(mu,p,ecc,inc,RAAN,ArgP,t0-tp,r1t,v1t,&anom); Eph2RV(mu,p,ecc,inc,RAAN,ArgP,tf-tp,r2t,v2t,&anom); for(i=0;i<3;i++) { DV1II[i] = v1t[i]-v1[i]; DV2II[i] = v2[i]-v2t[i]; } DeltaVII = MAGV(DV1II) + MAGV(DV2II); if (DeltaVI < DeltaVII) { DeltaV = DeltaVI; for(i=0;i<3;i++) { DV1[i] = DV1I[i]; DV2[i] = DV2I[i]; } } else { DeltaV = DeltaVII; for(i=0;i<3;i++) { DV1[i] = DV1II[i]; DV2[i] = DV2II[i]; } } for(i=0;i<3;i++) { AuxVec[13+i] = DV1[i]; AuxVec[16+i] = DV2[i]; } /* Ramp penalties to constrain solution */ if (t0 < 0.0) DeltaV += 10.0*(-t0/Per1); if (t0 > Per1) DeltaV += 10.0*((t0-Per1)/Per1); if (TOF < 0.0) DeltaV += 10.0*(-TOF/Per1); if (TOF > Per1+Per2) DeltaV += 10.0*((TOF-Per1-Per2)/(Per1+Per2)); return(DeltaV); } /**********************************************************************/ /* Minimize a cost function by Downhill Simplex Method */ /* See Numerical Recipes 10.4 for description of method */ /* */ /* N = Number of dimensions */ /* P = Vector which minimizes cost function */ /* (Initial guess in, result out) */ /* CostFunction must take an N-vector as argument, */ /* must return a double */ /* scale = Size of initial amoeba */ /* Tol = Tolerance on cost function to declare convergence */ double Amoeba(short N, double *P, double CostFunction(double *p, double *Parm), double *CostParm, double scale, double Tol) { short Converged = 0; double **p,*pc,*f; short high,nexthigh,low; double Coef1,Coef2,*pn,fn,StepSize; double MinCost; short i,j; p = (double **) calloc(N+1,sizeof(double *)); for(i=0;i<N+1;i++) p[i] = (double *) calloc(N,sizeof(double)); pc = (double *) calloc(N,sizeof(double)); f = (double *) calloc(N+1,sizeof(double)); pn = (double *) calloc(N,sizeof(double)); /* Simplex */ for(j=0;j<N;j++) p[0][j] = P[j]; for(i=1;i<N+1;i++) { for(j=0;j<N;j++) { p[i][j] = p[0][j]; } p[i][i-1] += scale; } /* Simplex Centroid */ for(j=0;j<N;j++) { pc[j] = 0.0; for(i=0;i<N+1;i++) { pc[j] += p[i][j]; } pc[j] /= (N+1.0); } /* Evaluate cost function */ for(i=0;i<N+1;i++) { f[i] = CostFunction(p[i],CostParm); } /* Find high, next-to-high, low cost */ low = 0; high = 0; for(i=1;i<N+1;i++) { if (f[i] < f[low]) low = i; if (f[i] > f[high]) high = i; } nexthigh = low; for(i=0;i<N+1;i++) { if (f[i] > f[nexthigh] && f[i] < f[high]) nexthigh = i; } while (!Converged) { /* Try Reflection */ StepSize = -1.0; Coef1 = (N+1.0)/N*(1.0-StepSize); Coef2 = -(1.0-(N+1.0)*StepSize)/N; for (j=0;j<N;j++) { pn[j] = Coef1*pc[j] + Coef2*p[high][j]; } fn = CostFunction(pn,CostParm); if (fn < f[high]) { f[high] = fn; for(j=0;j<N;j++) { pc[j] += (pn[j] - p[high][j])/(N+1); p[high][j] = pn[j]; } } if (f[high] < f[low]) { /* Worked so well, try longer step */ StepSize = 2.0; Coef1 = (N+1.0)/N*(1.0-StepSize); Coef2 = -(1.0-(N+1.0)*StepSize)/N; for (j=0;j<N;j++) { pn[j] = Coef1*pc[j] + Coef2*p[high][j]; } fn = CostFunction(pn,CostParm); if (fn < f[high]) { f[high] = fn; for(j=0;j<N;j++) { pc[j] += (pn[j] - p[high][j])/(N+1); p[high][j] = pn[j]; } } } else if (f[high] > f[nexthigh]) { /* Worked not so well, so try contraction */ StepSize = 0.5; Coef1 = (N+1.0)/N*(1.0-StepSize); Coef2 = -(1.0-(N+1.0)*StepSize)/N; for (j=0;j<N;j++) { pn[j] = Coef1*pc[j] + Coef2*p[high][j]; } fn = CostFunction(pn,CostParm); if (fn < f[high]) { f[high] = fn; for(j=0;j<N;j++) { pc[j] += (pn[j] - p[high][j])/(N+1); p[high][j] = pn[j]; } } if (f[high] > f[nexthigh]) { /* Stuck. Contract about lowest point */ for(i=0;i<N+1;i++) { if (i != low) { for(j=0;j<N;j++) { p[i][j] = 0.5*(p[i][j] + p[low][j]); } f[i] = CostFunction(p[i],CostParm); } } /* Find centroid */ for(j=0;j<N;j++) { pc[j] = 0.0; for(i=0;i<N+1;i++) { pc[j] += p[i][j]; } pc[j] /= (N+1.0); } } } /* Find high, next-to-high, low cost */ low = 0; high = 0; for(i=1;i<N+1;i++) { if (f[i] < f[low]) low = i; if (f[i] > f[high]) high = i; } nexthigh = low; for(i=0;i<N+1;i++) { if (f[i] > f[nexthigh] && f[i] < f[high]) nexthigh = i; } /* Termination Condition */ if ((fabs(f[low]/f[high]-1.0) < Tol) || (fabs(f[low]-f[high]) < Tol)) { Converged = 1; } } for(j=0;j<N;j++) P[j] = p[low][j]; MinCost = f[low]; for(i=0;i<N+1;i++) free(p[i]); free(p); free(pc); free(f); free(pn); return(MinCost); } /**********************************************************************/ void PlanTwoImpulseRendezvous(double mu, double r1e[3], double v1e[3], double r2e[3], double v2e[3], double *t1, double *t2, double DV1[3], double DV2[3]) { double SMA1,SMA2,ecc,inc,RAAN,ArgP,anom1,anom2,tp,p,alpha; double AmP[2],AmParm[19],DeltaV; short i; RV2Eph(0.0,mu,r1e,v1e,&SMA1,&ecc,&inc,&RAAN,&ArgP,&anom1,&tp,&p,&alpha); RV2Eph(0.0,mu,r2e,v2e,&SMA2,&ecc,&inc,&RAAN,&ArgP,&anom2,&tp,&p,&alpha); AmP[0] = 0.0; AmP[1] = 3.1416*sqrt(sqrt(fabs(SMA1*SMA1*SMA1*SMA2*SMA2*SMA2))/mu); AmParm[0] = mu; for(i=0;i<3;i++) { AmParm[1+i] = r1e[i]; AmParm[4+i] = v1e[i]; AmParm[7+i] = r2e[i]; AmParm[10+i] = v2e[i]; } DeltaV = Amoeba(2,AmP,RendezvousCostFunction,AmParm,0.1*SMA1,1.0E-5); *t1 = AmP[0]; *t2 = AmP[0]+AmP[1]; for(i=0;i<3;i++) { DV1[i] = AmParm[13+i]; DV2[i] = AmParm[16+i]; } printf("t1 = %7.2lf TOF = %7.2lf DV = %7.2lf\n",*t1,*t2-*t1,DeltaV); printf("DV1: %7.2lf %7.2lf %7.2lf\n",DV1[0],DV1[1],DV1[2]); printf("DV2: %7.2lf %7.2lf %7.2lf\n",DV2[0],DV2[1],DV2[2]); } /**********************************************************************/ /* Find optimal 2-impulse rendezvous from (r1,v1) to (r2,v2), both */ /* known at epoch time te. Find time of first impulse, t0, and */ /* time of second impulse, tf. Minimize total delta-V. */ int main(int argc, char **argv) { #define TYPE_I (1.0) #define TYPE_II (-1.0) double mu, r1[3],r2[3],v1[3],v2[3],t0,tf,TOF,t; double SMA1,SMA2,ecc,inc,RAAN,ArgP,tp,p,alpha; double r1t[3],v1t[3],r2t[3],v2t[3],anom1,anom2; double DV1[3],DV2[3],DeltaVI,DeltaVII,DeltaV; double r1e[3],v1e[3],r2e[3],v2e[3]; double x1,x2,lambda1,lambda2; double AmP[2],AmParm[19]; short i; FILE *outfile; outfile=fopen("ti.txt","wt"); mu = 1.0; /* .. Positions, velocities at epoch time */ r1e[0] = 1.0; r1e[1] = 0.0; r1e[2] = 0.0; v1e[0] = 0.0; v1e[1] = 1.0; v1e[2] = 0.0; r2e[0] = 0.0; r2e[1] = 2.0; r2e[2] = 0.0; v2e[0] = -sqrt(0.5); v2e[1] = -0.1; v2e[2] = 0.2; /* .. Guess t0, tf */ for(t0=0.0;t0<2.0;t0+=0.01) { for(TOF=5.0;TOF<9.0;TOF+=0.05) { tf = t0 + TOF; /* .. Find r1(t0), r2(tf) */ RV2Eph(0.0,mu,r1e,v1e,&SMA1,&ecc,&inc,&RAAN,&ArgP,&anom1,&tp,&p,&alpha); Eph2RV(mu,p,ecc,inc,RAAN,ArgP,t0-tp,r1,v1,&anom1); RV2Eph(0.0,mu,r2e,v2e,&SMA2,&ecc,&inc,&RAAN,&ArgP,&anom2,&tp,&p,&alpha); Eph2RV(mu,p,ecc,inc,RAAN,ArgP,tf-tp,r2,v2,&anom2); /* .. Solve Lambert problem to find transfer orbit, transfer angle < Pi */ LambertProblem(t0,mu,r1,r2,TOF,TYPE_I,&p,&ecc,&inc,&RAAN,&ArgP,&tp); /* .. Compute delta-V */ Eph2RV(mu,p,ecc,inc,RAAN,ArgP,t0-tp,r1t,v1t,&anom1); Eph2RV(mu,p,ecc,inc,RAAN,ArgP,tf-tp,r2t,v2t,&anom2); for(i=0;i<3;i++) { DV1[i] = v1t[i]-v1[i]; DV2[i] = v2[i]-v2t[i]; } DeltaVI = MAGV(DV1) + MAGV(DV2); /* .. Solve Lambert problem to find transfer orbit, transfer angle > Pi */ LambertProblem(t0,mu,r1,r2,TOF,TYPE_II,&p,&ecc,&inc,&RAAN,&ArgP,&tp); /* .. Compute delta-V */ Eph2RV(mu,p,ecc,inc,RAAN,ArgP,t0-tp,r1t,v1t,&anom1); Eph2RV(mu,p,ecc,inc,RAAN,ArgP,tf-tp,r2t,v2t,&anom2); for(i=0;i<3;i++) { DV1[i] = v1t[i]-v1[i]; DV2[i] = v2[i]-v2t[i]; } DeltaVII = MAGV(DV1) + MAGV(DV2); if (DeltaVI < DeltaVII) DeltaV = DeltaVI; else DeltaV = DeltaVII; fprintf(outfile,"%lf %lf %lf\n",t0,TOF,DeltaV); } } fclose(outfile); /* .. Now use Amoeba to search for optimum */ PlanTwoImpulseRendezvous(mu,r1e,v1e,r2e,v2e,&t0,&tf,DV1,DV2); return(0); #undef TYPE_I #undef TYPE_II }
the_stack_data/52741.c
void fence() { asm("sync"); } void lwfence() { asm("lwsync"); } void isync() { asm("isync"); } int __unbuffered_cnt=0; int __unbuffered_p0_r1=0; int __unbuffered_p0_r3=0; int __unbuffered_p1_r1=0; int __unbuffered_p1_r3=0; int __unbuffered_p2_r1=0; int __unbuffered_p2_r3=0; int x=0; int y=0; int z=0; void * P0(void * arg) { __unbuffered_p0_r1 = 1; z = __unbuffered_p0_r1; fence(); __unbuffered_p0_r3 = 1; x = __unbuffered_p0_r3; // Instrumentation for CPROVER fence(); __unbuffered_cnt++; } void * P1(void * arg) { __unbuffered_p1_r1 = x; fence(); __unbuffered_p1_r3 = 1; y = __unbuffered_p1_r3; // Instrumentation for CPROVER fence(); __unbuffered_cnt++; } void * P2(void * arg) { __unbuffered_p2_r1 = y; lwfence(); __unbuffered_p2_r3 = z; // Instrumentation for CPROVER fence(); __unbuffered_cnt++; } int main() { __CPROVER_ASYNC_0: P0(0); __CPROVER_ASYNC_1: P1(0); __CPROVER_ASYNC_2: P2(0); __CPROVER_assume(__unbuffered_cnt==3); fence(); // EXPECT:exists __CPROVER_assert(!(__unbuffered_p1_r1==1 && __unbuffered_p2_r1==1 && __unbuffered_p2_r3==0), "Program was expected to be safe for PPC, model checker should have said NO.\nThis likely is a bug in the tool chain."); return 0; }
the_stack_data/43887068.c
/* We can read the structure variables from the standard input as well Good programming practice is to initialize the auto structure as well to avoid the static warning */ #include <stdio.h> #include <stdlib.h> struct LinkedIn { char l_FirstName[20]; char l_LastName[20]; char l_EmailId[20]; int l_ExpInYears; float l_AvgSal; }; int main(int argc, char *argv[]) { struct LinkedIn Profile1 = {0}; // Initializing auto structure printf("enter Profile details\n"); // no '&' as array name itself is its address scanf("%s", Profile1.l_FirstName); scanf("%s", Profile1.l_LastName); scanf("%s", Profile1.l_EmailId); scanf("%d", &Profile1.l_ExpInYears); scanf("%f", &Profile1.l_AvgSal); printf("Linked In Profile1 Details\n"); printf("First Name:%s\n", Profile1.l_FirstName); printf("Last Name:%s\n", Profile1.l_LastName); printf("Email Id:%s\n", Profile1.l_EmailId); printf("Exp in Years:%d\n", Profile1.l_ExpInYears); printf("Avg Sal:%f\n", Profile1.l_AvgSal); system("PAUSE"); return 0; }
the_stack_data/87637966.c
/* ** mul_div.c for mul_div in /home/gwendoline/Epitech/Tek2/rendu/Piscine_cpp/piscine_cpp_d02m/ex00 ** ** Made by Gwendoline Rodriguez ** Login <[email protected]> ** ** Started on Thu Jan 7 09:13:40 2016 Gwendoline Rodriguez ** Last update Thu Jan 7 09:31:53 2016 Gwendoline Rodriguez */ #include <stdio.h> void add_mul_4param(int first, int second, int *add, int *mul) { *add = first + second; *mul = first * second; } void add_mul_2param(int *first, int *second) { *first = *first + *second; *second = (*first - *second) * *second; } /* int main(void) */ /* { */ /* int first; */ /* int second; */ /* int add_res; */ /* int mul_res; */ /* first = 5; */ /* second = 6; */ /* add_mul_4param(first, second, &add_res, &mul_res); */ /* printf("%d + %d = %d\n", first, second, add_res); */ /* printf("%d * %d = %d\n", first, second, mul_res); */ /* add_res = first; */ /* mul_res = second; */ /* add_mul_2param(&add_res, &mul_res); */ /* printf("%d + %d = %d\n", first, second, add_res); */ /* printf("%d * %d = %d\n", first, second, mul_res); */ /* return (0); */ /* } */
the_stack_data/150141829.c
#include <stdio.h> #include <stdlib.h> int main(){ int num; scanf("%d", &num); if(num % 2 == 0){ printf("Even"); }else{ printf("Odd"); } return 0; }
the_stack_data/1103667.c
#include <stdio.h> void Collatz(int n); int main(void){ int num; printf("Inserisci un numero per calcolarne la sequenza di Collatz: "); scanf("%d",&num); printf("\n"); Collatz(num); return 0; } void Collatz(int n){ int i = 1; printf("Numero: %d\n",n); printf("%d ",n); while(n != 1){ if(n % 2 == 0){ n /= 2; printf("%d ",n); } else{ n *= 3; n += 1; printf("%d ",n); } i++; } printf("\nLunghezza: %d\n",i); }
the_stack_data/95541.c
#include<stdio.h> int main ( void ) { int n1, n2, cont = 0; printf("digite dois numeros: "); scanf("%d%d", &n1, &n2); for(int i = 0; i < n1; i++) { cont += n2; printf("%d ", cont); } }
the_stack_data/1124121.c
#include <time.h> #include <stdio.h> int main(void) { time_t t; time(&t); struct tm *data; data = localtime(&t); int d = data->tm_mday; int m = data->tm_mon + 1; // janeiro é 0 int y = data->tm_year + 1900; // o calendário começa em -1900 printf("\nA data de hoje é %i/%i/%i\n", d, m, y); return 0; } // end main
the_stack_data/433367.c
int main(void) { 1.0 != 3; return 1; }
the_stack_data/220455360.c
/** * COP3514 Project 4 * This program reads a set of numbers from user input and * stores them in an array represented with 0s and 1s. It * then calculates the difference of set A and B, complement * of set A, and complement of set B. * * @author John Cameron (jcameron2) */ #include <stdio.h> //Define functions void promptArray(int *array, char name); void set_difference(int *a, int *b, int n, int *difference); void set_complement(int *a, int n, int *complement); //Define the array size constant #define ARRAY_SIZE 10 int main(void) { //Initialize array A and B int arrayA[ARRAY_SIZE] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; int arrayB[ARRAY_SIZE] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; //Prompt the user to enter the numbers each array will represent promptArray(arrayA, 'A'); promptArray(arrayB, 'B'); printf("The difference of set A and B is: "); int difference[ARRAY_SIZE]; set_difference(arrayA, arrayB, ARRAY_SIZE, difference); int i; for (i = 0; i < ARRAY_SIZE; i++) if (difference[i] == 1) printf("%d ", i); printf("\n"); //Determine the complement of both arrays //and print the result from the main method //Print complement for array A int complement[ARRAY_SIZE]; set_complement(arrayA, ARRAY_SIZE, complement); printf("The complement of set A is: "); for (i = 0; i < ARRAY_SIZE; i++) if (complement[i] == 1) printf("%d ", i); //Print complement for array B set_complement(arrayB, ARRAY_SIZE, complement); printf("\nThe complement of set B is: "); for (i = 0; i < ARRAY_SIZE; i++) if (complement[i] == 1) printf("%d ", i); printf("\n"); return 0; } /* * Both functions should use pointer arithmetic –not subscripting– to visit array elements. * In other words, eliminate the loop index variables and all use of the [] operator in the function. */ /** * set_difference function: it should find the difference of the set represented by array a * and set represented by array band store the result in the set represented by array difference. * * @param a Array A * @param b Array B * @param n The size of all the arrays * @param difference The array to store the difference result in */ void set_difference(int *a, int *b, int n, int *difference) { int *p; for (p = a; p < a + n; p++) { if (*p == 1 && *b == 0) *difference = 1; else *difference = 0; //Increment by 1 every loop b++; difference++; } } /** * set_complement function: it should find the complement of the set represented by array a * store the result in the set represented by array complement. * * @param a The Array * @param n Size of Array * @param complement The array to store the complement result in */ void set_complement(int *a, int n, int *complement) { int *p; for (p = a; p < a + n; p++) { if (*p == 0) *complement = 1; else *complement = 0; complement++; } } /** * Prompts the user to enter input data for the given array * * @param array The array * @param name The name of the Array */ void promptArray(int *array, char name) { printf("Please enter the number of elements in set %c:\n", name); int elements; scanf("%d", &elements); printf("Enter the numbers in set %c:\n", name); int *p; /* * Read each number from the console and use the * number as the index in the array to set it to 1. * Input is restricted from 0-9 */ for (p = array; p < array + elements; p++) { int number; scanf("%d", &number); *(array + number) = 1; } }
the_stack_data/161080103.c
// WARNING in ieee80211_get_sband // https://syzkaller.appspot.com/bug?id=7716dbc401d9a437890d // status:0 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include <arpa/inet.h> #include <endian.h> #include <errno.h> #include <net/if.h> #include <netinet/in.h> #include <pthread.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/socket.h> #include <sys/syscall.h> #include <sys/types.h> #include <time.h> #include <unistd.h> #include <linux/futex.h> #include <linux/genetlink.h> #include <linux/if_addr.h> #include <linux/if_link.h> #include <linux/in6.h> #include <linux/neighbour.h> #include <linux/net.h> #include <linux/netlink.h> #include <linux/rtnetlink.h> #include <linux/veth.h> static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; unsigned n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != hdr->nlmsg_len) exit(1); n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (n < sizeof(struct nlmsghdr)) exit(1); if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr)) exit(1); if (hdr->nlmsg_type != NLMSG_ERROR) exit(1); return ((struct nlmsgerr*)(hdr + 1))->error; } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static long syz_genetlink_get_family_id(volatile long name) { struct nlmsg nlmsg_tmp; int fd = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (fd == -1) { return -1; } int ret = netlink_query_family_id(&nlmsg_tmp, fd, (char*)name); close(fd); if (ret < 0) { return -1; } return ret; } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void loop(void) { int i, call, thread; int collide = 0; again: for (call = 0; call < 12; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); if (collide && (call % 2) == 0) break; event_timedwait(&th->done, 45); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); if (!collide) { collide = 1; goto again; } } uint64_t r[8] = {0xffffffffffffffff, 0xffffffffffffffff, 0x0, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: res = syscall(__NR_socket, 0x10ul, 3ul, 0x10); if (res != -1) r[0] = res; break; case 1: memcpy((void*)0x200001c0, "wlan0\000\000\000\000\000\000\000\000\000\000\000", 16); syscall(__NR_ioctl, r[0], 0x8914, 0x200001c0ul); break; case 2: res = syscall(__NR_socket, 0x10ul, 3ul, 0x10); if (res != -1) r[1] = res; break; case 3: memcpy((void*)0x20000200, "nl80211\000", 8); res = -1; res = syz_genetlink_get_family_id(0x20000200); if (res != -1) r[2] = res; break; case 4: memcpy((void*)0x20000700, "wlan0\000\000\000\000\000\000\000\000\000\000\000", 16); res = syscall(__NR_ioctl, r[1], 0x8933, 0x20000700ul); if (res != -1) r[3] = *(uint32_t*)0x20000710; break; case 5: *(uint64_t*)0x20000340 = 0; *(uint32_t*)0x20000348 = 0; *(uint64_t*)0x20000350 = 0x20000300; *(uint64_t*)0x20000300 = 0x20000040; *(uint32_t*)0x20000040 = 0x24; *(uint16_t*)0x20000044 = r[2]; *(uint16_t*)0x20000046 = 5; *(uint32_t*)0x20000048 = 0; *(uint32_t*)0x2000004c = 0; *(uint8_t*)0x20000050 = 6; *(uint8_t*)0x20000051 = 0; *(uint16_t*)0x20000052 = 0; *(uint16_t*)0x20000054 = 8; *(uint16_t*)0x20000056 = 3; *(uint32_t*)0x20000058 = r[3]; *(uint16_t*)0x2000005c = 8; *(uint16_t*)0x2000005e = 5; *(uint32_t*)0x20000060 = 7; *(uint64_t*)0x20000308 = 0x24; *(uint64_t*)0x20000358 = 1; *(uint64_t*)0x20000360 = 0; *(uint64_t*)0x20000368 = 0; *(uint32_t*)0x20000370 = 0; syscall(__NR_sendmsg, r[1], 0x20000340ul, 0ul); break; case 6: *(uint64_t*)0x20001280 = 0; *(uint32_t*)0x20001288 = 0; *(uint64_t*)0x20001290 = 0x20001240; *(uint64_t*)0x20001240 = 0x20000080; *(uint16_t*)0x20000080 = 0; *(uint32_t*)0x20000082 = 0; memcpy( (void*)0x20000086, "\x06\x00\x66\x00\x00\x00\x00\x00\x04\x00\x67\x00\x6a\x0f\x33\x00\x70" "\xb5\xa3\x6f\x21\x6e\x34\xd2\x33\x8f\x4e\xd9\xa7\x77\x4e\xac\x4e\x6f" "\xfc\xd3\xf6\xaa\xa3\xc3\x4f\xf3\x38\x9d\x2c\x41\x46\xf0\x78\xa5\xdc" "\xd1\xad\x60\x61\x13\x94\x19\xb2\xc3\xf8\xa1\x6f\x7e\x68\x20\xf5\x1f" "\x61\xb2\x5f\xe2\xf0\x33\x44\xe6\xac\x3c\x42\x2b\xb3\xe6\xc6\xb7\xb2" "\x36\xf2\x21\xca\xcf\xfa\xd5\x43\xa4\x91\x18\xc9\x4a\x01\x2a\xda\x60" "\xb6\x10\x27\x8b\xd3\x48\xb2\xc0\x12\x4f\x59\x80\xde\xc1\x6b\xd7\x0c" "\xff\xf5\xbe\xc9\x9c\x20\xb0\x7d\x91\xd3\xca\x14\xfe\x18\x79\x54\x20" "\x5d\xe7\xdb\x7f\xdc\x9f\x80\x6a\x20\x0f\x99\xaa\xf3\x0e\x36\xd3\x4c" "\x89\x86\x9c\xf1\xe9\x5f\x55\xb3\x83\x23\x5b\x5c\x07\xcf\xc7\xde\xc8" "\xea\xad\x71\x93\x46\xd1\xed\xd5\x61\xa8\x66\x1d\x57\xe6\x21\xf4\xd2" "\x56\x87\xfa\x5b\x24\x5a\xd1\xb8\x9b\x58\x73\x65\x35\x63\x54\x43\x48" "\x09\xd6\x40\x20\xa9\x49\x0f\xca\xed\x02\x76\x89\x0b\x55\xe7\x16\x0a" "\x60\x70\xab\xc8\xac\x01\xd1\x5b\x12\x0f\x0b\xd5\xf4\xff\x05\xc6\x3d" "\xcf\xc8\xba\x95\xd3\x6e\xd0\x8c\x5f\x29\x93\x7b\x29\x3b\x0d\x24\xce" "\x7c\xde\x1b\xeb\x2d\x65\x60\x36\x5b\x59\x0b\x29\x0a\x62\x81\x8b\x5a" "\x3b\x8d\x87\x45\x57\x81\x60\x71\x10\x45\x14\x7b\x2f\x54\xba\x95\xba" "\x71\x22\xf7\x65\xc5\xa5\xea\xa1\x53\x1c\xef\x8f\x67\x69\x9b\x47\x60" "\x65\xfd\x16\x75\xec\xe8\x67\x6e\xac\xa8\xc4\x53\x72\x59\x04\x3c\xa7" "\x9d\x8a\xb4\x77\xaf\xca\xe2\x65\x17\xd1\x4a\x99\xa4\x90\x8f\x67\x79" "\x45\x9d\x53\xf6\x71\x35\x91\xd8\x36\x15\x73\x1d\x46\x3c\xaa\xf7\x74" "\xa9\xd6\x6f\xb7\x83\x45\xc3\xd3\x0e\xe4\x29\xbb\xa1\xd4\xf6\xb6\x85" "\xcb\x98\x45\xef\x52\xc8\x6e\xb0\x89\x87\x17\x75\x60\x38\xa3\x2f\xab" "\x83\x50\xe6\xbf\xa5\xf6\x2d\x8f\xea\xd8\xe7\xc8\xf2\xf3\x06\xbd\x73" "\xcc\xda\x6b\xe2\x9f\xff\x8a\xe8\xee\x0c\x77\x9a\x35\x8e\x2c\xb4\x94" "\xef\xcd\x64\x59\xa6\x02\x36\x1e\x14\xca\x56\xf5\x51\x26\x8e\xd2\xbd" "\xc7\x03\x0f\xb6\xa4\x5e\xa9\x7a\x68\xec\x61\xb6\x47\x14\x53\x1f\x6b" "\x3b\x76\x08\x97\xb0\x0e\x81\xee\xd5\x9a\xb9\xd4\xa1\xc3\x5b\x5f\x1e" "\x76\x96\xcf\x71\xf3\x11\xbb\xb3\xdb\x1e\xfe\x24\x51\x95\x23\xdf\xb5" "\xf8\x27\xde\x6a\x78\xf7\x7d\x50\x91\x09\xce\x28\x37\xa6\x1e\x5b\x5b" "\xc8\x03\x39\x55\xaf\xfd\x68\xf9\x3d\x02\x67\xb7\x30\x82\xfe\x1f\xf1" "\xd3\x4d\xa9\xed\xf1\xe6\xd9\x6a\xd0\xa1\x84\xba\x41\x04\xf2\x7a\x55" "\x95\xa6\x3e\x30\x24\xe6\x7d\x68\xee\xf8\x79\x93\x47\x64\xb1\xf4\x39" "\xed\x57\xe4\x61\xab\x72\xe2\xa8\x2c\xa7\xf0\xc8\x9f\x74\x90\xb6\x5a" "\x1d\xfa\xc3\x6d\xff\xab\x60\x76\x5b\xdd\x0f\xe3\x55\x2a\xf2\x70\x3a" "\xb0\x72\xa9\xe8\xc3\xbd\x5e\xc6\x29\xb8\x48\x3b\xf9\x8c\x11\xfc\xe7" "\x90\x69\xe2\x86\x85\xb6\xe5\xdf\x08\xd4\xd7\xe4\xd3\xe9\xab\xcc\x65" "\xa9\x7b\x09\xfe\x06\x5d\xec\x3b\x22\xbb\x32\x99\xb7\x75\xcb\xa1\x5a" "\x48\x1b\x8c\x7d\x8d\x7f\x0a\xb4\xa0\x02\x2c\xf3\x47\x0e\x99\x05\x42" "\x3f\x9d\x02\xa9\xb7\x47\x66\xac\xf8\x0b\xce\x07\x2a\xa4\x53\xe8\xae" "\xa6\x11\xc0\x18\x1f\xe2\x2a\x3d\xcf\xb4\xc4\x29\xd0\x28\xb0\xf6\x83" "\x8e\xc4\x10\x08\xea\xbe\xcc\x80\x1f\x3e\xa5\xb7\xab\x61\x4e\x19\xa6" "\x06\x7a\xc4\x22\x05\xfe\xde\x87\x3c\xd4\xc3\x6d\xb5\x3d\xd2\x1d\xbc" "\x8c\xeb\xf3\x99\x6a\x7a\x22\x7f\x06\x4e\xef\xd9\x32\x89\x9f\xda\x3b" "\xbd\xf7\x00\xef\x81\x8d\xbb\xaf\xc2\x11\xf1\x4b\xad\xd7\x32\x14\xc9" "\x14\x4d\xda\x61\x8e\xd4\x53\x84\x20\x58\xe8\x96\x12\xe5\x18\xb1\xa1" "\x2d\xb6\xd8\x9a\xfd\x16\x1b\xc0\xe0\x5e\xf6\x3a\x0d\xb7\x7c\x5a\x44" "\x4c\xa5\x06\x45\x46\x64\x4b\x0e\xce\x24\xe5\xcd\xc4\x18\x44\x13\x23" "\x9e\xa5\x71\x2c\x33\x9b\x70\x89\xbe\xd5\x0e\x83\xf3\xb8\x10\x7a\xa1" "\x3a\xbf\xb2\xf6\x70\xb7\x48\xd7\xa7\x31\x6e\x2d\x98\x67\x2f\x26\x8a" "\xc8\xee\x86\x23\x97\x93\x27\x89\xb2\x69\x01\xde\x60\x33\x46\xdd\x9d" "\xa0\x11\xa8\x04\x42\xce\xe6\x69\x28\xab\x43\xa3\x76\x86\x14\x56\x54" "\x68\xf0\xda\xf2\xcb\x99\x32\x15\x34\xc2\x69\x91\x56\xf6\xe1\x10\x92" "\x0b\x93\x1d\x5d\x1b\xf5\xed\x54\xa4\xbd\x02\x92\xff\xb5\x8b\x40\x8d" "\x42\xb0\x8a\x39\x26\x51\xd2\x7d\x0e\xa5\x3e\xd4\x91\xd1\xc2\x11\xb4" "\x0d\x22\x02\x19\x7b\x02\xe0\x0a\x3c\x88\x72\x47\x4d\xc7\xf7\x4a\x5a" "\xe3\x38\xe9\xf6\x2d\x92\xff\x70\x7a\x7a\xac\x38\xd3\xa7\x97\x67\x7a" "\xc9\x52\x97\x1f\xec\x14\x7a\x6d\x55\x16\xf5\x2a\x82\x44\xa7\x3d\x6c" "\x6f\x74\x2a\x4d\xa9\x1c\x73\x3f\xc0\xe0\x04\x6e\xf1\x05\x23\x91\xc3" "\xb2\xb9\x7b\xde\x71\x52\x43\x14\x73\x0c\x0c\x62\xa6\x0c\xf4\x81\x7a" "\x3b\x48\xdf\xee\xfb\xf8\x27\xf1\x3d\xef\xc6\x86\x3a\x7a\x3b\x8b\xbb" "\xcc\x4b\x6c\xee\x2c\xe5\xc9\xa5\xab\xae\x2b\xa6\x5d\x16\xf4\xce\x55" "\x00\xd6\x31\x41\x87\x5f\xcc\x62\xd5\x33\x7e\x62\x76\x84\xc0\x14\x0a" "\x52\xcd\x93\xdb\xdf\x00\x39\xed\xd2\x29\x83\x03\x44\x5b\xe7\xb5\x06" "\x34\x5a\x58\x4d\x4a\x32\xbf\xc1\x1e\xe2\xb5\xc3\x7b\x1a\x96\x7a\xf2" "\x98\xb8\x10\x44\xff\x3e\xdf\x80\x7e\xc5\x8d\xc9\xf6\x9b\xa1\x84\xd5" "\x87\x31\xe8\xc4\x25\xff\x4a\x57\x0b\xb1\x88\xf3\xb2\xae\xdc\x34\xcf" "\x84\x79\x7c\x78\xa6\xc7\x89\x27\x6d\x1b\x25\x99\x38\x1c\xc5\x44\x7b" "\x3b\xe6\x59\xc8\xea\x44\x2c\x79\x79\xe5\xb7\xa3\x7f\xad\xda\x42\xbc" "\x05\xee\x3c\x49\x04\x0b\xbe\x8c\xc8\x34\x74\x5c\xb0\xfa\x79\xf9\x3f" "\x39\xa2\x26\xe5\x16\x36\x34\x27\xa8\x00\x15\x79\x85\x03\x7a\xab\xd4" "\x71\x6b\xe8\x2c\xd2\xc3\x3d\xd9\x97\x4d\x84\x5a\xd8\xb6\xaa\x7e\xcf" "\x11\xc8\x17\xf1\xca\x04\x76\xd3\x5a\x25\x46\x12\xe1\x4e\xb1\x96\x6d" "\xd7\xb5\x8e\xb9\xda\x1f\xae\x32\xe2\x20\xb7\x4f\x73\x9d\xd0\x24\xca" "\xeb\x79\x29\xcb\x50\xd6\x0f\xba\x4d\x5a\xe5\x46\xae\x8e\x08\xcd\x49" "\x0a\x18\x65\x73\xe9\x40\x59\x6e\xb9\xc7\xf5\xba\x08\xb7\xcc\x0c\xa0" "\x5c\x65\x86\xaf\xa3\xc0\x22\xf8\x19\xee\xe6\x4a\x15\xff\x8b\x43\x75" "\x7a\x98\xcc\x8b\x2d\xd1\x9c\x74\x07\xf9\xc8\xd2\xac\xd7\xda\x16\xd3" "\x53\xdf\x5e\x6e\x15\x4a\xcc\x82\x9f\xa7\x51\x3a\xef\x61\x77\x59\x7e" "\x85\x74\x4d\x9a\x2a\xce\xd9\x6b\x76\x71\x04\xbf\xc1\x3b\x5b\xd7\x36" "\x94\xf0\x09\x1b\x5f\x3c\x7d\x6d\x98\x51\xf7\x7f\xd8\xc9\xf4\xf7\x09" "\xc7\xec\x3d\x30\x9c\xe8\xd5\xf2\x65\x96\x76\x2f\xf6\xad\x74\x3c\x82" "\xec\xa3\xf2\xc8\x22\x1c\x39\x58\x0f\x88\x0b\xcc\x3f\x57\xb4\x21\x7b" "\x33\xcf\x88\x4a\x9c\x8b\x95\x4d\x40\xb1\x2e\x48\x37\xdd\x8e\xf1\x78" "\x16\xab\x6f\x17\x9e\xf9\xc8\x1f\x31\x89\x5f\x58\xdd\x3f\x5f\xd0\xb3" "\x74\x4d\xc5\xe4\x7b\x72\x39\x56\xf4\xf7\x5a\xfe\x25\x9f\x80\x9d\x90" "\xd2\x60\x2b\xd9\x4e\x18\x14\x94\x5a\xee\xde\xb3\x19\x96\xab\x7e\xee" "\xa3\x58\xd5\x11\xd7\x16\x66\xb3\x60\xab\xa4\xd9\xc2\xc8\x90\x9d\x49" "\x68\x43\xdd\x4c\xb4\x34\x96\xcd\xc9\x3b\x36\xd8\x1d\x75\x6b\x0e\xb1" "\x63\xc4\x0a\x32\x77\xdc\xb2\xad\xe8\x6d\x61\x45\x91\x23\x27\x09\x4b" "\x1c\xbd\xf6\x38\x71\x8f\xaa\xa1\x8b\x10\x6c\x9a\x53\xd0\x90\x22\x48" "\x4b\xeb\x23\xa2\xfc\x5c\x87\xa6\x36\xb1\x11\x50\x9d\x41\xa0\xc3\x39" "\x33\x5c\xd6\x00\x29\x4f\xf8\xf5\x9f\xb1\x55\x60\x13\x67\x97\xaa\x2f" "\x8a\xf4\x05\x22\xa2\x22\xfc\x1e\xb8\xae\x37\x34\x42\x21\x02\x28\xc0" "\xf0\xc6\x1f\x1e\x4e\x19\xb8\xbd\x88\xc2\x39\x14\xec\xa9\xdd\x55\xcb" "\xd1\xc9\x89\xc1\xa6\x36\x30\x80\x77\x6b\xf3\x7e\xfa\x09\x1b\x4a\xd3" "\x2f\xbc\xe1\x47\x0b\x25\xc2\xb8\xe7\xd4\xdc\xb2\x4b\x23\x35\xe3\x23" "\xef\x90\x91\xe9\xdf\xc8\x8e\x32\x08\x5a\x64\xcc\x30\xcd\xde\xb5\xc3" "\xe1\xb8\x05\xc7\xfc\xa0\x7e\xaf\xdc\xcf\x9c\x15\x1e\x0d\xeb\x8f\x01" "\x7b\x6c\xbc\x5a\x74\x20\x8f\xd9\xa8\x27\x67\x35\x7c\x91\x36\xdc\x3c" "\xaa\xd6\x6d\x8e\xf9\x54\xbc\x44\x3a\xc8\x04\x52\xf1\x96\x4f\xa4\xd0" "\xf2\x53\xcd\x43\xa9\x09\x3b\x2f\xf2\x96\x7c\x30\x86\x57\x87\x44\xc3" "\x90\x1d\xb8\x37\x8a\xd7\x0b\xc6\x42\x37\x23\xad\x37\x93\x12\x24\x25" "\xb5\x2c\x80\x42\x2c\xfc\xaf\x9f\xd0\x26\xf0\x20\x14\xa8\x21\x59\x88" "\x8e\x95\xbd\x56\x31\x6c\xd7\x15\x7a\xa3\x7e\xf2\xdd\x0b\xb1\xb5\x12" "\xbd\x21\x51\xd2\x67\xec\x39\x62\xa7\x61\x67\xa0\x7f\x34\x4a\x0d\x20" "\x81\x51\xe5\x9e\x38\x86\x08\x2f\xa4\x06\xbc\x40\x0c\xbf\xb9\xbd\xf4" "\x0c\x88\xc5\xbb\xf0\x80\xb6\x60\x5d\xe0\x2f\xe0\x61\x66\x58\x92\x8e" "\x3e\xaa\x2f\x30\x25\x6f\x61\xda\x44\x51\x47\xc3\x37\xc9\xf6\x50\x84" "\x4f\x38\x27\xe8\x42\x5a\x71\x6f\xbc\x89\xd3\x01\x1f\xbb\x4a\xce\x78" "\x96\x00\x81\x6c\x79\x33\x60\x67\x4c\x90\x90\x82\x1e\x05\x0e\x51\x3f" "\x0b\x2a\x37\x43\x88\x9c\xf1\x39\x37\x44\x78\x94\xdb\x60\x8f\xca\xed" "\x93\x52\xb4\xfb\x35\xf1\x6f\xd7\xb7\x73\x17\x52\x2d\xe4\xf0\xc1\x11" "\xf5\x8b\x04\x99\xe2\xa7\x9a\x3a\x0a\xe2\x71\x38\x20\x0f\x2b\x4c\xca" "\x0d\xae\x3b\xa4\x6f\x4d\xdb\x6d\x11\x54\x28\x1b\x9b\x93\x5b\x85\xba" "\xcf\x55\xd8\x33\xcc\x78\xe0\x51\x15\x04\xff\x9e\xc9\x6d\x9b\x52\x3b" "\x78\x28\x43\x06\xdf\xf1\xd3\x94\x0d\x2f\xbf\x0e\x19\xde\xd4\x80\x40" "\xb9\xc7\x46\x33\xd9\x20\x38\x32\xdc\x66\xd2\xff\x1d\x29\x4a\x50\x67" "\xdf\xca\x76\xc8\xbf\x96\xa4\x4b\x1e\xf7\x59\x9f\xe0\x07\x1b\x5c\xc1" "\xb0\x4b\x7a\xc0\xf4\x5b\x44\xe7\x7c\x5f\x17\x69\x36\xc0\x18\x39\xf8" "\x81\x56\xb5\xef\xe0\x91\xc5\xb5\x54\xda\x74\x31\x67\x2a\xd0\x96\x31" "\x85\xf6\x78\x46\xca\xc2\xeb\x5f\x01\x28\xff\xf8\x73\xdf\x60\x24\x5c" "\x38\x95\xe5\x40\x8d\x16\x3a\x22\xc6\x50\x85\xaa\xe3\x64\x95\xca\x94" "\x0b\x72\x3c\x25\x67\x95\x59\x78\x28\xee\x7d\x79\x49\xa4\x43\xa4\x47" "\xc2\xd4\x77\xf8\x6b\x5c\x48\x7f\x50\xb0\x5f\xf9\x27\xfc\xd3\x28\xc8" "\x60\x01\xe6\x0f\x56\xa4\x9f\x03\x93\xe4\x93\x1e\x1d\xdd\xb2\x83\x3f" "\x07\x41\xa1\x0c\x7d\xe5\xcd\xb4\x37\xdd\xb2\xd8\xcd\x0a\x28\xb1\x4d" "\x9b\x93\xd1\x6d\xf4\x9a\xec\x8e\x7a\xd8\x08\xb2\xc7\x37\x37\x90\xf3" "\x3d\x8c\x47\x54\xad\x8b\x51\x83\x3f\x4e\x1d\x47\xdc\x21\xea\x12\x64" "\x33\xf1\xaa\xbc\x47\x19\xdc\xdc\x5b\x0d\x0b\x31\x29\xe7\x2f\x4a\x9a" "\xe4\xc6\x6b\xc3\x67\xa8\x62\xc8\x16\xef\xaa\xf4\xec\x64\x1d\x1c\x2c" "\xf0\x00\xd5\x4f\x9e\xc0\xf6\xda\x5b\x30\x4f\xd2\xce\x86\x4e\xe2\x5d" "\x60\x3a\xe0\x2a\xda\xbb\xa3\x1f\xb8\x43\x13\xe3\xfd\xa9\x70\xbd\x5f" "\x09\x47\xfa\x4e\x8d\x3e\xed\x68\xff\xbb\x1b\x95\xe1\xd6\x2f\x11\x4c" "\x08\x5d\x79\x52\x97\x5c\xac\xc3\x58\x0a\x86\x5a\x1b\x4d\xc4\x76\xd0" "\xe1\x40\x24\x23\xe8\x5b\x90\xc1\x79\xb3\x3b\x53\x13\x0c\x2d\xa6\x33" "\x4c\x3e\x9b\xef\xb7\xe5\xe4\xb6\x4c\xa3\x7e\x45\x23\xbb\xf8\x14\x3f" "\x3a\xc1\x25\x6a\xdc\x47\xf3\x71\xb6\x89\x6d\xc2\x88\x91\x98\x97\xaf" "\x33\x44\x5c\x28\x77\xb1\xc4\x71\xb6\xd8\x74\xaa\x60\x10\xe4\xd7\xf7" "\x91\xba\x12\x0c\x4b\x57\xb5\x6e\x21\x4a\x48\x06\x07\xde\x62\x9a\xd6" "\xb3\x9a\xea\xf1\x9c\xea\x4f\x25\x8a\x02\x66\x72\xb6\x49\x4d\xa6\x90" "\xb5\x9a\x63\x8d\x70\xbd\x44\x1f\x38\xdd\xf2\xb3\x9f\x6e\xc2\x51\xbb" "\xc5\x10\x71\x45\x12\x39\x26\xd9\x74\xf0\x9a\xa7\xe4\x56\xcf\xe4\xa2" "\xce\x51\xf3\x2f\x4e\x24\x7b\x4d\xf5\xd3\x6b\x96\xf0\x72\x67\x67\xb6" "\x63\x9f\x66\x8c\xa6\xf4\x4f\x88\x4c\x35\x9f\xa2\x96\x15\x48\xd2\x55" "\xbe\xa5\x61\x67\x45\x1a\x1b\xfc\x98\xa6\xdb\x83\xc8\x29\x68\x9b\xc3" "\xce\x44\x2d\xb8\x53\xf7\x2a\x81\xcd\x25\x41\xe9\xff\x17\x9c\x60\xa5" "\xc8\xe1\x3a\x0d\x94\x16\x55\xd1\x3b\xeb\xfa\x3c\x65\x20\x3b\x4a\x17" "\x4e\xd0\x11\x98\x9e\xf1\x0d\xd1\x03\xa8\x05\x24\xd9\x89\xae\x09\xa0" "\x07\xa4\x81\x05\x31\xfe\x77\x0d\x78\x2b\x07\xe6\xa3\x8f\x11\xd3\x80" "\x9a\xe3\xcb\x8b\xa7\xc0\x77\x47\x57\xb3\x8f\x41\x2a\x70\x25\xf7\x43" "\x49\xc1\x91\x3a\x27\xe7\xfa\x5a\x2e\x14\x05\x76\xcc\x3c\x50\x34\x86" "\x24\x20\xd3\xa9\x1e\x77\xf4\xfe\x94\x20\x23\xbf\xfe\xeb\x01\x2b\xee" "\x60\x72\xf3\x02\xd0\xae\x46\x10\x9b\x00\xd9\xd4\xa1\x52\x07\x60\x57" "\x45\xd7\x8f\x7b\x20\xd0\x51\xa5\x78\xd2\x35\x35\x5b\xab\x8a\xa5\xcb" "\x52\xd6\xa1\x8e\x6b\x63\xc1\xeb\x2e\x3a\x84\x40\x87\x5e\x93\x51\x7b" "\x68\x79\x4f\x3e\xcb\x11\x1b\xb6\x50\x5b\x98\x97\xf8\xad\xc1\x93\x70" "\x53\xa0\xf9\x65\xb6\x70\xb5\xb8\xfe\x98\x01\x4e\xec\x35\x54\x02\xdf" "\xd2\x00\x32\x37\x96\x98\xe3\x09\x3d\x09\xbb\x2f\xb2\x57\x92\xf4\x4b" "\x37\x28\xca\x1c\x1d\xcc\x9d\xc4\xf2\x38\x78\xb2\x59\xc4\xe9\x60\xd3" "\x12\xab\x1e\xb6\x3c\x05\xee\x76\x84\x20\x5e\x68\x03\x97\xfb\x58\x29" "\xf9\x5d\xa9\xf5\x4c\xd8\x39\x39\xd9\x4b\x29\x1a\x8a\x0a\xca\x75\x18" "\xa9\x9b\xf9\x65\x95\x06\xd0\xf8\x8b\xf6\xd7\x8f\x84\x92\xe9\x09\x55" "\x40\xb5\x70\xb5\xe5\x9c\xc8\x1c\x09\x72\x7b\xee\x7a\xf2\x68\x90\xf7" "\xa2\x9f\x53\x50\xe6\xbb\x39\xea\xf2\xed\xbb\x69\x58\xcb\x33\x6b\x51" "\xba\xe3\x81\xdc\x12\x3c\x2f\xa0\xf4\xa7\x75\xa2\xcb\x6a\xfb\xd4\x3b" "\x29\xfc\xab\xe1\x7b\x51\xb4\x63\xac\x74\xd0\xbc\x31\x2a\x46\x75\x95" "\x03\x3f\x9c\xec\x6a\x76\xba\xc8\xe0\x7d\xf7\x62\xd6\x06\x1c\x7b\x0e" "\x41\xc8\x3f\x8b\xec\x32\x5a\xf1\xa8\x05\xde\x83\xc8\x45\xe5\x50\xb8" "\x2c\x4e\xdb\xf3\xbd\xec\x44\x28\xe6\xca\x12\x25\xdc\xff\xcc\x5a\xf7" "\xb3\xf1\x9b\xe8\x85\xa6\x2b\x6c\xf2\x3c\x48\x06\x17\x9b\xd0\xae\x8d" "\x27\xe3\x97\x1b\x41\xa6\xb7\xd4\xf8\x5c\xe0\xb7\x8c\xc5\xf9\x83\x08" "\x60\x4c\x2f\x9b\xe2\x4a\x57\x3f\x71\x49\x6f\xd8\xd1\xb9\xd2\x2b\x6f" "\xb8\x46\x12\xaf\xee\x23\x32\x3e\x49\x97\x30\xb0\x81\x31\x92\x7d\x7a" "\x91\x97\x71\xe9\x10\x0a\x42\x43\x1a\x22\xe0\xb2\xc0\x6d\x69\x9e\x40" "\xa3\xec\x97\xec\x66\x65\xd2\xa5\xa3\x54\xd2\x4f\x66\xf3\xae\xdb\xfc" "\xbd\x61\xd0\xa9\xb9\xa3\x78\xa5\xbf\xd2\xc6\xee\x1d\x9d\xfb\x89\xc9" "\xe6\x3e\x7c\xe1\xd2\x3e\x8c\xd9\xa8\x9c\x9c\xe5\xe0\x9a\x7b\x10\x88" "\x51\xcf\x75\x6d\x55\x30\xad\xb4\x4e\x5a\xda\x79\x5d\xd6\x86\x18\x57" "\x7a\xbb\x03\x65\x89\x50\x33\xb8\x8f\x70\xda\x31\x51\x1a\x58\xf5\x36" "\xec\xf1\x28\x9f\x85\x86\x5e\xcf\xff\x3b\xc0\x10\x27\xfd\x2c\x9a\xb1" "\x6c\xd6\xe0\x19\x82\xee\xc0\xf8\xc9\x5d\x43\x39\x70\x10\x98\xb3\x27" "\x33\x54\x7e\x79\x07\xbc\x3a\xb4\x7b\x48\xd5\x76\x85\x13\x65\x53\x0a" "\xab\x58\x11\xd8\xd8\x65\xb3\x20\xe9\x1c\xc8\x0e\xb0\xa6\x18\xb5\x19" "\x00\x4f\x99\x43\x34\xf2\x56\x33\x7b\x56\x0e\x7f\x8a\x6c\xc7\xeb\x81" "\xb7\xa3\x5b\x54\x1e\xc5\xd2\xe8\xb7\xf8\x9e\x92\xc0\xc0\xca\x58\x01" "\xb8\x2b\x38\xf2\x9c\x15\xe7\x55\xdc\x18\x33\x8c\x4f\xd9\x2d\x0a\xd6" "\x75\x21\x3e\xc6\x2f\x47\x1d\x83\x11\x48\x90\x67\xdc\xac\x98\xa2\xa2" "\x7f\x54\x4a\xc4\xbb\x06\x09\x55\x2a\x72\x75\x5d\x38\x44\xad\xd5\xfb" "\x1e\xff\x57\xad\xb0\xc8\xf8\xd3\x91\x50\xf7\x88\xf6\x59\xc0\x0e\x9d" "\x4b\xe2\x3c\xea\xbb\x45\x40\x9d\xef\xa5\xc8\xac\x05\x96\x0f\xf8\x0a" "\xa3\x64\xd8\xc5\x26\xeb\xa5\x59\x03\x36\xa5\x4d\xb8\xdf\x42\xed\xa7" "\x0e\xd9\x17\x21\x04\x51\x3a\x70\x52\x80\x66\x37\x42\xbd\x96\x61\x3f" "\x39\x9c\xf6\x7b\x7a\xd4\x8c\x79\x0f\xfd\x9f\x7c\xb7\xe0\xcd\xb3\xa6" "\x20\x35\xd9\xb3\x76\x11\x5f\x60\x0c\xe0\x4f\x25\xb0\x86\xa1\xa2\x36" "\x23\x17\x80\xf5\x9e\x02\x03\x8c\x7d\x78\xd0\xae\x43\xfc\x39\x0f\x32" "\x3b\xda\x68\xad\xbf\xe4\xee\x61\x67\xfa\x93\xe9\x09\x85\xa6\x21\xe7" "\x8a\xa5\x0f\xba\x64\xac\x08\x4a\x02\x94\xd2\x5c\xe2\x0b\x09\xfd\x49" "\x2e\x03\x4c\x09\x6f\xde\x4b\xbf\x46\x65\x51\x2b\xb7\x3a\x84\x1a\x38" "\xa7\x73\x75\x1b\x4b\x53\x53\x2e\x12\x51\xac\xbf\xb1\x50\xf9\x68\x9b" "\xd5\x39\x3a\x8c\x30\xef\x5b\xae\xff\xae\xc1\x60\x39\x6e\xee\xa4\xfd" "\xbe\xe6\x44\x50\xfb\x93\x67\x9d\x52\xb2\xcc\xda\xbc\xbd\x6b\xac\xd3" "\x52\x6d\x8f\xe5\x66\x6d\xd1\x19\x80\x22\x8e\xc9\x90\x8f\x76\x1a\x74" "\x4c\x30\xea\x1f\x44\x26\xa9\xf3\x89\x2e\xc3\x9e\xa8\xa5\xec\x24\x8f" "\xd4\xda\x46\xf2\xc9\x9a\x8a\xd2\x9b\x10\xc2\x2d\x8a\x86\x1f\xa1\x92" "\xe7\x63\x27\x3e\x78\xc2\xee\xd4\xd2\x5d\xaa\xef\x3c\xe7\xf4\xa9\x93" "\x44\x76\x4e\x2e\x27\x04\x4c\x57\x39\xbf\x53\x56\xd4\xe9\x2e\x2a\x3a" "\xb1\x5a\x39\xd0\x22\x07\xa2\x32\x1f\xfd\xba\xae\xae\x04\x0f\xde\xd0" "\xf1\x65\x19\x89\x6a\x73\x29\x0b\x29\x25\xac\xd5\xef\x89\xd0\x46\x50" "\x62\x6b\xdb\x3f\x12\xaa\x85\x0e\xaa\xa1\x7b\x1a\x0d\x4e\x52\xb6\xc3" "\xb1\x62\x79\xf3\xd5\x57\xc3\x1f\xce\x76\x7f\x90\xc8\x9c\x1d\x8d\x09" "\x9b\xf5\xbc\x23\x4a\x71\x51\x69\x7f\x2b\x54\xcd\x6c\xa5\xcd\xe2\xc8" "\xd5\xb3\x80\x28\x7f\x86\xd3\x0b\xfe\x63\x83\x5c\xd0\x47\x02\x87\xf4" "\x25\x16\x7e\xb8\x56\x01\x91\xe9\xe5\x7d\xa5\x5a\xae\xb1\x80\x76\x53" "\x79\xdc\xb8\x9b\x64\x4a\x58\xa9\x95\xcc\x7d\xa9\xa5\x72\x3d\xea\xa4" "\x88\xda\x2c\x04\x8b\x25\x84\xa4\x49\x6b\x46\xe2\xac\xa3\x79\x99\xee" "\x22\x33\x09\x39\xc8\xf1\x00\x83\xab\x2b\x49\x73\xcc\x10\x4e\x07\x27" "\xeb\x7e\xde\x0d\xad\x3f\xcc\xd7\xae\xeb\x66\xf4\x0d\x10\x3b\xe5\xb3" "\x8f\x8c\x21\x0a\x2d\x3b\xe3\x56\x2d\xe5\x75\x98\x74\xe9\xa1\x4e\xf2" "\xda\x00\x50\xd3\x3b\x0d\x35\x5a\x9a\xa1\xe3\xdc\x9f\xf8\x3e\x2f\x59" "\x81\x2a\x0e\xc1\x49\xd8\x19\x14\x3f\x63\xfb\x44\xe5\x2d\xe2\x73\xbf" "\x57\xba\x4b\xde\x36\x17\x55\xae\x94\x9c\xb5\xac\xa8\x67\x20\xe6\x45" "\xa9\x2c\xcb\x2b\x47\x5a\x90\x9b\x31\x66\xc9\x29\xcb\xf6\x27\xf5\x5a" "\x81\xce\xdd\x4a\x19\xb2\x6e\x7f\xdf\xb7\xa0\x5c\x2d\x03\x4f\xd4\x99" "\xd7\xfb\xbb\x44\xfc\xdf\xd1\x62\x50\xd7\xfa\xa8\xf4\xee\xe0\x7e\xf6" "\x18\x5a\x3e\x6c\x90\x0a\x33\x7b\x68\x6a\xb0\x18\x65\xef\x8b\x3c\x72" "\x09\xf1\xff\x68\x98\x9d\x04\xc9\xb6\xdd\x6f\x8a\x33\x2d\x74\xe2\xb4" "\xf4\x41\x4f\xc0\x5a\xf0\xbf\x09\x49\xc2\x19\xfb\xdc\x45\xbd\xee\xe7" "\x1a\x0f\x24\xd2\xa9\xe6\xbd\x15\xc9\x94\xc4\xc3\x96\x6d\x3e\x7e\x01" "\xc9\xb2\x8f\x8d\xb5\xf6\x7e\x49\xc9\xb3\x30\x4b\x7a\xe3\x8a\x33\xed" "\x64\xd8\x3c\xc5\x7b\xb3\x70\x08\x2f\x36\x6e\xb3\xcd\xbd\xf2\x33\x88" "\xa6\x8b\x67\xa9\x7d\x5c\xd4\xc8\xa1\x82\x7a\x78\x1e\x87\x0b\x26\x59" "\xd2\x10\x94\x71\x34\x5c\xdb\x09\x08\x52\x4d\x30\xfd\x71\x00\x00\x0a" "\x00\x06\x00\x08\x02\x11", 3967); *(uint64_t*)0x20001248 = 0xfb0; *(uint64_t*)0x20001298 = 1; *(uint64_t*)0x200012a0 = 0; *(uint64_t*)0x200012a8 = 0; *(uint32_t*)0x200012b0 = 0; syscall(__NR_sendmsg, -1, 0x20001280ul, 0ul); break; case 7: res = syscall(__NR_socket, 0xaul, 2ul, 0x11); if (res != -1) r[4] = res; break; case 8: res = syscall(__NR_socket, 0x10ul, 3ul, 0x10); if (res != -1) r[5] = res; break; case 9: memcpy((void*)0x20000000, "wlan0\000\000\000\000\000\000\000\000\000\000\000", 16); res = syscall(__NR_ioctl, r[4], 0x8933, 0x20000000ul); if (res != -1) r[6] = *(uint32_t*)0x20000010; break; case 10: memcpy((void*)0x20000200, "nl80211\000", 8); res = -1; res = syz_genetlink_get_family_id(0x20000200); if (res != -1) r[7] = res; break; case 11: *(uint64_t*)0x20000040 = 0; *(uint32_t*)0x20000048 = 0; *(uint64_t*)0x20000050 = 0x200001c0; *(uint64_t*)0x200001c0 = 0x20000100; memcpy((void*)0x20000100, "<\000\000\000", 4); *(uint16_t*)0x20000104 = r[7]; memcpy((void*)0x20000106, "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00" "\x00\x00\x08\x00\x03\x00", 18); *(uint32_t*)0x20000118 = r[6]; memcpy((void*)0x2000011c, "\x04\x00\x13\x00\x06\x00\x12\x00\x00\x00\x00\x00" "\x0a\x00\x06\x00\x08\x02\x91\x00\x00\x01\x00\x00" "\x06\x00\x10\x00\x74\x03\x00\x00", 32); *(uint64_t*)0x200001c8 = 0x3c; *(uint64_t*)0x20000058 = 1; *(uint64_t*)0x20000060 = 0; *(uint64_t*)0x20000068 = 0; *(uint32_t*)0x20000070 = 0; syscall(__NR_sendmsg, r[5], 0x20000040ul, 0ul); break; } } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); loop(); return 0; }
the_stack_data/68888045.c
/** * @file lrintf.c * Copyright 2012, 2013 MinGW.org project * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice (including the next * paragraph) shall be included in all copies or substantial portions of the * Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. */ #include <math.h> long lrintf (float x) { long retval; __asm__ __volatile__ \ ("fistpl %0" : "=m" (retval) : "t" (x) : "st"); \ return retval; }
the_stack_data/26701022.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #define MAX_CONTENT_LENGTH 10000 int main(int argc, char *argv[]){ int stnum; char stname[10000]; FILE *search; int n = atoi(getenv("CONTENT_LENGTH")); char array[n]; fgets(array, n, stdin); int i; for(i=0; i<n && array[i] != '='; i++){ ; } for( ; i<n && array[i] != '+'; i++){ const char *a = &(array[i]); char *cat; cat = malloc(20); strcpy(cat, a); while(array[i+1] != ',' && array[i+1] != '\0'){ stnum = (int) strcat(cat, &(array[i+1])); i++; } } for( ; i<n && array[i] != '='; i++){ ; } int g = 0; for( ; i<n && array[i] != '&'; i++){ if(array[i] == '+'){ stname[g] = ' '; } else{ stname[g] = array[i]; } g++; } search = fopen("results.csv", "r"); char results[50]; fgets(results, 50, search); int t; for (t=0; results[t] != '/0'; t++){ if (results[t] == stnum){ if(results[t+1] == stname){ } } } printf("<p> %s </p>", results); return 0; }
the_stack_data/89199965.c
#include <omp.h> #include <stdio.h> #include <stdlib.h> #include <math.h> #include <time.h> #include <string.h> #define BUFF_SIZE 50 #define MAXSIZE 100 #define MAXLINE 50 #define N_EXEC 100 //number of parallel executed k_means algorithms #define N_FOLD 10 //number of folds for cross validation #define K_MAX 10 //max number of cluster #define CHUNKSIZE 10 #define IMPL 2 char FILEPATH[] = "data/iris_high.txt"; int k = 2; // initial value of clusters int threads, chunkn, chunkm; struct data { int dim; int atts; float** data; }; //structure that contains all SSE and centroids computed struct history { float SSE; float** centroids; }; float calcSilhouette(float** dataset, int **clusters, float** centroids, int n, int m); struct data loadDataset(char* fileName, char* dist); void normalize(struct data* dataset); void datasetSubSets(struct data dataset, int fold, struct data* trainingSet, struct data* testSet); float mainAlgo(struct data training, struct data test, int flagFinal); void kmeans (struct data structure, int numIte, float tol, struct history* recordStoria); void copySubMatrix(float** centroids, float** dataset, int *ranNum, int m); void randomIndexes(int *ranNum, int n); void zeroClusters(int **clusters, int n); void findClusters(float** dataset, int **clusters, float** centroids, int n, int m); float calcSSE(float** dataset, int **clusters, float** centroids, int n, int m); void freeArray(float **a, int n); void copyMatrix(float **mat1, float **mat2, int row, int col); void printData(struct data dataset); void getRow(float **matrix, int row, float *array, int m); float eucliDist(float *rec1, float *rec2, int m); void findCentroids(float** centroids, int **clusters, float** dataset, int n, int m); void printClusters(int **clusters, int n); void printCentroids(float** centroids, int m); void writeFile(float** data, int **clusters, int n, int m); void freeArrayInt(int **a, int n); int omp_thread_count(); ////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////// int main (int argc, char *argv[]) { threads = omp_thread_count(); strcpy(FILEPATH, argv[1]); char file[30] = "../data/"; strcat(file,argv[1]); strcat(file,".csv"); double begin = omp_get_wtime(); double end; struct data dataset = loadDataset(file, "\t"); chunkn = dataset.dim / threads; chunkm = (dataset.atts / threads) + 1; printf("\nCHUNKN: %d - CHUNKM: %d\n", chunkn, chunkm); normalize(&dataset); printf("DIM: %d\n", dataset.dim); struct data trainingSet; struct data testSet; int bestk=2; float sumSil[ K_MAX-1 ], appSSE, appSIL, SIL[ K_MAX-1 ]; for(k = 2; k<=K_MAX; k++) { printf("\nAnalizing for k = %d", k); sumSil[k-2] = 0; //N_FOLD-fold cross validation for(int fold=0; fold<N_FOLD; fold++) { trainingSet.data = (float**) calloc (dataset.dim - (dataset.dim / N_FOLD), sizeof(float*)); testSet.data = (float**) calloc (dataset.dim / N_FOLD, sizeof(float*)); datasetSubSets(dataset, fold, &trainingSet, &testSet); sumSil[k-2] +=mainAlgo(trainingSet, testSet, 0); if(fold<N_FOLD-1){ freeArray(trainingSet.data, trainingSet.dim); freeArray(testSet.data, testSet.dim); } } sumSil[k-2] = sumSil[k-2]/N_FOLD; //AIC[k-2] = 2*k + log10(sumSil[k-2]/testSet.dim); //Akaike criterion result printf("\nSilhouette: %f",sumSil[k-2]); //printf("\nAIC: %f, altro: %f", AIC[k-2], testSet.dim*log10(sumSil[k-2]/testSet.dim)); if(k==2) appSIL = sumSil[k-2]; if(sumSil[k-2] > appSIL) { bestk = k; appSIL = sumSil[k-2]; } freeArray(trainingSet.data, trainingSet.dim); freeArray(testSet.data, testSet.dim); end = omp_get_wtime(); double time_spent = (end - begin); printf("\nTime from start: %lf sec \n------------------------", time_spent); } printf("\n best k is: %d with Silhuette: %f", bestk, appSIL); // Setting the number of clusters to the best one chosen before as a result of AIC compare k = bestk; mainAlgo(dataset, dataset, 1); end = omp_get_wtime(); FILE* fd; fd = fopen("tempi.txt", "a"); fprintf(fd,"\n%lf sec\t%d\t%s\t%d",(end - begin), omp_get_num_threads(), FILEPATH, IMPL); printf("\nk_max= %d, Total time: %lf sec\n",K_MAX,(end - begin)); } //main algorithm //flag is =1 only when final iteration is computed (in order to write out the results) float mainAlgo(struct data training, struct data test, int flagFinal) { struct history bestStoria; float supportSSE; int** bestClusters =(int**) calloc(test.dim, sizeof(int*)); bestStoria.centroids = (float**) malloc(k * sizeof(float*)); for(int i=0; i<test.dim; i++) bestClusters[i] =(int*) calloc(k, sizeof(int)); for(int i=0; i<k; i++) bestStoria.centroids[i] =(float*) malloc(training.atts *sizeof(float)); bestStoria.SSE = training.atts * training.dim; struct history storia; storia.centroids = (float**) calloc(k, sizeof(float*)); for(int i=0; i<k; i++) { storia.centroids[i] =(float*) calloc(training.atts, sizeof(float)); } srand( time(NULL) ); for(int i=0; i<N_EXEC; i++) { kmeans(training, 5000, 0.001, &storia); if(storia.SSE <= bestStoria.SSE) { copyMatrix(bestStoria.centroids, storia.centroids, k, training.atts); bestStoria.SSE = storia.SSE; } } zeroClusters(bestClusters, test.dim); //reset best clusters matrix findClusters(test.data, bestClusters, bestStoria.centroids, test.dim, test.atts); //print last iteration results if(flagFinal == 1) { printCentroids(bestStoria.centroids, test.atts); writeFile(test.data, bestClusters, test.dim, test.atts); } float SSEtrovato = calcSSE(test.data, bestClusters, bestStoria.centroids, test.dim, test.atts); float silTrovata = calcSilhouette(test.data, bestClusters, bestStoria.centroids, test.dim, test.atts); //printf("\nthread: %d", omp_get_thread_num()); freeArray(bestStoria.centroids, k); freeArray(storia.centroids, k); freeArrayInt(bestClusters, test.dim); return silTrovata; } float calcSilhouette(float** dataset, int **clusters, float** centroids, int n, int m){ float sum=0.0, supDataset[m], supCentroid[m], avgi[k], avge[k], minAvge = 10, a, b, max = 0, sil, meansil = 0; int trovato = 0; int ci = 0; for(int ki=0; ki<k; ki++){ getRow(centroids, ki, supCentroid, m); avgi[ki] = 0; max = 0; for(int i=0;i<n;i++){ getRow(dataset, i, supDataset, m); ci += clusters[i][ki]; avgi[ki] += eucliDist(supCentroid, supDataset, m) * clusters[i][ki]; if(trovato==0) avge[ki] += eucliDist(supCentroid, supDataset, m) * (1 - clusters[i][ki]); if(clusters[i][ki]==0) trovato = 1; if(clusters[i][ki] == 0 && minAvge > eucliDist(supCentroid, supDataset, m)) minAvge = eucliDist(supCentroid, supDataset, m); } if(ci!=0) avgi[ki] = avgi[ki] / ci; trovato = 0; ci=0; } float lowestAvge = minAvge, avgiMean=0; for(int ki=0;ki<k;ki++){ if(lowestAvge>=avgi[ki]){ max = lowestAvge; sil = 1-(avgi[ki]/lowestAvge); } else{ max = avgi[ki]; sil = (lowestAvge/avgi[ki])-1; } meansil += sil; } meansil = meansil / k; return meansil; } void kmeans (struct data structure, int numIte, float tol, struct history* recordStoria) { int n, m, *ranNum; n = structure.dim; m = structure.atts; ranNum = (int*) calloc(k, sizeof(int)); //generate k random indexes to start from randomIndexes(ranNum, n); float** centroids = (float**) calloc(k, sizeof(float*)); int** clusters =(int**) calloc(n, sizeof(int*)); for(int i=0; i<n; i++) { clusters[i] =(int*) calloc(k, sizeof(int)); } for(int i=0; i<k; i++) { centroids[i] =(float*) calloc(m, sizeof(float)); } //saving initial centroids copySubMatrix(centroids, structure.data, ranNum, m); /*saving indexes that corresponds to each of the k clusters. Results will be stored into a matrix which columns are the cluster number and the rows corresponds to the indexes of records */ zeroClusters(clusters, n); //pongo a 0 tutti gli elementi del cluster findClusters(structure.data, clusters, centroids, n, m); int count = 0; float newSSE, currSSE; float** supCentroids = (float**) calloc(k, sizeof(float*)); for(int j = 0; j < k; j++) supCentroids[j] = (float*) calloc(m, sizeof(float)); do { currSSE = calcSSE(structure.data, clusters, centroids, n, m); copyMatrix(supCentroids, centroids, k, m); findCentroids(centroids, clusters, structure.data, n, m); zeroClusters(clusters, n); findClusters(structure.data,clusters,centroids, n, m); newSSE = calcSSE(structure.data, clusters, centroids, n, m); //sum of square errors calculation count++; } while(count < numIte && ((currSSE-newSSE)/currSSE) > tol); if(newSSE > currSSE) { copyMatrix(centroids, supCentroids, k, m); newSSE = currSSE; } copyMatrix(recordStoria->centroids, centroids, k, m); recordStoria->SSE = newSSE; freeArray(centroids,k); freeArrayInt(clusters,n); freeArray(supCentroids,k); free(ranNum); } void printData(struct data dataset) { printf("\n"); for(int i = 0; i < dataset.dim; i++) { printf("%d\t", i + 1); for(int j = 0; j < dataset.atts; j++) { printf("%.2f\t", dataset.data[i][j]); } printf("\n"); } } void normalize(struct data* dataset) { int i, j; printf("Normalizing the data\n"); float max[dataset->atts]; // Look for max of each column for(i = 0; i < dataset->dim; i++) { for(j = 0; j < dataset->atts; j++) { if(i == 0) { max[j] = 0; } if(max[j] < dataset->data[i][j]) max[j] = dataset->data[i][j]; } } // Normalize the data by dividing each value by the max value of the column for(i = 0; i < dataset->dim; i++) { for(j = 0; j < dataset->atts; j++) { dataset->data[i][j] = dataset->data[i][j] / max[j]; } } } void datasetSubSets(struct data dataset, int fold, struct data* trainingSet, struct data* testSet) { int init, end, apptr = 0, appte=0; init = fold * (dataset.dim / N_FOLD); end = ((fold + 1) * (dataset.dim / N_FOLD)) - 1; trainingSet->dim = 0; trainingSet->atts = dataset.atts; testSet->dim = 0; testSet->atts = dataset.atts; for (int i = 0; i < dataset.dim; i++) { if(i >= init && i <= end) { testSet->data[appte] = (float*) calloc(dataset.atts, sizeof(float)); for(int u=0;u<dataset.atts;u++) testSet->data[appte][u] = dataset.data[i][u]; appte++; } else { trainingSet->data[apptr] = (float*) calloc(dataset.atts, sizeof(float)); for(int u=0; u<dataset.atts; u++) trainingSet->data[apptr][u] = dataset.data[i][u]; apptr++; } } testSet->dim = appte; trainingSet->dim = apptr; } struct data loadDataset(char* fileName, char* dist) { FILE *file; int max = MAXSIZE; float* app; float** data; struct data dataset; // Open file and check for I/O errors file = fopen(fileName, "r"); if (file == NULL) exit(-1); else printf("Loading from file: %s\n", fileName); char buffer[MAXLINE]; // Count the number of attributes if (fgets(buffer, sizeof(buffer), file)) { // Get the number of attributes sscanf(buffer, "%d", &dataset.atts); printf("atts: %d\n", dataset.atts); } // Read the actual data from the file dataset.dim = 0; // Read line by line until there are more in the file dataset.data = (float**) calloc (MAXSIZE, sizeof(float*)); while(fgets(buffer, sizeof(buffer), file)) { dataset.data[dataset.dim] = (float*) calloc(dataset.atts, sizeof(float)); // Take the first token in the current line of data char *headapp = strtok(buffer, dist); int i = 0; do { // Get the token and convert it to float dataset.data[dataset.dim][i] = atof(headapp); // Get the next token headapp = strtok(NULL, dist); i++; } while(headapp != NULL); dataset.dim++; if(dataset.dim > max) { max += MAXSIZE; dataset.data = (float**) realloc(dataset.data, sizeof(float) * dataset.atts * max); } } return dataset; } void freeArray(float **a, int n) { for (int i = 0; i < n; ++i) { free(a[i]); } free(a); } void freeArrayInt(int **a, int n) { for (int i = 0; i < n; ++i) { free(a[i]); } free(a); } void copyMatrix(float **mat1, float **mat2, int row, int col){ //mat1 dest, mat2 source for (int i = 0; i < row; i++) { for (int j = 0; j < col; j++) { mat1[i][j] = mat2[i][j]; } } } //copy datasets records that corrensponds to centroids void copySubMatrix(float **centroids, float** dataset, int *ranNum, int m) { for(int i=0; i<k; i++) { for(int j=0; j<m; j++) centroids[i][j] = dataset[ ranNum[i] ][j]; } } float calcSSE(float** dataset, int **clusters, float** centroids, int n, int m){ float sum=0.0, supDataset[m], supCentroid[m]; for(int ki=0; ki<k; ki++){ getRow(centroids, ki, supCentroid, m); #pragma omp parallel for private(supDataset) reduction(+:sum) schedule(static, chunkn) for(int i=0;i<n;i++){ getRow(dataset, i, supDataset, m); sum += eucliDist(supCentroid, supDataset, m) * clusters[i][ki]; } } return sum; } void printClusters(int **clusters, int n){ printf("\t\t"); for(int ki=0;ki<k;ki++){ printf("k%d\t",ki); } for(int i=0;i<n;i++){ printf("\nrecord%d:\t",i); for(int j=0;j<k;j++){ printf("%d\t",clusters[i][j]); } } printf("\n"); } void findCentroids(float** centroids, int **clusters, float** dataset, int n, int m) { int elemCluster=0; float record[m]; //reset array for(int ki=0; ki<k; ki++) { for(int p=0; p<m; p++) { record[p] = 0; } for(int i=0; i<n; i++) { if(clusters[i][ki]!=0) { elemCluster++; for(int j=0; j<m; j++) record[j] += dataset[i][j]; } } #pragma omp parallel for schedule(static, chunkm) if(m >= omp_get_num_threads()) for(int p=0; p<m; p++) { if(elemCluster!=0) record[p] = record[p]/elemCluster; else record[p]=0; centroids[ki][p] = record[p]; } elemCluster = 0; } } void printCentroids(float** centroids, int m) { int p, i; for(i = 0; i < k; i++) { printf("\ncentroide cluster %d esimo: ",i); for(p=0;p<m;p++){ printf("%.2f,",centroids[i][p]); } printf("\n"); } } void zeroClusters(int **clusters, int n){ for(int i=0;i<n;i++){ for(int j=0;j<k;j++){ clusters[i][j] = 0; } } } //it assigns each dataset record to the nearest centroid, which corrensponds to its cluster void findClusters(float** dataset, int **clusters, float **centroids, int n, int m){ int salvaK=0; float supCentroid[m], supDataset[m], dist=0, lowerDist; #pragma omp parallel for schedule(static, chunkn) private(lowerDist, dist, salvaK, supCentroid, supDataset) for(int i=0;i<n;i++){ lowerDist = m; // lowerDist = m because data is normalized, so the max dist between 2 records is the number of attributes for(int ki=0;ki<k;ki++){ getRow(centroids, ki, supCentroid, m); //extract a row from the centroid matrix getRow(dataset, i, supDataset, m); //extract a row from the dataset matrix dist = eucliDist(supCentroid, supDataset, m); //computing the euclidean distance if(dist<=lowerDist) { lowerDist = dist; salvaK = ki; } } clusters[i][salvaK] = 1; } } void getRow(float **matrix, int row, float *array, int m){ for(int j = 0; j < m; j++){ array[j] = matrix[row][j]; } } /*function that generate k indexes, which will refer to k initial centroids*/ void randomIndexes(int *ranNum, int n){ int i; for(i=0;i<k;i++){ ranNum[i] = rand()%n; } } /*receive two records in input so it calculates euclidean distance, continuos data required */ float eucliDist(float *rec1, float *rec2, int m){ float sum = 0.0; for(int i=0;i<m;i++){ sum += ((rec1[i]-rec2[i]))*((rec1[i]-rec2[i])); } return sqrt(sum); } void writeFile(float** data ,int **clusters, int n, int m) { FILE* fd; char output[30] = "out/"; strcat(output,FILEPATH); strcat(output,".txt"); fd = fopen(output, "w"); for(int i = 0; i < n; i++) { fprintf(fd, "%d", i); for(int j = 0; j < k; j++) { fprintf(fd, "\t%d", clusters[i][j]); } fprintf(fd,"\n"); } } int omp_thread_count() { int n = 0; #pragma omp parallel reduction(+:n) n += 1; printf("\nNUM THREADS: %d\n", n); return n; }
the_stack_data/1254684.c
//********************************************************* //* Trabalho 3 de Programacao de Computadores I - Batalha Naval //* Curso de Sistemas da Informação //* Aluno: Leonardo Pacheco - matricula: 50013523 //* Professor: Alex Salgado //*******************************************************// #include<stdio.h> #include<stdlib.h> #include<ctype.h> int main() { char jogador[100]; int mapa [6][6] = { {1,1,0,0,0,1}, {0,0,0,0,0,1}, {0,1,0,0,0,0}, {0,0,1,0,0,1}, {1,0,0,1,1,0}, {0,1,0,1,0,0}}; int i, j; char controle[6][6]; int continuar = 1; int score = 0; printf("\nJogador, qual o seu nome? "); scanf("%s", jogador); setbuf(stdin, NULL); for(i=1; i<6; i++){ for(j=1; j<6; j++){ controle[i][j] = '.'; printf("%c ", controle[i][j]); } printf("\n"); } //primeira vez obrigatória de jogar printf("\n\nOlá %s vamos jogar...\n", jogador); printf("\nDigite o numero correspondente a linha: "); scanf ("%d", &i); printf("\nDigite o numero correspondente a Coluna: "); scanf("%d", &j); if(mapa[i][j] == 1) { controle[i][j] = 'X'; score ++; printf("Bomba!!\n"); printf("Seu score é de %d pontos\n", score); printf("Deseja Continuar? 1 = Sim / 0= Não:"); scanf("%d", &continuar); } else { controle[i][j] = 'O'; printf("Agua!!, que pena\n"); printf("Seu score é de %d pontos\n", score); printf("Deseja Continuar? 1 = Sim / 0= Não:"); scanf("%d", &continuar); } for(i=1; i<6; i++) { for(j=1; j<6; j++) { printf("%c ", controle[i][j]); } printf("\n"); } //Começa o loop while(continuar ==1) { printf("\nDigite o numero correspondente a linha: "); scanf ("%d", &i); printf("\nDigite o numero correspondente a Coluna: "); scanf("%d", &j); if(mapa[i][j] == 1) { controle[i][j] = 'X'; score ++; printf("Bomba!!\n"); printf("Seu score é de %d pontos\n", score); printf("Deseja Continuar? 1 = Sim / 0= Não:"); scanf("%d", &continuar); } else { controle[i][j] = 'O'; printf("Agua!!, que pena\n"); printf("Seu score é de %d pontos\n", score); printf("Deseja Continuar? 1 = Sim / 0= Não:"); scanf("%d", &continuar); } for(i=1; i<6; i++) { for(j=1; j<6; j++) { printf("%c ", controle[i][j]); } printf("\n"); } } printf("Essas foram suas jogadas!\n\n%s obrigado por Jogar conosco!\n\n",jogador); return 0; }
the_stack_data/165768066.c
#include <stdio.h> #include<stdlib.h> void copie (FILE * fs, FILE * fd) { int c ; while( (c= fgetc(fs)) != EOF) fputc(c,fd); } int main() { FILE * source = fopen("exo.rtf","r"); FILE * destination = fopen("copie.rtf","w"); copie (source, destination); fclose(source); fclose(destination); return 0; }
the_stack_data/117328551.c
#include <stdio.h> #include <stdlib.h> #include <stdarg.h> FILE* data; void db_add(char* tam, ... )// { va_list lista; int ct = 1 , i; for ( i = 0; tam[i] != '\0'; i++) { if (tam[i] == '%') { printf(" %d %c \n", ct,tam[i+1]); ct ++; } } if((data = fopen("estoque.txt","a+")) != NULL) { }else { printf("falha em abrir arquivo\n"); } printf("%d\n", ct); fclose(data); } void menu_1() { system("clear"); printf("+--------------------------------------------------------------+\n"); printf("| |\n"); printf("+--------------------------------------------------------------+\n"); printf("| Opcao |\n"); printf("| |\n"); printf("| 1 > incluir produto |\n"); printf("| 2 > consultar produto |\n"); printf("| 3 > remover produto |\n"); printf("| |\n"); printf("+--------------------------------------------------------------+\n"); } void menu_2 ()// { system("clear"); printf("+--------------------------------------------------------------+\n"); //======================================================================================== //======================================================================================== printf("+--------------------------------------------------------------+\n"); printf("| 1 - excluir | 2 - editar | 3 - menu principal |\n"); printf("+--------------------------------------------------------------+\n"); } void menu_3() { system("clear"); printf("+--------------------------------------------------------------+\n"); //======================================================================================== //======================================================================================== printf("+--------------------------------------------------------------+\n"); printf("| 1 - salvar | 2 - cancelar |\n"); printf("+--------------------------------------------------------------+\n"); }
the_stack_data/67325458.c
/* * model.c - modeling file for coverity * Copyright 2017 Peter Jones <[email protected]> * */ #ifndef __COVERITY__ /* This is so vim's Syntastic checker won't yell about all these. */ extern void __coverity_string_size_sanitize__(int); extern void __coverity_negative_sink__(int); extern void __coverity_alloc_nosize__(void); extern void *__coverity_alloc__(int); extern void __coverity_sleep__(); extern void __coverity_tainted_data_sanitize__(void *); #endif void * OBJ_dup(void *o) { __coverity_alloc_nosize__(); } int UTF8_getc(const unsigned char *str, int len, unsigned long *val) { /* You can't quite express the right thing here, so instead we're * telling covscan that if len is a certain value, the string has * been checked for having a NUL at the right place. Ideally what * we'd tell it is it's never allowed to give us a string shorter * than a certain length if certain bits (i.e. the UTF-8 surrogate * length bits) are set. */ if (len <= 0) { __coverity_string_size_sanitize__(0); return 0; } else if (len <= 6) { __coverity_string_size_sanitize__(0); return len; } return -2; } typedef unsigned long long u64; typedef struct { unsigned long long hi; unsigned long long lo; } u128; void gcm_gmult_4bit(u64 Xi[2], u128 Htable[16]) { __coverity_tainted_data_sanitize__(Htable); } void msleep(int n) { __coverity_sleep__(); } /* From MdePkg/Include/Base.h or so */ typedef unsigned long long UINT64; typedef unsigned long UINTN; typedef long INTN; typedef UINT64 EFI_PHYSICAL_ADDRESS; typedef UINTN RETURN_STATUS; typedef RETURN_STATUS EFI_STATUS; #define MAX_BIT (1ULL << (sizeof (INTN) * 8 - 1)) #define MAX_INTN ((INTN)~MAX_BIT) #define ENCODE_ERROR(StatusCode) ((RETURN_STATUS)(MAX_BIT | (StatusCode))) #define ENCODE_WARNING(StatusCode) ((RETURN_STATUS)(StatusCode)) #define RETURN_ERROR(StatusCode) (((INTN)(RETURN_STATUS)(StatusCode)) < 0) #define RETURN_SUCCESS 0 #define RETURN_INVALID_PARAMETER ENCODE_ERROR (2) #define RETURN_OUT_OF_RESOURCES ENCODE_ERROR (9) /* From MdePkg/Include/Uefi/UefiBaseType.h */ #define EFI_SUCCESS RETURN_SUCCESS #define EFI_INVALID_PARAMETER RETURN_INVALID_PARAMETER #define EFI_OUT_OF_RESOURCES RETURN_OUT_OF_RESOURCES #define EFI_PAGE_MASK 0xFFF #define EFI_PAGE_SHIFT 12 #define EFI_SIZE_TO_PAGES(a) (((a) >> EFI_PAGE_SHIFT) + (((a) & EFI_PAGE_MASK) ? 1 : 0)) #define EFI_PAGES_TO_SIZE(a) ((a) << EFI_PAGE_SHIFT) /* From MdePkg/Include/Uefi/UefiMultiPhase.h */ typedef enum { EfiReservedMemoryType, EfiLoaderCode, EfiLoaderData, EfiBootServicesCode, EfiBootServicesData, EfiRuntimeServicesCode, EfiRuntimeServicesData, EfiConventionalMemory, EfiUnusableMemory, EfiACPIReclaimMemory, EfiACPIMemoryNVS, EfiMemoryMappedIO, EfiMemoryMappedIOPortSpace, EfiPalCode, EfiPersistentMemory, EfiMaxMemoryType } EFI_MEMORY_TYPE; /* From MdePkg/Include/Uefi/UefiSpec.h */ typedef enum { AllocateAnyPages, AllocateMaxAddress, AllocateAddress, MaxAllocateType } EFI_ALLOCATE_TYPE; EFI_STATUS AllocatePages(EFI_ALLOCATE_TYPE Type, EFI_MEMORY_TYPE MemoryType, unsigned long Pages, EFI_PHYSICAL_ADDRESS *Memory) { int has_memory; unsigned long bytes = EFI_PAGES_TO_SIZE(Pages); if (Pages >= (unsigned long)((-1L) >> EFI_PAGE_SHIFT)) return EFI_INVALID_PARAMETER; __coverity_negative_sink__(bytes); if (has_memory) { *Memory = (EFI_PHYSICAL_ADDRESS)__coverity_alloc__(bytes); return EFI_SUCCESS; } return EFI_OUT_OF_RESOURCES; } // vim:fenc=utf-8:tw=75
the_stack_data/304266.c
/* Original location: <https://zlib.net/zpipe.c> */ /* zpipe.c: example of proper use of zlib's inflate() and deflate() Not copyrighted -- provided to the public domain Version 1.4 11 December 2005 Mark Adler */ /* Version history: 1.0 30 Oct 2004 First version 1.1 8 Nov 2004 Add void casting for unused return values Use switch statement for inflate() return values 1.2 9 Nov 2004 Add assertions to document zlib guarantees 1.3 6 Apr 2005 Remove incorrect assertion in inf() 1.4 11 Dec 2005 Add hack to avoid MSDOS end-of-line conversions Avoid some compiler warnings for input and output buffers 1.4+ - Local modifications by [email protected] (see Git history) */ #include <stdio.h> #include <string.h> #include <assert.h> #include "zlib.h" #if defined(MSDOS) || defined(OS2) || defined(WIN32) || defined(__CYGWIN__) # include <fcntl.h> # include <io.h> # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY) #else # define SET_BINARY_MODE(file) #endif #if defined(__FreeBSD__) # include <unistd.h> /* getopt */ #endif #define CHUNK 16384 enum { MODE_DEFLATE, MODE_INFLATE } mode; /* Compress from file source to file dest until EOF on source. def() returns Z_OK on success, Z_MEM_ERROR if memory could not be allocated for processing, Z_STREAM_ERROR if an invalid compression level is supplied, Z_VERSION_ERROR if the version of zlib.h and the version of the library linked do not match, or Z_ERRNO if there is an error reading or writing the files. */ int def(FILE *source, FILE *dest, int level) { int ret, flush; unsigned have; z_stream strm; unsigned char in[CHUNK]; unsigned char out[CHUNK]; /* allocate deflate state */ strm.zalloc = Z_NULL; strm.zfree = Z_NULL; strm.opaque = Z_NULL; ret = deflateInit(&strm, level); if (ret != Z_OK) return ret; /* compress until end of file */ do { strm.avail_in = fread(in, 1, CHUNK, source); if (ferror(source)) { (void)deflateEnd(&strm); return Z_ERRNO; } flush = feof(source) ? Z_FINISH : Z_NO_FLUSH; strm.next_in = in; /* run deflate() on input until output buffer not full, finish compression if all of source has been read in */ do { strm.avail_out = CHUNK; strm.next_out = out; ret = deflate(&strm, flush); /* no bad return value */ assert(ret != Z_STREAM_ERROR); /* state not clobbered */ have = CHUNK - strm.avail_out; if (fwrite(out, 1, have, dest) != have || ferror(dest)) { (void)deflateEnd(&strm); return Z_ERRNO; } } while (strm.avail_out == 0); assert(strm.avail_in == 0); /* all input will be used */ /* done when last data in file processed */ } while (flush != Z_FINISH); assert(ret == Z_STREAM_END); /* stream will be complete */ /* clean up and return */ (void)deflateEnd(&strm); return Z_OK; } /* Decompress from file source to file dest until stream ends or EOF. inf() returns Z_OK on success, Z_MEM_ERROR if memory could not be allocated for processing, Z_DATA_ERROR if the deflate data is invalid or incomplete, Z_VERSION_ERROR if the version of zlib.h and the version of the library linked do not match, or Z_ERRNO if there is an error reading or writing the files. */ int inf(FILE *source, FILE *dest) { int ret; unsigned have; z_stream strm; unsigned char in[CHUNK]; unsigned char out[CHUNK]; /* allocate inflate state */ strm.zalloc = Z_NULL; strm.zfree = Z_NULL; strm.opaque = Z_NULL; strm.avail_in = 0; strm.next_in = Z_NULL; ret = inflateInit(&strm); if (ret != Z_OK) return ret; /* decompress until deflate stream ends or end of file */ do { strm.avail_in = fread(in, 1, CHUNK, source); if (ferror(source)) { (void)inflateEnd(&strm); return Z_ERRNO; } if (strm.avail_in == 0) break; strm.next_in = in; /* run inflate() on input until output buffer not full */ do { strm.avail_out = CHUNK; strm.next_out = out; ret = inflate(&strm, Z_NO_FLUSH); assert(ret != Z_STREAM_ERROR); /* state not clobbered */ switch (ret) { case Z_NEED_DICT: ret = Z_DATA_ERROR; /* and fall through */ case Z_DATA_ERROR: case Z_MEM_ERROR: (void)inflateEnd(&strm); return ret; } have = CHUNK - strm.avail_out; if (fwrite(out, 1, have, dest) != have || ferror(dest)) { (void)inflateEnd(&strm); return Z_ERRNO; } } while (strm.avail_out == 0); /* done when inflate() says it's done */ } while (ret != Z_STREAM_END); /* clean up and return */ (void)inflateEnd(&strm); return ret == Z_STREAM_END ? Z_OK : Z_DATA_ERROR; } /* report a zlib or i/o error */ void zerr(int ret) { fputs("zpipe: ", stderr); switch (ret) { case Z_ERRNO: if (ferror(stdin)) fputs("error reading stdin\n", stderr); if (ferror(stdout)) fputs("error writing stdout\n", stderr); break; case Z_STREAM_ERROR: fputs("invalid compression level\n", stderr); break; case Z_DATA_ERROR: fputs("invalid or incomplete deflate data\n", stderr); break; case Z_MEM_ERROR: fputs("out of memory\n", stderr); break; case Z_VERSION_ERROR: fputs("zlib version mismatch!\n", stderr); } } int usage(void) { fputs("usage: zpipe [-d0123456789] < source > dest\n", stderr); return 1; } /* compress or decompress from stdin to stdout */ int main(int argc, char **argv) { char *path = NULL; FILE *input = stdin; int mode = MODE_DEFLATE; int level = Z_DEFAULT_COMPRESSION; int opt, ret; /* avoid end-of-line conversions */ SET_BINARY_MODE(stdin); SET_BINARY_MODE(stdout); while ((opt = getopt(argc, argv, "d0123456789")) != -1) { if (opt >= '0' && opt <= '9') level = opt - '0'; else if (opt == 'd') mode = MODE_INFLATE; else { usage(); return 0; } } if (!path) path = argv[optind]; else return usage(); if (path) { input = fopen(path, "rb"); if (!input) { perror("zpipe"); return 1; } } if (mode == MODE_DEFLATE) { ret = def(input, stdout, level); if (ret != Z_OK) zerr(ret); return ret; } else if (mode == MODE_INFLATE) { ret = inf(input, stdout); if (ret != Z_OK) zerr(ret); return ret; } return 0; } /* vim: set ts=4:sw=4:et: */
the_stack_data/144034.c
#include<stdio.h> struct employee { char name[20]; int code; int salary; int age; char department_name[10]; float phone_number; }; int main(){ struct employee e[20]; int i; void emp_read(){ printf("\nEnter the name of the employee : "); scanf("%s",&e[i].name); printf("\nEnter the employee number/code : "); scanf("%d",&e[i].code); printf("\nEnter the age of the employee : "); scanf("%d",&e[i].age); printf("\nEnter the employee's department name : "); scanf("%s",&e[i].department_name); printf("\nEnter the employee's phone number : "); scanf("%f",&e[i].phone_number); printf("\nEnter the salary of the employee : "); scanf("%d",&e[i].salary); } void emp_display(){ printf("\n%s \t%d \t%d \t%s \t%d \t%0.0f",e[i].name,e[i].age,e[i].code,e[i].department_name,e[i].salary,e[i].phone_number); } printf("\nEnter the number of employees whose data you want to store in :- "); int n; scanf("%d",&n); for(i=0;i<n;i++){ printf("\nEnter the details of the %d employee :-",i+1); emp_read(); } printf("\nThe details of the employees are :-"); printf("\n"); printf("\nName \tAge \tCode \tDepartment name \tSalary \tPhone number"); printf("\n"); for(i=0;i<n;i++){ emp_display(); printf("\n"); } return 0; }
the_stack_data/175143995.c
/* Write an alternate version of squeeze(s1, s2), that deletes each character in s1 that matches any character in the string s2. */ #include <stdio.h> #define MAXLEN 20 void squeeze(char s1[], char s2[]); int main(void) { char s1[MAXLEN], s2[MAXLEN]; printf("Enter the string: "); scanf("%s", s1); printf("Enter the matching string: "); scanf("%s", s2); squeeze(s1, s2); printf("The sqeezed string is: %s\n", s1); return 0; } void squeeze(char s[], char m[]) { int i, j, k; for (i = k = 0; s[i] != '\0'; ++i) { for (j = 0; (m[j] != s[i]) && (m[j] != '\0'); ++j) ; if (m[j] == '\0') s[k++] = s[i]; } s[k] = '\0'; }
the_stack_data/237643992.c
#include "memory.h" void pj_gentle_free(void *pt) { if (pt != NULL) pj_free(pt); }
the_stack_data/86074014.c
/* Generated by CIL v. 1.7.0 */ /* print_CIL_Input is false */ struct _IO_FILE; struct timeval; extern void signal(int sig , void *func ) ; extern float strtof(char const *str , char const *endptr ) ; typedef struct _IO_FILE FILE; extern int atoi(char const *s ) ; extern double strtod(char const *str , char const *endptr ) ; extern int fclose(void *stream ) ; extern void *fopen(char const *filename , char const *mode ) ; extern void abort() ; extern void exit(int status ) ; extern int raise(int sig ) ; extern int fprintf(struct _IO_FILE *stream , char const *format , ...) ; extern int strcmp(char const *a , char const *b ) ; extern int rand() ; extern unsigned long strtoul(char const *str , char const *endptr , int base ) ; void RandomFunc(unsigned int input[1] , unsigned int output[1] ) ; extern int strncmp(char const *s1 , char const *s2 , unsigned long maxlen ) ; extern int gettimeofday(struct timeval *tv , void *tz , ...) ; extern int printf(char const *format , ...) ; int main(int argc , char *argv[] ) ; void megaInit(void) ; extern unsigned long strlen(char const *s ) ; extern long strtol(char const *str , char const *endptr , int base ) ; extern unsigned long strnlen(char const *s , unsigned long maxlen ) ; extern void *memcpy(void *s1 , void const *s2 , unsigned long size ) ; struct timeval { long tv_sec ; long tv_usec ; }; extern void *malloc(unsigned long size ) ; extern int scanf(char const *format , ...) ; int main(int argc , char *argv[] ) { unsigned int input[1] ; unsigned int output[1] ; int randomFuns_i5 ; unsigned int randomFuns_value6 ; int randomFuns_main_i7 ; { megaInit(); if (argc != 2) { printf("Call this program with %i arguments\n", 1); exit(-1); } else { } randomFuns_i5 = 0; while (randomFuns_i5 < 1) { randomFuns_value6 = (unsigned int )strtoul(argv[randomFuns_i5 + 1], 0, 10); input[randomFuns_i5] = randomFuns_value6; randomFuns_i5 ++; } RandomFunc(input, output); if (output[0] == 3704571846U) { printf("You win!\n"); } else { } randomFuns_main_i7 = 0; while (randomFuns_main_i7 < 1) { printf("%u\n", output[randomFuns_main_i7]); randomFuns_main_i7 ++; } } } void RandomFunc(unsigned int input[1] , unsigned int output[1] ) { unsigned int state[1] ; char copy11 ; { state[0UL] = (input[0UL] + 914778474UL) ^ 3462201355U; if (state[0UL] & 1U) { copy11 = *((char *)(& state[0UL]) + 3); *((char *)(& state[0UL]) + 3) = *((char *)(& state[0UL]) + 1); *((char *)(& state[0UL]) + 1) = copy11; } else { state[0UL] |= (state[0UL] & 15U) << 3UL; } output[0UL] = (state[0UL] << 11U) | (state[0UL] >> 21U); } } void megaInit(void) { { } }
the_stack_data/184517319.c
#include <pthread.h> #include <syscall.h> #include <unistd.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #include <time.h> #include <math.h> #include <sys/time.h> #include <sys/times.h> #include <sys/param.h> #include <uuid/uuid.h> #include <sys/types.h> #include <sys/syscall.h> #include <sys/resource.h> #include <sys/sysinfo.h> #include <stdio.h> extern char **environ; struct pstat { long unsigned int utime_ticks; long int cutime_ticks; long unsigned int stime_ticks; long int cstime_ticks; long unsigned int vsize; // virtual memory size in bytes long unsigned int rss; //Resident Set Size in bytes long unsigned int cpu_total_time; struct timeval time_value; }; int get_total_usage(struct pstat* result) { int i; FILE *fstat = fopen("/proc/stat", "r"); if (fstat == NULL) { perror("FOPEN ERROR "); fclose(fstat); return -1; } //read+calc cpu total time from /proc/stat long unsigned int cpu_time[10]; bzero(cpu_time, sizeof (cpu_time)); if (fscanf(fstat, "%*s %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu", &cpu_time[0], &cpu_time[1], &cpu_time[2], &cpu_time[3], &cpu_time[4], &cpu_time[5], &cpu_time[6], &cpu_time[7], &cpu_time[8], &cpu_time[9]) == EOF) { fclose(fstat); return -1; } fclose(fstat); result->utime_ticks = cpu_time[0] + cpu_time[1] + cpu_time[2]; result->cutime_ticks = 0; result->stime_ticks = 0; result->cstime_ticks = 0; result->cpu_total_time = 0; for (i = 0; i < 6; i++) result->cpu_total_time += cpu_time[i]; return 0; } void main() { struct pstat b_usage, e_usage; double idle_delta, total_delta; long int total, i, calc; get_total_usage(&b_usage); calc = 0; for (i =0; i<20000000;i++) calc = calc + i; get_total_usage(&e_usage); idle_delta = e_usage.utime_ticks - b_usage.utime_ticks; total_delta = e_usage.cpu_total_time - b_usage.cpu_total_time; // total = 100 * (1.0 - idle_delta/total_delta); total = (idle_delta / total_delta) * 100; printf("CPU Usage: ((%d - %d)/(%d - %d))*100= %d\n", e_usage.utime_ticks, b_usage.utime_ticks, e_usage.cpu_total_time, b_usage.cpu_total_time,total); }
the_stack_data/606768.c
#include <stdio.h> #include <stdlib.h> #include <sys/time.h> #include <time.h> #include<string.h> #include <sys/socket.h> #include <arpa/inet.h> #include <sys/types.h> #include <sys/uio.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> #include <strings.h> #define BUFFERT 512 #define BACKLOG 1 int duration (struct timeval *start,struct timeval *stop, struct timeval *delta); int create_server_socket (int port); struct sockaddr_in sock_serv,sock_clt; int main(int argc,char** argv){ int sfd,fd; unsigned int length=sizeof(struct sockaddr_in); long int n, m,count=0; unsigned int nsid; ushort clt_port; char buffer[BUFFERT],filename[256]; char dst[INET_ADDRSTRLEN]; //exec: ./server portnumber // Variable declarations time_t intps; struct tm* tmi; if(argc!=2) { perror("utilisation ./a.out <num_port> <file2send>\n"); exit(3); } sfd = create_server_socket(15678); bzero(buffer,BUFFERT); listen(sfd,BACKLOG); //Connecting with client nsid=accept(sfd,(struct sockaddr*)&sock_clt,&length); { clt_port=ntohs(sock_clt.sin_port); printf("Connection established with : %s:%d\n",dst,clt_port); //Processing the filename bzero(filename,256); intps = time(NULL); tmi = localtime(&intps); bzero(filename,256); //sprintf(filename,"clt.%d.%d.%d.%d.%d.%d",tmi->tm_mday,tmi->tm_mon+1,1900+tmi->tm_year,tmi->tm_hour,tmi->tm_min,tmi->tm_sec); sprintf(filename,"%s","file1.zip"); //printf("Creating the copied output file : %s\n",filename); if ((fd=open(filename,O_CREAT|O_WRONLY,0600))==-1) { perror("open fail"); exit (3); } bzero(buffer,BUFFERT); n=recv(nsid,buffer,BUFFERT,0); while(n) { if(n==-1){ perror("recv fail"); exit(5); } if((m=write(fd,buffer,n))==-1){ perror("write fail"); exit (6); } count=count+m; bzero(buffer,BUFFERT); n=recv(nsid,buffer,BUFFERT,0); } // receive successful //start modifications //printf("Unzip begin"); //unzip it { char cmd[50]="unzip ";//+argv[2]+".zip "+argv[2]+".enc md5sum.txt"; snprintf(cmd, sizeof(cmd),"%s%s","unzip ",filename); //char *cmd="unzip "; //strcat(cmd, fname);//+fname; system(cmd); } //unzipped the file contents //printf("\nUnzip successful\n"); char md5val[55]=""; char file_name_final[50]=""; //variable declaration part 2 //read md5 file { //char md5val[55]; //char file_name_final[50]; int i=0,j=0; int cse=1; FILE *fp; char *filename = "md5sum.txt"; char ch; //printf("Read begin\n"); fp = fopen(filename, "r"); //Sprintf("End of read"); while( (ch = getc(fp)) != EOF ) { //printf("%d %c- \n", (int)ch, ch); if((int) ch==32) { cse=2; //printf("\n\nCase fulfilled\n\n"); } if (cse==1) { md5val[i]=ch; i++; } if (cse==2 && ((int) ch!=32 &&(int) ch!=10)) { //printf("\nEntered in cse2\n"); file_name_final[j]=ch; j++; } } //file_name_final[j]='1'; } //reading done //printf("\nmd5 reading successful"); //printf("File Name:%s",filename); printf("New file name: %s\n", file_name_final); //char file_name_final_final[50]; // decrypt them { //./run_des.o -d keyfile.key Resume.enc AJResume.pd char cmd[250]="";//+argv[2]+".zip "+argv[2]+".enc md5sum.txt"; //char ch='.'; //char newfilename[50]; //int i=0; //while(filename[i]!=ch) //{ //newfilename[i]=file_name_final[i]; //i++; //} //remove last chhar of fule_name_final snprintf(cmd, sizeof(cmd),"%s%s%s%s%s","./run_des.o -d keyfile.key ",file_name_final,".enc"," ",file_name_final); //Bug: modif filename: reduce value after . //printf("\n\n%s",cmd); /*"./run_des.o -d "+key_file_address+" "+fname+".enc "file_name_final*/ system(cmd); } //decryption done //printf("\nDecrypt successful"); //compare hash values //md5 system call { //char *query="md5sum "+ argv[2] + " > md5sum.txt"; char query[200]="md5sum "; snprintf(query, sizeof(query),"%s%s%s","md5sum ",file_name_final," > md5sum2.txt"); //snprintf( target, sizeof( target ), "%s%s%s", str1, str2, str3 ); //printf("Command created successfully"); //printf("%s",query); system(query); } //use md5al sys call text file generated. read until space symbol //reading md5 value char md5val2[50]=""; { int i=0; int cse=1; FILE *fp; char *filename = "md5sum2.txt"; char ch; fp = fopen(filename, "r"); while( (ch = getc(fp)) != EOF ) { //printf("%d %c- \n", (int)ch, ch); if((int) ch==32) { cse=2; //printf("\n\nCase fulfilled\n\n"); } if (cse==1) { md5val2[i]=ch; i++; } } } //compare with md5val array { //comparing md5 values int res=strcmp(md5val, md5val2); if(res!=0) { printf("MD5 Values dont match\n"); printf("Integrity of information not upheld\n"); } else{ printf("Integrity of information upheld\n"); } } { char cmd[250]=""; snprintf(cmd, sizeof(cmd),"%s%s%s","rm md5sum.txt md5sum2.txt file1.zip ",file_name_final,".enc"); system(cmd); } //check for equality //if true, continue //else notify the user close(sfd); close(fd); } close(nsid); //printf("End of transmission with %s.%d\n",dst,clt_port); //printf("Number of byte received: %ld \n",count); return EXIT_SUCCESS; } /* Function allowing the creation of a socket and its attachment to the system * Returns a file descriptor in the Process descriptor table * BIND allows its definition to the system */ int create_server_socket (int port){ int l; int sfd; int yes=1; sfd = socket(PF_INET,SOCK_STREAM,0); if (sfd == -1){ perror("socket fail"); return EXIT_SUCCESS; } if(setsockopt(sfd, SOL_SOCKET, SO_REUSEADDR,&yes,sizeof(int)) == -1 ) { perror("setsockopt erreur"); exit(5); } l=sizeof(struct sockaddr_in); bzero(&sock_serv,l); sock_serv.sin_family=AF_INET; sock_serv.sin_port=htons(port); sock_serv.sin_addr.s_addr=htonl(INADDR_ANY); if(bind(sfd,(struct sockaddr*)&sock_serv,l)==-1){ perror("bind fail"); return EXIT_FAILURE; } return sfd; }
the_stack_data/109063.c
/* Verify a password. Copyright (C) 1991-2015 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, if not, see <http://www.gnu.org/licenses/>. */ #include <stdio.h> #include <string.h> #include <unistd.h> #include <crypt.h> int main(void) { /* Hashed form of "GNU libc manual". */ const char *const pass = "$1$/iSaq7rB$EoUw5jJPPvAPECNaaWzMK/"; char *result; int ok; /*@group*/ /* Read in the user's password and encrypt it, passing the expected password in as the salt. */ result = crypt(getpass("Password:"), pass); /*@end group*/ /* Test the result. */ ok = strcmp (result, pass) == 0; puts(ok ? "Access granted." : "Access denied."); return ok ? 0 : 1; }
the_stack_data/26294.c
/* bintoc.c Convert a (binary) file to a series of comma separated hex values suitable for initializing a character array in C. */ #define _POSIX_C_SOURCE 2 #include <errno.h> #include <stdarg.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> char *progname; unsigned char buf[1024]; static void fatal(char *fmt, ...); static void usage(void); int main(int argc, char *argv[]) { int c, i, r, first; FILE *file_in, *file_out; char *in_name; char *o_arg; (progname=strrchr(argv[0],'/')) ? progname++ : (progname=argv[0]); o_arg= NULL; while (c= getopt(argc, argv, "?o:"), c != -1) { switch(c) { case '?': usage(); case 'o': o_arg= optarg; break; default: fatal("getopt failed: '%c'\n", c); } } if (o_arg) { file_out= fopen(o_arg, "w"); if (file_out == NULL) { fatal("unable to create '%s': %s\n", o_arg, strerror(errno)); exit(1); } } else file_out= stdout; if (optind < argc) { in_name= argv[optind]; optind++; file_in= fopen(in_name, "r"); if (file_in == NULL) { fatal("unable to open '%s': %s", in_name, strerror(errno)); } } else { in_name= "(stdin)"; file_in= stdin; } if (optind != argc) usage(); first= 1; for (;;) { r= fread(buf, 1, sizeof(buf), file_in); if (r == 0) break; for (i= 0; i<r; i++) { if ((i % 8) == 0) { if (first) { fprintf(file_out, "\t"); first= 0; } else fprintf(file_out, ",\n\t"); } else fprintf(file_out, ", "); fprintf(file_out, "0x%02x", buf[i]); } } if (ferror(file_in)) { fatal("read error on %s: %s\n", in_name, strerror(errno)); } fprintf(file_out, "\n"); exit(0); } static void fatal(char *fmt, ...) { va_list ap; fprintf(stderr, "%s: ", progname); va_start(ap, fmt); vfprintf(stderr, fmt, ap); va_end(ap); fprintf(stderr, "\n"); exit(1); } static void usage(void) { fprintf(stderr, "Usage: bintoc [-o <out-file>] [<in-file>]\n"); exit(1); }
the_stack_data/178266339.c
#include <stdio.h> main() { int a[1000],n,i,j,count,temp; while(scanf("%d",&n)!=EOF) { count=0; for(i=0;i<n;i++) { scanf("%d",&a[i]); } for(i=0;i<n-1;i++) { for(j=0;j<n-1-i;j++) { if(a[j]>a[j+1]) { temp=a[j]; a[j]=a[j+1]; a[j+1]=temp; count++; } } } printf("Minimum exchange operations : %d\n",count); } return 0; }
the_stack_data/153269314.c
#include <stdio.h> #include <stdlib.h>
the_stack_data/248580663.c
/* * xsvvtp: z = alpha + x * y */ void dsvvtp (int n, double alpha, double *x, int incx, double *y, int incy, double *z, int incz) { while (n--) { *z = alpha + (*x) * (*y); x += incx; y += incy; z += incz; } return; }
the_stack_data/569181.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strlen.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: lgavalda <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/07/20 19:16:47 by lgavalda #+# #+# */ /* Updated: 2019/07/20 19:17:54 by lgavalda ### ########.fr */ /* */ /* ************************************************************************** */ int ft_strlen(char *str) { char *str_save; str_save = str; while (*str) str++; return (str - str_save); }
the_stack_data/173577747.c
/****************************************************************************** * Project Euler: Problem 3 * - Largest prime factor - * * URL: https://projecteuler.net/problem=3 * http://odz.sakura.ne.jp/projecteuler/index.php?cmd=read&page=Problem%203 * *****************************************************************************/ #include <stdbool.h> #include <stdio.h> #include <math.h> bool isPrime(unsigned long long n) { bool result = false; if(n <= 2) { result = n == 2; } else { for(unsigned long long i = 2; i < n && (result = n % i++);) ; } return result; } int main() { unsigned long long n = 600851475143; unsigned long long prime, temp, max = 0; temp = n; for(prime = 2; temp > 1; ++prime) { if(!isPrime(prime)) continue; while(!(temp % prime)) { temp /= prime; } if(max < prime) max = prime; } printf("Largest prime factor of %lld is %lld\n", n, max); return 0; }
the_stack_data/25137186.c
struct xobject { char type; }; extern struct xobject *t1_Xform ( struct xobject *obj); struct xobject * t1_Xform(struct xobject *obj) { register struct font *F = (struct font *) obj; return((struct xobject*)F); }
the_stack_data/61075918.c
/* * POK header * * The following file is a part of the POK project. Any modification should * be made according to the POK licence. You CANNOT use this file or a part * of a file for your own project. * * For more information on the POK licence, please see our LICENCE FILE * * Please follow the coding guidelines described in doc/CODING_GUIDELINES * * Copyright (c) 2007-2021 POK team */ /* @(#)w_jn.c 5.1 93/09/24 */ /* * ==================================================== * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. * * Developed at SunPro, a Sun Microsystems, Inc. business. * Permission to use, copy, modify, and distribute this * software is freely granted, provided that this notice * is preserved. * ==================================================== */ #ifdef POK_NEEDS_LIBMATH /* * wrapper jn(int n, double x), yn(int n, double x) * floating point Bessel's function of the 1st and 2nd kind * of order n * * Special cases: * y0(0)=y1(0)=yn(n,0) = -inf with division by zero signal; * y0(-ve)=y1(-ve)=yn(n,-ve) are NaN with invalid signal. * Note 2. About jn(n,x), yn(n,x) * For n=0, j0(x) is called, * for n=1, j1(x) is called, * for n<x, forward recursion us used starting * from values of j0(x) and j1(x). * for n>x, a continued fraction approximation to * j(n,x)/j(n-1,x) is evaluated and then backward * recursion is used starting from a supposed value * for j(n,x). The resulting value of j(0,x) is * compared with the actual value to correct the * supposed value of j(n,x). * * yn(n,x) is similar in all respects, except * that forward recursion is used for all * values of n>1. * */ #include "math_private.h" #include <libm.h> double jn(int n, double x) /* wrapper jn */ { #ifdef _IEEE_LIBM return __ieee754_jn(n, x); #else double z; z = __ieee754_jn(n, x); if (_LIB_VERSION == _IEEE_ || isnan(x)) return z; if (fabs(x) > X_TLOSS) { return __kernel_standard((double)n, x, 38); /* jn(|x|>X_TLOSS,n) */ } else return z; #endif } double yn(int n, double x) /* wrapper yn */ { #ifdef _IEEE_LIBM return __ieee754_yn(n, x); #else double z; z = __ieee754_yn(n, x); if (_LIB_VERSION == _IEEE_ || isnan(x)) return z; if (x <= 0.0) { if (x == 0.0) /* d= -one/(x-x); */ return __kernel_standard((double)n, x, 12); else /* d = zero/(x-x); */ return __kernel_standard((double)n, x, 13); } if (x > X_TLOSS) { return __kernel_standard((double)n, x, 39); /* yn(x>X_TLOSS,n) */ } else return z; #endif } #endif
the_stack_data/111078811.c
#include <stdio.h> #include <stdlib.h> #include <time.h> typedef struct node { int val; struct node *next; } node_t; void add_begin( node_t **head_ref, int val) { node_t * new_node; if( (*head_ref) == NULL) { (*head_ref) = malloc(sizeof(node_t)); (*head_ref)->val = val; (*head_ref)->next = NULL; return; } new_node = malloc(sizeof(node_t)); new_node->val = val; new_node->next = (*head_ref); (*head_ref) = new_node; } void print_list( node_t *head) { node_t *current = head; while(current != NULL) { printf("%d, ", current->val); current = current->next; } } void brute_force_sort( node_t** head_ref) { node_t *temp = (*head_ref); node_t *max_node = (*head_ref); node_t *max_node_previous = NULL; int max_val = 0; if( temp == NULL || temp->next == NULL) return; max_val = temp->val; while( temp->next != NULL ) { if( temp->next->val >= max_val ) { max_node = temp->next; max_node_previous = temp; max_val = temp->next->val; } temp = temp->next; } if(max_node_previous != NULL) { max_node_previous->next = max_node->next; max_node->next = (*head_ref); (*head_ref) = max_node; } brute_force_sort( & ((*head_ref)->next) ); } int main() { node_t *head = NULL; node_t *temp = NULL; srand( time(NULL) ); for(int i = 0; i < 15; i++) { add_begin( &head, rand() % 50 ); } print_list( head ); puts(""); brute_force_sort(&head); printf("Sorted List: "); print_list( head ); return 0; }
the_stack_data/156391990.c
// File: ArrList.c // Author: csh // Date: 2021/02/20 // =================== #include <stdlib.h> #include <stdio.h> #define MAXSIZE 100 typedef int ElementType; typedef struct LNode* List; struct LNode { ElementType Data[MAXSIZE]; int Last; // 线性表最后一个元素 }; // 建立空表 List MakeEmpty() { List Ptrl; Ptrl = (List)malloc(sizeof(struct LNode)); Ptrl->Last = -1; return Ptrl; } // 查找元素 int Find(ElementType X, List Ptrl) { int i = 0; while(i <= Ptrl->Last && Ptrl->Data[i] != X) i++; if(i > Ptrl->Last) return -1; // 没找到返回-1 else return i; // 返回的是存储位置 } // 第i个位置上插入元素 void Insert(ElementType X, int i, List Ptrl) { int j; if(Ptrl->Last == MAXSIZE) { printf("表满,无法插入新元素!\n"); return; } if(i < 1 || i > Ptrl->Last+2) { printf("位置不合法!\n"); return; } for(int j = Ptrl->Last; j >= i-1; j--) Ptrl->Data[j+1] = Ptrl->Data[j]; Ptrl->Data[i-1] = X; Ptrl->Last++; return; } // 删除第i个位置的元素 void Delete(int i, List Ptrl) { if(i < 1 || i > Ptrl->Last+1) { printf("不存在第%d个元素\n", i); return; } for(int j = i; j <= Ptrl->Last; j++) Ptrl->Data[j-1] = Ptrl->Data[j]; Ptrl->Last--; return; }
the_stack_data/1060103.c
#define N 2 int main() { int a[N]; a[0]=1; a[1]=2; return a[0]+a[1]; }
the_stack_data/40763310.c
/* * Copyright (c) 2013 Jan-Piet Mens <jpmens()gmail.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of mosquitto nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #ifdef BE_MYSQL #include <stdio.h> #include <stdlib.h> #include <string.h> #include <mosquitto.h> #include "be-mysql.h" #include "log.h" #include "hash.h" #include "backends.h" struct mysql_backend { MYSQL *mysql; char *host; int port; char *dbname; char *user; char *pass; bool auto_connect; char *userquery; // MUST return 1 row, 1 column char *superquery; // MUST return 1 row, 1 column, [0, 1] char *aclquery; // MAY return n rows, 1 column, string }; static char *get_bool(char *option, char *defval) { char *flag = p_stab(option); flag = flag ? flag : defval; if(!strcmp("true", flag) || !strcmp("false", flag)) { return flag; } _log(LOG_NOTICE, "WARN: %s is unexpected value -> %s", option, flag); return defval; } void *be_mysql_init() { struct mysql_backend *conf; char *host, *user, *pass, *dbname, *p; char *userquery; char *opt_flag; int port; my_bool reconnect = false; _log(LOG_DEBUG, "}}}} MYSQL"); host = p_stab("host"); p = p_stab("port"); user = p_stab("user"); pass = p_stab("pass"); dbname = p_stab("dbname"); host = (host) ? host : strdup("localhost"); port = (!p) ? 3306 : atoi(p); userquery = p_stab("userquery"); if (!userquery) { _fatal("Mandatory option 'userquery' is missing"); return (NULL); } if ((conf = (struct mysql_backend *)malloc(sizeof(struct mysql_backend))) == NULL) return (NULL); conf->mysql = mysql_init(NULL); conf->host = host; conf->port = port; conf->user = user; conf->pass = pass; conf->auto_connect = false; conf->dbname = dbname; conf->userquery = userquery; conf->superquery = p_stab("superquery"); conf->aclquery = p_stab("aclquery"); opt_flag = get_bool("mysql_auto_connect", "true"); if (!strcmp("true", opt_flag)) { conf->auto_connect = true; } opt_flag = get_bool("mysql_opt_reconnect", "true"); if (!strcmp("true", opt_flag)) { reconnect = true; mysql_options(conf->mysql, MYSQL_OPT_RECONNECT, &reconnect); } if (!mysql_real_connect(conf->mysql, host, user, pass, dbname, port, NULL, 0)) { fprintf(stderr, "%s\n", mysql_error(conf->mysql)); if (!conf->auto_connect && !reconnect) { free(conf); mysql_close(conf->mysql); return (NULL); } } return ((void *)conf); } void be_mysql_destroy(void *handle) { struct mysql_backend *conf = (struct mysql_backend *)handle; if (conf) { mysql_close(conf->mysql); if (conf->userquery) free(conf->userquery); if (conf->superquery) free(conf->superquery); if (conf->aclquery) free(conf->aclquery); free(conf); } } static char *escape(void *handle, const char *value, long *vlen) { struct mysql_backend *conf = (struct mysql_backend *)handle; char *v; *vlen = strlen(value) * 2 + 1; if ((v = malloc(*vlen)) == NULL) return (NULL); mysql_real_escape_string(conf->mysql, v, value, strlen(value)); return (v); } static bool auto_connect(struct mysql_backend *conf) { if (conf->auto_connect) { if (!mysql_real_connect(conf->mysql, conf->host, conf->user, conf->pass, conf->dbname, conf->port, NULL, 0)) { fprintf(stderr, "do auto_connect but %s\n", mysql_error(conf->mysql)); return false; } return true; } return false; } char *be_mysql_getuser(void *handle, const char *username, const char *password, int *authenticated) { struct mysql_backend *conf = (struct mysql_backend *)handle; char *query = NULL, *u = NULL, *value = NULL, *v; long nrows, ulen; MYSQL_RES *res = NULL; MYSQL_ROW rowdata; if (!conf || !conf->userquery || !username || !*username) return (NULL); if (mysql_ping(conf->mysql)) { fprintf(stderr, "%s\n", mysql_error(conf->mysql)); if (!auto_connect(conf)) { return (NULL); } } if ((u = escape(conf, username, &ulen)) == NULL) return (NULL); if ((query = malloc(strlen(conf->userquery) + ulen + 128)) == NULL) { free(u); return (NULL); } sprintf(query, conf->userquery, u); free(u); // DEBUG puts(query); if (mysql_query(conf->mysql, query)) { fprintf(stderr, "%s\n", mysql_error(conf->mysql)); goto out; } res = mysql_store_result(conf->mysql); if ((nrows = mysql_num_rows(res)) != 1) { // DEBUG fprintf(stderr, "rowcount = %ld; not ok\n", nrows); goto out; } if (mysql_num_fields(res) != 1) { // DEBUG fprintf(stderr, "numfields not ok\n"); goto out; } if ((rowdata = mysql_fetch_row(res)) == NULL) { goto out; } v = rowdata[0]; value = (v) ? strdup(v) : NULL; out: mysql_free_result(res); free(query); return (value); } /* * Return T/F if user is superuser */ int be_mysql_superuser(void *handle, const char *username) { struct mysql_backend *conf = (struct mysql_backend *)handle; char *query = NULL, *u = NULL; long nrows, ulen; int issuper = FALSE; MYSQL_RES *res = NULL; MYSQL_ROW rowdata; if (!conf || !conf->superquery) return (FALSE); if (mysql_ping(conf->mysql)) { fprintf(stderr, "%s\n", mysql_error(conf->mysql)); if (!auto_connect(conf)) { return (FALSE); } } if ((u = escape(conf, username, &ulen)) == NULL) return (FALSE); if ((query = malloc(strlen(conf->superquery) + ulen + 128)) == NULL) { free(u); return (FALSE); } sprintf(query, conf->superquery, u); free(u); // puts(query); if (mysql_query(conf->mysql, query)) { fprintf(stderr, "%s\n", mysql_error(conf->mysql)); goto out; } res = mysql_store_result(conf->mysql); if ((nrows = mysql_num_rows(res)) != 1) { goto out; } if (mysql_num_fields(res) != 1) { // DEBUG fprintf(stderr, "numfields not ok\n"); goto out; } if ((rowdata = mysql_fetch_row(res)) == NULL) { goto out; } issuper = atoi(rowdata[0]); out: mysql_free_result(res); free(query); return (issuper); } /* * Check ACL. * username is the name of the connected user attempting * to access * topic is the topic user is trying to access (may contain * wildcards) * acc is desired type of access: read/write * for subscriptions (READ) (1) * for publish (WRITE) (2) * * SELECT topic FROM table WHERE username = '%s' AND (acc & %d) // may user SUB or PUB topic? * SELECT topic FROM table WHERE username = '%s' // ignore ACC */ int be_mysql_aclcheck(void *handle, const char *username, const char *topic, int acc) { struct mysql_backend *conf = (struct mysql_backend *)handle; char *query = NULL, *u = NULL, *v; long ulen; int match = 0; bool bf; MYSQL_RES *res = NULL; MYSQL_ROW rowdata; if (!conf || !conf->aclquery) return (FALSE); if (mysql_ping(conf->mysql)) { fprintf(stderr, "%s\n", mysql_error(conf->mysql)); if (!auto_connect(conf)) { return (FALSE); } } if ((u = escape(conf, username, &ulen)) == NULL) return (FALSE); if ((query = malloc(strlen(conf->aclquery) + ulen + 128)) == NULL) { free(u); return (FALSE); } sprintf(query, conf->aclquery, u, acc); free(u); //_log(LOG_DEBUG, "SQL: %s", query); if (mysql_query(conf->mysql, query)) { _log(LOG_NOTICE, "%s", mysql_error(conf->mysql)); goto out; } res = mysql_store_result(conf->mysql); if (mysql_num_fields(res) != 1) { fprintf(stderr, "numfields not ok\n"); goto out; } while (match == 0 && (rowdata = mysql_fetch_row(res)) != NULL) { if ((v = rowdata[0]) != NULL) { /* Check mosquitto_match_topic. If true, * if true, set match and break out of loop. */ // FIXME: does this need special work for %c and %u ??? mosquitto_topic_matches_sub(v, topic, &bf); match |= bf; _log(LOG_DEBUG, " mysql: topic_matches(%s, %s) == %d", topic, v, bf); } } out: mysql_free_result(res); free(query); return (match); } #endif /* BE_MYSQL */
the_stack_data/131669.c
#include <stdio.h> #include <stdlib.h> #include <string.h> struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; }; static void dfs(struct TreeNode *node, int sum, int *stack, int len, int **results, int *sizes, int *count) { if (node == NULL) { return; } else if (node->left == NULL && node->right == NULL && sum == node->val) { results[*count] = malloc((len + 1) * sizeof(int)); memcpy(results[*count], stack, len * sizeof(int)); results[*count][len] = node->val; sizes[*count] = len + 1; (*count)++; } else { stack[len] = node->val; dfs(node->left, sum - node->val, stack, len + 1, results, sizes, count); dfs(node->right, sum - node->val, stack, len + 1, results, sizes, count); } } /** * Return an array of arrays of size *returnSize. * The sizes of the arrays are returned as *returnColumnSizes array. * Note: Both returned array and *returnColumnSizes array must be malloced, assume caller calls free(). */ int **pathSum(struct TreeNode *root, int sum, int *returnSize, int **returnColumnSizes) { if (root == NULL) { *returnSize = 0; return NULL; } int level = 5000, cap = 1000; int *stack = malloc(level * sizeof(int)); int **results = malloc(cap * sizeof(int *)); *returnColumnSizes = malloc(cap * sizeof(int)); dfs(root, sum, stack, 0, results, *returnColumnSizes, returnSize); return results; } int main(int argc, char **argv) { struct TreeNode root, n1[2], n2[4], n3[8]; root.val = 5; n1[0].val = 4; n1[1].val = 8; n2[0].val = 11; n2[2].val = 13; n2[3].val = 4; n3[0].val = 7; n3[1].val = 2; n3[6].val = 5; n3[7].val = 1; root.left = &n1[0]; root.right = &n1[1]; n1[0].left = &n2[0]; n1[0].right = NULL; n1[1].left = &n2[2]; n1[1].right = &n2[3]; n2[0].left = &n3[0]; n2[0].right = &n3[1]; n2[2].left = NULL; n2[2].right = NULL; n2[3].left = &n3[6]; n2[3].right = &n3[7]; n3[0].left = NULL; n3[0].right = NULL; n3[1].left = NULL; n3[1].right = NULL; n3[6].left = NULL; n3[6].right = NULL; n3[7].left = NULL; n3[7].right = NULL; int i, j, count = 0; int *col_sizes, sum = 22; int **list = pathSum(&root, sum, &count, &col_sizes); for (i = 0; i < count; i++) { for (j = 0; j < col_sizes[i]; j++) { printf("%d ", list[i][j]); } printf("\n"); } return 0; }
the_stack_data/40762098.c
#include <stdio.h> #include <stdlib.h> int main() { int num, i, s, f; printf("Enter the Range in which you want to find Prime Numbers. \n"); scanf("%d %d",&s,&f); printf("Prime Numbers between %d to %d are \n",s,f); num = s; while(num<=f) { i = 2; while(i<=num-1) { if(num%i==0) { printf("%d is not a Prime Number. \n",num); break; } i++; } if(i==num) { printf("%d is a Prime Number. \n",num); } num++; } return 0; }
the_stack_data/298108.c
#include <assert.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> // typedef int T; #define USE_ARRAY(T) \ \ struct T##_array_t { \ T * addr; \ unsigned length; \ unsigned capacity; \ }; \ \ static struct T##_array_t create_array_##T(int length, int capacity) { \ assert(capacity > 0); \ struct T##_array_t arr; \ arr.addr = calloc(capacity, sizeof(T)); \ if (arr.addr == NULL) { \ arr.length = arr.capacity = 0; \ } else { \ arr.length = length; \ arr.capacity = capacity; \ } \ return arr; \ } \ \ static void delete_array_##T(struct T##_array_t * arr) { \ assert(arr != NULL); \ if (arr->addr != NULL) { \ free(arr->addr); \ } \ arr->length = arr->capacity = 0; \ } \ \ /* amortized time complexity: O(1) */ \ static void append_##T(struct T##_array_t * arr, T val) { \ assert(arr != NULL); \ if (arr->length >= arr->capacity) { \ T * new_addr = realloc(arr->addr, sizeof(T) * (arr->capacity * 2)); \ assert(new_addr != NULL); \ arr->addr = new_addr; \ arr->capacity = arr->capacity * 2; \ } \ arr->addr[arr->length++] = val; \ } \ \ static T pop_##T(struct T##_array_t * arr) { \ assert(arr != NULL && arr->length > 0); \ T ans = arr->addr[--(arr->length)]; \ if (arr->length < arr->capacity / 2) { \ arr->capacity /= 2; \ arr->addr = realloc(arr->addr, sizeof(T) * arr->capacity); \ assert(arr->addr != NULL); \ } \ return ans; \ } \ \ typedef struct T##_array_t T##_array_t #define array_t(T) T##_array_t #define create_array(T, length, capacity) create_array_##T((length), (capacity)) #define delete_array(T, arr) delete_array_##T((arr)) #define append(T, arr, val) append_##T((arr), (val)) #define pop(T, arr) pop_##T((arr)) #define at(arr, index) ((arr).addr[index]) USE_ARRAY(int); int main() { array_t(int) arr = create_array(int, 3, 3); for (int i = 0; i < arr.length; ++i) { at(arr, i) = i * 10; printf("set arr[%d] = %d\n", i, at(arr, i)); } append(int, &arr, 30); append(int, &arr, 40); append(int, &arr, 50); printf("arr.length = %u, arr.capacity = %u\n", arr.length, arr.capacity); while (arr.length > 0) { printf("pop %d\n", pop(int, &arr)); } printf("arr.length = %u, arr.capacity = %u\n", arr.length, arr.capacity); for (int i = 0; i < 10; ++i) { append(int, &arr, -i); for (int i = 0; i < arr.capacity; ++i) { printf(" %d", at(arr, i)); } printf(" | length=%d\n", arr.length); } for (int i = 0; i < arr.length; ++i) { printf("arr[%d] = %d\n", i, at(arr, i)); } while (arr.length > 5) { printf("pop %d\n", pop(int, &arr)); } printf("arr.length = %u, arr.capacity = %u\n", arr.length, arr.capacity); delete_array(int, &arr); return 0; }
the_stack_data/167330905.c
/** @file paex_write_sine.c @ingroup examples_src @brief Play a sine wave for several seconds using the blocking API (Pa_WriteStream()) @author Ross Bencina <[email protected]> @author Phil Burk <[email protected]> */ /* * $Id: paex_write_sine.c 1865 2012-09-01 21:16:25Z philburk $ * * This program uses the PortAudio Portable Audio Library. * For more information see: http://www.portaudio.com/ * Copyright (c) 1999-2000 Ross Bencina and Phil Burk * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files * (the "Software"), to deal in the Software without restriction, * including without limitation the rights to use, copy, modify, merge, * publish, distribute, sublicense, and/or sell copies of the Software, * and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /* * The text above constitutes the entire PortAudio license; however, * the PortAudio community also makes the following non-binding requests: * * Any person wishing to distribute modifications to the Software is * requested to send the modifications to the original developer so that * they can be incorporated into the canonical version. It is also * requested that these non-binding requests be included along with the * license above. */ #include <stdio.h> #include <math.h> #include "portaudio.h" #define NUM_SECONDS (5) #define SAMPLE_RATE (44100) #define FRAMES_PER_BUFFER (1024) #ifndef M_PI #define M_PI (3.14159265) #endif #define TABLE_SIZE (200) int main(void); int main(void) { PaStreamParameters outputParameters; PaStream *stream; PaError err; float buffer[FRAMES_PER_BUFFER][2]; /* stereo output buffer */ float sine[TABLE_SIZE]; /* sine wavetable */ int left_phase = 0; int right_phase = 0; int left_inc = 1; int right_inc = 3; /* higher pitch so we can distinguish left and right. */ int i, j, k; int bufferCount; printf("PortAudio Test: output sine wave. SR = %d, BufSize = %d\n", SAMPLE_RATE, FRAMES_PER_BUFFER); /* initialise sinusoidal wavetable */ for( i=0; i<TABLE_SIZE; i++ ) { sine[i] = (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. ); } err = Pa_Initialize(); if( err != paNoError ) goto error; outputParameters.device = Pa_GetDefaultOutputDevice(); /* default output device */ if (outputParameters.device == paNoDevice) { fprintf(stderr,"Error: No default output device.\n"); goto error; } outputParameters.channelCount = 2; /* stereo output */ outputParameters.sampleFormat = paFloat32; /* 32 bit floating point output */ outputParameters.suggestedLatency = 0.050; // Pa_GetDeviceInfo( outputParameters.device )->defaultLowOutputLatency; outputParameters.hostApiSpecificStreamInfo = NULL; err = Pa_OpenStream( &stream, NULL, /* no input */ &outputParameters, SAMPLE_RATE, FRAMES_PER_BUFFER, paClipOff, /* we won't output out of range samples so don't bother clipping them */ NULL, /* no callback, use blocking API */ NULL ); /* no callback, so no callback userData */ if( err != paNoError ) goto error; printf( "Play 3 times, higher each time.\n" ); for( k=0; k < 3; ++k ) { err = Pa_StartStream( stream ); if( err != paNoError ) goto error; printf("Play for %d seconds.\n", NUM_SECONDS ); bufferCount = ((NUM_SECONDS * SAMPLE_RATE) / FRAMES_PER_BUFFER); for( i=0; i < bufferCount; i++ ) { for( j=0; j < FRAMES_PER_BUFFER; j++ ) { buffer[j][0] = sine[left_phase]; /* left */ buffer[j][1] = sine[right_phase]; /* right */ left_phase += left_inc; if( left_phase >= TABLE_SIZE ) left_phase -= TABLE_SIZE; right_phase += right_inc; if( right_phase >= TABLE_SIZE ) right_phase -= TABLE_SIZE; } err = Pa_WriteStream( stream, buffer, FRAMES_PER_BUFFER ); if( err != paNoError ) goto error; } err = Pa_StopStream( stream ); if( err != paNoError ) goto error; ++left_inc; ++right_inc; Pa_Sleep( 1000 ); } err = Pa_CloseStream( stream ); if( err != paNoError ) goto error; Pa_Terminate(); printf("Test finished.\n"); return err; error: fprintf( stderr, "An error occured while using the portaudio stream\n" ); fprintf( stderr, "Error number: %d\n", err ); fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) ); // Print more information about the error. if( err == paUnanticipatedHostError ) { const PaHostErrorInfo *hostErrorInfo = Pa_GetLastHostErrorInfo(); fprintf( stderr, "Host API error = #%ld, hostApiType = %d\n", hostErrorInfo->errorCode, hostErrorInfo->hostApiType ); fprintf( stderr, "Host API error = %s\n", hostErrorInfo->errorText ); } Pa_Terminate(); return err; }
the_stack_data/38050.c
#include <stdio.h> #include <math.h> int main() { double l, p, q, x; scanf("%lf %lf %lf", &l, &p, &q); x=(l*p)/(p+q); printf("%f\n", x); return 0; }
the_stack_data/97812.c
#include <stdio.h> int main() { int n = 10; int a[n]; int i,j; for(j = 0; j < n; j += 1) a[j]=j; for(i = 0; i < n; i += 1) // Here we use the indice of first loop, it has to be renamed if we fuse ! a[i]=j; for(i = 0; i < n; i += 1) printf("%d - ",a[i]); printf("\n"); return 0; }