view state_db.h @ 12:7f2db1e1bf2f default tip

use CBC_COMPILER environment val
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Thu, 04 Jul 2019 18:53:38 +0900
parents a04eccfc69ae
children
line wrap: on
line source

#ifndef _STATE_DB_H_
#define _STATE_DB_H_

typedef struct state_db {
    struct memory *memory;
    int hash;
    struct state_db *left;
    struct state_db *right;
} StateNode, *StateDB;

extern int
lookup_StateDB(StateDB s, StateDB *db, StateDB *out);

extern int state_count();
extern void reset_state_count();



#endif