Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lrsnashlib.c
Original file line number Diff line number Diff line change
Expand Up @@ -1116,4 +1116,6 @@ void updateFwidth(game *g, int col, int pos, char *str) {
((gInfo *)g->aux)->fwidth[col][pos] = len;
}

void resetNashSolver() { FirstTime = TRUE; }

/******************** end of lrsnashlib.c ***************************/
1 change: 1 addition & 0 deletions lrsnashlib.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ void printGame(game * g);
void setFwidth(game *g, int len);
void initFwidth(game *g);
void updateFwidth(game *g, int col, int pos, char *str);
void resetNashSolver(); /* Call this function for every new game to be solved */


extern long Debug_flag;
Expand Down