Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gstlal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Duncan Macleod
gstlal
Commits
2042a946
Commit
2042a946
authored
7 years ago
by
Chad Hanna
Browse files
Options
Downloads
Patches
Plain Diff
tree.py: more templates
parent
5074a04c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gstlal-ugly/python/tree.py
+6
-4
6 additions, 4 deletions
gstlal-ugly/python/tree.py
with
6 additions
and
4 deletions
gstlal-ugly/python/tree.py
+
6
−
4
View file @
2042a946
...
...
@@ -38,9 +38,11 @@ def mass_sym_constraint(vertices, mass_ratio = float("inf"), total_mass = float
return
False
def
packing_density
(
n
):
# this packing density puts two in a cell, we split if there are two or
# more expected in a cell
return
0.50
#prefactor = 0.5
# From: http://mathworld.wolfram.com/HyperspherePacking.html
return
0.7
prefactor
=
1.0
if
n
==
1
:
return
prefactor
if
n
==
2
:
...
...
@@ -202,7 +204,7 @@ class Node(object):
self
.
parent
=
parent
self
.
sibling
=
None
def
split
(
self
,
split_num_templates
,
mismatch
,
bifurcation
=
0
,
verbose
=
True
,
vtol
=
1.
2
5
,
max_coord_vol
=
float
(
100
)):
def
split
(
self
,
split_num_templates
,
mismatch
,
bifurcation
=
0
,
verbose
=
True
,
vtol
=
1.
0
5
,
max_coord_vol
=
float
(
100
)):
size
=
self
.
cube
.
num_tmps_per_side
(
mismatch
)
splitdim
=
numpy
.
argmax
(
size
)
aspect_ratios
=
size
/
min
(
size
)
...
...
@@ -238,7 +240,7 @@ class Node(object):
numtmps
=
max
(
max
(
numtmps
,
par_numtmps
),
sib_numtmps
)
if
(
self
.
cube
.
constraint_func
(
self
.
cube
.
vertices
+
[
self
.
cube
.
center
])
and
(
numtmps
>
split_num_templates
)):
if
(
self
.
cube
.
constraint_func
(
self
.
cube
.
vertices
+
[
self
.
cube
.
center
])
and
(
numtmps
>
=
split_num_templates
)):
self
.
template_count
[
0
]
=
self
.
template_count
[
0
]
+
1
bifurcation
+=
1
if
numtmps
<
5
**
len
(
size
)
and
volume_split_condition
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment