projects
/
model-checker.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9fd8ac1
)
nodestack: bugfix - fixup allocators for vectors
author
Brian Norris
<banorris@uci.edu>
Fri, 25 May 2012 23:05:23 +0000
(16:05 -0700)
committer
Brian Norris
<banorris@uci.edu>
Fri, 25 May 2012 23:14:22 +0000
(16:14 -0700)
nodestack.h
patch
|
blob
|
history
diff --git
a/nodestack.h
b/nodestack.h
index bd64c4aa859d64f7a2eddcf9282ac9fbb5b1ed16..eebfa5ba1c0c8c4771bb625e490fb6dbfeb97c16 100644
(file)
--- a/
nodestack.h
+++ b/
nodestack.h
@@
-35,8
+35,8
@@
private:
static int total_nodes;
ModelAction *action;
int num_threads;
- std::vector<
bool
> explored_children;
- std::vector<
bool
> backtrack;
+ std::vector<
bool, MyAlloc<bool>
> explored_children;
+ std::vector<
bool, MyAlloc<bool>
> backtrack;
};
typedef std::list<class Node *, MyAlloc< class Node * > > node_list_t;