Skip to content
Snippets Groups Projects
Commit 944114ea authored by Chad Hanna's avatar Chad Hanna
Browse files

metric.py: make eigenvalue hacks for determinant the same

parent 4648e24b
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ def packing_density(n):
# this packing density puts two in a cell, we split if there is more
# than this expected in a cell
# From: http://mathworld.wolfram.com/HyperspherePacking.html
prefactor = 0.5
prefactor = 1.25
if n==1:
return prefactor
if n==2:
......@@ -295,11 +295,11 @@ class Node(object):
numtmps = max(max(numtmps, par_numtmps), sib_numtmps) * aspect_factor
q = self.cube.center[1] / self.cube.center[0]
metric_tol = 0.01
#if self.cube.constraint_func(self.cube.vertices + [self.cube.center]) and ((numtmps >= split_num_templates) or (numtmps >= split_num_templates/2.5 and metric_diff > metric_tol)):
if self.cube.constraint_func(self.cube.vertices + [self.cube.center]) and ((numtmps >= split_num_templates)):
metric_tol = min(0.05, 0.01 / self.cube.det**.5)
if self.cube.constraint_func(self.cube.vertices + [self.cube.center]) and ((numtmps >= split_num_templates) or (numtmps >= split_num_templates/2.0 and metric_diff > metric_tol)):
#if self.cube.constraint_func(self.cube.vertices + [self.cube.center]) and ((numtmps >= split_num_templates)):
bifurcation += 1
if False:#metric_diff <= metric_tol:# and aspect_factor <= 1.0:
if metric_diff <= metric_tol:# and aspect_factor <= 1.0:
left, right = self.cube.split(splitdim, reuse_metric = True)
else:
left, right = self.cube.split(splitdim)
......@@ -313,7 +313,7 @@ class Node(object):
else:
self.template_count[0] = self.template_count[0] + 1
if verbose:
print "%d tmps : level %03d @ %s : deltas %s : vol frac. %.2f : aspect ratio %.2f : coord vol %.2f" % (self.template_count[0], bifurcation, self.cube.center, self.cube.deltas, numtmps, aspect_ratio, self.cube.coord_volume())
print "%d tmps : level %03d @ %s : deltas %s : vol frac. %.2f : aspect ratio %.2f : det %.2f" % (self.template_count[0], bifurcation, self.cube.center, self.cube.deltas, numtmps, aspect_ratio, self.cube.det**.5)
# FIXME can this be made a generator?
def leafnodes(self, out = set()):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment