Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1045)

Unified Diff: appengine/findit/libs/math/vectors.py

Issue 2548603003: Adding memoized functions (Closed)
Patch Set: forgot if I pushed the latest before CQ Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/findit/libs/math/test/functions_test.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/libs/math/vectors.py
diff --git a/appengine/findit/libs/math/vectors.py b/appengine/findit/libs/math/vectors.py
index 2d97d35a554ac3f3a2e9d1d238cb6a375ed2d00e..e2ac81f7ed9250516b25731882dd603a585fe2fa 100644
--- a/appengine/findit/libs/math/vectors.py
+++ b/appengine/findit/libs/math/vectors.py
@@ -31,7 +31,7 @@ def vsum(vs, shape=None):
# It'd be better to vectorize the implementation of Shewchuk's
# algorithm directly, so we can avoid needing to traverse ``vs``
- # repeatedly. However, this is deemed to have too high a maintinence
+ # repeatedly. However, this is deemed to have too high a maintenance
# cost for the performance benefit.
total = np.zeros(shape)
it = np.nditer(total, flags=['multi_index'], op_flags=['writeonly'])
« no previous file with comments | « appengine/findit/libs/math/test/functions_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698