Changeset 1942


Ignore:
Timestamp:
Oct 17, 2005, 11:31:35 AM (19 years ago)
Author:
duncan
Message:

bug fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • inundation/pyvolution/least_squares.py

    r1941 r1942  
    549549            while not element_found and is_more_elements and expand_search:
    550550                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)
    553553                else:
    554554                    end = len(expanded_quad_searches) - 1
    555555                    assert end >= 0
    556                     expanded_quad_searches[end] += 1
     556                    self.expanded_quad_searches[end] += 1
    557557                    print "expanded_quad_searches",expanded_quad_searches
    558                 self.expanded_quad_searches += 1
    559558                candidate_vertices, branch = root.expand_search()
    560559                if branch == []:
Note: See TracChangeset for help on using the changeset viewer.