예제 #1
0
 def is_dcp(self):
     return not bu.any(self.cvx_mat & self.conc_mat)
예제 #2
0
 def is_concave(self):
     return not bu.any(self.cvx_mat)
예제 #3
0
 def is_convex(self):
     return not bu.any(self.conc_mat)
예제 #4
0
 def is_affine(self):
     return not bu.any(self.cvx_mat | self.conc_mat)
예제 #5
0
파일: sign.py 프로젝트: Russell91/cvxpy
 def is_negative(self):
     return not bu.any(self.pos_mat)
예제 #6
0
파일: sign.py 프로젝트: Russell91/cvxpy
 def is_positive(self):
     return not bu.any(self.neg_mat)