From eacfad762271794965d428cacd1ce56fbc575f93 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Sun, 5 May 2013 09:04:14 -0700 Subject: Changing the queue to work in the same the array of costs is realloced. --- src/misc/vec/vecInt.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/misc/vec/vecInt.h') diff --git a/src/misc/vec/vecInt.h b/src/misc/vec/vecInt.h index 2fe15792..a99e6f29 100644 --- a/src/misc/vec/vecInt.h +++ b/src/misc/vec/vecInt.h @@ -321,6 +321,10 @@ static inline int * Vec_IntArray( Vec_Int_t * p ) { return p->pArray; } +static inline int ** Vec_IntArrayP( Vec_Int_t * p ) +{ + return &p->pArray; +} /**Function************************************************************* -- cgit v1.2.3