Updates to Optimization Framework. Testing. Bug Fixes.

This commit is contained in:
Rowan Cockett
2013-11-12 11:09:51 -08:00
parent 19f79b3275
commit 15e0126172
7 changed files with 422 additions and 741 deletions
+2 -2
View File
@@ -140,7 +140,7 @@ class Problem(object):
This can often be computed given a vector (i.e. J(v)) rather than stored, as J is a large dense matrix.
"""
pass
raise NotImplementedError('J is not yet implemented.')
def Jt(self, m, v, u=None):
"""
@@ -152,7 +152,7 @@ class Problem(object):
Effect of transpose of J on a vector v.
"""
pass
raise NotImplementedError('Jt is not yet implemented.')
def J_approx(self, m, v, u=None):