Voro++
worklist.hh
Go to the documentation of this file.
1 // Voro++, a 3D cell-based Voronoi library
2 //
3 // Author : Chris H. Rycroft (LBL / UC Berkeley)
4 // Email : chr@alum.mit.edu
5 // Date : August 30th 2011
6 
7 /** \file worklist.hh
8  * \brief Header file for setting constants used in the block worklists that are
9  * used during cell computation.
10  *
11  * This file is automatically generated by worklist_gen.pl and it is not
12  * intended to be edited by hand. */
13 
14 #ifndef VOROPP_WORKLIST_HH
15 #define VOROPP_WORKLIST_HH
16 
17 namespace voro {
18 
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. */
22 const int wl_hgrid=4;
23 /** The number of subregions that a block is subdivided into, which is twice
24 the value of hgrid. */
25 const int wl_fgrid=8;
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;
30 
31 }
32 #endif