|
4 | 4 | ///* Version 4.0 | 11/12/2023 */// |
5 | 5 | ///**************************************************************************************************************************/// |
6 | 6 | ///************************************ Dr Elijah Borodin, Manchester, UK **************************************************/// |
7 | | -///**************************************** Spring 2022 - Winter 2023 ****************************************************/// |
| 7 | +///**************************************** Spring 2022 - Winter 2024 ****************************************************/// |
8 | 8 | ///***********************************************************************************************************************/// |
9 | 9 | ///* Code source: https://github.com/PRISBteam/PCC_Processing_Design/ |
10 | 10 | ///* Documentation: https://prisbteam.github.io/ |
|
17 | 17 | // Key terminology: |
18 | 18 | // Material's elements :: 'quadruple points', 'grain boundary junctions', 'grain boundaries', and 'grains' (with their orientations and barycenter coordinates) |
19 | 19 | // Tessellation's elements :: 'nodes, 'edges', 'faces', 'polytopes' (with their measures - lengths, areas and volumes - and barycenter coordinates) |
20 | | -// PCC's elements :: 'k-cells' containing in 'k-skeletons' (k = {0,1,2,3}) with their degree fractions, and incident (k-1)-cells and (k+1)-cells. |
| 20 | +// PCC's elements :: 'k-cells' containing in 'k-skeletons', where k = {0,1,2,3}, with their degree fractions, and incident (k-1)-cells and (k+1)-cells. |
21 | 21 |
|
22 | 22 | ///* ----------------------------------------- * |
23 | 23 | ///* Standard C++ (STL) libraries |
|
35 | 35 | ///* ------------------------------------------------------------------------------- * |
36 | 36 | ///* Attached user-defined C++ libraries (must be copied in the directory for STL): |
37 | 37 | ///* ------------------------------------------------------------------------------- * |
38 | | -/// Eigen source: https://eigen.tuxfamily.org/ (2022) |
| 38 | +/// Eigen source: https://eigen.tuxfamily.org/ (2024) |
39 | 39 | #include <Eigen/Core> |
40 | 40 | #include <Eigen/Dense> |
41 | 41 | #include <Eigen/SparseCore> |
42 | 42 |
|
43 | | -/// Spectra source: https://spectralib.org/ (2022) |
| 43 | +/// Spectra source: https://spectralib.org/ (2024) |
44 | 44 | #include <Spectra/GenEigsSolver.h> |
45 | 45 | #include <Spectra/SymEigsSolver.h> |
46 | 46 | #include <Spectra/MatOp/SparseGenMatProd.h> |
@@ -178,7 +178,7 @@ if ( main_type == "LIST"s ) { // 'LIST module' |
178 | 178 | cout << " START of the PCC Subcomplex module " << endl; |
179 | 179 | Out_logfile_stream << " START of the PCC Subcomplex module " << endl; |
180 | 180 |
|
181 | | -/// Subcomplex(); |
| 181 | +///* module */// Subcomplex(); |
182 | 182 |
|
183 | 183 | // ===== Elapsing time Subcomplex ================ |
184 | 184 | unsigned int Subcomplex_time = clock(); |
|
0 commit comments