Revision c9b2c621c3bff55aaa77646dc1ba7316765cd7e4 authored by Adrian Baddeley on 25 April 2013, 00:00:00 UTC, committed by Gabor Csardi on 25 April 2013, 00:00:00 UTC
1 parent f86606a
Raw File
mhv1.h
/* 
   mhv1.h

   marked or unmarked simulation

*/

#undef MH_MARKED

if(marked) {
  /* marked process */
#define MH_MARKED TRUE
#include "mhv2.h"
#undef MH_MARKED
} else {
  /* unmarked process */
#define MH_MARKED FALSE
#include "mhv2.h"
#undef MH_MARKED
} 
back to top