From: Michael Orlitzky Date: Thu, 3 Nov 2016 20:58:17 +0000 (-0400) Subject: Use private methods for the rest of the CVXOPT vectors/matrices. X-Git-Tag: 0.1.0~73 X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=f3eb81258445fb9cc905f1e06dd7e6d00fbb76fc;hp=f3eb81258445fb9cc905f1e06dd7e6d00fbb76fc;p=dunshire.git Use private methods for the rest of the CVXOPT vectors/matrices. We already had private methods for _zero(), _A(), and _G(). Now we have them for the rest of the matrices and vectors as well. This improves consistency, and maybe more importantly prevents people from ever thinking it's safe to pass the same matrix to CVXOPT twice. ---