view state_db.h @ 11:190dadd8405b

Format indent
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Tue, 02 Jul 2019 19:52:09 +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