Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef _CHAINCON_HOMGVF2_H_
00030 #define _CHAINCON_HOMGVF2_H_
00031
00032
00033
00034 #include <istream>
00035 #include <ostream>
00036
00037
00038 #include "chomp/system/config.h"
00039 #include "chomp/system/timeused.h"
00040 #include "chomp/system/textfile.h"
00041 #include "chomp/struct/hashsets.h"
00042
00043
00044 #include "chaincon/combchain.h"
00045 #include "chaincon/comblinmap.h"
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058 template <class CellT, class CellArray1, class CellArray2>
00059 void homologyGVF2 (const CellArray1 &K, CellArray2 &H,
00060 tCombLinMap<CellT,CellT> &pi,
00061 tCombLinMap<CellT,CellT> &incl,
00062 tCombLinMap<CellT,CellT> &phi)
00063 {
00064 using chomp::homology::sout;
00065 using chomp::homology::scon;
00066
00067
00068 if (K. empty ())
00069 return;
00070
00071
00072 sout << "Computing a homology gradient vector field...\n";
00073
00074
00075 chomp::homology::timeused compTime;
00076 compTime = 0;
00077
00078
00079 chomp::homology::hashedset<CellT> homGener;
00080
00081
00082 tCombLinMap<CellT,CellT> piT;
00083
00084
00085 int_t KSize = K. size ();
00086 for (int_t i = 0; i < KSize; ++ i)
00087 {
00088
00089 if (!(i % 17))
00090 scon << i << " out of " << KSize << ", " <<
00091 (i * 100 / KSize) << "% done.\r";
00092
00093
00094 const CellT &c = K [i];
00095
00096
00097 tCombChain<CellT> ch (c);
00098 ch. add (phi (boundary (c)));
00099
00100
00101 tCombChain<CellT> bd_ch (boundary (ch));
00102
00103
00104 if (bd_ch. empty ())
00105 {
00106
00107 homGener. add (c);
00108
00109
00110 incl. add (c, ch);
00111
00112
00113 pi. add (c, c);
00114 piT. add (c, c);
00115
00116
00117 continue;
00118 }
00119
00120
00121 tCombChain<CellT> d (pi (bd_ch));
00122 int_t dsize = d. size ();
00123
00124
00125 if (d. empty ())
00126 {
00127 sout << "Debug: c = " << c << ".\n";
00128 sout << "Debug: bd_c = " << boundary (c) <<
00129 ".\n";
00130 sout << "Debug: ch = " << ch << ".\n";
00131 sout << "Debug: bd_ch = " << bd_ch << ".\n";
00132 throw "Empty boundary in the homology algorithm.";
00133 }
00134
00135
00136 const CellT &u = d [0];
00137
00138
00139
00140 tCombChain<CellT> piTu (piT (u));
00141 int_t size = piTu. size ();
00142 for (int_t j = 0; j < size; ++ j)
00143 {
00144
00145 const CellT &cj = piTu [j];
00146
00147
00148 phi. add (cj, ch);
00149
00150
00151 tCombChain<CellT> &picj = pi. getImage (cj);
00152
00153
00154 tCombChain<CellT> prev (picj);
00155
00156
00157 picj. add (d);
00158
00159
00160 for (int_t k = 0; k < dsize; ++ k)
00161 {
00162
00163 if (picj. contains (d [k]))
00164 {
00165
00166
00167
00168 piT. add (d [k], cj);
00169 }
00170
00171 else
00172 {
00173
00174 piT. add (d [k], cj);
00175 }
00176 }
00177 }
00178
00179
00180 homGener. remove (u);
00181 incl. remove (u);
00182 piT. remove (u);
00183 }
00184
00185
00186 int_t genSize = homGener. size ();
00187 for (int_t i = 0; i < genSize; ++ i)
00188 H. push_back (homGener [i]);
00189
00190
00191 sout << "Homology gvf computed in " << compTime << ".\n";
00192
00193 return;
00194 }
00195
00196
00197 #endif // _CHAINCON_HOMGVF2_H_
00198