Changeset 2048 for inundation/wiki
- Timestamp:
- Nov 21, 2005, 2:58:38 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/wiki/least_squares_redesign.txt
r2046 r2048 64 64 memory error. 65 65 66 Remove least_squares commandline interface until a need arises. 66 Remove least_squares commandline. This means it will be called using 67 python files, which should increase accountability. 67 68 68 69 Points do not have to be supplied all at once. They can be supplied … … 76 77 a float, let the user set the default value that is returned for 77 78 points outside the mesh. if the value can be set to NAN, then set it 78 to NAN, if no default is given. 79 to NAN, if no default is given. 80 79 81 80 82 Reduce the time spent building matrix A. (not a testable requirement) 83 84 Points do not have to be supplied all at once. They can be supplied 85 as blocks. (This will improve memory use) 81 86 82 87 A target to aim for … … 114 119 info. Need a building phase and a solve phase. 115 120 121 *Returning information on points outside the mesh. 122 Do not find that these points are outside the mesh by searching the 123 binary tree. Do it by using polygon. (data_manager.sww2dem does not 124 use the expanded search, since it needs points outside the mesh, and 125 setting precrop to True means these points are not returned. Using a 126 precrop of true and expand search true grinds the system to a halt.) 116 127 117 128 *To reduce the time spent building matrix A. … … 119 130 Change the expansion algorithm, when determining what triangle a point 120 131 is in, when none of the vertices are in the cell the point is in. 121 It is imperative to avoid a situation where the search goes back to the root for a large number of points such as what we see in sww2dem (data_manager.py).122 123 132 124 133 Options (still thinking about this one)
Note: See TracChangeset
for help on using the changeset viewer.