1 // Voro++, a 3D cell-based Voronoi library
3 // Author : Chris H. Rycroft (LBL / UC Berkeley)
4 // Email : chr@alum.mit.edu
5 // Date : August 30th 2011
8 * \brief Header file for setting constants used in the block worklists that are
9 * used during cell computation.
11 * This file is automatically generated by worklist_gen.pl and it is not
12 * intended to be edited by hand. */
14 #ifndef VOROPP_WORKLIST_HH
15 #define VOROPP_WORKLIST_HH
19 /** Each region is divided into a grid of subregions, and a worklist is
20 # constructed for each. This parameter sets is set to half the number of
21 # subregions that the block is divided into. */
23 /** The number of subregions that a block is subdivided into, which is twice
24 the value of hgrid. */
26 /** The total number of worklists, set to the cube of hgrid. */
27 const int wl_hgridcu
=64;
28 /** The number of elements in each worklist. */
29 const int wl_seq_length
=64;