The ChainCon Software (Release 0.03)
emptycell.cpp
Go to the documentation of this file.
1 /////////////////////////////////////////////////////////////////////////////
2 ///
3 /// \file
4 ///
5 /// A global variable of the settable decision class on whether
6 /// the empty cell should be used as a valid cell of dimension -1.
7 ///
8 /////////////////////////////////////////////////////////////////////////////
9 
10 // Copyright (C) 2009-2016 by Pawel Pilarczyk.
11 //
12 // This file is part of my research software package. This is free software:
13 // you can redistribute it and/or modify it under the terms of the GNU
14 // General Public License as published by the Free Software Foundation,
15 // either version 3 of the License, or (at your option) any later version.
16 //
17 // This software is distributed in the hope that it will be useful,
18 // but WITHOUT ANY WARRANTY; without even the implied warranty of
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 // GNU General Public License for more details.
21 //
22 // You should have received a copy of the GNU General Public License
23 // along with this software; see the file "license.txt". If not,
24 // please, see <http://www.gnu.org/licenses/>.
25 
26 // Started on March 24, 2009. Last revision: January 9, 2013.
27 
28 
29 // include relevant local header files
30 #include "chaincon/emptycell.h"
31 
32 
33 // --------------------------------------------------
34 // ------------------- empty cell -------------------
35 // --------------------------------------------------
36 
37 /// The global flag for the existence of the empty cell
38 /// in a class that can be used to change this setting globally.
39 bool SettableEmptyCell::theFlag = false;
40 
The decision on whether the empty cell should be used as a valid cell of dimension -1...
static bool theFlag
The global flag for the existence of the empty cell.
Definition: emptycell.h:81