The ChainCon Software (Release 0.03)
atmodsim.cpp
Go to the documentation of this file.
1 /////////////////////////////////////////////////////////////////////////////
2 ///
3 /// \file
4 ///
5 /// A program for the computation of simplicial
6 /// algebraic topological model.
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: October 21, 2013.
27 
28 
29 // include the string hashing definitions (before including "hashsets.h")
30 #include "chaincon/stringhash.h"
31 
32 // include selected header files from the CHomP library
33 #include "chomp/system/config.h"
34 #include "chomp/struct/hashsets.h"
35 
36 // include relevant local header files
37 #include "chaincon/simplex.h"
38 #include "chaincon/emptycell.h"
39 #include "atmodmain.h"
40 
41 
42 // --------------------------------------------------
43 // -------------------- OVERTURE --------------------
44 // --------------------------------------------------
45 
46 /// The title of the program and licensing information.
47 const char *title = "\
48 Simplicial homology computation with an algebraic topological model.\n\
49 Version 0.05 (Sep 24, 2015). Copyright (C) 1997-2016 by Pawel Pilarczyk.\n\
50 This is free software. No warranty. Consult 'license.txt' for details.";
51 
52 /// Brief help information on the program's usage.
53 const char *helpinfo = "\
54 This program computes simplicial homology groups and homology generators.\n\
55 The ring of coefficients is Z or Z_p (the integers modulo prime number p).\n\
56 Call with:\n\
57 filename - the name of a file that contains a list of simplices,\n\
58 Switches and additional arguments:\n\
59 filename2 - the name of an additional file for relative (co)homology;\n\
60 -pN - selection of the coefficients: p=0 for Z, p=1 for purely\n\
61 \tcombinatorial procedures, p > 1 for Z_p (default: p=1); use p <= 181.\n\
62 -r - compute reduced homology (with the empty set as a cell of dim -1).\n\
63 -b - don't add boundary cells (use -bx and -ba for X and A selectively),\n\
64 -dpi, -dincl, -dphi - display the computed maps: pi, incl, phi,\n\
65 -drepr - display homology representants (meaningful for -aN with N < 3),\n\
66 -aN - homology algorithm: 0 = old (very slow), 1 = new without additional\n\
67 optimization (relatively fast), 2 = new (default), 3,4 = using the SNF.\n\
68 --verify - do additional verification of the computed maps,\n\
69 --log filename - save the output to a file (without progress indicators),\n\
70 --quiet - suppress data output to the screen (whcih can be still logged),\n\
71 --help - display this brief help information only and exit.\n\
72 For more information please consult the accompanying documentation\n\
73 or ask the program's author at http://www.PawelPilarczyk.com/.";
74 
75 
76 // --------------------------------------------------
77 // ---------------------- main ----------------------
78 // --------------------------------------------------
79 
80 /// The main procedure of the program.
81 /// Returns: 0 = Ok, -1 = Error, 1 = Help displayed, 2 = Wrong arguments.
82 int main (int argc, char *argv [])
83 {
84  return atModelMain<tSimplex<int_t,SettableEmptyCell> >
85  (argc, argv, title, helpinfo);
86 } /* main */
87 
const char * title
The title of the program and licensing information.
Definition: atmodsim.cpp:47
const char * helpinfo
Brief help information on the program&#39;s usage.
Definition: atmodsim.cpp:53
The main procedure for a program for the computation of an algebraic topological model.
Hashing keys for std::string.
int main(int argc, char *argv [])
The main procedure of the program.
Definition: atmodsim.cpp:82
A simplex class with arbitrary vertices.
The decision on whether the empty cell should be used as a valid cell of dimension -1...