Changeset 1942
- Timestamp:
- Oct 17, 2005, 11:31:35 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/pyvolution/least_squares.py
r1941 r1942 549 549 while not element_found and is_more_elements and expand_search: 550 550 if verbose: print 'Expanding search' 551 if first_expansion = True:552 expanded_quad_searches.append(1)551 if first_expansion == True: 552 self.expanded_quad_searches.append(1) 553 553 else: 554 554 end = len(expanded_quad_searches) - 1 555 555 assert end >= 0 556 expanded_quad_searches[end] += 1556 self.expanded_quad_searches[end] += 1 557 557 print "expanded_quad_searches",expanded_quad_searches 558 self.expanded_quad_searches += 1559 558 candidate_vertices, branch = root.expand_search() 560 559 if branch == []:
Note: See TracChangeset
for help on using the changeset viewer.