nissy-core

The "engine" of nissy, including the H48 optimal solver.
git clone https://git.tronto.net/nissy-core
Download | Log | Files | Refs | README | LICENSE

nissy_extra.h (444B)


      1 /*
      2 This header file exposes certain functions that are meant to be used
      3 for testing purposes only.
      4 */
      5 
      6 #define STATIC static
      7 #define LOG printf
      8 
      9 #include "../src/solvers/tables_types_macros.h"
     10 #include "../src/solvers/tables.h"
     11 
     12 size_t gendata_h48_derive(uint8_t, const unsigned char *, unsigned char *);
     13 int parse_h48_solver(const char *, uint8_t [static 1], uint8_t [static 1]);
     14 long long int nissy_datainfo(uint64_t, const unsigned char *);