mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-04 15:21:11 +00:00
Take a few shortcuts in jozov2 to speed up the computation of the largest voids. The output does not seem totally consistent though.
This commit is contained in:
parent
0879abed75
commit
9a63f289d7
2 changed files with 51 additions and 41 deletions
|
@ -127,7 +127,6 @@ void writeZoneFile(const std::string& zonfile, PARTICLE* p, pid_t np,
|
|||
{
|
||||
m[h] = new pid_t[z[h].np];
|
||||
nm[h] = 0;
|
||||
z[h].vol = 0.;
|
||||
}
|
||||
|
||||
for (pid_t i = 0; i < np; i++)
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
#include <omp.h>
|
||||
#endif
|
||||
|
||||
#include <set>
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
#include <boost/format.hpp>
|
||||
|
@ -56,18 +57,15 @@ void doWatershed(PARTICLE *p, pid_t np, ZONE *z, int numZones, float maxvol, flo
|
|||
int nhlcount = 0;
|
||||
float lowvol;
|
||||
bool beaten;
|
||||
if (h/100 > prev_ii)
|
||||
{
|
||||
(cout << format("[%d]: Doing %d") % omp_get_thread_num() % h << endl).flush();
|
||||
prev_ii = h/100;
|
||||
}
|
||||
|
||||
set<int> to_process;
|
||||
|
||||
for (int hl = 0; hl < nhl; hl++)
|
||||
inyet[zonelist[hl]] = 0;
|
||||
|
||||
zonelist[0] = h;
|
||||
inyet[h] = 1;
|
||||
nhl = 1;
|
||||
to_process.insert(h);
|
||||
z[h].npjoin = z[h].np;
|
||||
do {
|
||||
/* Find the lowest-volume (highest-density) adjacency */
|
||||
|
@ -76,38 +74,45 @@ void doWatershed(PARTICLE *p, pid_t np, ZONE *z, int numZones, float maxvol, flo
|
|||
beaten = false;
|
||||
lowvol = BIGFLT;
|
||||
|
||||
for (int hl = 0; hl < nhl; hl++)
|
||||
set<int>::iterator iter = to_process.begin();
|
||||
while (iter != to_process.end())
|
||||
{
|
||||
int h2 = zonelist[hl];
|
||||
if (inyet[h2] == 1) { /* If it's not already identified as
|
||||
an interior zone, with inyet=2 */
|
||||
bool interior = true;
|
||||
for (int za = 0; za < z[h2].nadj; za++)
|
||||
{
|
||||
if (inyet[z[h2].adj[za]] == 0)
|
||||
{
|
||||
interior = false;
|
||||
if (z[h2].slv[za] == lowvol)
|
||||
int h2 = *iter;
|
||||
ZONE& z_cur = z[h2];
|
||||
bool interior = true, touched = false;
|
||||
assert(inyet[h2] == 1);
|
||||
|
||||
for (int za = 0; za < z_cur.nadj; za++)
|
||||
{
|
||||
if (inyet[z_cur.adj[za]] == 0)
|
||||
{
|
||||
interior = false;
|
||||
if (z_cur.slv[za] == lowvol)
|
||||
{
|
||||
links[nl] = z_cur.adj[za];
|
||||
touched = true;
|
||||
nl ++;
|
||||
if (nl == NLINKS)
|
||||
{
|
||||
printf("Too many links with the same rho_sl! Increase NLINKS from %d\n",nl);
|
||||
exit(0);
|
||||
}
|
||||
}
|
||||
else
|
||||
if (z_cur.slv[za] < lowvol)
|
||||
{
|
||||
links[nl] = z[h2].adj[za];
|
||||
nl ++;
|
||||
if (nl == NLINKS)
|
||||
{
|
||||
printf("Too many links with the same rho_sl! Increase NLINKS from %d\n",nl);
|
||||
exit(0);
|
||||
}
|
||||
}
|
||||
if (z[h2].slv[za] < lowvol)
|
||||
{
|
||||
lowvol = z[h2].slv[za];
|
||||
links[0] = z[h2].adj[za];
|
||||
lowvol = z_cur.slv[za];
|
||||
links[0] = z_cur.adj[za];
|
||||
nl = 1;
|
||||
touched = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (interior)
|
||||
inyet[h2] = 2; /* No bordering exter. zones */
|
||||
}
|
||||
}
|
||||
}
|
||||
++iter;
|
||||
if (interior || !touched)
|
||||
to_process.erase(h2);
|
||||
if (interior)
|
||||
inyet[h2] = 2; /* No bordering exter. zones */
|
||||
}
|
||||
|
||||
if (nl == 0)
|
||||
|
@ -180,25 +185,31 @@ void doWatershed(PARTICLE *p, pid_t np, ZONE *z, int numZones, float maxvol, flo
|
|||
}
|
||||
}
|
||||
}
|
||||
for (int hl = 0; hl < nhl2; hl++)
|
||||
inyet2[zonelist2[hl]] = 0;
|
||||
|
||||
/* See if there's a beater */
|
||||
if (beaten) {
|
||||
z[h].leak = lowvol;
|
||||
} else {
|
||||
for (int h2 = 0; h2 < nhl2; h2++) {
|
||||
zonelist[nhl] = zonelist2[h2];
|
||||
inyet[zonelist2[h2]] = 1;
|
||||
int new_h = zonelist2[h2];
|
||||
|
||||
zonelist[nhl] = new_h;
|
||||
assert(inyet[new_h] == 0);
|
||||
inyet[new_h] = 1;
|
||||
if (inyet2[new_h] != 2)
|
||||
to_process.insert(new_h);
|
||||
nhl++;
|
||||
z[h].npjoin += z[zonelist2[h2]].np;
|
||||
z[h].npjoin += z[new_h].np;
|
||||
}
|
||||
}
|
||||
|
||||
for (int hl = 0; hl < nhl2; hl++)
|
||||
inyet2[zonelist2[hl]] = 0;
|
||||
if (nhl/10000 > nhlcount) {
|
||||
if (nhlcount == 0)
|
||||
(cout << format("Zone %d: %d") % h % nhl).flush();
|
||||
else
|
||||
(cout << nhl << " ").flush();
|
||||
(cout << format(" %d [%d]") % nhl % to_process.size()).flush();
|
||||
nhlcount = nhl/10000;
|
||||
}
|
||||
} while((lowvol < BIGFLT) && (!beaten));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue